Fix #6912 - issue with parsing Roo.lib.Dom
[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  * @static
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                  * Find the current bootstrap width Grid size
674                  * Note xs is the default for smaller.. - this is currently used by grids to render correct columns
675                  * @returns {String} (xs|sm|md|lg|xl)
676                  */
677                 
678                 getGridSize : function()
679                 {
680                         var w = Roo.lib.Dom.getViewWidth();
681                         switch(true) {
682                                 case w > 1200:
683                                         return 'xl';
684                                 case w > 992:
685                                         return 'lg';
686                                 case w > 768:
687                                         return 'md';
688                                 case w > 576:
689                                         return 'sm';
690                                 default:
691                                         return 'xs'
692                         }
693                         
694                 }
695         
696     });
697
698
699 })();
700
701 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
702                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
703                 "Roo.app", "Roo.ux",
704                 "Roo.bootstrap",
705                 "Roo.bootstrap.dash");
706 /*
707  * Based on:
708  * Ext JS Library 1.1.1
709  * Copyright(c) 2006-2007, Ext JS, LLC.
710  *
711  * Originally Released Under LGPL - original licence link has changed is not relivant.
712  *
713  * Fork - LGPL
714  * <script type="text/javascript">
715  */
716
717 (function() {    
718     // wrappedn so fnCleanup is not in global scope...
719     if(Roo.isIE) {
720         function fnCleanUp() {
721             var p = Function.prototype;
722             delete p.createSequence;
723             delete p.defer;
724             delete p.createDelegate;
725             delete p.createCallback;
726             delete p.createInterceptor;
727
728             window.detachEvent("onunload", fnCleanUp);
729         }
730         window.attachEvent("onunload", fnCleanUp);
731     }
732 })();
733
734
735 /**
736  * @class Function
737  * These functions are available on every Function object (any JavaScript function).
738  */
739 Roo.apply(Function.prototype, {
740      /**
741      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
742      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
743      * Will create a function that is bound to those 2 args.
744      * @return {Function} The new function
745     */
746     createCallback : function(/*args...*/){
747         // make args available, in function below
748         var args = arguments;
749         var method = this;
750         return function() {
751             return method.apply(window, args);
752         };
753     },
754
755     /**
756      * Creates a delegate (callback) that sets the scope to obj.
757      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
758      * Will create a function that is automatically scoped to this.
759      * @param {Object} obj (optional) The object for which the scope is set
760      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
761      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
762      *                                             if a number the args are inserted at the specified position
763      * @return {Function} The new function
764      */
765     createDelegate : function(obj, args, appendArgs){
766         var method = this;
767         return function() {
768             var callArgs = args || arguments;
769             if(appendArgs === true){
770                 callArgs = Array.prototype.slice.call(arguments, 0);
771                 callArgs = callArgs.concat(args);
772             }else if(typeof appendArgs == "number"){
773                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
774                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
775                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
776             }
777             return method.apply(obj || window, callArgs);
778         };
779     },
780
781     /**
782      * Calls this function after the number of millseconds specified.
783      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
784      * @param {Object} obj (optional) The object for which the scope is set
785      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
786      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
787      *                                             if a number the args are inserted at the specified position
788      * @return {Number} The timeout id that can be used with clearTimeout
789      */
790     defer : function(millis, obj, args, appendArgs){
791         var fn = this.createDelegate(obj, args, appendArgs);
792         if(millis){
793             return setTimeout(fn, millis);
794         }
795         fn();
796         return 0;
797     },
798     /**
799      * Create a combined function call sequence of the original function + the passed function.
800      * The resulting function returns the results of the original function.
801      * The passed fcn is called with the parameters of the original function
802      * @param {Function} fcn The function to sequence
803      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
804      * @return {Function} The new function
805      */
806     createSequence : function(fcn, scope){
807         if(typeof fcn != "function"){
808             return this;
809         }
810         var method = this;
811         return function() {
812             var retval = method.apply(this || window, arguments);
813             fcn.apply(scope || this || window, arguments);
814             return retval;
815         };
816     },
817
818     /**
819      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
820      * The resulting function returns the results of the original function.
821      * The passed fcn is called with the parameters of the original function.
822      * @addon
823      * @param {Function} fcn The function to call before the original
824      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
825      * @return {Function} The new function
826      */
827     createInterceptor : function(fcn, scope){
828         if(typeof fcn != "function"){
829             return this;
830         }
831         var method = this;
832         return function() {
833             fcn.target = this;
834             fcn.method = method;
835             if(fcn.apply(scope || this || window, arguments) === false){
836                 return;
837             }
838             return method.apply(this || window, arguments);
839         };
840     }
841 });
842 /*
843  * Based on:
844  * Ext JS Library 1.1.1
845  * Copyright(c) 2006-2007, Ext JS, LLC.
846  *
847  * Originally Released Under LGPL - original licence link has changed is not relivant.
848  *
849  * Fork - LGPL
850  * <script type="text/javascript">
851  */
852
853 Roo.applyIf(String, {
854     
855     /** @scope String */
856     
857     /**
858      * Escapes the passed string for ' and \
859      * @param {String} string The string to escape
860      * @return {String} The escaped string
861      * @static
862      */
863     escape : function(string) {
864         return string.replace(/('|\\)/g, "\\$1");
865     },
866
867     /**
868      * Pads the left side of a string with a specified character.  This is especially useful
869      * for normalizing number and date strings.  Example usage:
870      * <pre><code>
871 var s = String.leftPad('123', 5, '0');
872 // s now contains the string: '00123'
873 </code></pre>
874      * @param {String} string The original string
875      * @param {Number} size The total length of the output string
876      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
877      * @return {String} The padded string
878      * @static
879      */
880     leftPad : function (val, size, ch) {
881         var result = new String(val);
882         if(ch === null || ch === undefined || ch === '') {
883             ch = " ";
884         }
885         while (result.length < size) {
886             result = ch + result;
887         }
888         return result;
889     },
890
891     /**
892      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
893      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
894      * <pre><code>
895 var cls = 'my-class', text = 'Some text';
896 var s = String.format('<div class="{0}">{1}</div>', cls, text);
897 // s now contains the string: '<div class="my-class">Some text</div>'
898 </code></pre>
899      * @param {String} string The tokenized string to be formatted
900      * @param {String} value1 The value to replace token {0}
901      * @param {String} value2 Etc...
902      * @return {String} The formatted string
903      * @static
904      */
905     format : function(format){
906         var args = Array.prototype.slice.call(arguments, 1);
907         return format.replace(/\{(\d+)\}/g, function(m, i){
908             return Roo.util.Format.htmlEncode(args[i]);
909         });
910     }
911   
912     
913 });
914
915 /**
916  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
917  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
918  * they are already different, the first value passed in is returned.  Note that this method returns the new value
919  * but does not change the current string.
920  * <pre><code>
921 // alternate sort directions
922 sort = sort.toggle('ASC', 'DESC');
923
924 // instead of conditional logic:
925 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
926 </code></pre>
927  * @param {String} value The value to compare to the current string
928  * @param {String} other The new value to use if the string already equals the first value passed in
929  * @return {String} The new value
930  */
931  
932 String.prototype.toggle = function(value, other){
933     return this == value ? other : value;
934 };
935
936
937 /**
938   * Remove invalid unicode characters from a string 
939   *
940   * @return {String} The clean string
941   */
942 String.prototype.unicodeClean = function () {
943     return this.replace(/[\s\S]/g,
944         function(character) {
945             if (character.charCodeAt()< 256) {
946               return character;
947            }
948            try {
949                 encodeURIComponent(character);
950            } catch(e) { 
951               return '';
952            }
953            return character;
954         }
955     );
956 };
957   
958 /*
959  * Based on:
960  * Ext JS Library 1.1.1
961  * Copyright(c) 2006-2007, Ext JS, LLC.
962  *
963  * Originally Released Under LGPL - original licence link has changed is not relivant.
964  *
965  * Fork - LGPL
966  * <script type="text/javascript">
967  */
968
969  /**
970  * @class Number
971  */
972 Roo.applyIf(Number.prototype, {
973     /**
974      * Checks whether or not the current number is within a desired range.  If the number is already within the
975      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
976      * exceeded.  Note that this method returns the constrained value but does not change the current number.
977      * @param {Number} min The minimum number in the range
978      * @param {Number} max The maximum number in the range
979      * @return {Number} The constrained value if outside the range, otherwise the current value
980      */
981     constrain : function(min, max){
982         return Math.min(Math.max(this, min), max);
983     }
984 });/*
985  * Based on:
986  * Ext JS Library 1.1.1
987  * Copyright(c) 2006-2007, Ext JS, LLC.
988  *
989  * Originally Released Under LGPL - original licence link has changed is not relivant.
990  *
991  * Fork - LGPL
992  * <script type="text/javascript">
993  */
994  /**
995  * @class Array
996  */
997 Roo.applyIf(Array.prototype, {
998     /**
999      * 
1000      * Checks whether or not the specified object exists in the array.
1001      * @param {Object} o The object to check for
1002      * @return {Number} The index of o in the array (or -1 if it is not found)
1003      */
1004     indexOf : function(o){
1005        for (var i = 0, len = this.length; i < len; i++){
1006               if(this[i] == o) { return i; }
1007        }
1008            return -1;
1009     },
1010
1011     /**
1012      * Removes the specified object from the array.  If the object is not found nothing happens.
1013      * @param {Object} o The object to remove
1014      */
1015     remove : function(o){
1016        var index = this.indexOf(o);
1017        if(index != -1){
1018            this.splice(index, 1);
1019        }
1020     },
1021     /**
1022      * Map (JS 1.6 compatibility)
1023      * @param {Function} function  to call
1024      */
1025     map : function(fun )
1026     {
1027         var len = this.length >>> 0;
1028         if (typeof fun != "function") {
1029             throw new TypeError();
1030         }
1031         var res = new Array(len);
1032         var thisp = arguments[1];
1033         for (var i = 0; i < len; i++)
1034         {
1035             if (i in this) {
1036                 res[i] = fun.call(thisp, this[i], i, this);
1037             }
1038         }
1039
1040         return res;
1041     },
1042     /**
1043      * equals
1044      * @param {Array} o The array to compare to
1045      * @returns {Boolean} true if the same
1046      */
1047     equals : function(b)
1048     {
1049         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1050         if (this === b) {
1051             return true;
1052          }
1053         if (b == null) {
1054             return false;
1055         }
1056         if (this.length !== b.length) {
1057             return false;
1058         }
1059       
1060         // sort?? a.sort().equals(b.sort());
1061       
1062         for (var i = 0; i < this.length; ++i) {
1063             if (this[i] !== b[i]) {
1064                 return false;
1065             }
1066         }
1067         return true;
1068     }
1069 });
1070
1071
1072  
1073 /*
1074  * Based on:
1075  * Ext JS Library 1.1.1
1076  * Copyright(c) 2006-2007, Ext JS, LLC.
1077  *
1078  * Originally Released Under LGPL - original licence link has changed is not relivant.
1079  *
1080  * Fork - LGPL
1081  * <script type="text/javascript">
1082  */
1083
1084 /**
1085  * @class Date
1086  *
1087  * The date parsing and format syntax is a subset of
1088  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1089  * supported will provide results equivalent to their PHP versions.
1090  *
1091  * Following is the list of all currently supported formats:
1092  *<pre>
1093 Sample date:
1094 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1095
1096 Format  Output      Description
1097 ------  ----------  --------------------------------------------------------------
1098   d      10         Day of the month, 2 digits with leading zeros
1099   D      Wed        A textual representation of a day, three letters
1100   j      10         Day of the month without leading zeros
1101   l      Wednesday  A full textual representation of the day of the week
1102   S      th         English ordinal day of month suffix, 2 chars (use with j)
1103   w      3          Numeric representation of the day of the week
1104   z      9          The julian date, or day of the year (0-365)
1105   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1106   F      January    A full textual representation of the month
1107   m      01         Numeric representation of a month, with leading zeros
1108   M      Jan        Month name abbreviation, three letters
1109   n      1          Numeric representation of a month, without leading zeros
1110   t      31         Number of days in the given month
1111   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1112   Y      2007       A full numeric representation of a year, 4 digits
1113   y      07         A two digit representation of a year
1114   a      pm         Lowercase Ante meridiem and Post meridiem
1115   A      PM         Uppercase Ante meridiem and Post meridiem
1116   g      3          12-hour format of an hour without leading zeros
1117   G      15         24-hour format of an hour without leading zeros
1118   h      03         12-hour format of an hour with leading zeros
1119   H      15         24-hour format of an hour with leading zeros
1120   i      05         Minutes with leading zeros
1121   s      01         Seconds, with leading zeros
1122   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1123   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1124   T      CST        Timezone setting of the machine running the code
1125   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1126 </pre>
1127  *
1128  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1129  * <pre><code>
1130 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1131 document.write(dt.format('Y-m-d'));                         //2007-01-10
1132 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1133 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
1134  </code></pre>
1135  *
1136  * Here are some standard date/time patterns that you might find helpful.  They
1137  * are not part of the source of Date.js, but to use them you can simply copy this
1138  * block of code into any script that is included after Date.js and they will also become
1139  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1140  * <pre><code>
1141 Date.patterns = {
1142     ISO8601Long:"Y-m-d H:i:s",
1143     ISO8601Short:"Y-m-d",
1144     ShortDate: "n/j/Y",
1145     LongDate: "l, F d, Y",
1146     FullDateTime: "l, F d, Y g:i:s A",
1147     MonthDay: "F d",
1148     ShortTime: "g:i A",
1149     LongTime: "g:i:s A",
1150     SortableDateTime: "Y-m-d\\TH:i:s",
1151     UniversalSortableDateTime: "Y-m-d H:i:sO",
1152     YearMonth: "F, Y"
1153 };
1154 </code></pre>
1155  *
1156  * Example usage:
1157  * <pre><code>
1158 var dt = new Date();
1159 document.write(dt.format(Date.patterns.ShortDate));
1160  </code></pre>
1161  */
1162
1163 /*
1164  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1165  * They generate precompiled functions from date formats instead of parsing and
1166  * processing the pattern every time you format a date.  These functions are available
1167  * on every Date object (any javascript function).
1168  *
1169  * The original article and download are here:
1170  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1171  *
1172  */
1173  
1174  
1175  // was in core
1176 /**
1177  Returns the number of milliseconds between this date and date
1178  @param {Date} date (optional) Defaults to now
1179  @return {Number} The diff in milliseconds
1180  @member Date getElapsed
1181  */
1182 Date.prototype.getElapsed = function(date) {
1183         return Math.abs((date || new Date()).getTime()-this.getTime());
1184 };
1185 // was in date file..
1186
1187
1188 // private
1189 Date.parseFunctions = {count:0};
1190 // private
1191 Date.parseRegexes = [];
1192 // private
1193 Date.formatFunctions = {count:0};
1194
1195 // private
1196 Date.prototype.dateFormat = function(format) {
1197     if (Date.formatFunctions[format] == null) {
1198         Date.createNewFormat(format);
1199     }
1200     var func = Date.formatFunctions[format];
1201     return this[func]();
1202 };
1203
1204
1205 /**
1206  * Formats a date given the supplied format string
1207  * @param {String} format The format string
1208  * @return {String} The formatted date
1209  * @method
1210  */
1211 Date.prototype.format = Date.prototype.dateFormat;
1212
1213 // private
1214 Date.createNewFormat = function(format) {
1215     var funcName = "format" + Date.formatFunctions.count++;
1216     Date.formatFunctions[format] = funcName;
1217     var code = "Date.prototype." + funcName + " = function(){return ";
1218     var special = false;
1219     var ch = '';
1220     for (var i = 0; i < format.length; ++i) {
1221         ch = format.charAt(i);
1222         if (!special && ch == "\\") {
1223             special = true;
1224         }
1225         else if (special) {
1226             special = false;
1227             code += "'" + String.escape(ch) + "' + ";
1228         }
1229         else {
1230             code += Date.getFormatCode(ch);
1231         }
1232     }
1233     /** eval:var:zzzzzzzzzzzzz */
1234     eval(code.substring(0, code.length - 3) + ";}");
1235 };
1236
1237 // private
1238 Date.getFormatCode = function(character) {
1239     switch (character) {
1240     case "d":
1241         return "String.leftPad(this.getDate(), 2, '0') + ";
1242     case "D":
1243         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1244     case "j":
1245         return "this.getDate() + ";
1246     case "l":
1247         return "Date.dayNames[this.getDay()] + ";
1248     case "S":
1249         return "this.getSuffix() + ";
1250     case "w":
1251         return "this.getDay() + ";
1252     case "z":
1253         return "this.getDayOfYear() + ";
1254     case "W":
1255         return "this.getWeekOfYear() + ";
1256     case "F":
1257         return "Date.monthNames[this.getMonth()] + ";
1258     case "m":
1259         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1260     case "M":
1261         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1262     case "n":
1263         return "(this.getMonth() + 1) + ";
1264     case "t":
1265         return "this.getDaysInMonth() + ";
1266     case "L":
1267         return "(this.isLeapYear() ? 1 : 0) + ";
1268     case "Y":
1269         return "this.getFullYear() + ";
1270     case "y":
1271         return "('' + this.getFullYear()).substring(2, 4) + ";
1272     case "a":
1273         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1274     case "A":
1275         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1276     case "g":
1277         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1278     case "G":
1279         return "this.getHours() + ";
1280     case "h":
1281         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1282     case "H":
1283         return "String.leftPad(this.getHours(), 2, '0') + ";
1284     case "i":
1285         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1286     case "s":
1287         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1288     case "O":
1289         return "this.getGMTOffset() + ";
1290     case "P":
1291         return "this.getGMTColonOffset() + ";
1292     case "T":
1293         return "this.getTimezone() + ";
1294     case "Z":
1295         return "(this.getTimezoneOffset() * -60) + ";
1296     default:
1297         return "'" + String.escape(character) + "' + ";
1298     }
1299 };
1300
1301 /**
1302  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1303  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1304  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1305  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1306  * string or the parse operation will fail.
1307  * Example Usage:
1308 <pre><code>
1309 //dt = Fri May 25 2007 (current date)
1310 var dt = new Date();
1311
1312 //dt = Thu May 25 2006 (today's month/day in 2006)
1313 dt = Date.parseDate("2006", "Y");
1314
1315 //dt = Sun Jan 15 2006 (all date parts specified)
1316 dt = Date.parseDate("2006-1-15", "Y-m-d");
1317
1318 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1319 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1320 </code></pre>
1321  * @param {String} input The unparsed date as a string
1322  * @param {String} format The format the date is in
1323  * @return {Date} The parsed date
1324  * @static
1325  */
1326 Date.parseDate = function(input, format) {
1327     if (Date.parseFunctions[format] == null) {
1328         Date.createParser(format);
1329     }
1330     var func = Date.parseFunctions[format];
1331     return Date[func](input);
1332 };
1333 /**
1334  * @private
1335  */
1336
1337 Date.createParser = function(format) {
1338     var funcName = "parse" + Date.parseFunctions.count++;
1339     var regexNum = Date.parseRegexes.length;
1340     var currentGroup = 1;
1341     Date.parseFunctions[format] = funcName;
1342
1343     var code = "Date." + funcName + " = function(input){\n"
1344         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1345         + "var d = new Date();\n"
1346         + "y = d.getFullYear();\n"
1347         + "m = d.getMonth();\n"
1348         + "d = d.getDate();\n"
1349         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1350         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1351         + "if (results && results.length > 0) {";
1352     var regex = "";
1353
1354     var special = false;
1355     var ch = '';
1356     for (var i = 0; i < format.length; ++i) {
1357         ch = format.charAt(i);
1358         if (!special && ch == "\\") {
1359             special = true;
1360         }
1361         else if (special) {
1362             special = false;
1363             regex += String.escape(ch);
1364         }
1365         else {
1366             var obj = Date.formatCodeToRegex(ch, currentGroup);
1367             currentGroup += obj.g;
1368             regex += obj.s;
1369             if (obj.g && obj.c) {
1370                 code += obj.c;
1371             }
1372         }
1373     }
1374
1375     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1376         + "{v = new Date(y, m, d, h, i, s);}\n"
1377         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1378         + "{v = new Date(y, m, d, h, i);}\n"
1379         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1380         + "{v = new Date(y, m, d, h);}\n"
1381         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1382         + "{v = new Date(y, m, d);}\n"
1383         + "else if (y >= 0 && m >= 0)\n"
1384         + "{v = new Date(y, m);}\n"
1385         + "else if (y >= 0)\n"
1386         + "{v = new Date(y);}\n"
1387         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1388         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1389         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1390         + ";}";
1391
1392     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1393     /** eval:var:zzzzzzzzzzzzz */
1394     eval(code);
1395 };
1396
1397 // private
1398 Date.formatCodeToRegex = function(character, currentGroup) {
1399     switch (character) {
1400     case "D":
1401         return {g:0,
1402         c:null,
1403         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1404     case "j":
1405         return {g:1,
1406             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1407             s:"(\\d{1,2})"}; // day of month without leading zeroes
1408     case "d":
1409         return {g:1,
1410             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1411             s:"(\\d{2})"}; // day of month with leading zeroes
1412     case "l":
1413         return {g:0,
1414             c:null,
1415             s:"(?:" + Date.dayNames.join("|") + ")"};
1416     case "S":
1417         return {g:0,
1418             c:null,
1419             s:"(?:st|nd|rd|th)"};
1420     case "w":
1421         return {g:0,
1422             c:null,
1423             s:"\\d"};
1424     case "z":
1425         return {g:0,
1426             c:null,
1427             s:"(?:\\d{1,3})"};
1428     case "W":
1429         return {g:0,
1430             c:null,
1431             s:"(?:\\d{2})"};
1432     case "F":
1433         return {g:1,
1434             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1435             s:"(" + Date.monthNames.join("|") + ")"};
1436     case "M":
1437         return {g:1,
1438             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1439             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1440     case "n":
1441         return {g:1,
1442             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1443             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1444     case "m":
1445         return {g:1,
1446             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1447             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1448     case "t":
1449         return {g:0,
1450             c:null,
1451             s:"\\d{1,2}"};
1452     case "L":
1453         return {g:0,
1454             c:null,
1455             s:"(?:1|0)"};
1456     case "Y":
1457         return {g:1,
1458             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1459             s:"(\\d{4})"};
1460     case "y":
1461         return {g:1,
1462             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1463                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1464             s:"(\\d{1,2})"};
1465     case "a":
1466         return {g:1,
1467             c:"if (results[" + currentGroup + "] == 'am') {\n"
1468                 + "if (h == 12) { h = 0; }\n"
1469                 + "} else { if (h < 12) { h += 12; }}",
1470             s:"(am|pm)"};
1471     case "A":
1472         return {g:1,
1473             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1474                 + "if (h == 12) { h = 0; }\n"
1475                 + "} else { if (h < 12) { h += 12; }}",
1476             s:"(AM|PM)"};
1477     case "g":
1478     case "G":
1479         return {g:1,
1480             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1481             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1482     case "h":
1483     case "H":
1484         return {g:1,
1485             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1486             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1487     case "i":
1488         return {g:1,
1489             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1490             s:"(\\d{2})"};
1491     case "s":
1492         return {g:1,
1493             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1494             s:"(\\d{2})"};
1495     case "O":
1496         return {g:1,
1497             c:[
1498                 "o = results[", currentGroup, "];\n",
1499                 "var sn = o.substring(0,1);\n", // get + / - sign
1500                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1501                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1502                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1503                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1504             ].join(""),
1505             s:"([+\-]\\d{2,4})"};
1506     
1507     
1508     case "P":
1509         return {g:1,
1510                 c:[
1511                    "o = results[", currentGroup, "];\n",
1512                    "var sn = o.substring(0,1);\n",
1513                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1514                    "var mn = o.substring(4,6) % 60;\n",
1515                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1516                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1517             ].join(""),
1518             s:"([+\-]\\d{4})"};
1519     case "T":
1520         return {g:0,
1521             c:null,
1522             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1523     case "Z":
1524         return {g:1,
1525             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1526                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1527             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1528     default:
1529         return {g:0,
1530             c:null,
1531             s:String.escape(character)};
1532     }
1533 };
1534
1535 /**
1536  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1537  * @return {String} The abbreviated timezone name (e.g. 'CST')
1538  */
1539 Date.prototype.getTimezone = function() {
1540     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1541 };
1542
1543 /**
1544  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1545  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1546  */
1547 Date.prototype.getGMTOffset = function() {
1548     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1549         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1550         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1551 };
1552
1553 /**
1554  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1555  * @return {String} 2-characters representing hours and 2-characters representing minutes
1556  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1557  */
1558 Date.prototype.getGMTColonOffset = function() {
1559         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1560                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1561                 + ":"
1562                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1563 }
1564
1565 /**
1566  * Get the numeric day number of the year, adjusted for leap year.
1567  * @return {Number} 0 through 364 (365 in leap years)
1568  */
1569 Date.prototype.getDayOfYear = function() {
1570     var num = 0;
1571     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1572     for (var i = 0; i < this.getMonth(); ++i) {
1573         num += Date.daysInMonth[i];
1574     }
1575     return num + this.getDate() - 1;
1576 };
1577
1578 /**
1579  * Get the string representation of the numeric week number of the year
1580  * (equivalent to the format specifier 'W').
1581  * @return {String} '00' through '52'
1582  */
1583 Date.prototype.getWeekOfYear = function() {
1584     // Skip to Thursday of this week
1585     var now = this.getDayOfYear() + (4 - this.getDay());
1586     // Find the first Thursday of the year
1587     var jan1 = new Date(this.getFullYear(), 0, 1);
1588     var then = (7 - jan1.getDay() + 4);
1589     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1590 };
1591
1592 /**
1593  * Whether or not the current date is in a leap year.
1594  * @return {Boolean} True if the current date is in a leap year, else false
1595  */
1596 Date.prototype.isLeapYear = function() {
1597     var year = this.getFullYear();
1598     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1599 };
1600
1601 /**
1602  * Get the first day of the current month, adjusted for leap year.  The returned value
1603  * is the numeric day index within the week (0-6) which can be used in conjunction with
1604  * the {@link #monthNames} array to retrieve the textual day name.
1605  * Example:
1606  *<pre><code>
1607 var dt = new Date('1/10/2007');
1608 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1609 </code></pre>
1610  * @return {Number} The day number (0-6)
1611  */
1612 Date.prototype.getFirstDayOfMonth = function() {
1613     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1614     return (day < 0) ? (day + 7) : day;
1615 };
1616
1617 /**
1618  * Get the last day of the current month, adjusted for leap year.  The returned value
1619  * is the numeric day index within the week (0-6) which can be used in conjunction with
1620  * the {@link #monthNames} array to retrieve the textual day name.
1621  * Example:
1622  *<pre><code>
1623 var dt = new Date('1/10/2007');
1624 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1625 </code></pre>
1626  * @return {Number} The day number (0-6)
1627  */
1628 Date.prototype.getLastDayOfMonth = function() {
1629     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1630     return (day < 0) ? (day + 7) : day;
1631 };
1632
1633
1634 /**
1635  * Get the first date of this date's month
1636  * @return {Date}
1637  */
1638 Date.prototype.getFirstDateOfMonth = function() {
1639     return new Date(this.getFullYear(), this.getMonth(), 1);
1640 };
1641
1642 /**
1643  * Get the last date of this date's month
1644  * @return {Date}
1645  */
1646 Date.prototype.getLastDateOfMonth = function() {
1647     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1648 };
1649 /**
1650  * Get the number of days in the current month, adjusted for leap year.
1651  * @return {Number} The number of days in the month
1652  */
1653 Date.prototype.getDaysInMonth = function() {
1654     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1655     return Date.daysInMonth[this.getMonth()];
1656 };
1657
1658 /**
1659  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1660  * @return {String} 'st, 'nd', 'rd' or 'th'
1661  */
1662 Date.prototype.getSuffix = function() {
1663     switch (this.getDate()) {
1664         case 1:
1665         case 21:
1666         case 31:
1667             return "st";
1668         case 2:
1669         case 22:
1670             return "nd";
1671         case 3:
1672         case 23:
1673             return "rd";
1674         default:
1675             return "th";
1676     }
1677 };
1678
1679 // private
1680 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1681
1682 /**
1683  * An array of textual month names.
1684  * Override these values for international dates, for example...
1685  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1686  * @type Array
1687  * @static
1688  */
1689 Date.monthNames =
1690    ["January",
1691     "February",
1692     "March",
1693     "April",
1694     "May",
1695     "June",
1696     "July",
1697     "August",
1698     "September",
1699     "October",
1700     "November",
1701     "December"];
1702
1703 /**
1704  * An array of textual day names.
1705  * Override these values for international dates, for example...
1706  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1707  * @type Array
1708  * @static
1709  */
1710 Date.dayNames =
1711    ["Sunday",
1712     "Monday",
1713     "Tuesday",
1714     "Wednesday",
1715     "Thursday",
1716     "Friday",
1717     "Saturday"];
1718
1719 // private
1720 Date.y2kYear = 50;
1721 // private
1722 Date.monthNumbers = {
1723     Jan:0,
1724     Feb:1,
1725     Mar:2,
1726     Apr:3,
1727     May:4,
1728     Jun:5,
1729     Jul:6,
1730     Aug:7,
1731     Sep:8,
1732     Oct:9,
1733     Nov:10,
1734     Dec:11};
1735
1736 /**
1737  * Creates and returns a new Date instance with the exact same date value as the called instance.
1738  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1739  * variable will also be changed.  When the intention is to create a new variable that will not
1740  * modify the original instance, you should create a clone.
1741  *
1742  * Example of correctly cloning a date:
1743  * <pre><code>
1744 //wrong way:
1745 var orig = new Date('10/1/2006');
1746 var copy = orig;
1747 copy.setDate(5);
1748 document.write(orig);  //returns 'Thu Oct 05 2006'!
1749
1750 //correct way:
1751 var orig = new Date('10/1/2006');
1752 var copy = orig.clone();
1753 copy.setDate(5);
1754 document.write(orig);  //returns 'Thu Oct 01 2006'
1755 </code></pre>
1756  * @return {Date} The new Date instance
1757  */
1758 Date.prototype.clone = function() {
1759         return new Date(this.getTime());
1760 };
1761
1762 /**
1763  * Clears any time information from this date
1764  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1765  @return {Date} this or the clone
1766  */
1767 Date.prototype.clearTime = function(clone){
1768     if(clone){
1769         return this.clone().clearTime();
1770     }
1771     this.setHours(0);
1772     this.setMinutes(0);
1773     this.setSeconds(0);
1774     this.setMilliseconds(0);
1775     return this;
1776 };
1777
1778 // private
1779 // safari setMonth is broken -- check that this is only donw once...
1780 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1781     Date.brokenSetMonth = Date.prototype.setMonth;
1782         Date.prototype.setMonth = function(num){
1783                 if(num <= -1){
1784                         var n = Math.ceil(-num);
1785                         var back_year = Math.ceil(n/12);
1786                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1787                         this.setFullYear(this.getFullYear() - back_year);
1788                         return Date.brokenSetMonth.call(this, month);
1789                 } else {
1790                         return Date.brokenSetMonth.apply(this, arguments);
1791                 }
1792         };
1793 }
1794
1795 /** Date interval constant 
1796 * @static 
1797 * @type String */
1798 Date.MILLI = "ms";
1799 /** Date interval constant 
1800 * @static 
1801 * @type String */
1802 Date.SECOND = "s";
1803 /** Date interval constant 
1804 * @static 
1805 * @type String */
1806 Date.MINUTE = "mi";
1807 /** Date interval constant 
1808 * @static 
1809 * @type String */
1810 Date.HOUR = "h";
1811 /** Date interval constant 
1812 * @static 
1813 * @type String */
1814 Date.DAY = "d";
1815 /** Date interval constant 
1816 * @static 
1817 * @type String */
1818 Date.MONTH = "mo";
1819 /** Date interval constant 
1820 * @static 
1821 * @type String */
1822 Date.YEAR = "y";
1823
1824 /**
1825  * Provides a convenient method of performing basic date arithmetic.  This method
1826  * does not modify the Date instance being called - it creates and returns
1827  * a new Date instance containing the resulting date value.
1828  *
1829  * Examples:
1830  * <pre><code>
1831 //Basic usage:
1832 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1833 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1834
1835 //Negative values will subtract correctly:
1836 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1837 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1838
1839 //You can even chain several calls together in one line!
1840 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1841 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1842  </code></pre>
1843  *
1844  * @param {String} interval   A valid date interval enum value
1845  * @param {Number} value      The amount to add to the current date
1846  * @return {Date} The new Date instance
1847  */
1848 Date.prototype.add = function(interval, value){
1849   var d = this.clone();
1850   if (!interval || value === 0) { return d; }
1851   switch(interval.toLowerCase()){
1852     case Date.MILLI:
1853       d.setMilliseconds(this.getMilliseconds() + value);
1854       break;
1855     case Date.SECOND:
1856       d.setSeconds(this.getSeconds() + value);
1857       break;
1858     case Date.MINUTE:
1859       d.setMinutes(this.getMinutes() + value);
1860       break;
1861     case Date.HOUR:
1862       d.setHours(this.getHours() + value);
1863       break;
1864     case Date.DAY:
1865       d.setDate(this.getDate() + value);
1866       break;
1867     case Date.MONTH:
1868       var day = this.getDate();
1869       if(day > 28){
1870           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1871       }
1872       d.setDate(day);
1873       d.setMonth(this.getMonth() + value);
1874       break;
1875     case Date.YEAR:
1876       d.setFullYear(this.getFullYear() + value);
1877       break;
1878   }
1879   return d;
1880 };
1881 /**
1882  * @class Roo.lib.Dom
1883  * @licence LGPL
1884  * @static
1885  * 
1886  * Dom utils (from YIU afaik)
1887  *
1888  * 
1889  **/
1890 Roo.lib.Dom = {
1891     /**
1892      * Get the view width
1893      * @param {Boolean} full True will get the full document, otherwise it's the view width
1894      * @return {Number} The width
1895      */
1896      
1897     getViewWidth : function(full) {
1898         return full ? this.getDocumentWidth() : this.getViewportWidth();
1899     },
1900     /**
1901      * Get the view height
1902      * @param {Boolean} full True will get the full document, otherwise it's the view height
1903      * @return {Number} The height
1904      */
1905     getViewHeight : function(full) {
1906         return full ? this.getDocumentHeight() : this.getViewportHeight();
1907     },
1908
1909     getDocumentHeight: function() {
1910         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1911         return Math.max(scrollHeight, this.getViewportHeight());
1912     },
1913
1914     getDocumentWidth: function() {
1915         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1916         return Math.max(scrollWidth, this.getViewportWidth());
1917     },
1918
1919     getViewportHeight: function() {
1920         var height = self.innerHeight;
1921         var mode = document.compatMode;
1922
1923         if ((mode || Roo.isIE) && !Roo.isOpera) {
1924             height = (mode == "CSS1Compat") ?
1925                      document.documentElement.clientHeight :
1926                      document.body.clientHeight;
1927         }
1928
1929         return height;
1930     },
1931
1932     getViewportWidth: function() {
1933         var width = self.innerWidth;
1934         var mode = document.compatMode;
1935
1936         if (mode || Roo.isIE) {
1937             width = (mode == "CSS1Compat") ?
1938                     document.documentElement.clientWidth :
1939                     document.body.clientWidth;
1940         }
1941         return width;
1942     },
1943
1944     isAncestor : function(p, c) {
1945         p = Roo.getDom(p);
1946         c = Roo.getDom(c);
1947         if (!p || !c) {
1948             return false;
1949         }
1950
1951         if (p.contains && !Roo.isSafari) {
1952             return p.contains(c);
1953         } else if (p.compareDocumentPosition) {
1954             return !!(p.compareDocumentPosition(c) & 16);
1955         } else {
1956             var parent = c.parentNode;
1957             while (parent) {
1958                 if (parent == p) {
1959                     return true;
1960                 }
1961                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1962                     return false;
1963                 }
1964                 parent = parent.parentNode;
1965             }
1966             return false;
1967         }
1968     },
1969
1970     getRegion : function(el) {
1971         return Roo.lib.Region.getRegion(el);
1972     },
1973
1974     getY : function(el) {
1975         return this.getXY(el)[1];
1976     },
1977
1978     getX : function(el) {
1979         return this.getXY(el)[0];
1980     },
1981
1982     getXY : function(el) {
1983         var p, pe, b, scroll, bd = document.body;
1984         el = Roo.getDom(el);
1985         var fly = Roo.lib.AnimBase.fly;
1986         if (el.getBoundingClientRect) {
1987             b = el.getBoundingClientRect();
1988             scroll = fly(document).getScroll();
1989             return [b.left + scroll.left, b.top + scroll.top];
1990         }
1991         var x = 0, y = 0;
1992
1993         p = el;
1994
1995         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1996
1997         while (p) {
1998
1999             x += p.offsetLeft;
2000             y += p.offsetTop;
2001
2002             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
2003                 hasAbsolute = true;
2004             }
2005
2006             if (Roo.isGecko) {
2007                 pe = fly(p);
2008
2009                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
2010                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
2011
2012
2013                 x += bl;
2014                 y += bt;
2015
2016
2017                 if (p != el && pe.getStyle('overflow') != 'visible') {
2018                     x += bl;
2019                     y += bt;
2020                 }
2021             }
2022             p = p.offsetParent;
2023         }
2024
2025         if (Roo.isSafari && hasAbsolute) {
2026             x -= bd.offsetLeft;
2027             y -= bd.offsetTop;
2028         }
2029
2030         if (Roo.isGecko && !hasAbsolute) {
2031             var dbd = fly(bd);
2032             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2033             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2034         }
2035
2036         p = el.parentNode;
2037         while (p && p != bd) {
2038             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2039                 x -= p.scrollLeft;
2040                 y -= p.scrollTop;
2041             }
2042             p = p.parentNode;
2043         }
2044         return [x, y];
2045     },
2046  
2047   
2048
2049
2050     setXY : function(el, xy) {
2051         el = Roo.fly(el, '_setXY');
2052         el.position();
2053         var pts = el.translatePoints(xy);
2054         if (xy[0] !== false) {
2055             el.dom.style.left = pts.left + "px";
2056         }
2057         if (xy[1] !== false) {
2058             el.dom.style.top = pts.top + "px";
2059         }
2060     },
2061
2062     setX : function(el, x) {
2063         this.setXY(el, [x, false]);
2064     },
2065
2066     setY : function(el, y) {
2067         this.setXY(el, [false, y]);
2068     }
2069 };
2070 /*
2071  * Portions of this file are based on pieces of Yahoo User Interface Library
2072  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2073  * YUI licensed under the BSD License:
2074  * http://developer.yahoo.net/yui/license.txt
2075  * <script type="text/javascript">
2076  *
2077  */
2078
2079 Roo.lib.Event = function() {
2080     var loadComplete = false;
2081     var listeners = [];
2082     var unloadListeners = [];
2083     var retryCount = 0;
2084     var onAvailStack = [];
2085     var counter = 0;
2086     var lastError = null;
2087
2088     return {
2089         POLL_RETRYS: 200,
2090         POLL_INTERVAL: 20,
2091         EL: 0,
2092         TYPE: 1,
2093         FN: 2,
2094         WFN: 3,
2095         OBJ: 3,
2096         ADJ_SCOPE: 4,
2097         _interval: null,
2098
2099         startInterval: function() {
2100             if (!this._interval) {
2101                 var self = this;
2102                 var callback = function() {
2103                     self._tryPreloadAttach();
2104                 };
2105                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2106
2107             }
2108         },
2109
2110         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2111             onAvailStack.push({ id:         p_id,
2112                 fn:         p_fn,
2113                 obj:        p_obj,
2114                 override:   p_override,
2115                 checkReady: false    });
2116
2117             retryCount = this.POLL_RETRYS;
2118             this.startInterval();
2119         },
2120
2121
2122         addListener: function(el, eventName, fn) {
2123             el = Roo.getDom(el);
2124             if (!el || !fn) {
2125                 return false;
2126             }
2127
2128             if ("unload" == eventName) {
2129                 unloadListeners[unloadListeners.length] =
2130                 [el, eventName, fn];
2131                 return true;
2132             }
2133
2134             var wrappedFn = function(e) {
2135                 return fn(Roo.lib.Event.getEvent(e));
2136             };
2137
2138             var li = [el, eventName, fn, wrappedFn];
2139
2140             var index = listeners.length;
2141             listeners[index] = li;
2142
2143             this.doAdd(el, eventName, wrappedFn, false);
2144             return true;
2145
2146         },
2147
2148
2149         removeListener: function(el, eventName, fn) {
2150             var i, len;
2151
2152             el = Roo.getDom(el);
2153
2154             if(!fn) {
2155                 return this.purgeElement(el, false, eventName);
2156             }
2157
2158
2159             if ("unload" == eventName) {
2160
2161                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2162                     var li = unloadListeners[i];
2163                     if (li &&
2164                         li[0] == el &&
2165                         li[1] == eventName &&
2166                         li[2] == fn) {
2167                         unloadListeners.splice(i, 1);
2168                         return true;
2169                     }
2170                 }
2171
2172                 return false;
2173             }
2174
2175             var cacheItem = null;
2176
2177
2178             var index = arguments[3];
2179
2180             if ("undefined" == typeof index) {
2181                 index = this._getCacheIndex(el, eventName, fn);
2182             }
2183
2184             if (index >= 0) {
2185                 cacheItem = listeners[index];
2186             }
2187
2188             if (!el || !cacheItem) {
2189                 return false;
2190             }
2191
2192             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2193
2194             delete listeners[index][this.WFN];
2195             delete listeners[index][this.FN];
2196             listeners.splice(index, 1);
2197
2198             return true;
2199
2200         },
2201
2202
2203         getTarget: function(ev, resolveTextNode) {
2204             ev = ev.browserEvent || ev;
2205             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2206             var t = ev.target || ev.srcElement;
2207             return this.resolveTextNode(t);
2208         },
2209
2210
2211         resolveTextNode: function(node) {
2212             if (Roo.isSafari && node && 3 == node.nodeType) {
2213                 return node.parentNode;
2214             } else {
2215                 return node;
2216             }
2217         },
2218
2219
2220         getPageX: function(ev) {
2221             ev = ev.browserEvent || ev;
2222             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2223             var x = ev.pageX;
2224             if (!x && 0 !== x) {
2225                 x = ev.clientX || 0;
2226
2227                 if (Roo.isIE) {
2228                     x += this.getScroll()[1];
2229                 }
2230             }
2231
2232             return x;
2233         },
2234
2235
2236         getPageY: function(ev) {
2237             ev = ev.browserEvent || ev;
2238             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2239             var y = ev.pageY;
2240             if (!y && 0 !== y) {
2241                 y = ev.clientY || 0;
2242
2243                 if (Roo.isIE) {
2244                     y += this.getScroll()[0];
2245                 }
2246             }
2247
2248
2249             return y;
2250         },
2251
2252
2253         getXY: function(ev) {
2254             ev = ev.browserEvent || ev;
2255             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2256             return [this.getPageX(ev), this.getPageY(ev)];
2257         },
2258
2259
2260         getRelatedTarget: function(ev) {
2261             ev = ev.browserEvent || ev;
2262             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2263             var t = ev.relatedTarget;
2264             if (!t) {
2265                 if (ev.type == "mouseout") {
2266                     t = ev.toElement;
2267                 } else if (ev.type == "mouseover") {
2268                     t = ev.fromElement;
2269                 }
2270             }
2271
2272             return this.resolveTextNode(t);
2273         },
2274
2275
2276         getTime: function(ev) {
2277             ev = ev.browserEvent || ev;
2278             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2279             if (!ev.time) {
2280                 var t = new Date().getTime();
2281                 try {
2282                     ev.time = t;
2283                 } catch(ex) {
2284                     this.lastError = ex;
2285                     return t;
2286                 }
2287             }
2288
2289             return ev.time;
2290         },
2291
2292
2293         stopEvent: function(ev) {
2294             this.stopPropagation(ev);
2295             this.preventDefault(ev);
2296         },
2297
2298
2299         stopPropagation: function(ev) {
2300             ev = ev.browserEvent || ev;
2301             if (ev.stopPropagation) {
2302                 ev.stopPropagation();
2303             } else {
2304                 ev.cancelBubble = true;
2305             }
2306         },
2307
2308
2309         preventDefault: function(ev) {
2310             ev = ev.browserEvent || ev;
2311             if(ev.preventDefault) {
2312                 ev.preventDefault();
2313             } else {
2314                 ev.returnValue = false;
2315             }
2316         },
2317
2318
2319         getEvent: function(e) {
2320             var ev = e || window.event;
2321             if (!ev) {
2322                 var c = this.getEvent.caller;
2323                 while (c) {
2324                     ev = c.arguments[0];
2325                     if (ev && Event == ev.constructor) {
2326                         break;
2327                     }
2328                     c = c.caller;
2329                 }
2330             }
2331             return ev;
2332         },
2333
2334
2335         getCharCode: function(ev) {
2336             ev = ev.browserEvent || ev;
2337             return ev.charCode || ev.keyCode || 0;
2338         },
2339
2340
2341         _getCacheIndex: function(el, eventName, fn) {
2342             for (var i = 0,len = listeners.length; i < len; ++i) {
2343                 var li = listeners[i];
2344                 if (li &&
2345                     li[this.FN] == fn &&
2346                     li[this.EL] == el &&
2347                     li[this.TYPE] == eventName) {
2348                     return i;
2349                 }
2350             }
2351
2352             return -1;
2353         },
2354
2355
2356         elCache: {},
2357
2358
2359         getEl: function(id) {
2360             return document.getElementById(id);
2361         },
2362
2363
2364         clearCache: function() {
2365         },
2366
2367
2368         _load: function(e) {
2369             loadComplete = true;
2370             var EU = Roo.lib.Event;
2371
2372
2373             if (Roo.isIE) {
2374                 EU.doRemove(window, "load", EU._load);
2375             }
2376         },
2377
2378
2379         _tryPreloadAttach: function() {
2380
2381             if (this.locked) {
2382                 return false;
2383             }
2384
2385             this.locked = true;
2386
2387
2388             var tryAgain = !loadComplete;
2389             if (!tryAgain) {
2390                 tryAgain = (retryCount > 0);
2391             }
2392
2393
2394             var notAvail = [];
2395             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2396                 var item = onAvailStack[i];
2397                 if (item) {
2398                     var el = this.getEl(item.id);
2399
2400                     if (el) {
2401                         if (!item.checkReady ||
2402                             loadComplete ||
2403                             el.nextSibling ||
2404                             (document && document.body)) {
2405
2406                             var scope = el;
2407                             if (item.override) {
2408                                 if (item.override === true) {
2409                                     scope = item.obj;
2410                                 } else {
2411                                     scope = item.override;
2412                                 }
2413                             }
2414                             item.fn.call(scope, item.obj);
2415                             onAvailStack[i] = null;
2416                         }
2417                     } else {
2418                         notAvail.push(item);
2419                     }
2420                 }
2421             }
2422
2423             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2424
2425             if (tryAgain) {
2426
2427                 this.startInterval();
2428             } else {
2429                 clearInterval(this._interval);
2430                 this._interval = null;
2431             }
2432
2433             this.locked = false;
2434
2435             return true;
2436
2437         },
2438
2439
2440         purgeElement: function(el, recurse, eventName) {
2441             var elListeners = this.getListeners(el, eventName);
2442             if (elListeners) {
2443                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2444                     var l = elListeners[i];
2445                     this.removeListener(el, l.type, l.fn);
2446                 }
2447             }
2448
2449             if (recurse && el && el.childNodes) {
2450                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2451                     this.purgeElement(el.childNodes[i], recurse, eventName);
2452                 }
2453             }
2454         },
2455
2456
2457         getListeners: function(el, eventName) {
2458             var results = [], searchLists;
2459             if (!eventName) {
2460                 searchLists = [listeners, unloadListeners];
2461             } else if (eventName == "unload") {
2462                 searchLists = [unloadListeners];
2463             } else {
2464                 searchLists = [listeners];
2465             }
2466
2467             for (var j = 0; j < searchLists.length; ++j) {
2468                 var searchList = searchLists[j];
2469                 if (searchList && searchList.length > 0) {
2470                     for (var i = 0,len = searchList.length; i < len; ++i) {
2471                         var l = searchList[i];
2472                         if (l && l[this.EL] === el &&
2473                             (!eventName || eventName === l[this.TYPE])) {
2474                             results.push({
2475                                 type:   l[this.TYPE],
2476                                 fn:     l[this.FN],
2477                                 obj:    l[this.OBJ],
2478                                 adjust: l[this.ADJ_SCOPE],
2479                                 index:  i
2480                             });
2481                         }
2482                     }
2483                 }
2484             }
2485
2486             return (results.length) ? results : null;
2487         },
2488
2489
2490         _unload: function(e) {
2491
2492             var EU = Roo.lib.Event, i, j, l, len, index;
2493
2494             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2495                 l = unloadListeners[i];
2496                 if (l) {
2497                     var scope = window;
2498                     if (l[EU.ADJ_SCOPE]) {
2499                         if (l[EU.ADJ_SCOPE] === true) {
2500                             scope = l[EU.OBJ];
2501                         } else {
2502                             scope = l[EU.ADJ_SCOPE];
2503                         }
2504                     }
2505                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2506                     unloadListeners[i] = null;
2507                     l = null;
2508                     scope = null;
2509                 }
2510             }
2511
2512             unloadListeners = null;
2513
2514             if (listeners && listeners.length > 0) {
2515                 j = listeners.length;
2516                 while (j) {
2517                     index = j - 1;
2518                     l = listeners[index];
2519                     if (l) {
2520                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2521                                 l[EU.FN], index);
2522                     }
2523                     j = j - 1;
2524                 }
2525                 l = null;
2526
2527                 EU.clearCache();
2528             }
2529
2530             EU.doRemove(window, "unload", EU._unload);
2531
2532         },
2533
2534
2535         getScroll: function() {
2536             var dd = document.documentElement, db = document.body;
2537             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2538                 return [dd.scrollTop, dd.scrollLeft];
2539             } else if (db) {
2540                 return [db.scrollTop, db.scrollLeft];
2541             } else {
2542                 return [0, 0];
2543             }
2544         },
2545
2546
2547         doAdd: function () {
2548             if (window.addEventListener) {
2549                 return function(el, eventName, fn, capture) {
2550                     el.addEventListener(eventName, fn, (capture));
2551                 };
2552             } else if (window.attachEvent) {
2553                 return function(el, eventName, fn, capture) {
2554                     el.attachEvent("on" + eventName, fn);
2555                 };
2556             } else {
2557                 return function() {
2558                 };
2559             }
2560         }(),
2561
2562
2563         doRemove: function() {
2564             if (window.removeEventListener) {
2565                 return function (el, eventName, fn, capture) {
2566                     el.removeEventListener(eventName, fn, (capture));
2567                 };
2568             } else if (window.detachEvent) {
2569                 return function (el, eventName, fn) {
2570                     el.detachEvent("on" + eventName, fn);
2571                 };
2572             } else {
2573                 return function() {
2574                 };
2575             }
2576         }()
2577     };
2578     
2579 }();
2580 (function() {     
2581    
2582     var E = Roo.lib.Event;
2583     E.on = E.addListener;
2584     E.un = E.removeListener;
2585
2586     if (document && document.body) {
2587         E._load();
2588     } else {
2589         E.doAdd(window, "load", E._load);
2590     }
2591     E.doAdd(window, "unload", E._unload);
2592     E._tryPreloadAttach();
2593 })();
2594
2595 /*
2596  * Portions of this file are based on pieces of Yahoo User Interface Library
2597  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2598  * YUI licensed under the BSD License:
2599  * http://developer.yahoo.net/yui/license.txt
2600  * <script type="text/javascript">
2601  *
2602  */
2603
2604 (function() {
2605     /**
2606      * @class Roo.lib.Ajax
2607      *
2608      */
2609     Roo.lib.Ajax = {
2610         /**
2611          * @static 
2612          */
2613         request : function(method, uri, cb, data, options) {
2614             if(options){
2615                 var hs = options.headers;
2616                 if(hs){
2617                     for(var h in hs){
2618                         if(hs.hasOwnProperty(h)){
2619                             this.initHeader(h, hs[h], false);
2620                         }
2621                     }
2622                 }
2623                 if(options.xmlData){
2624                     this.initHeader('Content-Type', 'text/xml', false);
2625                     method = 'POST';
2626                     data = options.xmlData;
2627                 }
2628             }
2629
2630             return this.asyncRequest(method, uri, cb, data);
2631         },
2632
2633         serializeForm : function(form) {
2634             if(typeof form == 'string') {
2635                 form = (document.getElementById(form) || document.forms[form]);
2636             }
2637
2638             var el, name, val, disabled, data = '', hasSubmit = false;
2639             for (var i = 0; i < form.elements.length; i++) {
2640                 el = form.elements[i];
2641                 disabled = form.elements[i].disabled;
2642                 name = form.elements[i].name;
2643                 val = form.elements[i].value;
2644
2645                 if (!disabled && name){
2646                     switch (el.type)
2647                             {
2648                         case 'select-one':
2649                         case 'select-multiple':
2650                             for (var j = 0; j < el.options.length; j++) {
2651                                 if (el.options[j].selected) {
2652                                     if (Roo.isIE) {
2653                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2654                                     }
2655                                     else {
2656                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2657                                     }
2658                                 }
2659                             }
2660                             break;
2661                         case 'radio':
2662                         case 'checkbox':
2663                             if (el.checked) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                             }
2666                             break;
2667                         case 'file':
2668
2669                         case undefined:
2670
2671                         case 'reset':
2672
2673                         case 'button':
2674
2675                             break;
2676                         case 'submit':
2677                             if(hasSubmit == false) {
2678                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2679                                 hasSubmit = true;
2680                             }
2681                             break;
2682                         default:
2683                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2684                             break;
2685                     }
2686                 }
2687             }
2688             data = data.substr(0, data.length - 1);
2689             return data;
2690         },
2691
2692         headers:{},
2693
2694         hasHeaders:false,
2695
2696         useDefaultHeader:true,
2697
2698         defaultPostHeader:'application/x-www-form-urlencoded',
2699
2700         useDefaultXhrHeader:true,
2701
2702         defaultXhrHeader:'XMLHttpRequest',
2703
2704         hasDefaultHeaders:true,
2705
2706         defaultHeaders:{},
2707
2708         poll:{},
2709
2710         timeout:{},
2711
2712         pollInterval:50,
2713
2714         transactionId:0,
2715
2716         setProgId:function(id)
2717         {
2718             this.activeX.unshift(id);
2719         },
2720
2721         setDefaultPostHeader:function(b)
2722         {
2723             this.useDefaultHeader = b;
2724         },
2725
2726         setDefaultXhrHeader:function(b)
2727         {
2728             this.useDefaultXhrHeader = b;
2729         },
2730
2731         setPollingInterval:function(i)
2732         {
2733             if (typeof i == 'number' && isFinite(i)) {
2734                 this.pollInterval = i;
2735             }
2736         },
2737
2738         createXhrObject:function(transactionId)
2739         {
2740             var obj,http;
2741             try
2742             {
2743
2744                 http = new XMLHttpRequest();
2745
2746                 obj = { conn:http, tId:transactionId };
2747             }
2748             catch(e)
2749             {
2750                 for (var i = 0; i < this.activeX.length; ++i) {
2751                     try
2752                     {
2753
2754                         http = new ActiveXObject(this.activeX[i]);
2755
2756                         obj = { conn:http, tId:transactionId };
2757                         break;
2758                     }
2759                     catch(e) {
2760                     }
2761                 }
2762             }
2763             finally
2764             {
2765                 return obj;
2766             }
2767         },
2768
2769         getConnectionObject:function()
2770         {
2771             var o;
2772             var tId = this.transactionId;
2773
2774             try
2775             {
2776                 o = this.createXhrObject(tId);
2777                 if (o) {
2778                     this.transactionId++;
2779                 }
2780             }
2781             catch(e) {
2782             }
2783             finally
2784             {
2785                 return o;
2786             }
2787         },
2788
2789         asyncRequest:function(method, uri, callback, postData)
2790         {
2791             var o = this.getConnectionObject();
2792
2793             if (!o) {
2794                 return null;
2795             }
2796             else {
2797                 o.conn.open(method, uri, true);
2798
2799                 if (this.useDefaultXhrHeader) {
2800                     if (!this.defaultHeaders['X-Requested-With']) {
2801                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2802                     }
2803                 }
2804
2805                 if(postData && this.useDefaultHeader){
2806                     this.initHeader('Content-Type', this.defaultPostHeader);
2807                 }
2808
2809                  if (this.hasDefaultHeaders || this.hasHeaders) {
2810                     this.setHeader(o);
2811                 }
2812
2813                 this.handleReadyState(o, callback);
2814                 o.conn.send(postData || null);
2815
2816                 return o;
2817             }
2818         },
2819
2820         handleReadyState:function(o, callback)
2821         {
2822             var oConn = this;
2823
2824             if (callback && callback.timeout) {
2825                 
2826                 this.timeout[o.tId] = window.setTimeout(function() {
2827                     oConn.abort(o, callback, true);
2828                 }, callback.timeout);
2829             }
2830
2831             this.poll[o.tId] = window.setInterval(
2832                     function() {
2833                         if (o.conn && o.conn.readyState == 4) {
2834                             window.clearInterval(oConn.poll[o.tId]);
2835                             delete oConn.poll[o.tId];
2836
2837                             if(callback && callback.timeout) {
2838                                 window.clearTimeout(oConn.timeout[o.tId]);
2839                                 delete oConn.timeout[o.tId];
2840                             }
2841
2842                             oConn.handleTransactionResponse(o, callback);
2843                         }
2844                     }
2845                     , this.pollInterval);
2846         },
2847
2848         handleTransactionResponse:function(o, callback, isAbort)
2849         {
2850
2851             if (!callback) {
2852                 this.releaseObject(o);
2853                 return;
2854             }
2855
2856             var httpStatus, responseObject;
2857
2858             try
2859             {
2860                 if (o.conn.status !== undefined && o.conn.status != 0) {
2861                     httpStatus = o.conn.status;
2862                 }
2863                 else {
2864                     httpStatus = 13030;
2865                 }
2866             }
2867             catch(e) {
2868
2869
2870                 httpStatus = 13030;
2871             }
2872
2873             if (httpStatus >= 200 && httpStatus < 300) {
2874                 responseObject = this.createResponseObject(o, callback.argument);
2875                 if (callback.success) {
2876                     if (!callback.scope) {
2877                         callback.success(responseObject);
2878                     }
2879                     else {
2880
2881
2882                         callback.success.apply(callback.scope, [responseObject]);
2883                     }
2884                 }
2885             }
2886             else {
2887                 switch (httpStatus) {
2888
2889                     case 12002:
2890                     case 12029:
2891                     case 12030:
2892                     case 12031:
2893                     case 12152:
2894                     case 13030:
2895                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2896                         if (callback.failure) {
2897                             if (!callback.scope) {
2898                                 callback.failure(responseObject);
2899                             }
2900                             else {
2901                                 callback.failure.apply(callback.scope, [responseObject]);
2902                             }
2903                         }
2904                         break;
2905                     default:
2906                         responseObject = this.createResponseObject(o, callback.argument);
2907                         if (callback.failure) {
2908                             if (!callback.scope) {
2909                                 callback.failure(responseObject);
2910                             }
2911                             else {
2912                                 callback.failure.apply(callback.scope, [responseObject]);
2913                             }
2914                         }
2915                 }
2916             }
2917
2918             this.releaseObject(o);
2919             responseObject = null;
2920         },
2921
2922         createResponseObject:function(o, callbackArg)
2923         {
2924             var obj = {};
2925             var headerObj = {};
2926
2927             try
2928             {
2929                 var headerStr = o.conn.getAllResponseHeaders();
2930                 var header = headerStr.split('\n');
2931                 for (var i = 0; i < header.length; i++) {
2932                     var delimitPos = header[i].indexOf(':');
2933                     if (delimitPos != -1) {
2934                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2935                     }
2936                 }
2937             }
2938             catch(e) {
2939             }
2940
2941             obj.tId = o.tId;
2942             obj.status = o.conn.status;
2943             obj.statusText = o.conn.statusText;
2944             obj.getResponseHeader = headerObj;
2945             obj.getAllResponseHeaders = headerStr;
2946             obj.responseText = o.conn.responseText;
2947             obj.responseXML = o.conn.responseXML;
2948
2949             if (typeof callbackArg !== undefined) {
2950                 obj.argument = callbackArg;
2951             }
2952
2953             return obj;
2954         },
2955
2956         createExceptionObject:function(tId, callbackArg, isAbort)
2957         {
2958             var COMM_CODE = 0;
2959             var COMM_ERROR = 'communication failure';
2960             var ABORT_CODE = -1;
2961             var ABORT_ERROR = 'transaction aborted';
2962
2963             var obj = {};
2964
2965             obj.tId = tId;
2966             if (isAbort) {
2967                 obj.status = ABORT_CODE;
2968                 obj.statusText = ABORT_ERROR;
2969             }
2970             else {
2971                 obj.status = COMM_CODE;
2972                 obj.statusText = COMM_ERROR;
2973             }
2974
2975             if (callbackArg) {
2976                 obj.argument = callbackArg;
2977             }
2978
2979             return obj;
2980         },
2981
2982         initHeader:function(label, value, isDefault)
2983         {
2984             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2985
2986             if (headerObj[label] === undefined) {
2987                 headerObj[label] = value;
2988             }
2989             else {
2990
2991
2992                 headerObj[label] = value + "," + headerObj[label];
2993             }
2994
2995             if (isDefault) {
2996                 this.hasDefaultHeaders = true;
2997             }
2998             else {
2999                 this.hasHeaders = true;
3000             }
3001         },
3002
3003
3004         setHeader:function(o)
3005         {
3006             if (this.hasDefaultHeaders) {
3007                 for (var prop in this.defaultHeaders) {
3008                     if (this.defaultHeaders.hasOwnProperty(prop)) {
3009                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
3010                     }
3011                 }
3012             }
3013
3014             if (this.hasHeaders) {
3015                 for (var prop in this.headers) {
3016                     if (this.headers.hasOwnProperty(prop)) {
3017                         o.conn.setRequestHeader(prop, this.headers[prop]);
3018                     }
3019                 }
3020                 this.headers = {};
3021                 this.hasHeaders = false;
3022             }
3023         },
3024
3025         resetDefaultHeaders:function() {
3026             delete this.defaultHeaders;
3027             this.defaultHeaders = {};
3028             this.hasDefaultHeaders = false;
3029         },
3030
3031         abort:function(o, callback, isTimeout)
3032         {
3033             if(this.isCallInProgress(o)) {
3034                 o.conn.abort();
3035                 window.clearInterval(this.poll[o.tId]);
3036                 delete this.poll[o.tId];
3037                 if (isTimeout) {
3038                     delete this.timeout[o.tId];
3039                 }
3040
3041                 this.handleTransactionResponse(o, callback, true);
3042
3043                 return true;
3044             }
3045             else {
3046                 return false;
3047             }
3048         },
3049
3050
3051         isCallInProgress:function(o)
3052         {
3053             if (o && o.conn) {
3054                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3055             }
3056             else {
3057
3058                 return false;
3059             }
3060         },
3061
3062
3063         releaseObject:function(o)
3064         {
3065
3066             o.conn = null;
3067
3068             o = null;
3069         },
3070
3071         activeX:[
3072         'MSXML2.XMLHTTP.3.0',
3073         'MSXML2.XMLHTTP',
3074         'Microsoft.XMLHTTP'
3075         ]
3076
3077
3078     };
3079 })();/*
3080  * Portions of this file are based on pieces of Yahoo User Interface Library
3081  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3082  * YUI licensed under the BSD License:
3083  * http://developer.yahoo.net/yui/license.txt
3084  * <script type="text/javascript">
3085  *
3086  */
3087
3088 Roo.lib.Region = function(t, r, b, l) {
3089     this.top = t;
3090     this[1] = t;
3091     this.right = r;
3092     this.bottom = b;
3093     this.left = l;
3094     this[0] = l;
3095 };
3096
3097
3098 Roo.lib.Region.prototype = {
3099     contains : function(region) {
3100         return ( region.left >= this.left &&
3101                  region.right <= this.right &&
3102                  region.top >= this.top &&
3103                  region.bottom <= this.bottom    );
3104
3105     },
3106
3107     getArea : function() {
3108         return ( (this.bottom - this.top) * (this.right - this.left) );
3109     },
3110
3111     intersect : function(region) {
3112         var t = Math.max(this.top, region.top);
3113         var r = Math.min(this.right, region.right);
3114         var b = Math.min(this.bottom, region.bottom);
3115         var l = Math.max(this.left, region.left);
3116
3117         if (b >= t && r >= l) {
3118             return new Roo.lib.Region(t, r, b, l);
3119         } else {
3120             return null;
3121         }
3122     },
3123     union : function(region) {
3124         var t = Math.min(this.top, region.top);
3125         var r = Math.max(this.right, region.right);
3126         var b = Math.max(this.bottom, region.bottom);
3127         var l = Math.min(this.left, region.left);
3128
3129         return new Roo.lib.Region(t, r, b, l);
3130     },
3131
3132     adjust : function(t, l, b, r) {
3133         this.top += t;
3134         this.left += l;
3135         this.right += r;
3136         this.bottom += b;
3137         return this;
3138     }
3139 };
3140
3141 Roo.lib.Region.getRegion = function(el) {
3142     var p = Roo.lib.Dom.getXY(el);
3143
3144     var t = p[1];
3145     var r = p[0] + el.offsetWidth;
3146     var b = p[1] + el.offsetHeight;
3147     var l = p[0];
3148
3149     return new Roo.lib.Region(t, r, b, l);
3150 };
3151 /*
3152  * Portions of this file are based on pieces of Yahoo User Interface Library
3153  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3154  * YUI licensed under the BSD License:
3155  * http://developer.yahoo.net/yui/license.txt
3156  * <script type="text/javascript">
3157  *
3158  */
3159 //@@dep Roo.lib.Region
3160
3161
3162 Roo.lib.Point = function(x, y) {
3163     if (x instanceof Array) {
3164         y = x[1];
3165         x = x[0];
3166     }
3167     this.x = this.right = this.left = this[0] = x;
3168     this.y = this.top = this.bottom = this[1] = y;
3169 };
3170
3171 Roo.lib.Point.prototype = new Roo.lib.Region();
3172 /*
3173  * Portions of this file are based on pieces of Yahoo User Interface Library
3174  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3175  * YUI licensed under the BSD License:
3176  * http://developer.yahoo.net/yui/license.txt
3177  * <script type="text/javascript">
3178  *
3179  */
3180  
3181 (function() {   
3182
3183     Roo.lib.Anim = {
3184         scroll : function(el, args, duration, easing, cb, scope) {
3185             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3186         },
3187
3188         motion : function(el, args, duration, easing, cb, scope) {
3189             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3190         },
3191
3192         color : function(el, args, duration, easing, cb, scope) {
3193             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3194         },
3195
3196         run : function(el, args, duration, easing, cb, scope, type) {
3197             type = type || Roo.lib.AnimBase;
3198             if (typeof easing == "string") {
3199                 easing = Roo.lib.Easing[easing];
3200             }
3201             var anim = new type(el, args, duration, easing);
3202             anim.animateX(function() {
3203                 Roo.callback(cb, scope);
3204             });
3205             return anim;
3206         }
3207     };
3208 })();/*
3209  * Portions of this file are based on pieces of Yahoo User Interface Library
3210  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3211  * YUI licensed under the BSD License:
3212  * http://developer.yahoo.net/yui/license.txt
3213  * <script type="text/javascript">
3214  *
3215  */
3216
3217 (function() {    
3218     var libFlyweight;
3219     
3220     function fly(el) {
3221         if (!libFlyweight) {
3222             libFlyweight = new Roo.Element.Flyweight();
3223         }
3224         libFlyweight.dom = el;
3225         return libFlyweight;
3226     }
3227
3228     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3229     
3230    
3231     
3232     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3233         if (el) {
3234             this.init(el, attributes, duration, method);
3235         }
3236     };
3237
3238     Roo.lib.AnimBase.fly = fly;
3239     
3240     
3241     
3242     Roo.lib.AnimBase.prototype = {
3243
3244         toString: function() {
3245             var el = this.getEl();
3246             var id = el.id || el.tagName;
3247             return ("Anim " + id);
3248         },
3249
3250         patterns: {
3251             noNegatives:        /width|height|opacity|padding/i,
3252             offsetAttribute:  /^((width|height)|(top|left))$/,
3253             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3254             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3255         },
3256
3257
3258         doMethod: function(attr, start, end) {
3259             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3260         },
3261
3262
3263         setAttribute: function(attr, val, unit) {
3264             if (this.patterns.noNegatives.test(attr)) {
3265                 val = (val > 0) ? val : 0;
3266             }
3267
3268             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3269         },
3270
3271
3272         getAttribute: function(attr) {
3273             var el = this.getEl();
3274             var val = fly(el).getStyle(attr);
3275
3276             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3277                 return parseFloat(val);
3278             }
3279
3280             var a = this.patterns.offsetAttribute.exec(attr) || [];
3281             var pos = !!( a[3] );
3282             var box = !!( a[2] );
3283
3284
3285             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3286                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3287             } else {
3288                 val = 0;
3289             }
3290
3291             return val;
3292         },
3293
3294
3295         getDefaultUnit: function(attr) {
3296             if (this.patterns.defaultUnit.test(attr)) {
3297                 return 'px';
3298             }
3299
3300             return '';
3301         },
3302
3303         animateX : function(callback, scope) {
3304             var f = function() {
3305                 this.onComplete.removeListener(f);
3306                 if (typeof callback == "function") {
3307                     callback.call(scope || this, this);
3308                 }
3309             };
3310             this.onComplete.addListener(f, this);
3311             this.animate();
3312         },
3313
3314
3315         setRuntimeAttribute: function(attr) {
3316             var start;
3317             var end;
3318             var attributes = this.attributes;
3319
3320             this.runtimeAttributes[attr] = {};
3321
3322             var isset = function(prop) {
3323                 return (typeof prop !== 'undefined');
3324             };
3325
3326             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3327                 return false;
3328             }
3329
3330             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3331
3332
3333             if (isset(attributes[attr]['to'])) {
3334                 end = attributes[attr]['to'];
3335             } else if (isset(attributes[attr]['by'])) {
3336                 if (start.constructor == Array) {
3337                     end = [];
3338                     for (var i = 0, len = start.length; i < len; ++i) {
3339                         end[i] = start[i] + attributes[attr]['by'][i];
3340                     }
3341                 } else {
3342                     end = start + attributes[attr]['by'];
3343                 }
3344             }
3345
3346             this.runtimeAttributes[attr].start = start;
3347             this.runtimeAttributes[attr].end = end;
3348
3349
3350             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3351         },
3352
3353
3354         init: function(el, attributes, duration, method) {
3355
3356             var isAnimated = false;
3357
3358
3359             var startTime = null;
3360
3361
3362             var actualFrames = 0;
3363
3364
3365             el = Roo.getDom(el);
3366
3367
3368             this.attributes = attributes || {};
3369
3370
3371             this.duration = duration || 1;
3372
3373
3374             this.method = method || Roo.lib.Easing.easeNone;
3375
3376
3377             this.useSeconds = true;
3378
3379
3380             this.currentFrame = 0;
3381
3382
3383             this.totalFrames = Roo.lib.AnimMgr.fps;
3384
3385
3386             this.getEl = function() {
3387                 return el;
3388             };
3389
3390
3391             this.isAnimated = function() {
3392                 return isAnimated;
3393             };
3394
3395
3396             this.getStartTime = function() {
3397                 return startTime;
3398             };
3399
3400             this.runtimeAttributes = {};
3401
3402
3403             this.animate = function() {
3404                 if (this.isAnimated()) {
3405                     return false;
3406                 }
3407
3408                 this.currentFrame = 0;
3409
3410                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3411
3412                 Roo.lib.AnimMgr.registerElement(this);
3413             };
3414
3415
3416             this.stop = function(finish) {
3417                 if (finish) {
3418                     this.currentFrame = this.totalFrames;
3419                     this._onTween.fire();
3420                 }
3421                 Roo.lib.AnimMgr.stop(this);
3422             };
3423
3424             var onStart = function() {
3425                 this.onStart.fire();
3426
3427                 this.runtimeAttributes = {};
3428                 for (var attr in this.attributes) {
3429                     this.setRuntimeAttribute(attr);
3430                 }
3431
3432                 isAnimated = true;
3433                 actualFrames = 0;
3434                 startTime = new Date();
3435             };
3436
3437
3438             var onTween = function() {
3439                 var data = {
3440                     duration: new Date() - this.getStartTime(),
3441                     currentFrame: this.currentFrame
3442                 };
3443
3444                 data.toString = function() {
3445                     return (
3446                             'duration: ' + data.duration +
3447                             ', currentFrame: ' + data.currentFrame
3448                             );
3449                 };
3450
3451                 this.onTween.fire(data);
3452
3453                 var runtimeAttributes = this.runtimeAttributes;
3454
3455                 for (var attr in runtimeAttributes) {
3456                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3457                 }
3458
3459                 actualFrames += 1;
3460             };
3461
3462             var onComplete = function() {
3463                 var actual_duration = (new Date() - startTime) / 1000 ;
3464
3465                 var data = {
3466                     duration: actual_duration,
3467                     frames: actualFrames,
3468                     fps: actualFrames / actual_duration
3469                 };
3470
3471                 data.toString = function() {
3472                     return (
3473                             'duration: ' + data.duration +
3474                             ', frames: ' + data.frames +
3475                             ', fps: ' + data.fps
3476                             );
3477                 };
3478
3479                 isAnimated = false;
3480                 actualFrames = 0;
3481                 this.onComplete.fire(data);
3482             };
3483
3484
3485             this._onStart = new Roo.util.Event(this);
3486             this.onStart = new Roo.util.Event(this);
3487             this.onTween = new Roo.util.Event(this);
3488             this._onTween = new Roo.util.Event(this);
3489             this.onComplete = new Roo.util.Event(this);
3490             this._onComplete = new Roo.util.Event(this);
3491             this._onStart.addListener(onStart);
3492             this._onTween.addListener(onTween);
3493             this._onComplete.addListener(onComplete);
3494         }
3495     };
3496 })();
3497 /*
3498  * Portions of this file are based on pieces of Yahoo User Interface Library
3499  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3500  * YUI licensed under the BSD License:
3501  * http://developer.yahoo.net/yui/license.txt
3502  * <script type="text/javascript">
3503  *
3504  */
3505
3506 Roo.lib.AnimMgr = new function() {
3507
3508     var thread = null;
3509
3510
3511     var queue = [];
3512
3513
3514     var tweenCount = 0;
3515
3516
3517     this.fps = 1000;
3518
3519
3520     this.delay = 1;
3521
3522
3523     this.registerElement = function(tween) {
3524         queue[queue.length] = tween;
3525         tweenCount += 1;
3526         tween._onStart.fire();
3527         this.start();
3528     };
3529
3530
3531     this.unRegister = function(tween, index) {
3532         tween._onComplete.fire();
3533         index = index || getIndex(tween);
3534         if (index != -1) {
3535             queue.splice(index, 1);
3536         }
3537
3538         tweenCount -= 1;
3539         if (tweenCount <= 0) {
3540             this.stop();
3541         }
3542     };
3543
3544
3545     this.start = function() {
3546         if (thread === null) {
3547             thread = setInterval(this.run, this.delay);
3548         }
3549     };
3550
3551
3552     this.stop = function(tween) {
3553         if (!tween) {
3554             clearInterval(thread);
3555
3556             for (var i = 0, len = queue.length; i < len; ++i) {
3557                 if (queue[0].isAnimated()) {
3558                     this.unRegister(queue[0], 0);
3559                 }
3560             }
3561
3562             queue = [];
3563             thread = null;
3564             tweenCount = 0;
3565         }
3566         else {
3567             this.unRegister(tween);
3568         }
3569     };
3570
3571
3572     this.run = function() {
3573         for (var i = 0, len = queue.length; i < len; ++i) {
3574             var tween = queue[i];
3575             if (!tween || !tween.isAnimated()) {
3576                 continue;
3577             }
3578
3579             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3580             {
3581                 tween.currentFrame += 1;
3582
3583                 if (tween.useSeconds) {
3584                     correctFrame(tween);
3585                 }
3586                 tween._onTween.fire();
3587             }
3588             else {
3589                 Roo.lib.AnimMgr.stop(tween, i);
3590             }
3591         }
3592     };
3593
3594     var getIndex = function(anim) {
3595         for (var i = 0, len = queue.length; i < len; ++i) {
3596             if (queue[i] == anim) {
3597                 return i;
3598             }
3599         }
3600         return -1;
3601     };
3602
3603
3604     var correctFrame = function(tween) {
3605         var frames = tween.totalFrames;
3606         var frame = tween.currentFrame;
3607         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3608         var elapsed = (new Date() - tween.getStartTime());
3609         var tweak = 0;
3610
3611         if (elapsed < tween.duration * 1000) {
3612             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3613         } else {
3614             tweak = frames - (frame + 1);
3615         }
3616         if (tweak > 0 && isFinite(tweak)) {
3617             if (tween.currentFrame + tweak >= frames) {
3618                 tweak = frames - (frame + 1);
3619             }
3620
3621             tween.currentFrame += tweak;
3622         }
3623     };
3624 };
3625
3626     /*
3627  * Portions of this file are based on pieces of Yahoo User Interface Library
3628  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3629  * YUI licensed under the BSD License:
3630  * http://developer.yahoo.net/yui/license.txt
3631  * <script type="text/javascript">
3632  *
3633  */
3634 Roo.lib.Bezier = new function() {
3635
3636         this.getPosition = function(points, t) {
3637             var n = points.length;
3638             var tmp = [];
3639
3640             for (var i = 0; i < n; ++i) {
3641                 tmp[i] = [points[i][0], points[i][1]];
3642             }
3643
3644             for (var j = 1; j < n; ++j) {
3645                 for (i = 0; i < n - j; ++i) {
3646                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3647                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3648                 }
3649             }
3650
3651             return [ tmp[0][0], tmp[0][1] ];
3652
3653         };
3654     };/*
3655  * Portions of this file are based on pieces of Yahoo User Interface Library
3656  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3657  * YUI licensed under the BSD License:
3658  * http://developer.yahoo.net/yui/license.txt
3659  * <script type="text/javascript">
3660  *
3661  */
3662 (function() {
3663
3664     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3665         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3666     };
3667
3668     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3669
3670     var fly = Roo.lib.AnimBase.fly;
3671     var Y = Roo.lib;
3672     var superclass = Y.ColorAnim.superclass;
3673     var proto = Y.ColorAnim.prototype;
3674
3675     proto.toString = function() {
3676         var el = this.getEl();
3677         var id = el.id || el.tagName;
3678         return ("ColorAnim " + id);
3679     };
3680
3681     proto.patterns.color = /color$/i;
3682     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3683     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3684     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3685     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3686
3687
3688     proto.parseColor = function(s) {
3689         if (s.length == 3) {
3690             return s;
3691         }
3692
3693         var c = this.patterns.hex.exec(s);
3694         if (c && c.length == 4) {
3695             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3696         }
3697
3698         c = this.patterns.rgb.exec(s);
3699         if (c && c.length == 4) {
3700             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3701         }
3702
3703         c = this.patterns.hex3.exec(s);
3704         if (c && c.length == 4) {
3705             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3706         }
3707
3708         return null;
3709     };
3710     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3711     proto.getAttribute = function(attr) {
3712         var el = this.getEl();
3713         if (this.patterns.color.test(attr)) {
3714             var val = fly(el).getStyle(attr);
3715
3716             if (this.patterns.transparent.test(val)) {
3717                 var parent = el.parentNode;
3718                 val = fly(parent).getStyle(attr);
3719
3720                 while (parent && this.patterns.transparent.test(val)) {
3721                     parent = parent.parentNode;
3722                     val = fly(parent).getStyle(attr);
3723                     if (parent.tagName.toUpperCase() == 'HTML') {
3724                         val = '#fff';
3725                     }
3726                 }
3727             }
3728         } else {
3729             val = superclass.getAttribute.call(this, attr);
3730         }
3731
3732         return val;
3733     };
3734     proto.getAttribute = function(attr) {
3735         var el = this.getEl();
3736         if (this.patterns.color.test(attr)) {
3737             var val = fly(el).getStyle(attr);
3738
3739             if (this.patterns.transparent.test(val)) {
3740                 var parent = el.parentNode;
3741                 val = fly(parent).getStyle(attr);
3742
3743                 while (parent && this.patterns.transparent.test(val)) {
3744                     parent = parent.parentNode;
3745                     val = fly(parent).getStyle(attr);
3746                     if (parent.tagName.toUpperCase() == 'HTML') {
3747                         val = '#fff';
3748                     }
3749                 }
3750             }
3751         } else {
3752             val = superclass.getAttribute.call(this, attr);
3753         }
3754
3755         return val;
3756     };
3757
3758     proto.doMethod = function(attr, start, end) {
3759         var val;
3760
3761         if (this.patterns.color.test(attr)) {
3762             val = [];
3763             for (var i = 0, len = start.length; i < len; ++i) {
3764                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3765             }
3766
3767             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3768         }
3769         else {
3770             val = superclass.doMethod.call(this, attr, start, end);
3771         }
3772
3773         return val;
3774     };
3775
3776     proto.setRuntimeAttribute = function(attr) {
3777         superclass.setRuntimeAttribute.call(this, attr);
3778
3779         if (this.patterns.color.test(attr)) {
3780             var attributes = this.attributes;
3781             var start = this.parseColor(this.runtimeAttributes[attr].start);
3782             var end = this.parseColor(this.runtimeAttributes[attr].end);
3783
3784             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3785                 end = this.parseColor(attributes[attr].by);
3786
3787                 for (var i = 0, len = start.length; i < len; ++i) {
3788                     end[i] = start[i] + end[i];
3789                 }
3790             }
3791
3792             this.runtimeAttributes[attr].start = start;
3793             this.runtimeAttributes[attr].end = end;
3794         }
3795     };
3796 })();
3797
3798 /*
3799  * Portions of this file are based on pieces of Yahoo User Interface Library
3800  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3801  * YUI licensed under the BSD License:
3802  * http://developer.yahoo.net/yui/license.txt
3803  * <script type="text/javascript">
3804  *
3805  */
3806 Roo.lib.Easing = {
3807
3808
3809     easeNone: function (t, b, c, d) {
3810         return c * t / d + b;
3811     },
3812
3813
3814     easeIn: function (t, b, c, d) {
3815         return c * (t /= d) * t + b;
3816     },
3817
3818
3819     easeOut: function (t, b, c, d) {
3820         return -c * (t /= d) * (t - 2) + b;
3821     },
3822
3823
3824     easeBoth: function (t, b, c, d) {
3825         if ((t /= d / 2) < 1) {
3826             return c / 2 * t * t + b;
3827         }
3828
3829         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3830     },
3831
3832
3833     easeInStrong: function (t, b, c, d) {
3834         return c * (t /= d) * t * t * t + b;
3835     },
3836
3837
3838     easeOutStrong: function (t, b, c, d) {
3839         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3840     },
3841
3842
3843     easeBothStrong: function (t, b, c, d) {
3844         if ((t /= d / 2) < 1) {
3845             return c / 2 * t * t * t * t + b;
3846         }
3847
3848         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3849     },
3850
3851
3852
3853     elasticIn: function (t, b, c, d, a, p) {
3854         if (t == 0) {
3855             return b;
3856         }
3857         if ((t /= d) == 1) {
3858             return b + c;
3859         }
3860         if (!p) {
3861             p = d * .3;
3862         }
3863
3864         if (!a || a < Math.abs(c)) {
3865             a = c;
3866             var s = p / 4;
3867         }
3868         else {
3869             var s = p / (2 * Math.PI) * Math.asin(c / a);
3870         }
3871
3872         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3873     },
3874
3875
3876     elasticOut: function (t, b, c, d, a, p) {
3877         if (t == 0) {
3878             return b;
3879         }
3880         if ((t /= d) == 1) {
3881             return b + c;
3882         }
3883         if (!p) {
3884             p = d * .3;
3885         }
3886
3887         if (!a || a < Math.abs(c)) {
3888             a = c;
3889             var s = p / 4;
3890         }
3891         else {
3892             var s = p / (2 * Math.PI) * Math.asin(c / a);
3893         }
3894
3895         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3896     },
3897
3898
3899     elasticBoth: function (t, b, c, d, a, p) {
3900         if (t == 0) {
3901             return b;
3902         }
3903
3904         if ((t /= d / 2) == 2) {
3905             return b + c;
3906         }
3907
3908         if (!p) {
3909             p = d * (.3 * 1.5);
3910         }
3911
3912         if (!a || a < Math.abs(c)) {
3913             a = c;
3914             var s = p / 4;
3915         }
3916         else {
3917             var s = p / (2 * Math.PI) * Math.asin(c / a);
3918         }
3919
3920         if (t < 1) {
3921             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3922                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3923         }
3924         return a * Math.pow(2, -10 * (t -= 1)) *
3925                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3926     },
3927
3928
3929
3930     backIn: function (t, b, c, d, s) {
3931         if (typeof s == 'undefined') {
3932             s = 1.70158;
3933         }
3934         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3935     },
3936
3937
3938     backOut: function (t, b, c, d, s) {
3939         if (typeof s == 'undefined') {
3940             s = 1.70158;
3941         }
3942         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3943     },
3944
3945
3946     backBoth: function (t, b, c, d, s) {
3947         if (typeof s == 'undefined') {
3948             s = 1.70158;
3949         }
3950
3951         if ((t /= d / 2 ) < 1) {
3952             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3953         }
3954         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3955     },
3956
3957
3958     bounceIn: function (t, b, c, d) {
3959         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3960     },
3961
3962
3963     bounceOut: function (t, b, c, d) {
3964         if ((t /= d) < (1 / 2.75)) {
3965             return c * (7.5625 * t * t) + b;
3966         } else if (t < (2 / 2.75)) {
3967             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3968         } else if (t < (2.5 / 2.75)) {
3969             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3970         }
3971         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3972     },
3973
3974
3975     bounceBoth: function (t, b, c, d) {
3976         if (t < d / 2) {
3977             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3978         }
3979         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3980     }
3981 };/*
3982  * Portions of this file are based on pieces of Yahoo User Interface Library
3983  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3984  * YUI licensed under the BSD License:
3985  * http://developer.yahoo.net/yui/license.txt
3986  * <script type="text/javascript">
3987  *
3988  */
3989     (function() {
3990         Roo.lib.Motion = function(el, attributes, duration, method) {
3991             if (el) {
3992                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3993             }
3994         };
3995
3996         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3997
3998
3999         var Y = Roo.lib;
4000         var superclass = Y.Motion.superclass;
4001         var proto = Y.Motion.prototype;
4002
4003         proto.toString = function() {
4004             var el = this.getEl();
4005             var id = el.id || el.tagName;
4006             return ("Motion " + id);
4007         };
4008
4009         proto.patterns.points = /^points$/i;
4010
4011         proto.setAttribute = function(attr, val, unit) {
4012             if (this.patterns.points.test(attr)) {
4013                 unit = unit || 'px';
4014                 superclass.setAttribute.call(this, 'left', val[0], unit);
4015                 superclass.setAttribute.call(this, 'top', val[1], unit);
4016             } else {
4017                 superclass.setAttribute.call(this, attr, val, unit);
4018             }
4019         };
4020
4021         proto.getAttribute = function(attr) {
4022             if (this.patterns.points.test(attr)) {
4023                 var val = [
4024                         superclass.getAttribute.call(this, 'left'),
4025                         superclass.getAttribute.call(this, 'top')
4026                         ];
4027             } else {
4028                 val = superclass.getAttribute.call(this, attr);
4029             }
4030
4031             return val;
4032         };
4033
4034         proto.doMethod = function(attr, start, end) {
4035             var val = null;
4036
4037             if (this.patterns.points.test(attr)) {
4038                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4039                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4040             } else {
4041                 val = superclass.doMethod.call(this, attr, start, end);
4042             }
4043             return val;
4044         };
4045
4046         proto.setRuntimeAttribute = function(attr) {
4047             if (this.patterns.points.test(attr)) {
4048                 var el = this.getEl();
4049                 var attributes = this.attributes;
4050                 var start;
4051                 var control = attributes['points']['control'] || [];
4052                 var end;
4053                 var i, len;
4054
4055                 if (control.length > 0 && !(control[0] instanceof Array)) {
4056                     control = [control];
4057                 } else {
4058                     var tmp = [];
4059                     for (i = 0,len = control.length; i < len; ++i) {
4060                         tmp[i] = control[i];
4061                     }
4062                     control = tmp;
4063                 }
4064
4065                 Roo.fly(el).position();
4066
4067                 if (isset(attributes['points']['from'])) {
4068                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4069                 }
4070                 else {
4071                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4072                 }
4073
4074                 start = this.getAttribute('points');
4075
4076
4077                 if (isset(attributes['points']['to'])) {
4078                     end = translateValues.call(this, attributes['points']['to'], start);
4079
4080                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4081                     for (i = 0,len = control.length; i < len; ++i) {
4082                         control[i] = translateValues.call(this, control[i], start);
4083                     }
4084
4085
4086                 } else if (isset(attributes['points']['by'])) {
4087                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4088
4089                     for (i = 0,len = control.length; i < len; ++i) {
4090                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4091                     }
4092                 }
4093
4094                 this.runtimeAttributes[attr] = [start];
4095
4096                 if (control.length > 0) {
4097                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4098                 }
4099
4100                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4101             }
4102             else {
4103                 superclass.setRuntimeAttribute.call(this, attr);
4104             }
4105         };
4106
4107         var translateValues = function(val, start) {
4108             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4109             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4110
4111             return val;
4112         };
4113
4114         var isset = function(prop) {
4115             return (typeof prop !== 'undefined');
4116         };
4117     })();
4118 /*
4119  * Portions of this file are based on pieces of Yahoo User Interface Library
4120  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4121  * YUI licensed under the BSD License:
4122  * http://developer.yahoo.net/yui/license.txt
4123  * <script type="text/javascript">
4124  *
4125  */
4126     (function() {
4127         Roo.lib.Scroll = function(el, attributes, duration, method) {
4128             if (el) {
4129                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4130             }
4131         };
4132
4133         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4134
4135
4136         var Y = Roo.lib;
4137         var superclass = Y.Scroll.superclass;
4138         var proto = Y.Scroll.prototype;
4139
4140         proto.toString = function() {
4141             var el = this.getEl();
4142             var id = el.id || el.tagName;
4143             return ("Scroll " + id);
4144         };
4145
4146         proto.doMethod = function(attr, start, end) {
4147             var val = null;
4148
4149             if (attr == 'scroll') {
4150                 val = [
4151                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4152                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4153                         ];
4154
4155             } else {
4156                 val = superclass.doMethod.call(this, attr, start, end);
4157             }
4158             return val;
4159         };
4160
4161         proto.getAttribute = function(attr) {
4162             var val = null;
4163             var el = this.getEl();
4164
4165             if (attr == 'scroll') {
4166                 val = [ el.scrollLeft, el.scrollTop ];
4167             } else {
4168                 val = superclass.getAttribute.call(this, attr);
4169             }
4170
4171             return val;
4172         };
4173
4174         proto.setAttribute = function(attr, val, unit) {
4175             var el = this.getEl();
4176
4177             if (attr == 'scroll') {
4178                 el.scrollLeft = val[0];
4179                 el.scrollTop = val[1];
4180             } else {
4181                 superclass.setAttribute.call(this, attr, val, unit);
4182             }
4183         };
4184     })();
4185 /*
4186  * Based on:
4187  * Ext JS Library 1.1.1
4188  * Copyright(c) 2006-2007, Ext JS, LLC.
4189  *
4190  * Originally Released Under LGPL - original licence link has changed is not relivant.
4191  *
4192  * Fork - LGPL
4193  * <script type="text/javascript">
4194  */
4195
4196
4197 // nasty IE9 hack - what a pile of crap that is..
4198
4199  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4200     Range.prototype.createContextualFragment = function (html) {
4201         var doc = window.document;
4202         var container = doc.createElement("div");
4203         container.innerHTML = html;
4204         var frag = doc.createDocumentFragment(), n;
4205         while ((n = container.firstChild)) {
4206             frag.appendChild(n);
4207         }
4208         return frag;
4209     };
4210 }
4211
4212 /**
4213  * @class Roo.DomHelper
4214  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4215  * 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>.
4216  * @singleton
4217  */
4218 Roo.DomHelper = function(){
4219     var tempTableEl = null;
4220     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4221     var tableRe = /^table|tbody|tr|td$/i;
4222     var xmlns = {};
4223     // build as innerHTML where available
4224     /** @ignore */
4225     var createHtml = function(o){
4226         if(typeof o == 'string'){
4227             return o;
4228         }
4229         var b = "";
4230         if(!o.tag){
4231             o.tag = "div";
4232         }
4233         b += "<" + o.tag;
4234         for(var attr in o){
4235             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4236             if(attr == "style"){
4237                 var s = o["style"];
4238                 if(typeof s == "function"){
4239                     s = s.call();
4240                 }
4241                 if(typeof s == "string"){
4242                     b += ' style="' + s + '"';
4243                 }else if(typeof s == "object"){
4244                     b += ' style="';
4245                     for(var key in s){
4246                         if(typeof s[key] != "function"){
4247                             b += key + ":" + s[key] + ";";
4248                         }
4249                     }
4250                     b += '"';
4251                 }
4252             }else{
4253                 if(attr == "cls"){
4254                     b += ' class="' + o["cls"] + '"';
4255                 }else if(attr == "htmlFor"){
4256                     b += ' for="' + o["htmlFor"] + '"';
4257                 }else{
4258                     b += " " + attr + '="' + o[attr] + '"';
4259                 }
4260             }
4261         }
4262         if(emptyTags.test(o.tag)){
4263             b += "/>";
4264         }else{
4265             b += ">";
4266             var cn = o.children || o.cn;
4267             if(cn){
4268                 //http://bugs.kde.org/show_bug.cgi?id=71506
4269                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4270                     for(var i = 0, len = cn.length; i < len; i++) {
4271                         b += createHtml(cn[i], b);
4272                     }
4273                 }else{
4274                     b += createHtml(cn, b);
4275                 }
4276             }
4277             if(o.html){
4278                 b += o.html;
4279             }
4280             b += "</" + o.tag + ">";
4281         }
4282         return b;
4283     };
4284
4285     // build as dom
4286     /** @ignore */
4287     var createDom = function(o, parentNode){
4288          
4289         // defininition craeted..
4290         var ns = false;
4291         if (o.ns && o.ns != 'html') {
4292                
4293             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4294                 xmlns[o.ns] = o.xmlns;
4295                 ns = o.xmlns;
4296             }
4297             if (typeof(xmlns[o.ns]) == 'undefined') {
4298                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4299             }
4300             ns = xmlns[o.ns];
4301         }
4302         
4303         
4304         if (typeof(o) == 'string') {
4305             return parentNode.appendChild(document.createTextNode(o));
4306         }
4307         o.tag = o.tag || div;
4308         if (o.ns && Roo.isIE) {
4309             ns = false;
4310             o.tag = o.ns + ':' + o.tag;
4311             
4312         }
4313         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4314         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4315         for(var attr in o){
4316             
4317             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4318                     attr == "style" || typeof o[attr] == "function") { continue; }
4319                     
4320             if(attr=="cls" && Roo.isIE){
4321                 el.className = o["cls"];
4322             }else{
4323                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4324                 else { 
4325                     el[attr] = o[attr];
4326                 }
4327             }
4328         }
4329         Roo.DomHelper.applyStyles(el, o.style);
4330         var cn = o.children || o.cn;
4331         if(cn){
4332             //http://bugs.kde.org/show_bug.cgi?id=71506
4333              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4334                 for(var i = 0, len = cn.length; i < len; i++) {
4335                     createDom(cn[i], el);
4336                 }
4337             }else{
4338                 createDom(cn, el);
4339             }
4340         }
4341         if(o.html){
4342             el.innerHTML = o.html;
4343         }
4344         if(parentNode){
4345            parentNode.appendChild(el);
4346         }
4347         return el;
4348     };
4349
4350     var ieTable = function(depth, s, h, e){
4351         tempTableEl.innerHTML = [s, h, e].join('');
4352         var i = -1, el = tempTableEl;
4353         while(++i < depth && el.firstChild){
4354             el = el.firstChild;
4355         }
4356         return el;
4357     };
4358
4359     // kill repeat to save bytes
4360     var ts = '<table>',
4361         te = '</table>',
4362         tbs = ts+'<tbody>',
4363         tbe = '</tbody>'+te,
4364         trs = tbs + '<tr>',
4365         tre = '</tr>'+tbe;
4366
4367     /**
4368      * @ignore
4369      * Nasty code for IE's broken table implementation
4370      */
4371     var insertIntoTable = function(tag, where, el, html){
4372         if(!tempTableEl){
4373             tempTableEl = document.createElement('div');
4374         }
4375         var node;
4376         var before = null;
4377         if(tag == 'td'){
4378             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4379                 return;
4380             }
4381             if(where == 'beforebegin'){
4382                 before = el;
4383                 el = el.parentNode;
4384             } else{
4385                 before = el.nextSibling;
4386                 el = el.parentNode;
4387             }
4388             node = ieTable(4, trs, html, tre);
4389         }
4390         else if(tag == 'tr'){
4391             if(where == 'beforebegin'){
4392                 before = el;
4393                 el = el.parentNode;
4394                 node = ieTable(3, tbs, html, tbe);
4395             } else if(where == 'afterend'){
4396                 before = el.nextSibling;
4397                 el = el.parentNode;
4398                 node = ieTable(3, tbs, html, tbe);
4399             } else{ // INTO a TR
4400                 if(where == 'afterbegin'){
4401                     before = el.firstChild;
4402                 }
4403                 node = ieTable(4, trs, html, tre);
4404             }
4405         } else if(tag == 'tbody'){
4406             if(where == 'beforebegin'){
4407                 before = el;
4408                 el = el.parentNode;
4409                 node = ieTable(2, ts, html, te);
4410             } else if(where == 'afterend'){
4411                 before = el.nextSibling;
4412                 el = el.parentNode;
4413                 node = ieTable(2, ts, html, te);
4414             } else{
4415                 if(where == 'afterbegin'){
4416                     before = el.firstChild;
4417                 }
4418                 node = ieTable(3, tbs, html, tbe);
4419             }
4420         } else{ // TABLE
4421             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4422                 return;
4423             }
4424             if(where == 'afterbegin'){
4425                 before = el.firstChild;
4426             }
4427             node = ieTable(2, ts, html, te);
4428         }
4429         el.insertBefore(node, before);
4430         return node;
4431     };
4432
4433     return {
4434     /** True to force the use of DOM instead of html fragments @type Boolean */
4435     useDom : false,
4436
4437     /**
4438      * Returns the markup for the passed Element(s) config
4439      * @param {Object} o The Dom object spec (and children)
4440      * @return {String}
4441      */
4442     markup : function(o){
4443         return createHtml(o);
4444     },
4445
4446     /**
4447      * Applies a style specification to an element
4448      * @param {String/HTMLElement} el The element to apply styles to
4449      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4450      * a function which returns such a specification.
4451      */
4452     applyStyles : function(el, styles){
4453         if(styles){
4454            el = Roo.fly(el);
4455            if(typeof styles == "string"){
4456                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4457                var matches;
4458                while ((matches = re.exec(styles)) != null){
4459                    el.setStyle(matches[1], matches[2]);
4460                }
4461            }else if (typeof styles == "object"){
4462                for (var style in styles){
4463                   el.setStyle(style, styles[style]);
4464                }
4465            }else if (typeof styles == "function"){
4466                 Roo.DomHelper.applyStyles(el, styles.call());
4467            }
4468         }
4469     },
4470
4471     /**
4472      * Inserts an HTML fragment into the Dom
4473      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4474      * @param {HTMLElement} el The context element
4475      * @param {String} html The HTML fragmenet
4476      * @return {HTMLElement} The new node
4477      */
4478     insertHtml : function(where, el, html){
4479         where = where.toLowerCase();
4480         if(el.insertAdjacentHTML){
4481             if(tableRe.test(el.tagName)){
4482                 var rs;
4483                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4484                     return rs;
4485                 }
4486             }
4487             switch(where){
4488                 case "beforebegin":
4489                     el.insertAdjacentHTML('BeforeBegin', html);
4490                     return el.previousSibling;
4491                 case "afterbegin":
4492                     el.insertAdjacentHTML('AfterBegin', html);
4493                     return el.firstChild;
4494                 case "beforeend":
4495                     el.insertAdjacentHTML('BeforeEnd', html);
4496                     return el.lastChild;
4497                 case "afterend":
4498                     el.insertAdjacentHTML('AfterEnd', html);
4499                     return el.nextSibling;
4500             }
4501             throw 'Illegal insertion point -> "' + where + '"';
4502         }
4503         var range = el.ownerDocument.createRange();
4504         var frag;
4505         switch(where){
4506              case "beforebegin":
4507                 range.setStartBefore(el);
4508                 frag = range.createContextualFragment(html);
4509                 el.parentNode.insertBefore(frag, el);
4510                 return el.previousSibling;
4511              case "afterbegin":
4512                 if(el.firstChild){
4513                     range.setStartBefore(el.firstChild);
4514                     frag = range.createContextualFragment(html);
4515                     el.insertBefore(frag, el.firstChild);
4516                     return el.firstChild;
4517                 }else{
4518                     el.innerHTML = html;
4519                     return el.firstChild;
4520                 }
4521             case "beforeend":
4522                 if(el.lastChild){
4523                     range.setStartAfter(el.lastChild);
4524                     frag = range.createContextualFragment(html);
4525                     el.appendChild(frag);
4526                     return el.lastChild;
4527                 }else{
4528                     el.innerHTML = html;
4529                     return el.lastChild;
4530                 }
4531             case "afterend":
4532                 range.setStartAfter(el);
4533                 frag = range.createContextualFragment(html);
4534                 el.parentNode.insertBefore(frag, el.nextSibling);
4535                 return el.nextSibling;
4536             }
4537             throw 'Illegal insertion point -> "' + where + '"';
4538     },
4539
4540     /**
4541      * Creates new Dom element(s) and inserts them before el
4542      * @param {String/HTMLElement/Element} el The context element
4543      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4544      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4545      * @return {HTMLElement/Roo.Element} The new node
4546      */
4547     insertBefore : function(el, o, returnElement){
4548         return this.doInsert(el, o, returnElement, "beforeBegin");
4549     },
4550
4551     /**
4552      * Creates new Dom element(s) and inserts them after el
4553      * @param {String/HTMLElement/Element} el The context element
4554      * @param {Object} o The Dom object spec (and children)
4555      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4556      * @return {HTMLElement/Roo.Element} The new node
4557      */
4558     insertAfter : function(el, o, returnElement){
4559         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4560     },
4561
4562     /**
4563      * Creates new Dom element(s) and inserts them as the first child of el
4564      * @param {String/HTMLElement/Element} el The context element
4565      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4566      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4567      * @return {HTMLElement/Roo.Element} The new node
4568      */
4569     insertFirst : function(el, o, returnElement){
4570         return this.doInsert(el, o, returnElement, "afterBegin");
4571     },
4572
4573     // private
4574     doInsert : function(el, o, returnElement, pos, sibling){
4575         el = Roo.getDom(el);
4576         var newNode;
4577         if(this.useDom || o.ns){
4578             newNode = createDom(o, null);
4579             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4580         }else{
4581             var html = createHtml(o);
4582             newNode = this.insertHtml(pos, el, html);
4583         }
4584         return returnElement ? Roo.get(newNode, true) : newNode;
4585     },
4586
4587     /**
4588      * Creates new Dom element(s) and appends them to el
4589      * @param {String/HTMLElement/Element} el The context element
4590      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4591      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4592      * @return {HTMLElement/Roo.Element} The new node
4593      */
4594     append : function(el, o, returnElement){
4595         el = Roo.getDom(el);
4596         var newNode;
4597         if(this.useDom || o.ns){
4598             newNode = createDom(o, null);
4599             el.appendChild(newNode);
4600         }else{
4601             var html = createHtml(o);
4602             newNode = this.insertHtml("beforeEnd", el, html);
4603         }
4604         return returnElement ? Roo.get(newNode, true) : newNode;
4605     },
4606
4607     /**
4608      * Creates new Dom element(s) and overwrites the contents of el with them
4609      * @param {String/HTMLElement/Element} el The context element
4610      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4611      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4612      * @return {HTMLElement/Roo.Element} The new node
4613      */
4614     overwrite : function(el, o, returnElement){
4615         el = Roo.getDom(el);
4616         if (o.ns) {
4617           
4618             while (el.childNodes.length) {
4619                 el.removeChild(el.firstChild);
4620             }
4621             createDom(o, el);
4622         } else {
4623             el.innerHTML = createHtml(o);   
4624         }
4625         
4626         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4627     },
4628
4629     /**
4630      * Creates a new Roo.DomHelper.Template from the Dom object spec
4631      * @param {Object} o The Dom object spec (and children)
4632      * @return {Roo.DomHelper.Template} The new template
4633      */
4634     createTemplate : function(o){
4635         var html = createHtml(o);
4636         return new Roo.Template(html);
4637     }
4638     };
4639 }();
4640 /*
4641  * Based on:
4642  * Ext JS Library 1.1.1
4643  * Copyright(c) 2006-2007, Ext JS, LLC.
4644  *
4645  * Originally Released Under LGPL - original licence link has changed is not relivant.
4646  *
4647  * Fork - LGPL
4648  * <script type="text/javascript">
4649  */
4650  
4651 /**
4652 * @class Roo.Template
4653 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4654 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4655 * Usage:
4656 <pre><code>
4657 var t = new Roo.Template({
4658     html :  '&lt;div name="{id}"&gt;' + 
4659         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4660         '&lt;/div&gt;',
4661     myformat: function (value, allValues) {
4662         return 'XX' + value;
4663     }
4664 });
4665 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4666 </code></pre>
4667 * For more information see this blog post with examples:
4668 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4669      - Create Elements using DOM, HTML fragments and Templates</a>. 
4670 * @constructor
4671 * @param {Object} cfg - Configuration object.
4672 */
4673 Roo.Template = function(cfg){
4674     // BC!
4675     if(cfg instanceof Array){
4676         cfg = cfg.join("");
4677     }else if(arguments.length > 1){
4678         cfg = Array.prototype.join.call(arguments, "");
4679     }
4680     
4681     
4682     if (typeof(cfg) == 'object') {
4683         Roo.apply(this,cfg)
4684     } else {
4685         // bc
4686         this.html = cfg;
4687     }
4688     if (this.url) {
4689         this.load();
4690     }
4691     
4692 };
4693 Roo.Template.prototype = {
4694     
4695     /**
4696      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4697      */
4698     onLoad : false,
4699     
4700     
4701     /**
4702      * @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..
4703      *                    it should be fixed so that template is observable...
4704      */
4705     url : false,
4706     /**
4707      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4708      */
4709     html : '',
4710     
4711     
4712     compiled : false,
4713     loaded : false,
4714     /**
4715      * Returns an HTML fragment of this template with the specified values applied.
4716      * @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'})
4717      * @return {String} The HTML fragment
4718      */
4719     
4720    
4721     
4722     applyTemplate : function(values){
4723         //Roo.log(["applyTemplate", values]);
4724         try {
4725            
4726             if(this.compiled){
4727                 return this.compiled(values);
4728             }
4729             var useF = this.disableFormats !== true;
4730             var fm = Roo.util.Format, tpl = this;
4731             var fn = function(m, name, format, args){
4732                 if(format && useF){
4733                     if(format.substr(0, 5) == "this."){
4734                         return tpl.call(format.substr(5), values[name], values);
4735                     }else{
4736                         if(args){
4737                             // quoted values are required for strings in compiled templates, 
4738                             // but for non compiled we need to strip them
4739                             // quoted reversed for jsmin
4740                             var re = /^\s*['"](.*)["']\s*$/;
4741                             args = args.split(',');
4742                             for(var i = 0, len = args.length; i < len; i++){
4743                                 args[i] = args[i].replace(re, "$1");
4744                             }
4745                             args = [values[name]].concat(args);
4746                         }else{
4747                             args = [values[name]];
4748                         }
4749                         return fm[format].apply(fm, args);
4750                     }
4751                 }else{
4752                     return values[name] !== undefined ? values[name] : "";
4753                 }
4754             };
4755             return this.html.replace(this.re, fn);
4756         } catch (e) {
4757             Roo.log(e);
4758             throw e;
4759         }
4760          
4761     },
4762     
4763     loading : false,
4764       
4765     load : function ()
4766     {
4767          
4768         if (this.loading) {
4769             return;
4770         }
4771         var _t = this;
4772         
4773         this.loading = true;
4774         this.compiled = false;
4775         
4776         var cx = new Roo.data.Connection();
4777         cx.request({
4778             url : this.url,
4779             method : 'GET',
4780             success : function (response) {
4781                 _t.loading = false;
4782                 _t.url = false;
4783                 
4784                 _t.set(response.responseText,true);
4785                 _t.loaded = true;
4786                 if (_t.onLoad) {
4787                     _t.onLoad();
4788                 }
4789              },
4790             failure : function(response) {
4791                 Roo.log("Template failed to load from " + _t.url);
4792                 _t.loading = false;
4793             }
4794         });
4795     },
4796
4797     /**
4798      * Sets the HTML used as the template and optionally compiles it.
4799      * @param {String} html
4800      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4801      * @return {Roo.Template} this
4802      */
4803     set : function(html, compile){
4804         this.html = html;
4805         this.compiled = false;
4806         if(compile){
4807             this.compile();
4808         }
4809         return this;
4810     },
4811     
4812     /**
4813      * True to disable format functions (defaults to false)
4814      * @type Boolean
4815      */
4816     disableFormats : false,
4817     
4818     /**
4819     * The regular expression used to match template variables 
4820     * @type RegExp
4821     * @property 
4822     */
4823     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4824     
4825     /**
4826      * Compiles the template into an internal function, eliminating the RegEx overhead.
4827      * @return {Roo.Template} this
4828      */
4829     compile : function(){
4830         var fm = Roo.util.Format;
4831         var useF = this.disableFormats !== true;
4832         var sep = Roo.isGecko ? "+" : ",";
4833         var fn = function(m, name, format, args){
4834             if(format && useF){
4835                 args = args ? ',' + args : "";
4836                 if(format.substr(0, 5) != "this."){
4837                     format = "fm." + format + '(';
4838                 }else{
4839                     format = 'this.call("'+ format.substr(5) + '", ';
4840                     args = ", values";
4841                 }
4842             }else{
4843                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4844             }
4845             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4846         };
4847         var body;
4848         // branched to use + in gecko and [].join() in others
4849         if(Roo.isGecko){
4850             body = "this.compiled = function(values){ return '" +
4851                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4852                     "';};";
4853         }else{
4854             body = ["this.compiled = function(values){ return ['"];
4855             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4856             body.push("'].join('');};");
4857             body = body.join('');
4858         }
4859         /**
4860          * eval:var:values
4861          * eval:var:fm
4862          */
4863         eval(body);
4864         return this;
4865     },
4866     
4867     // private function used to call members
4868     call : function(fnName, value, allValues){
4869         return this[fnName](value, allValues);
4870     },
4871     
4872     /**
4873      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4874      * @param {String/HTMLElement/Roo.Element} el The context element
4875      * @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'})
4876      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4877      * @return {HTMLElement/Roo.Element} The new node or Element
4878      */
4879     insertFirst: function(el, values, returnElement){
4880         return this.doInsert('afterBegin', el, values, returnElement);
4881     },
4882
4883     /**
4884      * Applies the supplied values to the template and inserts the new node(s) before el.
4885      * @param {String/HTMLElement/Roo.Element} el The context element
4886      * @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'})
4887      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4888      * @return {HTMLElement/Roo.Element} The new node or Element
4889      */
4890     insertBefore: function(el, values, returnElement){
4891         return this.doInsert('beforeBegin', el, values, returnElement);
4892     },
4893
4894     /**
4895      * Applies the supplied values to the template and inserts the new node(s) after el.
4896      * @param {String/HTMLElement/Roo.Element} el The context element
4897      * @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'})
4898      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4899      * @return {HTMLElement/Roo.Element} The new node or Element
4900      */
4901     insertAfter : function(el, values, returnElement){
4902         return this.doInsert('afterEnd', el, values, returnElement);
4903     },
4904     
4905     /**
4906      * Applies the supplied values to the template and appends the new node(s) to el.
4907      * @param {String/HTMLElement/Roo.Element} el The context element
4908      * @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'})
4909      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4910      * @return {HTMLElement/Roo.Element} The new node or Element
4911      */
4912     append : function(el, values, returnElement){
4913         return this.doInsert('beforeEnd', el, values, returnElement);
4914     },
4915
4916     doInsert : function(where, el, values, returnEl){
4917         el = Roo.getDom(el);
4918         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4919         return returnEl ? Roo.get(newNode, true) : newNode;
4920     },
4921
4922     /**
4923      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4924      * @param {String/HTMLElement/Roo.Element} el The context element
4925      * @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'})
4926      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4927      * @return {HTMLElement/Roo.Element} The new node or Element
4928      */
4929     overwrite : function(el, values, returnElement){
4930         el = Roo.getDom(el);
4931         el.innerHTML = this.applyTemplate(values);
4932         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4933     }
4934 };
4935 /**
4936  * Alias for {@link #applyTemplate}
4937  * @method
4938  */
4939 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4940
4941 // backwards compat
4942 Roo.DomHelper.Template = Roo.Template;
4943
4944 /**
4945  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4946  * @param {String/HTMLElement} el A DOM element or its id
4947  * @returns {Roo.Template} The created template
4948  * @static
4949  */
4950 Roo.Template.from = function(el){
4951     el = Roo.getDom(el);
4952     return new Roo.Template(el.value || el.innerHTML);
4953 };/*
4954  * Based on:
4955  * Ext JS Library 1.1.1
4956  * Copyright(c) 2006-2007, Ext JS, LLC.
4957  *
4958  * Originally Released Under LGPL - original licence link has changed is not relivant.
4959  *
4960  * Fork - LGPL
4961  * <script type="text/javascript">
4962  */
4963  
4964
4965 /*
4966  * This is code is also distributed under MIT license for use
4967  * with jQuery and prototype JavaScript libraries.
4968  */
4969 /**
4970  * @class Roo.DomQuery
4971 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).
4972 <p>
4973 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>
4974
4975 <p>
4976 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.
4977 </p>
4978 <h4>Element Selectors:</h4>
4979 <ul class="list">
4980     <li> <b>*</b> any element</li>
4981     <li> <b>E</b> an element with the tag E</li>
4982     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4983     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4984     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4985     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4986 </ul>
4987 <h4>Attribute Selectors:</h4>
4988 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4989 <ul class="list">
4990     <li> <b>E[foo]</b> has an attribute "foo"</li>
4991     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4992     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4993     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4994     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4995     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4996     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4997 </ul>
4998 <h4>Pseudo Classes:</h4>
4999 <ul class="list">
5000     <li> <b>E:first-child</b> E is the first child of its parent</li>
5001     <li> <b>E:last-child</b> E is the last child of its parent</li>
5002     <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>
5003     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
5004     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
5005     <li> <b>E:only-child</b> E is the only child of its parent</li>
5006     <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>
5007     <li> <b>E:first</b> the first E in the resultset</li>
5008     <li> <b>E:last</b> the last E in the resultset</li>
5009     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
5010     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
5011     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
5012     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
5013     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5014     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5015     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5016     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5017     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5018 </ul>
5019 <h4>CSS Value Selectors:</h4>
5020 <ul class="list">
5021     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5022     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5023     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5024     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5025     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5026     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5027 </ul>
5028  * @singleton
5029  */
5030 Roo.DomQuery = function(){
5031     var cache = {}, simpleCache = {}, valueCache = {};
5032     var nonSpace = /\S/;
5033     var trimRe = /^\s+|\s+$/g;
5034     var tplRe = /\{(\d+)\}/g;
5035     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5036     var tagTokenRe = /^(#)?([\w-\*]+)/;
5037     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5038
5039     function child(p, index){
5040         var i = 0;
5041         var n = p.firstChild;
5042         while(n){
5043             if(n.nodeType == 1){
5044                if(++i == index){
5045                    return n;
5046                }
5047             }
5048             n = n.nextSibling;
5049         }
5050         return null;
5051     };
5052
5053     function next(n){
5054         while((n = n.nextSibling) && n.nodeType != 1);
5055         return n;
5056     };
5057
5058     function prev(n){
5059         while((n = n.previousSibling) && n.nodeType != 1);
5060         return n;
5061     };
5062
5063     function children(d){
5064         var n = d.firstChild, ni = -1;
5065             while(n){
5066                 var nx = n.nextSibling;
5067                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5068                     d.removeChild(n);
5069                 }else{
5070                     n.nodeIndex = ++ni;
5071                 }
5072                 n = nx;
5073             }
5074             return this;
5075         };
5076
5077     function byClassName(c, a, v){
5078         if(!v){
5079             return c;
5080         }
5081         var r = [], ri = -1, cn;
5082         for(var i = 0, ci; ci = c[i]; i++){
5083             
5084             
5085             if((' '+
5086                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
5087                  +' ').indexOf(v) != -1){
5088                 r[++ri] = ci;
5089             }
5090         }
5091         return r;
5092     };
5093
5094     function attrValue(n, attr){
5095         if(!n.tagName && typeof n.length != "undefined"){
5096             n = n[0];
5097         }
5098         if(!n){
5099             return null;
5100         }
5101         if(attr == "for"){
5102             return n.htmlFor;
5103         }
5104         if(attr == "class" || attr == "className"){
5105             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
5106         }
5107         return n.getAttribute(attr) || n[attr];
5108
5109     };
5110
5111     function getNodes(ns, mode, tagName){
5112         var result = [], ri = -1, cs;
5113         if(!ns){
5114             return result;
5115         }
5116         tagName = tagName || "*";
5117         if(typeof ns.getElementsByTagName != "undefined"){
5118             ns = [ns];
5119         }
5120         if(!mode){
5121             for(var i = 0, ni; ni = ns[i]; i++){
5122                 cs = ni.getElementsByTagName(tagName);
5123                 for(var j = 0, ci; ci = cs[j]; j++){
5124                     result[++ri] = ci;
5125                 }
5126             }
5127         }else if(mode == "/" || mode == ">"){
5128             var utag = tagName.toUpperCase();
5129             for(var i = 0, ni, cn; ni = ns[i]; i++){
5130                 cn = ni.children || ni.childNodes;
5131                 for(var j = 0, cj; cj = cn[j]; j++){
5132                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5133                         result[++ri] = cj;
5134                     }
5135                 }
5136             }
5137         }else if(mode == "+"){
5138             var utag = tagName.toUpperCase();
5139             for(var i = 0, n; n = ns[i]; i++){
5140                 while((n = n.nextSibling) && n.nodeType != 1);
5141                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5142                     result[++ri] = n;
5143                 }
5144             }
5145         }else if(mode == "~"){
5146             for(var i = 0, n; n = ns[i]; i++){
5147                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5148                 if(n){
5149                     result[++ri] = n;
5150                 }
5151             }
5152         }
5153         return result;
5154     };
5155
5156     function concat(a, b){
5157         if(b.slice){
5158             return a.concat(b);
5159         }
5160         for(var i = 0, l = b.length; i < l; i++){
5161             a[a.length] = b[i];
5162         }
5163         return a;
5164     }
5165
5166     function byTag(cs, tagName){
5167         if(cs.tagName || cs == document){
5168             cs = [cs];
5169         }
5170         if(!tagName){
5171             return cs;
5172         }
5173         var r = [], ri = -1;
5174         tagName = tagName.toLowerCase();
5175         for(var i = 0, ci; ci = cs[i]; i++){
5176             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5177                 r[++ri] = ci;
5178             }
5179         }
5180         return r;
5181     };
5182
5183     function byId(cs, attr, id){
5184         if(cs.tagName || cs == document){
5185             cs = [cs];
5186         }
5187         if(!id){
5188             return cs;
5189         }
5190         var r = [], ri = -1;
5191         for(var i = 0,ci; ci = cs[i]; i++){
5192             if(ci && ci.id == id){
5193                 r[++ri] = ci;
5194                 return r;
5195             }
5196         }
5197         return r;
5198     };
5199
5200     function byAttribute(cs, attr, value, op, custom){
5201         var r = [], ri = -1, st = custom=="{";
5202         var f = Roo.DomQuery.operators[op];
5203         for(var i = 0, ci; ci = cs[i]; i++){
5204             var a;
5205             if(st){
5206                 a = Roo.DomQuery.getStyle(ci, attr);
5207             }
5208             else if(attr == "class" || attr == "className"){
5209                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
5210             }else if(attr == "for"){
5211                 a = ci.htmlFor;
5212             }else if(attr == "href"){
5213                 a = ci.getAttribute("href", 2);
5214             }else{
5215                 a = ci.getAttribute(attr);
5216             }
5217             if((f && f(a, value)) || (!f && a)){
5218                 r[++ri] = ci;
5219             }
5220         }
5221         return r;
5222     };
5223
5224     function byPseudo(cs, name, value){
5225         return Roo.DomQuery.pseudos[name](cs, value);
5226     };
5227
5228     // This is for IE MSXML which does not support expandos.
5229     // IE runs the same speed using setAttribute, however FF slows way down
5230     // and Safari completely fails so they need to continue to use expandos.
5231     var isIE = window.ActiveXObject ? true : false;
5232
5233     // this eval is stop the compressor from
5234     // renaming the variable to something shorter
5235     
5236     /** eval:var:batch */
5237     var batch = 30803; 
5238
5239     var key = 30803;
5240
5241     function nodupIEXml(cs){
5242         var d = ++key;
5243         cs[0].setAttribute("_nodup", d);
5244         var r = [cs[0]];
5245         for(var i = 1, len = cs.length; i < len; i++){
5246             var c = cs[i];
5247             if(!c.getAttribute("_nodup") != d){
5248                 c.setAttribute("_nodup", d);
5249                 r[r.length] = c;
5250             }
5251         }
5252         for(var i = 0, len = cs.length; i < len; i++){
5253             cs[i].removeAttribute("_nodup");
5254         }
5255         return r;
5256     }
5257
5258     function nodup(cs){
5259         if(!cs){
5260             return [];
5261         }
5262         var len = cs.length, c, i, r = cs, cj, ri = -1;
5263         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5264             return cs;
5265         }
5266         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5267             return nodupIEXml(cs);
5268         }
5269         var d = ++key;
5270         cs[0]._nodup = d;
5271         for(i = 1; c = cs[i]; i++){
5272             if(c._nodup != d){
5273                 c._nodup = d;
5274             }else{
5275                 r = [];
5276                 for(var j = 0; j < i; j++){
5277                     r[++ri] = cs[j];
5278                 }
5279                 for(j = i+1; cj = cs[j]; j++){
5280                     if(cj._nodup != d){
5281                         cj._nodup = d;
5282                         r[++ri] = cj;
5283                     }
5284                 }
5285                 return r;
5286             }
5287         }
5288         return r;
5289     }
5290
5291     function quickDiffIEXml(c1, c2){
5292         var d = ++key;
5293         for(var i = 0, len = c1.length; i < len; i++){
5294             c1[i].setAttribute("_qdiff", d);
5295         }
5296         var r = [];
5297         for(var i = 0, len = c2.length; i < len; i++){
5298             if(c2[i].getAttribute("_qdiff") != d){
5299                 r[r.length] = c2[i];
5300             }
5301         }
5302         for(var i = 0, len = c1.length; i < len; i++){
5303            c1[i].removeAttribute("_qdiff");
5304         }
5305         return r;
5306     }
5307
5308     function quickDiff(c1, c2){
5309         var len1 = c1.length;
5310         if(!len1){
5311             return c2;
5312         }
5313         if(isIE && c1[0].selectSingleNode){
5314             return quickDiffIEXml(c1, c2);
5315         }
5316         var d = ++key;
5317         for(var i = 0; i < len1; i++){
5318             c1[i]._qdiff = d;
5319         }
5320         var r = [];
5321         for(var i = 0, len = c2.length; i < len; i++){
5322             if(c2[i]._qdiff != d){
5323                 r[r.length] = c2[i];
5324             }
5325         }
5326         return r;
5327     }
5328
5329     function quickId(ns, mode, root, id){
5330         if(ns == root){
5331            var d = root.ownerDocument || root;
5332            return d.getElementById(id);
5333         }
5334         ns = getNodes(ns, mode, "*");
5335         return byId(ns, null, id);
5336     }
5337
5338     return {
5339         getStyle : function(el, name){
5340             return Roo.fly(el).getStyle(name);
5341         },
5342         /**
5343          * Compiles a selector/xpath query into a reusable function. The returned function
5344          * takes one parameter "root" (optional), which is the context node from where the query should start.
5345          * @param {String} selector The selector/xpath query
5346          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5347          * @return {Function}
5348          */
5349         compile : function(path, type){
5350             type = type || "select";
5351             
5352             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5353             var q = path, mode, lq;
5354             var tk = Roo.DomQuery.matchers;
5355             var tklen = tk.length;
5356             var mm;
5357
5358             // accept leading mode switch
5359             var lmode = q.match(modeRe);
5360             if(lmode && lmode[1]){
5361                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5362                 q = q.replace(lmode[1], "");
5363             }
5364             // strip leading slashes
5365             while(path.substr(0, 1)=="/"){
5366                 path = path.substr(1);
5367             }
5368
5369             while(q && lq != q){
5370                 lq = q;
5371                 var tm = q.match(tagTokenRe);
5372                 if(type == "select"){
5373                     if(tm){
5374                         if(tm[1] == "#"){
5375                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5376                         }else{
5377                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5378                         }
5379                         q = q.replace(tm[0], "");
5380                     }else if(q.substr(0, 1) != '@'){
5381                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5382                     }
5383                 }else{
5384                     if(tm){
5385                         if(tm[1] == "#"){
5386                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5387                         }else{
5388                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5389                         }
5390                         q = q.replace(tm[0], "");
5391                     }
5392                 }
5393                 while(!(mm = q.match(modeRe))){
5394                     var matched = false;
5395                     for(var j = 0; j < tklen; j++){
5396                         var t = tk[j];
5397                         var m = q.match(t.re);
5398                         if(m){
5399                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5400                                                     return m[i];
5401                                                 });
5402                             q = q.replace(m[0], "");
5403                             matched = true;
5404                             break;
5405                         }
5406                     }
5407                     // prevent infinite loop on bad selector
5408                     if(!matched){
5409                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5410                     }
5411                 }
5412                 if(mm[1]){
5413                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5414                     q = q.replace(mm[1], "");
5415                 }
5416             }
5417             fn[fn.length] = "return nodup(n);\n}";
5418             
5419              /** 
5420               * list of variables that need from compression as they are used by eval.
5421              *  eval:var:batch 
5422              *  eval:var:nodup
5423              *  eval:var:byTag
5424              *  eval:var:ById
5425              *  eval:var:getNodes
5426              *  eval:var:quickId
5427              *  eval:var:mode
5428              *  eval:var:root
5429              *  eval:var:n
5430              *  eval:var:byClassName
5431              *  eval:var:byPseudo
5432              *  eval:var:byAttribute
5433              *  eval:var:attrValue
5434              * 
5435              **/ 
5436             eval(fn.join(""));
5437             return f;
5438         },
5439
5440         /**
5441          * Selects a group of elements.
5442          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5443          * @param {Node} root (optional) The start of the query (defaults to document).
5444          * @return {Array}
5445          */
5446         select : function(path, root, type){
5447             if(!root || root == document){
5448                 root = document;
5449             }
5450             if(typeof root == "string"){
5451                 root = document.getElementById(root);
5452             }
5453             var paths = path.split(",");
5454             var results = [];
5455             for(var i = 0, len = paths.length; i < len; i++){
5456                 var p = paths[i].replace(trimRe, "");
5457                 if(!cache[p]){
5458                     cache[p] = Roo.DomQuery.compile(p);
5459                     if(!cache[p]){
5460                         throw p + " is not a valid selector";
5461                     }
5462                 }
5463                 var result = cache[p](root);
5464                 if(result && result != document){
5465                     results = results.concat(result);
5466                 }
5467             }
5468             if(paths.length > 1){
5469                 return nodup(results);
5470             }
5471             return results;
5472         },
5473
5474         /**
5475          * Selects a single element.
5476          * @param {String} selector The selector/xpath query
5477          * @param {Node} root (optional) The start of the query (defaults to document).
5478          * @return {Element}
5479          */
5480         selectNode : function(path, root){
5481             return Roo.DomQuery.select(path, root)[0];
5482         },
5483
5484         /**
5485          * Selects the value of a node, optionally replacing null with the defaultValue.
5486          * @param {String} selector The selector/xpath query
5487          * @param {Node} root (optional) The start of the query (defaults to document).
5488          * @param {String} defaultValue
5489          */
5490         selectValue : function(path, root, defaultValue){
5491             path = path.replace(trimRe, "");
5492             if(!valueCache[path]){
5493                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5494             }
5495             var n = valueCache[path](root);
5496             n = n[0] ? n[0] : n;
5497             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5498             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5499         },
5500
5501         /**
5502          * Selects the value of a node, parsing integers and floats.
5503          * @param {String} selector The selector/xpath query
5504          * @param {Node} root (optional) The start of the query (defaults to document).
5505          * @param {Number} defaultValue
5506          * @return {Number}
5507          */
5508         selectNumber : function(path, root, defaultValue){
5509             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5510             return parseFloat(v);
5511         },
5512
5513         /**
5514          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5515          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5516          * @param {String} selector The simple selector to test
5517          * @return {Boolean}
5518          */
5519         is : function(el, ss){
5520             if(typeof el == "string"){
5521                 el = document.getElementById(el);
5522             }
5523             var isArray = (el instanceof Array);
5524             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5525             return isArray ? (result.length == el.length) : (result.length > 0);
5526         },
5527
5528         /**
5529          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5530          * @param {Array} el An array of elements to filter
5531          * @param {String} selector The simple selector to test
5532          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5533          * the selector instead of the ones that match
5534          * @return {Array}
5535          */
5536         filter : function(els, ss, nonMatches){
5537             ss = ss.replace(trimRe, "");
5538             if(!simpleCache[ss]){
5539                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5540             }
5541             var result = simpleCache[ss](els);
5542             return nonMatches ? quickDiff(result, els) : result;
5543         },
5544
5545         /**
5546          * Collection of matching regular expressions and code snippets.
5547          */
5548         matchers : [{
5549                 re: /^\.([\w-]+)/,
5550                 select: 'n = byClassName(n, null, " {1} ");'
5551             }, {
5552                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5553                 select: 'n = byPseudo(n, "{1}", "{2}");'
5554             },{
5555                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5556                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5557             }, {
5558                 re: /^#([\w-]+)/,
5559                 select: 'n = byId(n, null, "{1}");'
5560             },{
5561                 re: /^@([\w-]+)/,
5562                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5563             }
5564         ],
5565
5566         /**
5567          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5568          * 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;.
5569          */
5570         operators : {
5571             "=" : function(a, v){
5572                 return a == v;
5573             },
5574             "!=" : function(a, v){
5575                 return a != v;
5576             },
5577             "^=" : function(a, v){
5578                 return a && a.substr(0, v.length) == v;
5579             },
5580             "$=" : function(a, v){
5581                 return a && a.substr(a.length-v.length) == v;
5582             },
5583             "*=" : function(a, v){
5584                 return a && a.indexOf(v) !== -1;
5585             },
5586             "%=" : function(a, v){
5587                 return (a % v) == 0;
5588             },
5589             "|=" : function(a, v){
5590                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5591             },
5592             "~=" : function(a, v){
5593                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5594             }
5595         },
5596
5597         /**
5598          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5599          * and the argument (if any) supplied in the selector.
5600          */
5601         pseudos : {
5602             "first-child" : function(c){
5603                 var r = [], ri = -1, n;
5604                 for(var i = 0, ci; ci = n = c[i]; i++){
5605                     while((n = n.previousSibling) && n.nodeType != 1);
5606                     if(!n){
5607                         r[++ri] = ci;
5608                     }
5609                 }
5610                 return r;
5611             },
5612
5613             "last-child" : function(c){
5614                 var r = [], ri = -1, n;
5615                 for(var i = 0, ci; ci = n = c[i]; i++){
5616                     while((n = n.nextSibling) && n.nodeType != 1);
5617                     if(!n){
5618                         r[++ri] = ci;
5619                     }
5620                 }
5621                 return r;
5622             },
5623
5624             "nth-child" : function(c, a) {
5625                 var r = [], ri = -1;
5626                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5627                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5628                 for(var i = 0, n; n = c[i]; i++){
5629                     var pn = n.parentNode;
5630                     if (batch != pn._batch) {
5631                         var j = 0;
5632                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5633                             if(cn.nodeType == 1){
5634                                cn.nodeIndex = ++j;
5635                             }
5636                         }
5637                         pn._batch = batch;
5638                     }
5639                     if (f == 1) {
5640                         if (l == 0 || n.nodeIndex == l){
5641                             r[++ri] = n;
5642                         }
5643                     } else if ((n.nodeIndex + l) % f == 0){
5644                         r[++ri] = n;
5645                     }
5646                 }
5647
5648                 return r;
5649             },
5650
5651             "only-child" : function(c){
5652                 var r = [], ri = -1;;
5653                 for(var i = 0, ci; ci = c[i]; i++){
5654                     if(!prev(ci) && !next(ci)){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "empty" : function(c){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     var cns = ci.childNodes, j = 0, cn, empty = true;
5665                     while(cn = cns[j]){
5666                         ++j;
5667                         if(cn.nodeType == 1 || cn.nodeType == 3){
5668                             empty = false;
5669                             break;
5670                         }
5671                     }
5672                     if(empty){
5673                         r[++ri] = ci;
5674                     }
5675                 }
5676                 return r;
5677             },
5678
5679             "contains" : function(c, v){
5680                 var r = [], ri = -1;
5681                 for(var i = 0, ci; ci = c[i]; i++){
5682                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5683                         r[++ri] = ci;
5684                     }
5685                 }
5686                 return r;
5687             },
5688
5689             "nodeValue" : function(c, v){
5690                 var r = [], ri = -1;
5691                 for(var i = 0, ci; ci = c[i]; i++){
5692                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5693                         r[++ri] = ci;
5694                     }
5695                 }
5696                 return r;
5697             },
5698
5699             "checked" : function(c){
5700                 var r = [], ri = -1;
5701                 for(var i = 0, ci; ci = c[i]; i++){
5702                     if(ci.checked == true){
5703                         r[++ri] = ci;
5704                     }
5705                 }
5706                 return r;
5707             },
5708
5709             "not" : function(c, ss){
5710                 return Roo.DomQuery.filter(c, ss, true);
5711             },
5712
5713             "odd" : function(c){
5714                 return this["nth-child"](c, "odd");
5715             },
5716
5717             "even" : function(c){
5718                 return this["nth-child"](c, "even");
5719             },
5720
5721             "nth" : function(c, a){
5722                 return c[a-1] || [];
5723             },
5724
5725             "first" : function(c){
5726                 return c[0] || [];
5727             },
5728
5729             "last" : function(c){
5730                 return c[c.length-1] || [];
5731             },
5732
5733             "has" : function(c, ss){
5734                 var s = Roo.DomQuery.select;
5735                 var r = [], ri = -1;
5736                 for(var i = 0, ci; ci = c[i]; i++){
5737                     if(s(ss, ci).length > 0){
5738                         r[++ri] = ci;
5739                     }
5740                 }
5741                 return r;
5742             },
5743
5744             "next" : function(c, ss){
5745                 var is = Roo.DomQuery.is;
5746                 var r = [], ri = -1;
5747                 for(var i = 0, ci; ci = c[i]; i++){
5748                     var n = next(ci);
5749                     if(n && is(n, ss)){
5750                         r[++ri] = ci;
5751                     }
5752                 }
5753                 return r;
5754             },
5755
5756             "prev" : function(c, ss){
5757                 var is = Roo.DomQuery.is;
5758                 var r = [], ri = -1;
5759                 for(var i = 0, ci; ci = c[i]; i++){
5760                     var n = prev(ci);
5761                     if(n && is(n, ss)){
5762                         r[++ri] = ci;
5763                     }
5764                 }
5765                 return r;
5766             }
5767         }
5768     };
5769 }();
5770
5771 /**
5772  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5773  * @param {String} path The selector/xpath query
5774  * @param {Node} root (optional) The start of the query (defaults to document).
5775  * @return {Array}
5776  * @member Roo
5777  * @method query
5778  */
5779 Roo.query = Roo.DomQuery.select;
5780 /*
5781  * Based on:
5782  * Ext JS Library 1.1.1
5783  * Copyright(c) 2006-2007, Ext JS, LLC.
5784  *
5785  * Originally Released Under LGPL - original licence link has changed is not relivant.
5786  *
5787  * Fork - LGPL
5788  * <script type="text/javascript">
5789  */
5790
5791 /**
5792  * @class Roo.util.Observable
5793  * Base class that provides a common interface for publishing events. Subclasses are expected to
5794  * to have a property "events" with all the events defined.<br>
5795  * For example:
5796  * <pre><code>
5797  Employee = function(name){
5798     this.name = name;
5799     this.addEvents({
5800         "fired" : true,
5801         "quit" : true
5802     });
5803  }
5804  Roo.extend(Employee, Roo.util.Observable);
5805 </code></pre>
5806  * @param {Object} config properties to use (incuding events / listeners)
5807  */
5808
5809 Roo.util.Observable = function(cfg){
5810     
5811     cfg = cfg|| {};
5812     this.addEvents(cfg.events || {});
5813     if (cfg.events) {
5814         delete cfg.events; // make sure
5815     }
5816      
5817     Roo.apply(this, cfg);
5818     
5819     if(this.listeners){
5820         this.on(this.listeners);
5821         delete this.listeners;
5822     }
5823 };
5824 Roo.util.Observable.prototype = {
5825     /** 
5826  * @cfg {Object} listeners  list of events and functions to call for this object, 
5827  * For example :
5828  * <pre><code>
5829     listeners :  { 
5830        'click' : function(e) {
5831            ..... 
5832         } ,
5833         .... 
5834     } 
5835   </code></pre>
5836  */
5837     
5838     
5839     /**
5840      * Fires the specified event with the passed parameters (minus the event name).
5841      * @param {String} eventName
5842      * @param {Object...} args Variable number of parameters are passed to handlers
5843      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5844      */
5845     fireEvent : function(){
5846         var ce = this.events[arguments[0].toLowerCase()];
5847         if(typeof ce == "object"){
5848             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5849         }else{
5850             return true;
5851         }
5852     },
5853
5854     // private
5855     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5856
5857     /**
5858      * Appends an event handler to this component
5859      * @param {String}   eventName The type of event to listen for
5860      * @param {Function} handler The method the event invokes
5861      * @param {Object}   scope (optional) The scope in which to execute the handler
5862      * function. The handler function's "this" context.
5863      * @param {Object}   options (optional) An object containing handler configuration
5864      * properties. This may contain any of the following properties:<ul>
5865      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5866      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5867      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5868      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5869      * by the specified number of milliseconds. If the event fires again within that time, the original
5870      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5871      * </ul><br>
5872      * <p>
5873      * <b>Combining Options</b><br>
5874      * Using the options argument, it is possible to combine different types of listeners:<br>
5875      * <br>
5876      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5877                 <pre><code>
5878                 el.on('click', this.onClick, this, {
5879                         single: true,
5880                 delay: 100,
5881                 forumId: 4
5882                 });
5883                 </code></pre>
5884      * <p>
5885      * <b>Attaching multiple handlers in 1 call</b><br>
5886      * The method also allows for a single argument to be passed which is a config object containing properties
5887      * which specify multiple handlers.
5888      * <pre><code>
5889                 el.on({
5890                         'click': {
5891                         fn: this.onClick,
5892                         scope: this,
5893                         delay: 100
5894                 }, 
5895                 'mouseover': {
5896                         fn: this.onMouseOver,
5897                         scope: this
5898                 },
5899                 'mouseout': {
5900                         fn: this.onMouseOut,
5901                         scope: this
5902                 }
5903                 });
5904                 </code></pre>
5905      * <p>
5906      * Or a shorthand syntax which passes the same scope object to all handlers:
5907         <pre><code>
5908                 el.on({
5909                         'click': this.onClick,
5910                 'mouseover': this.onMouseOver,
5911                 'mouseout': this.onMouseOut,
5912                 scope: this
5913                 });
5914                 </code></pre>
5915      */
5916     addListener : function(eventName, fn, scope, o){
5917         if(typeof eventName == "object"){
5918             o = eventName;
5919             for(var e in o){
5920                 if(this.filterOptRe.test(e)){
5921                     continue;
5922                 }
5923                 if(typeof o[e] == "function"){
5924                     // shared options
5925                     this.addListener(e, o[e], o.scope,  o);
5926                 }else{
5927                     // individual options
5928                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5929                 }
5930             }
5931             return;
5932         }
5933         o = (!o || typeof o == "boolean") ? {} : o;
5934         eventName = eventName.toLowerCase();
5935         var ce = this.events[eventName] || true;
5936         if(typeof ce == "boolean"){
5937             ce = new Roo.util.Event(this, eventName);
5938             this.events[eventName] = ce;
5939         }
5940         ce.addListener(fn, scope, o);
5941     },
5942
5943     /**
5944      * Removes a listener
5945      * @param {String}   eventName     The type of event to listen for
5946      * @param {Function} handler        The handler to remove
5947      * @param {Object}   scope  (optional) The scope (this object) for the handler
5948      */
5949     removeListener : function(eventName, fn, scope){
5950         var ce = this.events[eventName.toLowerCase()];
5951         if(typeof ce == "object"){
5952             ce.removeListener(fn, scope);
5953         }
5954     },
5955
5956     /**
5957      * Removes all listeners for this object
5958      */
5959     purgeListeners : function(){
5960         for(var evt in this.events){
5961             if(typeof this.events[evt] == "object"){
5962                  this.events[evt].clearListeners();
5963             }
5964         }
5965     },
5966
5967     relayEvents : function(o, events){
5968         var createHandler = function(ename){
5969             return function(){
5970                  
5971                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5972             };
5973         };
5974         for(var i = 0, len = events.length; i < len; i++){
5975             var ename = events[i];
5976             if(!this.events[ename]){
5977                 this.events[ename] = true;
5978             };
5979             o.on(ename, createHandler(ename), this);
5980         }
5981     },
5982
5983     /**
5984      * Used to define events on this Observable
5985      * @param {Object} object The object with the events defined
5986      */
5987     addEvents : function(o){
5988         if(!this.events){
5989             this.events = {};
5990         }
5991         Roo.applyIf(this.events, o);
5992     },
5993
5994     /**
5995      * Checks to see if this object has any listeners for a specified event
5996      * @param {String} eventName The name of the event to check for
5997      * @return {Boolean} True if the event is being listened for, else false
5998      */
5999     hasListener : function(eventName){
6000         var e = this.events[eventName];
6001         return typeof e == "object" && e.listeners.length > 0;
6002     }
6003 };
6004 /**
6005  * Appends an event handler to this element (shorthand for addListener)
6006  * @param {String}   eventName     The type of event to listen for
6007  * @param {Function} handler        The method the event invokes
6008  * @param {Object}   scope (optional) The scope in which to execute the handler
6009  * function. The handler function's "this" context.
6010  * @param {Object}   options  (optional)
6011  * @method
6012  */
6013 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
6014 /**
6015  * Removes a listener (shorthand for removeListener)
6016  * @param {String}   eventName     The type of event to listen for
6017  * @param {Function} handler        The handler to remove
6018  * @param {Object}   scope  (optional) The scope (this object) for the handler
6019  * @method
6020  */
6021 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6022
6023 /**
6024  * Starts capture on the specified Observable. All events will be passed
6025  * to the supplied function with the event name + standard signature of the event
6026  * <b>before</b> the event is fired. If the supplied function returns false,
6027  * the event will not fire.
6028  * @param {Observable} o The Observable to capture
6029  * @param {Function} fn The function to call
6030  * @param {Object} scope (optional) The scope (this object) for the fn
6031  * @static
6032  */
6033 Roo.util.Observable.capture = function(o, fn, scope){
6034     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6035 };
6036
6037 /**
6038  * Removes <b>all</b> added captures from the Observable.
6039  * @param {Observable} o The Observable to release
6040  * @static
6041  */
6042 Roo.util.Observable.releaseCapture = function(o){
6043     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6044 };
6045
6046 (function(){
6047
6048     var createBuffered = function(h, o, scope){
6049         var task = new Roo.util.DelayedTask();
6050         return function(){
6051             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6052         };
6053     };
6054
6055     var createSingle = function(h, e, fn, scope){
6056         return function(){
6057             e.removeListener(fn, scope);
6058             return h.apply(scope, arguments);
6059         };
6060     };
6061
6062     var createDelayed = function(h, o, scope){
6063         return function(){
6064             var args = Array.prototype.slice.call(arguments, 0);
6065             setTimeout(function(){
6066                 h.apply(scope, args);
6067             }, o.delay || 10);
6068         };
6069     };
6070
6071     Roo.util.Event = function(obj, name){
6072         this.name = name;
6073         this.obj = obj;
6074         this.listeners = [];
6075     };
6076
6077     Roo.util.Event.prototype = {
6078         addListener : function(fn, scope, options){
6079             var o = options || {};
6080             scope = scope || this.obj;
6081             if(!this.isListening(fn, scope)){
6082                 var l = {fn: fn, scope: scope, options: o};
6083                 var h = fn;
6084                 if(o.delay){
6085                     h = createDelayed(h, o, scope);
6086                 }
6087                 if(o.single){
6088                     h = createSingle(h, this, fn, scope);
6089                 }
6090                 if(o.buffer){
6091                     h = createBuffered(h, o, scope);
6092                 }
6093                 l.fireFn = h;
6094                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6095                     this.listeners.push(l);
6096                 }else{
6097                     this.listeners = this.listeners.slice(0);
6098                     this.listeners.push(l);
6099                 }
6100             }
6101         },
6102
6103         findListener : function(fn, scope){
6104             scope = scope || this.obj;
6105             var ls = this.listeners;
6106             for(var i = 0, len = ls.length; i < len; i++){
6107                 var l = ls[i];
6108                 if(l.fn == fn && l.scope == scope){
6109                     return i;
6110                 }
6111             }
6112             return -1;
6113         },
6114
6115         isListening : function(fn, scope){
6116             return this.findListener(fn, scope) != -1;
6117         },
6118
6119         removeListener : function(fn, scope){
6120             var index;
6121             if((index = this.findListener(fn, scope)) != -1){
6122                 if(!this.firing){
6123                     this.listeners.splice(index, 1);
6124                 }else{
6125                     this.listeners = this.listeners.slice(0);
6126                     this.listeners.splice(index, 1);
6127                 }
6128                 return true;
6129             }
6130             return false;
6131         },
6132
6133         clearListeners : function(){
6134             this.listeners = [];
6135         },
6136
6137         fire : function(){
6138             var ls = this.listeners, scope, len = ls.length;
6139             if(len > 0){
6140                 this.firing = true;
6141                 var args = Array.prototype.slice.call(arguments, 0);                
6142                 for(var i = 0; i < len; i++){
6143                     var l = ls[i];
6144                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6145                         this.firing = false;
6146                         return false;
6147                     }
6148                 }
6149                 this.firing = false;
6150             }
6151             return true;
6152         }
6153     };
6154 })();/*
6155  * RooJS Library 
6156  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6157  *
6158  * Licence LGPL 
6159  *
6160  */
6161  
6162 /**
6163  * @class Roo.Document
6164  * @extends Roo.util.Observable
6165  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6166  * 
6167  * @param {Object} config the methods and properties of the 'base' class for the application.
6168  * 
6169  *  Generic Page handler - implement this to start your app..
6170  * 
6171  * eg.
6172  *  MyProject = new Roo.Document({
6173         events : {
6174             'load' : true // your events..
6175         },
6176         listeners : {
6177             'ready' : function() {
6178                 // fired on Roo.onReady()
6179             }
6180         }
6181  * 
6182  */
6183 Roo.Document = function(cfg) {
6184      
6185     this.addEvents({ 
6186         'ready' : true
6187     });
6188     Roo.util.Observable.call(this,cfg);
6189     
6190     var _this = this;
6191     
6192     Roo.onReady(function() {
6193         _this.fireEvent('ready');
6194     },null,false);
6195     
6196     
6197 }
6198
6199 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6200  * Based on:
6201  * Ext JS Library 1.1.1
6202  * Copyright(c) 2006-2007, Ext JS, LLC.
6203  *
6204  * Originally Released Under LGPL - original licence link has changed is not relivant.
6205  *
6206  * Fork - LGPL
6207  * <script type="text/javascript">
6208  */
6209
6210 /**
6211  * @class Roo.EventManager
6212  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6213  * several useful events directly.
6214  * See {@link Roo.EventObject} for more details on normalized event objects.
6215  * @singleton
6216  */
6217 Roo.EventManager = function(){
6218     var docReadyEvent, docReadyProcId, docReadyState = false;
6219     var resizeEvent, resizeTask, textEvent, textSize;
6220     var E = Roo.lib.Event;
6221     var D = Roo.lib.Dom;
6222
6223     
6224     
6225
6226     var fireDocReady = function(){
6227         if(!docReadyState){
6228             docReadyState = true;
6229             Roo.isReady = true;
6230             if(docReadyProcId){
6231                 clearInterval(docReadyProcId);
6232             }
6233             if(Roo.isGecko || Roo.isOpera) {
6234                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6235             }
6236             if(Roo.isIE){
6237                 var defer = document.getElementById("ie-deferred-loader");
6238                 if(defer){
6239                     defer.onreadystatechange = null;
6240                     defer.parentNode.removeChild(defer);
6241                 }
6242             }
6243             if(docReadyEvent){
6244                 docReadyEvent.fire();
6245                 docReadyEvent.clearListeners();
6246             }
6247         }
6248     };
6249     
6250     var initDocReady = function(){
6251         docReadyEvent = new Roo.util.Event();
6252         if(Roo.isGecko || Roo.isOpera) {
6253             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6254         }else if(Roo.isIE){
6255             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6256             var defer = document.getElementById("ie-deferred-loader");
6257             defer.onreadystatechange = function(){
6258                 if(this.readyState == "complete"){
6259                     fireDocReady();
6260                 }
6261             };
6262         }else if(Roo.isSafari){ 
6263             docReadyProcId = setInterval(function(){
6264                 var rs = document.readyState;
6265                 if(rs == "complete") {
6266                     fireDocReady();     
6267                  }
6268             }, 10);
6269         }
6270         // no matter what, make sure it fires on load
6271         E.on(window, "load", fireDocReady);
6272     };
6273
6274     var createBuffered = function(h, o){
6275         var task = new Roo.util.DelayedTask(h);
6276         return function(e){
6277             // create new event object impl so new events don't wipe out properties
6278             e = new Roo.EventObjectImpl(e);
6279             task.delay(o.buffer, h, null, [e]);
6280         };
6281     };
6282
6283     var createSingle = function(h, el, ename, fn){
6284         return function(e){
6285             Roo.EventManager.removeListener(el, ename, fn);
6286             h(e);
6287         };
6288     };
6289
6290     var createDelayed = function(h, o){
6291         return function(e){
6292             // create new event object impl so new events don't wipe out properties
6293             e = new Roo.EventObjectImpl(e);
6294             setTimeout(function(){
6295                 h(e);
6296             }, o.delay || 10);
6297         };
6298     };
6299     var transitionEndVal = false;
6300     
6301     var transitionEnd = function()
6302     {
6303         if (transitionEndVal) {
6304             return transitionEndVal;
6305         }
6306         var el = document.createElement('div');
6307
6308         var transEndEventNames = {
6309             WebkitTransition : 'webkitTransitionEnd',
6310             MozTransition    : 'transitionend',
6311             OTransition      : 'oTransitionEnd otransitionend',
6312             transition       : 'transitionend'
6313         };
6314     
6315         for (var name in transEndEventNames) {
6316             if (el.style[name] !== undefined) {
6317                 transitionEndVal = transEndEventNames[name];
6318                 return  transitionEndVal ;
6319             }
6320         }
6321     }
6322     
6323   
6324
6325     var listen = function(element, ename, opt, fn, scope)
6326     {
6327         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6328         fn = fn || o.fn; scope = scope || o.scope;
6329         var el = Roo.getDom(element);
6330         
6331         
6332         if(!el){
6333             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6334         }
6335         
6336         if (ename == 'transitionend') {
6337             ename = transitionEnd();
6338         }
6339         var h = function(e){
6340             e = Roo.EventObject.setEvent(e);
6341             var t;
6342             if(o.delegate){
6343                 t = e.getTarget(o.delegate, el);
6344                 if(!t){
6345                     return;
6346                 }
6347             }else{
6348                 t = e.target;
6349             }
6350             if(o.stopEvent === true){
6351                 e.stopEvent();
6352             }
6353             if(o.preventDefault === true){
6354                e.preventDefault();
6355             }
6356             if(o.stopPropagation === true){
6357                 e.stopPropagation();
6358             }
6359
6360             if(o.normalized === false){
6361                 e = e.browserEvent;
6362             }
6363
6364             fn.call(scope || el, e, t, o);
6365         };
6366         if(o.delay){
6367             h = createDelayed(h, o);
6368         }
6369         if(o.single){
6370             h = createSingle(h, el, ename, fn);
6371         }
6372         if(o.buffer){
6373             h = createBuffered(h, o);
6374         }
6375         
6376         fn._handlers = fn._handlers || [];
6377         
6378         
6379         fn._handlers.push([Roo.id(el), ename, h]);
6380         
6381         
6382          
6383         E.on(el, ename, h); // this adds the actuall listener to the object..
6384         
6385         
6386         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6387             el.addEventListener("DOMMouseScroll", h, false);
6388             E.on(window, 'unload', function(){
6389                 el.removeEventListener("DOMMouseScroll", h, false);
6390             });
6391         }
6392         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6393             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6394         }
6395         return h;
6396     };
6397
6398     var stopListening = function(el, ename, fn){
6399         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6400         if(hds){
6401             for(var i = 0, len = hds.length; i < len; i++){
6402                 var h = hds[i];
6403                 if(h[0] == id && h[1] == ename){
6404                     hd = h[2];
6405                     hds.splice(i, 1);
6406                     break;
6407                 }
6408             }
6409         }
6410         E.un(el, ename, hd);
6411         el = Roo.getDom(el);
6412         if(ename == "mousewheel" && el.addEventListener){
6413             el.removeEventListener("DOMMouseScroll", hd, false);
6414         }
6415         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6416             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6417         }
6418     };
6419
6420     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6421     
6422     var pub = {
6423         
6424         
6425         /** 
6426          * Fix for doc tools
6427          * @scope Roo.EventManager
6428          */
6429         
6430         
6431         /** 
6432          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6433          * object with a Roo.EventObject
6434          * @param {Function} fn        The method the event invokes
6435          * @param {Object}   scope    An object that becomes the scope of the handler
6436          * @param {boolean}  override If true, the obj passed in becomes
6437          *                             the execution scope of the listener
6438          * @return {Function} The wrapped function
6439          * @deprecated
6440          */
6441         wrap : function(fn, scope, override){
6442             return function(e){
6443                 Roo.EventObject.setEvent(e);
6444                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6445             };
6446         },
6447         
6448         /**
6449      * Appends an event handler to an element (shorthand for addListener)
6450      * @param {String/HTMLElement}   element        The html element or id to assign the
6451      * @param {String}   eventName The type of event to listen for
6452      * @param {Function} handler The method the event invokes
6453      * @param {Object}   scope (optional) The scope in which to execute the handler
6454      * function. The handler function's "this" context.
6455      * @param {Object}   options (optional) An object containing handler configuration
6456      * properties. This may contain any of the following properties:<ul>
6457      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6458      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6459      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6460      * <li>preventDefault {Boolean} True to prevent the default action</li>
6461      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6462      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6463      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6464      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6465      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6466      * by the specified number of milliseconds. If the event fires again within that time, the original
6467      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6468      * </ul><br>
6469      * <p>
6470      * <b>Combining Options</b><br>
6471      * Using the options argument, it is possible to combine different types of listeners:<br>
6472      * <br>
6473      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6474      * Code:<pre><code>
6475 el.on('click', this.onClick, this, {
6476     single: true,
6477     delay: 100,
6478     stopEvent : true,
6479     forumId: 4
6480 });</code></pre>
6481      * <p>
6482      * <b>Attaching multiple handlers in 1 call</b><br>
6483       * The method also allows for a single argument to be passed which is a config object containing properties
6484      * which specify multiple handlers.
6485      * <p>
6486      * Code:<pre><code>
6487 el.on({
6488     'click' : {
6489         fn: this.onClick
6490         scope: this,
6491         delay: 100
6492     },
6493     'mouseover' : {
6494         fn: this.onMouseOver
6495         scope: this
6496     },
6497     'mouseout' : {
6498         fn: this.onMouseOut
6499         scope: this
6500     }
6501 });</code></pre>
6502      * <p>
6503      * Or a shorthand syntax:<br>
6504      * Code:<pre><code>
6505 el.on({
6506     'click' : this.onClick,
6507     'mouseover' : this.onMouseOver,
6508     'mouseout' : this.onMouseOut
6509     scope: this
6510 });</code></pre>
6511      */
6512         addListener : function(element, eventName, fn, scope, options){
6513             if(typeof eventName == "object"){
6514                 var o = eventName;
6515                 for(var e in o){
6516                     if(propRe.test(e)){
6517                         continue;
6518                     }
6519                     if(typeof o[e] == "function"){
6520                         // shared options
6521                         listen(element, e, o, o[e], o.scope);
6522                     }else{
6523                         // individual options
6524                         listen(element, e, o[e]);
6525                     }
6526                 }
6527                 return;
6528             }
6529             return listen(element, eventName, options, fn, scope);
6530         },
6531         
6532         /**
6533          * Removes an event handler
6534          *
6535          * @param {String/HTMLElement}   element        The id or html element to remove the 
6536          *                             event from
6537          * @param {String}   eventName     The type of event
6538          * @param {Function} fn
6539          * @return {Boolean} True if a listener was actually removed
6540          */
6541         removeListener : function(element, eventName, fn){
6542             return stopListening(element, eventName, fn);
6543         },
6544         
6545         /**
6546          * Fires when the document is ready (before onload and before images are loaded). Can be 
6547          * accessed shorthanded Roo.onReady().
6548          * @param {Function} fn        The method the event invokes
6549          * @param {Object}   scope    An  object that becomes the scope of the handler
6550          * @param {boolean}  options
6551          */
6552         onDocumentReady : function(fn, scope, options){
6553             if(docReadyState){ // if it already fired
6554                 docReadyEvent.addListener(fn, scope, options);
6555                 docReadyEvent.fire();
6556                 docReadyEvent.clearListeners();
6557                 return;
6558             }
6559             if(!docReadyEvent){
6560                 initDocReady();
6561             }
6562             docReadyEvent.addListener(fn, scope, options);
6563         },
6564         
6565         /**
6566          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6567          * @param {Function} fn        The method the event invokes
6568          * @param {Object}   scope    An object that becomes the scope of the handler
6569          * @param {boolean}  options
6570          */
6571         onWindowResize : function(fn, scope, options){
6572             if(!resizeEvent){
6573                 resizeEvent = new Roo.util.Event();
6574                 resizeTask = new Roo.util.DelayedTask(function(){
6575                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6576                 });
6577                 E.on(window, "resize", function(){
6578                     if(Roo.isIE){
6579                         resizeTask.delay(50);
6580                     }else{
6581                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6582                     }
6583                 });
6584             }
6585             resizeEvent.addListener(fn, scope, options);
6586         },
6587
6588         /**
6589          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6590          * @param {Function} fn        The method the event invokes
6591          * @param {Object}   scope    An object that becomes the scope of the handler
6592          * @param {boolean}  options
6593          */
6594         onTextResize : function(fn, scope, options){
6595             if(!textEvent){
6596                 textEvent = new Roo.util.Event();
6597                 var textEl = new Roo.Element(document.createElement('div'));
6598                 textEl.dom.className = 'x-text-resize';
6599                 textEl.dom.innerHTML = 'X';
6600                 textEl.appendTo(document.body);
6601                 textSize = textEl.dom.offsetHeight;
6602                 setInterval(function(){
6603                     if(textEl.dom.offsetHeight != textSize){
6604                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6605                     }
6606                 }, this.textResizeInterval);
6607             }
6608             textEvent.addListener(fn, scope, options);
6609         },
6610
6611         /**
6612          * Removes the passed window resize listener.
6613          * @param {Function} fn        The method the event invokes
6614          * @param {Object}   scope    The scope of handler
6615          */
6616         removeResizeListener : function(fn, scope){
6617             if(resizeEvent){
6618                 resizeEvent.removeListener(fn, scope);
6619             }
6620         },
6621
6622         // private
6623         fireResize : function(){
6624             if(resizeEvent){
6625                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6626             }   
6627         },
6628         /**
6629          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6630          */
6631         ieDeferSrc : false,
6632         /**
6633          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6634          */
6635         textResizeInterval : 50
6636     };
6637     
6638     /**
6639      * Fix for doc tools
6640      * @scopeAlias pub=Roo.EventManager
6641      */
6642     
6643      /**
6644      * Appends an event handler to an element (shorthand for addListener)
6645      * @param {String/HTMLElement}   element        The html element or id to assign the
6646      * @param {String}   eventName The type of event to listen for
6647      * @param {Function} handler The method the event invokes
6648      * @param {Object}   scope (optional) The scope in which to execute the handler
6649      * function. The handler function's "this" context.
6650      * @param {Object}   options (optional) An object containing handler configuration
6651      * properties. This may contain any of the following properties:<ul>
6652      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6653      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6654      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6655      * <li>preventDefault {Boolean} True to prevent the default action</li>
6656      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6657      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6658      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6659      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6660      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6661      * by the specified number of milliseconds. If the event fires again within that time, the original
6662      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6663      * </ul><br>
6664      * <p>
6665      * <b>Combining Options</b><br>
6666      * Using the options argument, it is possible to combine different types of listeners:<br>
6667      * <br>
6668      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6669      * Code:<pre><code>
6670 el.on('click', this.onClick, this, {
6671     single: true,
6672     delay: 100,
6673     stopEvent : true,
6674     forumId: 4
6675 });</code></pre>
6676      * <p>
6677      * <b>Attaching multiple handlers in 1 call</b><br>
6678       * The method also allows for a single argument to be passed which is a config object containing properties
6679      * which specify multiple handlers.
6680      * <p>
6681      * Code:<pre><code>
6682 el.on({
6683     'click' : {
6684         fn: this.onClick
6685         scope: this,
6686         delay: 100
6687     },
6688     'mouseover' : {
6689         fn: this.onMouseOver
6690         scope: this
6691     },
6692     'mouseout' : {
6693         fn: this.onMouseOut
6694         scope: this
6695     }
6696 });</code></pre>
6697      * <p>
6698      * Or a shorthand syntax:<br>
6699      * Code:<pre><code>
6700 el.on({
6701     'click' : this.onClick,
6702     'mouseover' : this.onMouseOver,
6703     'mouseout' : this.onMouseOut
6704     scope: this
6705 });</code></pre>
6706      */
6707     pub.on = pub.addListener;
6708     pub.un = pub.removeListener;
6709
6710     pub.stoppedMouseDownEvent = new Roo.util.Event();
6711     return pub;
6712 }();
6713 /**
6714   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6715   * @param {Function} fn        The method the event invokes
6716   * @param {Object}   scope    An  object that becomes the scope of the handler
6717   * @param {boolean}  override If true, the obj passed in becomes
6718   *                             the execution scope of the listener
6719   * @member Roo
6720   * @method onReady
6721  */
6722 Roo.onReady = Roo.EventManager.onDocumentReady;
6723
6724 Roo.onReady(function(){
6725     var bd = Roo.get(document.body);
6726     if(!bd){ return; }
6727
6728     var cls = [
6729             Roo.isIE ? "roo-ie"
6730             : Roo.isIE11 ? "roo-ie11"
6731             : Roo.isEdge ? "roo-edge"
6732             : Roo.isGecko ? "roo-gecko"
6733             : Roo.isOpera ? "roo-opera"
6734             : Roo.isSafari ? "roo-safari" : ""];
6735
6736     if(Roo.isMac){
6737         cls.push("roo-mac");
6738     }
6739     if(Roo.isLinux){
6740         cls.push("roo-linux");
6741     }
6742     if(Roo.isIOS){
6743         cls.push("roo-ios");
6744     }
6745     if(Roo.isTouch){
6746         cls.push("roo-touch");
6747     }
6748     if(Roo.isBorderBox){
6749         cls.push('roo-border-box');
6750     }
6751     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6752         var p = bd.dom.parentNode;
6753         if(p){
6754             p.className += ' roo-strict';
6755         }
6756     }
6757     bd.addClass(cls.join(' '));
6758 });
6759
6760 /**
6761  * @class Roo.EventObject
6762  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6763  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6764  * Example:
6765  * <pre><code>
6766  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6767     e.preventDefault();
6768     var target = e.getTarget();
6769     ...
6770  }
6771  var myDiv = Roo.get("myDiv");
6772  myDiv.on("click", handleClick);
6773  //or
6774  Roo.EventManager.on("myDiv", 'click', handleClick);
6775  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6776  </code></pre>
6777  * @singleton
6778  */
6779 Roo.EventObject = function(){
6780     
6781     var E = Roo.lib.Event;
6782     
6783     // safari keypress events for special keys return bad keycodes
6784     var safariKeys = {
6785         63234 : 37, // left
6786         63235 : 39, // right
6787         63232 : 38, // up
6788         63233 : 40, // down
6789         63276 : 33, // page up
6790         63277 : 34, // page down
6791         63272 : 46, // delete
6792         63273 : 36, // home
6793         63275 : 35  // end
6794     };
6795
6796     // normalize button clicks
6797     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6798                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6799
6800     Roo.EventObjectImpl = function(e){
6801         if(e){
6802             this.setEvent(e.browserEvent || e);
6803         }
6804     };
6805     Roo.EventObjectImpl.prototype = {
6806         /**
6807          * Used to fix doc tools.
6808          * @scope Roo.EventObject.prototype
6809          */
6810             
6811
6812         
6813         
6814         /** The normal browser event */
6815         browserEvent : null,
6816         /** The button pressed in a mouse event */
6817         button : -1,
6818         /** True if the shift key was down during the event */
6819         shiftKey : false,
6820         /** True if the control key was down during the event */
6821         ctrlKey : false,
6822         /** True if the alt key was down during the event */
6823         altKey : false,
6824
6825         /** Key constant 
6826         * @type Number */
6827         BACKSPACE : 8,
6828         /** Key constant 
6829         * @type Number */
6830         TAB : 9,
6831         /** Key constant 
6832         * @type Number */
6833         RETURN : 13,
6834         /** Key constant 
6835         * @type Number */
6836         ENTER : 13,
6837         /** Key constant 
6838         * @type Number */
6839         SHIFT : 16,
6840         /** Key constant 
6841         * @type Number */
6842         CONTROL : 17,
6843         /** Key constant 
6844         * @type Number */
6845         ESC : 27,
6846         /** Key constant 
6847         * @type Number */
6848         SPACE : 32,
6849         /** Key constant 
6850         * @type Number */
6851         PAGEUP : 33,
6852         /** Key constant 
6853         * @type Number */
6854         PAGEDOWN : 34,
6855         /** Key constant 
6856         * @type Number */
6857         END : 35,
6858         /** Key constant 
6859         * @type Number */
6860         HOME : 36,
6861         /** Key constant 
6862         * @type Number */
6863         LEFT : 37,
6864         /** Key constant 
6865         * @type Number */
6866         UP : 38,
6867         /** Key constant 
6868         * @type Number */
6869         RIGHT : 39,
6870         /** Key constant 
6871         * @type Number */
6872         DOWN : 40,
6873         /** Key constant 
6874         * @type Number */
6875         DELETE : 46,
6876         /** Key constant 
6877         * @type Number */
6878         F5 : 116,
6879
6880            /** @private */
6881         setEvent : function(e){
6882             if(e == this || (e && e.browserEvent)){ // already wrapped
6883                 return e;
6884             }
6885             this.browserEvent = e;
6886             if(e){
6887                 // normalize buttons
6888                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6889                 if(e.type == 'click' && this.button == -1){
6890                     this.button = 0;
6891                 }
6892                 this.type = e.type;
6893                 this.shiftKey = e.shiftKey;
6894                 // mac metaKey behaves like ctrlKey
6895                 this.ctrlKey = e.ctrlKey || e.metaKey;
6896                 this.altKey = e.altKey;
6897                 // in getKey these will be normalized for the mac
6898                 this.keyCode = e.keyCode;
6899                 // keyup warnings on firefox.
6900                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6901                 // cache the target for the delayed and or buffered events
6902                 this.target = E.getTarget(e);
6903                 // same for XY
6904                 this.xy = E.getXY(e);
6905             }else{
6906                 this.button = -1;
6907                 this.shiftKey = false;
6908                 this.ctrlKey = false;
6909                 this.altKey = false;
6910                 this.keyCode = 0;
6911                 this.charCode =0;
6912                 this.target = null;
6913                 this.xy = [0, 0];
6914             }
6915             return this;
6916         },
6917
6918         /**
6919          * Stop the event (preventDefault and stopPropagation)
6920          */
6921         stopEvent : function(){
6922             if(this.browserEvent){
6923                 if(this.browserEvent.type == 'mousedown'){
6924                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6925                 }
6926                 E.stopEvent(this.browserEvent);
6927             }
6928         },
6929
6930         /**
6931          * Prevents the browsers default handling of the event.
6932          */
6933         preventDefault : function(){
6934             if(this.browserEvent){
6935                 E.preventDefault(this.browserEvent);
6936             }
6937         },
6938
6939         /** @private */
6940         isNavKeyPress : function(){
6941             var k = this.keyCode;
6942             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6943             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6944         },
6945
6946         isSpecialKey : function(){
6947             var k = this.keyCode;
6948             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6949             (k == 16) || (k == 17) ||
6950             (k >= 18 && k <= 20) ||
6951             (k >= 33 && k <= 35) ||
6952             (k >= 36 && k <= 39) ||
6953             (k >= 44 && k <= 45);
6954         },
6955         /**
6956          * Cancels bubbling of the event.
6957          */
6958         stopPropagation : function(){
6959             if(this.browserEvent){
6960                 if(this.type == 'mousedown'){
6961                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6962                 }
6963                 E.stopPropagation(this.browserEvent);
6964             }
6965         },
6966
6967         /**
6968          * Gets the key code for the event.
6969          * @return {Number}
6970          */
6971         getCharCode : function(){
6972             return this.charCode || this.keyCode;
6973         },
6974
6975         /**
6976          * Returns a normalized keyCode for the event.
6977          * @return {Number} The key code
6978          */
6979         getKey : function(){
6980             var k = this.keyCode || this.charCode;
6981             return Roo.isSafari ? (safariKeys[k] || k) : k;
6982         },
6983
6984         /**
6985          * Gets the x coordinate of the event.
6986          * @return {Number}
6987          */
6988         getPageX : function(){
6989             return this.xy[0];
6990         },
6991
6992         /**
6993          * Gets the y coordinate of the event.
6994          * @return {Number}
6995          */
6996         getPageY : function(){
6997             return this.xy[1];
6998         },
6999
7000         /**
7001          * Gets the time of the event.
7002          * @return {Number}
7003          */
7004         getTime : function(){
7005             if(this.browserEvent){
7006                 return E.getTime(this.browserEvent);
7007             }
7008             return null;
7009         },
7010
7011         /**
7012          * Gets the page coordinates of the event.
7013          * @return {Array} The xy values like [x, y]
7014          */
7015         getXY : function(){
7016             return this.xy;
7017         },
7018
7019         /**
7020          * Gets the target for the event.
7021          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7022          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7023                 search as a number or element (defaults to 10 || document.body)
7024          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7025          * @return {HTMLelement}
7026          */
7027         getTarget : function(selector, maxDepth, returnEl){
7028             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7029         },
7030         /**
7031          * Gets the related target.
7032          * @return {HTMLElement}
7033          */
7034         getRelatedTarget : function(){
7035             if(this.browserEvent){
7036                 return E.getRelatedTarget(this.browserEvent);
7037             }
7038             return null;
7039         },
7040
7041         /**
7042          * Normalizes mouse wheel delta across browsers
7043          * @return {Number} The delta
7044          */
7045         getWheelDelta : function(){
7046             var e = this.browserEvent;
7047             var delta = 0;
7048             if(e.wheelDelta){ /* IE/Opera. */
7049                 delta = e.wheelDelta/120;
7050             }else if(e.detail){ /* Mozilla case. */
7051                 delta = -e.detail/3;
7052             }
7053             return delta;
7054         },
7055
7056         /**
7057          * Returns true if the control, meta, shift or alt key was pressed during this event.
7058          * @return {Boolean}
7059          */
7060         hasModifier : function(){
7061             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7062         },
7063
7064         /**
7065          * Returns true if the target of this event equals el or is a child of el
7066          * @param {String/HTMLElement/Element} el
7067          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7068          * @return {Boolean}
7069          */
7070         within : function(el, related){
7071             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7072             return t && Roo.fly(el).contains(t);
7073         },
7074
7075         getPoint : function(){
7076             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7077         }
7078     };
7079
7080     return new Roo.EventObjectImpl();
7081 }();
7082             
7083     /*
7084  * Based on:
7085  * Ext JS Library 1.1.1
7086  * Copyright(c) 2006-2007, Ext JS, LLC.
7087  *
7088  * Originally Released Under LGPL - original licence link has changed is not relivant.
7089  *
7090  * Fork - LGPL
7091  * <script type="text/javascript">
7092  */
7093
7094  
7095 // was in Composite Element!??!?!
7096  
7097 (function(){
7098     var D = Roo.lib.Dom;
7099     var E = Roo.lib.Event;
7100     var A = Roo.lib.Anim;
7101
7102     // local style camelizing for speed
7103     var propCache = {};
7104     var camelRe = /(-[a-z])/gi;
7105     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7106     var view = document.defaultView;
7107
7108 /**
7109  * @class Roo.Element
7110  * Represents an Element in the DOM.<br><br>
7111  * Usage:<br>
7112 <pre><code>
7113 var el = Roo.get("my-div");
7114
7115 // or with getEl
7116 var el = getEl("my-div");
7117
7118 // or with a DOM element
7119 var el = Roo.get(myDivElement);
7120 </code></pre>
7121  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7122  * each call instead of constructing a new one.<br><br>
7123  * <b>Animations</b><br />
7124  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7125  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7126 <pre>
7127 Option    Default   Description
7128 --------- --------  ---------------------------------------------
7129 duration  .35       The duration of the animation in seconds
7130 easing    easeOut   The YUI easing method
7131 callback  none      A function to execute when the anim completes
7132 scope     this      The scope (this) of the callback function
7133 </pre>
7134 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7135 * manipulate the animation. Here's an example:
7136 <pre><code>
7137 var el = Roo.get("my-div");
7138
7139 // no animation
7140 el.setWidth(100);
7141
7142 // default animation
7143 el.setWidth(100, true);
7144
7145 // animation with some options set
7146 el.setWidth(100, {
7147     duration: 1,
7148     callback: this.foo,
7149     scope: this
7150 });
7151
7152 // using the "anim" property to get the Anim object
7153 var opt = {
7154     duration: 1,
7155     callback: this.foo,
7156     scope: this
7157 };
7158 el.setWidth(100, opt);
7159 ...
7160 if(opt.anim.isAnimated()){
7161     opt.anim.stop();
7162 }
7163 </code></pre>
7164 * <b> Composite (Collections of) Elements</b><br />
7165  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7166  * @constructor Create a new Element directly.
7167  * @param {String/HTMLElement} element
7168  * @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).
7169  */
7170     Roo.Element = function(element, forceNew)
7171     {
7172         var dom = typeof element == "string" ?
7173                 document.getElementById(element) : element;
7174         
7175         this.listeners = {};
7176         
7177         if(!dom){ // invalid id/element
7178             return null;
7179         }
7180         var id = dom.id;
7181         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7182             return Roo.Element.cache[id];
7183         }
7184
7185         /**
7186          * The DOM element
7187          * @type HTMLElement
7188          */
7189         this.dom = dom;
7190
7191         /**
7192          * The DOM element ID
7193          * @type String
7194          */
7195         this.id = id || Roo.id(dom);
7196         
7197         return this; // assumed for cctor?
7198     };
7199
7200     var El = Roo.Element;
7201
7202     El.prototype = {
7203         /**
7204          * The element's default display mode  (defaults to "") 
7205          * @type String
7206          */
7207         originalDisplay : "",
7208
7209         
7210         // note this is overridden in BS version..
7211         visibilityMode : 1, 
7212         /**
7213          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7214          * @type String
7215          */
7216         defaultUnit : "px",
7217         
7218         /**
7219          * Sets the element's visibility mode. When setVisible() is called it
7220          * will use this to determine whether to set the visibility or the display property.
7221          * @param visMode Element.VISIBILITY or Element.DISPLAY
7222          * @return {Roo.Element} this
7223          */
7224         setVisibilityMode : function(visMode){
7225             this.visibilityMode = visMode;
7226             return this;
7227         },
7228         /**
7229          * Convenience method for setVisibilityMode(Element.DISPLAY)
7230          * @param {String} display (optional) What to set display to when visible
7231          * @return {Roo.Element} this
7232          */
7233         enableDisplayMode : function(display){
7234             this.setVisibilityMode(El.DISPLAY);
7235             if(typeof display != "undefined") { this.originalDisplay = display; }
7236             return this;
7237         },
7238
7239         /**
7240          * 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)
7241          * @param {String} selector The simple selector to test
7242          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7243                 search as a number or element (defaults to 10 || document.body)
7244          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7245          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7246          */
7247         findParent : function(simpleSelector, maxDepth, returnEl){
7248             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7249             maxDepth = maxDepth || 50;
7250             if(typeof maxDepth != "number"){
7251                 stopEl = Roo.getDom(maxDepth);
7252                 maxDepth = 10;
7253             }
7254             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7255                 if(dq.is(p, simpleSelector)){
7256                     return returnEl ? Roo.get(p) : p;
7257                 }
7258                 depth++;
7259                 p = p.parentNode;
7260             }
7261             return null;
7262         },
7263
7264
7265         /**
7266          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7267          * @param {String} selector The simple selector to test
7268          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7269                 search as a number or element (defaults to 10 || document.body)
7270          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7271          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7272          */
7273         findParentNode : function(simpleSelector, maxDepth, returnEl){
7274             var p = Roo.fly(this.dom.parentNode, '_internal');
7275             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7276         },
7277         
7278         /**
7279          * Looks at  the scrollable parent element
7280          */
7281         findScrollableParent : function()
7282         {
7283             var overflowRegex = /(auto|scroll)/;
7284             
7285             if(this.getStyle('position') === 'fixed'){
7286                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7287             }
7288             
7289             var excludeStaticParent = this.getStyle('position') === "absolute";
7290             
7291             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7292                 
7293                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7294                     continue;
7295                 }
7296                 
7297                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7298                     return parent;
7299                 }
7300                 
7301                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7302                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7303                 }
7304             }
7305             
7306             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7307         },
7308
7309         /**
7310          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7311          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7312          * @param {String} selector The simple selector to test
7313          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7314                 search as a number or element (defaults to 10 || document.body)
7315          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7316          */
7317         up : function(simpleSelector, maxDepth){
7318             return this.findParentNode(simpleSelector, maxDepth, true);
7319         },
7320
7321
7322
7323         /**
7324          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7325          * @param {String} selector The simple selector to test
7326          * @return {Boolean} True if this element matches the selector, else false
7327          */
7328         is : function(simpleSelector){
7329             return Roo.DomQuery.is(this.dom, simpleSelector);
7330         },
7331
7332         /**
7333          * Perform animation on this element.
7334          * @param {Object} args The YUI animation control args
7335          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7336          * @param {Function} onComplete (optional) Function to call when animation completes
7337          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7338          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7339          * @return {Roo.Element} this
7340          */
7341         animate : function(args, duration, onComplete, easing, animType){
7342             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7343             return this;
7344         },
7345
7346         /*
7347          * @private Internal animation call
7348          */
7349         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7350             animType = animType || 'run';
7351             opt = opt || {};
7352             var anim = Roo.lib.Anim[animType](
7353                 this.dom, args,
7354                 (opt.duration || defaultDur) || .35,
7355                 (opt.easing || defaultEase) || 'easeOut',
7356                 function(){
7357                     Roo.callback(cb, this);
7358                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7359                 },
7360                 this
7361             );
7362             opt.anim = anim;
7363             return anim;
7364         },
7365
7366         // private legacy anim prep
7367         preanim : function(a, i){
7368             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7369         },
7370
7371         /**
7372          * Removes worthless text nodes
7373          * @param {Boolean} forceReclean (optional) By default the element
7374          * keeps track if it has been cleaned already so
7375          * you can call this over and over. However, if you update the element and
7376          * need to force a reclean, you can pass true.
7377          */
7378         clean : function(forceReclean){
7379             if(this.isCleaned && forceReclean !== true){
7380                 return this;
7381             }
7382             var ns = /\S/;
7383             var d = this.dom, n = d.firstChild, ni = -1;
7384             while(n){
7385                 var nx = n.nextSibling;
7386                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7387                     d.removeChild(n);
7388                 }else{
7389                     n.nodeIndex = ++ni;
7390                 }
7391                 n = nx;
7392             }
7393             this.isCleaned = true;
7394             return this;
7395         },
7396
7397         // private
7398         calcOffsetsTo : function(el){
7399             el = Roo.get(el);
7400             var d = el.dom;
7401             var restorePos = false;
7402             if(el.getStyle('position') == 'static'){
7403                 el.position('relative');
7404                 restorePos = true;
7405             }
7406             var x = 0, y =0;
7407             var op = this.dom;
7408             while(op && op != d && op.tagName != 'HTML'){
7409                 x+= op.offsetLeft;
7410                 y+= op.offsetTop;
7411                 op = op.offsetParent;
7412             }
7413             if(restorePos){
7414                 el.position('static');
7415             }
7416             return [x, y];
7417         },
7418
7419         /**
7420          * Scrolls this element into view within the passed container.
7421          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7422          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7423          * @return {Roo.Element} this
7424          */
7425         scrollIntoView : function(container, hscroll){
7426             var c = Roo.getDom(container) || document.body;
7427             var el = this.dom;
7428
7429             var o = this.calcOffsetsTo(c),
7430                 l = o[0],
7431                 t = o[1],
7432                 b = t+el.offsetHeight,
7433                 r = l+el.offsetWidth;
7434
7435             var ch = c.clientHeight;
7436             var ct = parseInt(c.scrollTop, 10);
7437             var cl = parseInt(c.scrollLeft, 10);
7438             var cb = ct + ch;
7439             var cr = cl + c.clientWidth;
7440
7441             if(t < ct){
7442                 c.scrollTop = t;
7443             }else if(b > cb){
7444                 c.scrollTop = b-ch;
7445             }
7446
7447             if(hscroll !== false){
7448                 if(l < cl){
7449                     c.scrollLeft = l;
7450                 }else if(r > cr){
7451                     c.scrollLeft = r-c.clientWidth;
7452                 }
7453             }
7454             return this;
7455         },
7456
7457         // private
7458         scrollChildIntoView : function(child, hscroll){
7459             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7460         },
7461
7462         /**
7463          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7464          * the new height may not be available immediately.
7465          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7466          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7467          * @param {Function} onComplete (optional) Function to call when animation completes
7468          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7469          * @return {Roo.Element} this
7470          */
7471         autoHeight : function(animate, duration, onComplete, easing){
7472             var oldHeight = this.getHeight();
7473             this.clip();
7474             this.setHeight(1); // force clipping
7475             setTimeout(function(){
7476                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7477                 if(!animate){
7478                     this.setHeight(height);
7479                     this.unclip();
7480                     if(typeof onComplete == "function"){
7481                         onComplete();
7482                     }
7483                 }else{
7484                     this.setHeight(oldHeight); // restore original height
7485                     this.setHeight(height, animate, duration, function(){
7486                         this.unclip();
7487                         if(typeof onComplete == "function") { onComplete(); }
7488                     }.createDelegate(this), easing);
7489                 }
7490             }.createDelegate(this), 0);
7491             return this;
7492         },
7493
7494         /**
7495          * Returns true if this element is an ancestor of the passed element
7496          * @param {HTMLElement/String} el The element to check
7497          * @return {Boolean} True if this element is an ancestor of el, else false
7498          */
7499         contains : function(el){
7500             if(!el){return false;}
7501             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7502         },
7503
7504         /**
7505          * Checks whether the element is currently visible using both visibility and display properties.
7506          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7507          * @return {Boolean} True if the element is currently visible, else false
7508          */
7509         isVisible : function(deep) {
7510             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7511             if(deep !== true || !vis){
7512                 return vis;
7513             }
7514             var p = this.dom.parentNode;
7515             while(p && p.tagName.toLowerCase() != "body"){
7516                 if(!Roo.fly(p, '_isVisible').isVisible()){
7517                     return false;
7518                 }
7519                 p = p.parentNode;
7520             }
7521             return true;
7522         },
7523
7524         /**
7525          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7526          * @param {String} selector The CSS selector
7527          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7528          * @return {CompositeElement/CompositeElementLite} The composite element
7529          */
7530         select : function(selector, unique){
7531             return El.select(selector, unique, this.dom);
7532         },
7533
7534         /**
7535          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7536          * @param {String} selector The CSS selector
7537          * @return {Array} An array of the matched nodes
7538          */
7539         query : function(selector, unique){
7540             return Roo.DomQuery.select(selector, this.dom);
7541         },
7542
7543         /**
7544          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7545          * @param {String} selector The CSS selector
7546          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7547          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7548          */
7549         child : function(selector, returnDom){
7550             var n = Roo.DomQuery.selectNode(selector, this.dom);
7551             return returnDom ? n : Roo.get(n);
7552         },
7553
7554         /**
7555          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7556          * @param {String} selector The CSS selector
7557          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7558          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7559          */
7560         down : function(selector, returnDom){
7561             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7562             return returnDom ? n : Roo.get(n);
7563         },
7564
7565         /**
7566          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7567          * @param {String} group The group the DD object is member of
7568          * @param {Object} config The DD config object
7569          * @param {Object} overrides An object containing methods to override/implement on the DD object
7570          * @return {Roo.dd.DD} The DD object
7571          */
7572         initDD : function(group, config, overrides){
7573             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7574             return Roo.apply(dd, overrides);
7575         },
7576
7577         /**
7578          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7579          * @param {String} group The group the DDProxy object is member of
7580          * @param {Object} config The DDProxy config object
7581          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7582          * @return {Roo.dd.DDProxy} The DDProxy object
7583          */
7584         initDDProxy : function(group, config, overrides){
7585             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7586             return Roo.apply(dd, overrides);
7587         },
7588
7589         /**
7590          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7591          * @param {String} group The group the DDTarget object is member of
7592          * @param {Object} config The DDTarget config object
7593          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7594          * @return {Roo.dd.DDTarget} The DDTarget object
7595          */
7596         initDDTarget : function(group, config, overrides){
7597             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7598             return Roo.apply(dd, overrides);
7599         },
7600
7601         /**
7602          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7603          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7604          * @param {Boolean} visible Whether the element is visible
7605          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7606          * @return {Roo.Element} this
7607          */
7608          setVisible : function(visible, animate){
7609             if(!animate || !A){
7610                 if(this.visibilityMode == El.DISPLAY){
7611                     this.setDisplayed(visible);
7612                 }else{
7613                     this.fixDisplay();
7614                     this.dom.style.visibility = visible ? "visible" : "hidden";
7615                 }
7616             }else{
7617                 // closure for composites
7618                 var dom = this.dom;
7619                 var visMode = this.visibilityMode;
7620                 if(visible){
7621                     this.setOpacity(.01);
7622                     this.setVisible(true);
7623                 }
7624                 this.anim({opacity: { to: (visible?1:0) }},
7625                       this.preanim(arguments, 1),
7626                       null, .35, 'easeIn', function(){
7627                          if(!visible){
7628                              if(visMode == El.DISPLAY){
7629                                  dom.style.display = "none";
7630                              }else{
7631                                  dom.style.visibility = "hidden";
7632                              }
7633                              Roo.get(dom).setOpacity(1);
7634                          }
7635                      });
7636             }
7637             return this;
7638         },
7639
7640         /**
7641          * Returns true if display is not "none"
7642          * @return {Boolean}
7643          */
7644         isDisplayed : function() {
7645             return this.getStyle("display") != "none";
7646         },
7647
7648         /**
7649          * Toggles the element's visibility or display, depending on visibility mode.
7650          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7651          * @return {Roo.Element} this
7652          */
7653         toggle : function(animate){
7654             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7655             return this;
7656         },
7657
7658         /**
7659          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7660          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7661          * @return {Roo.Element} this
7662          */
7663         setDisplayed : function(value) {
7664             if(typeof value == "boolean"){
7665                value = value ? this.originalDisplay : "none";
7666             }
7667             this.setStyle("display", value);
7668             return this;
7669         },
7670
7671         /**
7672          * Tries to focus the element. Any exceptions are caught and ignored.
7673          * @return {Roo.Element} this
7674          */
7675         focus : function() {
7676             try{
7677                 this.dom.focus();
7678             }catch(e){}
7679             return this;
7680         },
7681
7682         /**
7683          * Tries to blur the element. Any exceptions are caught and ignored.
7684          * @return {Roo.Element} this
7685          */
7686         blur : function() {
7687             try{
7688                 this.dom.blur();
7689             }catch(e){}
7690             return this;
7691         },
7692
7693         /**
7694          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7695          * @param {String/Array} className The CSS class to add, or an array of classes
7696          * @return {Roo.Element} this
7697          */
7698         addClass : function(className){
7699             if(className instanceof Array){
7700                 for(var i = 0, len = className.length; i < len; i++) {
7701                     this.addClass(className[i]);
7702                 }
7703             }else{
7704                 if(className && !this.hasClass(className)){
7705                     if (this.dom instanceof SVGElement) {
7706                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7707                     } else {
7708                         this.dom.className = this.dom.className + " " + className;
7709                     }
7710                 }
7711             }
7712             return this;
7713         },
7714
7715         /**
7716          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7717          * @param {String/Array} className The CSS class to add, or an array of classes
7718          * @return {Roo.Element} this
7719          */
7720         radioClass : function(className){
7721             var siblings = this.dom.parentNode.childNodes;
7722             for(var i = 0; i < siblings.length; i++) {
7723                 var s = siblings[i];
7724                 if(s.nodeType == 1){
7725                     Roo.get(s).removeClass(className);
7726                 }
7727             }
7728             this.addClass(className);
7729             return this;
7730         },
7731
7732         /**
7733          * Removes one or more CSS classes from the element.
7734          * @param {String/Array} className The CSS class to remove, or an array of classes
7735          * @return {Roo.Element} this
7736          */
7737         removeClass : function(className){
7738             
7739             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7740             if(!className || !cn){
7741                 return this;
7742             }
7743             if(className instanceof Array){
7744                 for(var i = 0, len = className.length; i < len; i++) {
7745                     this.removeClass(className[i]);
7746                 }
7747             }else{
7748                 if(this.hasClass(className)){
7749                     var re = this.classReCache[className];
7750                     if (!re) {
7751                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7752                        this.classReCache[className] = re;
7753                     }
7754                     if (this.dom instanceof SVGElement) {
7755                         this.dom.className.baseVal = cn.replace(re, " ");
7756                     } else {
7757                         this.dom.className = cn.replace(re, " ");
7758                     }
7759                 }
7760             }
7761             return this;
7762         },
7763
7764         // private
7765         classReCache: {},
7766
7767         /**
7768          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7769          * @param {String} className The CSS class to toggle
7770          * @return {Roo.Element} this
7771          */
7772         toggleClass : function(className){
7773             if(this.hasClass(className)){
7774                 this.removeClass(className);
7775             }else{
7776                 this.addClass(className);
7777             }
7778             return this;
7779         },
7780
7781         /**
7782          * Checks if the specified CSS class exists on this element's DOM node.
7783          * @param {String} className The CSS class to check for
7784          * @return {Boolean} True if the class exists, else false
7785          */
7786         hasClass : function(className){
7787             if (this.dom instanceof SVGElement) {
7788                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7789             } 
7790             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7791         },
7792
7793         /**
7794          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7795          * @param {String} oldClassName The CSS class to replace
7796          * @param {String} newClassName The replacement CSS class
7797          * @return {Roo.Element} this
7798          */
7799         replaceClass : function(oldClassName, newClassName){
7800             this.removeClass(oldClassName);
7801             this.addClass(newClassName);
7802             return this;
7803         },
7804
7805         /**
7806          * Returns an object with properties matching the styles requested.
7807          * For example, el.getStyles('color', 'font-size', 'width') might return
7808          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7809          * @param {String} style1 A style name
7810          * @param {String} style2 A style name
7811          * @param {String} etc.
7812          * @return {Object} The style object
7813          */
7814         getStyles : function(){
7815             var a = arguments, len = a.length, r = {};
7816             for(var i = 0; i < len; i++){
7817                 r[a[i]] = this.getStyle(a[i]);
7818             }
7819             return r;
7820         },
7821
7822         /**
7823          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7824          * @param {String} property The style property whose value is returned.
7825          * @return {String} The current value of the style property for this element.
7826          */
7827         getStyle : function(){
7828             return view && view.getComputedStyle ?
7829                 function(prop){
7830                     var el = this.dom, v, cs, camel;
7831                     if(prop == 'float'){
7832                         prop = "cssFloat";
7833                     }
7834                     if(el.style && (v = el.style[prop])){
7835                         return v;
7836                     }
7837                     if(cs = view.getComputedStyle(el, "")){
7838                         if(!(camel = propCache[prop])){
7839                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7840                         }
7841                         return cs[camel];
7842                     }
7843                     return null;
7844                 } :
7845                 function(prop){
7846                     var el = this.dom, v, cs, camel;
7847                     if(prop == 'opacity'){
7848                         if(typeof el.style.filter == 'string'){
7849                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7850                             if(m){
7851                                 var fv = parseFloat(m[1]);
7852                                 if(!isNaN(fv)){
7853                                     return fv ? fv / 100 : 0;
7854                                 }
7855                             }
7856                         }
7857                         return 1;
7858                     }else if(prop == 'float'){
7859                         prop = "styleFloat";
7860                     }
7861                     if(!(camel = propCache[prop])){
7862                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7863                     }
7864                     if(v = el.style[camel]){
7865                         return v;
7866                     }
7867                     if(cs = el.currentStyle){
7868                         return cs[camel];
7869                     }
7870                     return null;
7871                 };
7872         }(),
7873
7874         /**
7875          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7876          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7877          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7878          * @return {Roo.Element} this
7879          */
7880         setStyle : function(prop, value){
7881             if(typeof prop == "string"){
7882                 
7883                 if (prop == 'float') {
7884                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7885                     return this;
7886                 }
7887                 
7888                 var camel;
7889                 if(!(camel = propCache[prop])){
7890                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7891                 }
7892                 
7893                 if(camel == 'opacity') {
7894                     this.setOpacity(value);
7895                 }else{
7896                     this.dom.style[camel] = value;
7897                 }
7898             }else{
7899                 for(var style in prop){
7900                     if(typeof prop[style] != "function"){
7901                        this.setStyle(style, prop[style]);
7902                     }
7903                 }
7904             }
7905             return this;
7906         },
7907
7908         /**
7909          * More flexible version of {@link #setStyle} for setting style properties.
7910          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7911          * a function which returns such a specification.
7912          * @return {Roo.Element} this
7913          */
7914         applyStyles : function(style){
7915             Roo.DomHelper.applyStyles(this.dom, style);
7916             return this;
7917         },
7918
7919         /**
7920           * 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).
7921           * @return {Number} The X position of the element
7922           */
7923         getX : function(){
7924             return D.getX(this.dom);
7925         },
7926
7927         /**
7928           * 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).
7929           * @return {Number} The Y position of the element
7930           */
7931         getY : function(){
7932             return D.getY(this.dom);
7933         },
7934
7935         /**
7936           * 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).
7937           * @return {Array} The XY position of the element
7938           */
7939         getXY : function(){
7940             return D.getXY(this.dom);
7941         },
7942
7943         /**
7944          * 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).
7945          * @param {Number} The X position of the element
7946          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7947          * @return {Roo.Element} this
7948          */
7949         setX : function(x, animate){
7950             if(!animate || !A){
7951                 D.setX(this.dom, x);
7952             }else{
7953                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7954             }
7955             return this;
7956         },
7957
7958         /**
7959          * 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).
7960          * @param {Number} The Y position of the element
7961          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7962          * @return {Roo.Element} this
7963          */
7964         setY : function(y, animate){
7965             if(!animate || !A){
7966                 D.setY(this.dom, y);
7967             }else{
7968                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7969             }
7970             return this;
7971         },
7972
7973         /**
7974          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7975          * @param {String} left The left CSS property value
7976          * @return {Roo.Element} this
7977          */
7978         setLeft : function(left){
7979             this.setStyle("left", this.addUnits(left));
7980             return this;
7981         },
7982
7983         /**
7984          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7985          * @param {String} top The top CSS property value
7986          * @return {Roo.Element} this
7987          */
7988         setTop : function(top){
7989             this.setStyle("top", this.addUnits(top));
7990             return this;
7991         },
7992
7993         /**
7994          * Sets the element's CSS right style.
7995          * @param {String} right The right CSS property value
7996          * @return {Roo.Element} this
7997          */
7998         setRight : function(right){
7999             this.setStyle("right", this.addUnits(right));
8000             return this;
8001         },
8002
8003         /**
8004          * Sets the element's CSS bottom style.
8005          * @param {String} bottom The bottom CSS property value
8006          * @return {Roo.Element} this
8007          */
8008         setBottom : function(bottom){
8009             this.setStyle("bottom", this.addUnits(bottom));
8010             return this;
8011         },
8012
8013         /**
8014          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8015          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8016          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
8017          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8018          * @return {Roo.Element} this
8019          */
8020         setXY : function(pos, animate){
8021             if(!animate || !A){
8022                 D.setXY(this.dom, pos);
8023             }else{
8024                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8025             }
8026             return this;
8027         },
8028
8029         /**
8030          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8031          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8032          * @param {Number} x X value for new position (coordinates are page-based)
8033          * @param {Number} y Y value for new position (coordinates are page-based)
8034          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8035          * @return {Roo.Element} this
8036          */
8037         setLocation : function(x, y, animate){
8038             this.setXY([x, y], this.preanim(arguments, 2));
8039             return this;
8040         },
8041
8042         /**
8043          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8044          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8045          * @param {Number} x X value for new position (coordinates are page-based)
8046          * @param {Number} y Y value for new position (coordinates are page-based)
8047          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8048          * @return {Roo.Element} this
8049          */
8050         moveTo : function(x, y, animate){
8051             this.setXY([x, y], this.preanim(arguments, 2));
8052             return this;
8053         },
8054
8055         /**
8056          * Returns the region of the given element.
8057          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8058          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8059          */
8060         getRegion : function(){
8061             return D.getRegion(this.dom);
8062         },
8063
8064         /**
8065          * Returns the offset height of the element
8066          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8067          * @return {Number} The element's height
8068          */
8069         getHeight : function(contentHeight){
8070             var h = this.dom.offsetHeight || 0;
8071             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8072         },
8073
8074         /**
8075          * Returns the offset width of the element
8076          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8077          * @return {Number} The element's width
8078          */
8079         getWidth : function(contentWidth){
8080             var w = this.dom.offsetWidth || 0;
8081             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8082         },
8083
8084         /**
8085          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8086          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8087          * if a height has not been set using CSS.
8088          * @return {Number}
8089          */
8090         getComputedHeight : function(){
8091             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8092             if(!h){
8093                 h = parseInt(this.getStyle('height'), 10) || 0;
8094                 if(!this.isBorderBox()){
8095                     h += this.getFrameWidth('tb');
8096                 }
8097             }
8098             return h;
8099         },
8100
8101         /**
8102          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8103          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8104          * if a width has not been set using CSS.
8105          * @return {Number}
8106          */
8107         getComputedWidth : function(){
8108             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8109             if(!w){
8110                 w = parseInt(this.getStyle('width'), 10) || 0;
8111                 if(!this.isBorderBox()){
8112                     w += this.getFrameWidth('lr');
8113                 }
8114             }
8115             return w;
8116         },
8117
8118         /**
8119          * Returns the size of the element.
8120          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8121          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8122          */
8123         getSize : function(contentSize){
8124             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8125         },
8126
8127         /**
8128          * Returns the width and height of the viewport.
8129          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8130          */
8131         getViewSize : function(){
8132             var d = this.dom, doc = document, aw = 0, ah = 0;
8133             if(d == doc || d == doc.body){
8134                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8135             }else{
8136                 return {
8137                     width : d.clientWidth,
8138                     height: d.clientHeight
8139                 };
8140             }
8141         },
8142
8143         /**
8144          * Returns the value of the "value" attribute
8145          * @param {Boolean} asNumber true to parse the value as a number
8146          * @return {String/Number}
8147          */
8148         getValue : function(asNumber){
8149             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8150         },
8151
8152         // private
8153         adjustWidth : function(width){
8154             if(typeof width == "number"){
8155                 if(this.autoBoxAdjust && !this.isBorderBox()){
8156                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8157                 }
8158                 if(width < 0){
8159                     width = 0;
8160                 }
8161             }
8162             return width;
8163         },
8164
8165         // private
8166         adjustHeight : function(height){
8167             if(typeof height == "number"){
8168                if(this.autoBoxAdjust && !this.isBorderBox()){
8169                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8170                }
8171                if(height < 0){
8172                    height = 0;
8173                }
8174             }
8175             return height;
8176         },
8177
8178         /**
8179          * Set the width of the element
8180          * @param {Number} width The new width
8181          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8182          * @return {Roo.Element} this
8183          */
8184         setWidth : function(width, animate){
8185             width = this.adjustWidth(width);
8186             if(!animate || !A){
8187                 this.dom.style.width = this.addUnits(width);
8188             }else{
8189                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8190             }
8191             return this;
8192         },
8193
8194         /**
8195          * Set the height of the element
8196          * @param {Number} height The new height
8197          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8198          * @return {Roo.Element} this
8199          */
8200          setHeight : function(height, animate){
8201             height = this.adjustHeight(height);
8202             if(!animate || !A){
8203                 this.dom.style.height = this.addUnits(height);
8204             }else{
8205                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8206             }
8207             return this;
8208         },
8209
8210         /**
8211          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8212          * @param {Number} width The new width
8213          * @param {Number} height The new height
8214          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8215          * @return {Roo.Element} this
8216          */
8217          setSize : function(width, height, animate){
8218             if(typeof width == "object"){ // in case of object from getSize()
8219                 height = width.height; width = width.width;
8220             }
8221             width = this.adjustWidth(width); height = this.adjustHeight(height);
8222             if(!animate || !A){
8223                 this.dom.style.width = this.addUnits(width);
8224                 this.dom.style.height = this.addUnits(height);
8225             }else{
8226                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8227             }
8228             return this;
8229         },
8230
8231         /**
8232          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8233          * @param {Number} x X value for new position (coordinates are page-based)
8234          * @param {Number} y Y value for new position (coordinates are page-based)
8235          * @param {Number} width The new width
8236          * @param {Number} height The new height
8237          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8238          * @return {Roo.Element} this
8239          */
8240         setBounds : function(x, y, width, height, animate){
8241             if(!animate || !A){
8242                 this.setSize(width, height);
8243                 this.setLocation(x, y);
8244             }else{
8245                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8246                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8247                               this.preanim(arguments, 4), 'motion');
8248             }
8249             return this;
8250         },
8251
8252         /**
8253          * 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.
8254          * @param {Roo.lib.Region} region The region to fill
8255          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8256          * @return {Roo.Element} this
8257          */
8258         setRegion : function(region, animate){
8259             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8260             return this;
8261         },
8262
8263         /**
8264          * Appends an event handler
8265          *
8266          * @param {String}   eventName     The type of event to append
8267          * @param {Function} fn        The method the event invokes
8268          * @param {Object} scope       (optional) The scope (this object) of the fn
8269          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8270          */
8271         addListener : function(eventName, fn, scope, options)
8272         {
8273             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
8274                 this.addListener('touchstart', this.onTapHandler, this);
8275             }
8276             
8277             // we need to handle a special case where dom element is a svg element.
8278             // in this case we do not actua
8279             if (!this.dom) {
8280                 return;
8281             }
8282             
8283             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
8284                 if (typeof(this.listeners[eventName]) == 'undefined') {
8285                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
8286                 }
8287                 this.listeners[eventName].addListener(fn, scope, options);
8288                 return;
8289             }
8290             
8291                 
8292             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8293             
8294             
8295         },
8296         tapedTwice : false,
8297         onTapHandler : function(event)
8298         {
8299             if(!this.tapedTwice) {
8300                 this.tapedTwice = true;
8301                 var s = this;
8302                 setTimeout( function() {
8303                     s.tapedTwice = false;
8304                 }, 300 );
8305                 return;
8306             }
8307             event.preventDefault();
8308             var revent = new MouseEvent('dblclick',  {
8309                 view: window,
8310                 bubbles: true,
8311                 cancelable: true
8312             });
8313              
8314             this.dom.dispatchEvent(revent);
8315             //action on double tap goes below
8316              
8317         }, 
8318  
8319         /**
8320          * Removes an event handler from this element
8321          * @param {String} eventName the type of event to remove
8322          * @param {Function} fn the method the event invokes
8323          * @param {Function} scope (needed for svg fake listeners)
8324          * @return {Roo.Element} this
8325          */
8326         removeListener : function(eventName, fn, scope){
8327             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8328             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
8329                 return this;
8330             }
8331             this.listeners[eventName].removeListener(fn, scope);
8332             return this;
8333         },
8334
8335         /**
8336          * Removes all previous added listeners from this element
8337          * @return {Roo.Element} this
8338          */
8339         removeAllListeners : function(){
8340             E.purgeElement(this.dom);
8341             this.listeners = {};
8342             return this;
8343         },
8344
8345         relayEvent : function(eventName, observable){
8346             this.on(eventName, function(e){
8347                 observable.fireEvent(eventName, e);
8348             });
8349         },
8350
8351         
8352         /**
8353          * Set the opacity of the element
8354          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8355          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8356          * @return {Roo.Element} this
8357          */
8358          setOpacity : function(opacity, animate){
8359             if(!animate || !A){
8360                 var s = this.dom.style;
8361                 if(Roo.isIE){
8362                     s.zoom = 1;
8363                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8364                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8365                 }else{
8366                     s.opacity = opacity;
8367                 }
8368             }else{
8369                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8370             }
8371             return this;
8372         },
8373
8374         /**
8375          * Gets the left X coordinate
8376          * @param {Boolean} local True to get the local css position instead of page coordinate
8377          * @return {Number}
8378          */
8379         getLeft : function(local){
8380             if(!local){
8381                 return this.getX();
8382             }else{
8383                 return parseInt(this.getStyle("left"), 10) || 0;
8384             }
8385         },
8386
8387         /**
8388          * Gets the right X coordinate of the element (element X position + element width)
8389          * @param {Boolean} local True to get the local css position instead of page coordinate
8390          * @return {Number}
8391          */
8392         getRight : function(local){
8393             if(!local){
8394                 return this.getX() + this.getWidth();
8395             }else{
8396                 return (this.getLeft(true) + this.getWidth()) || 0;
8397             }
8398         },
8399
8400         /**
8401          * Gets the top Y coordinate
8402          * @param {Boolean} local True to get the local css position instead of page coordinate
8403          * @return {Number}
8404          */
8405         getTop : function(local) {
8406             if(!local){
8407                 return this.getY();
8408             }else{
8409                 return parseInt(this.getStyle("top"), 10) || 0;
8410             }
8411         },
8412
8413         /**
8414          * Gets the bottom Y coordinate of the element (element Y position + element height)
8415          * @param {Boolean} local True to get the local css position instead of page coordinate
8416          * @return {Number}
8417          */
8418         getBottom : function(local){
8419             if(!local){
8420                 return this.getY() + this.getHeight();
8421             }else{
8422                 return (this.getTop(true) + this.getHeight()) || 0;
8423             }
8424         },
8425
8426         /**
8427         * Initializes positioning on this element. If a desired position is not passed, it will make the
8428         * the element positioned relative IF it is not already positioned.
8429         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8430         * @param {Number} zIndex (optional) The zIndex to apply
8431         * @param {Number} x (optional) Set the page X position
8432         * @param {Number} y (optional) Set the page Y position
8433         */
8434         position : function(pos, zIndex, x, y){
8435             if(!pos){
8436                if(this.getStyle('position') == 'static'){
8437                    this.setStyle('position', 'relative');
8438                }
8439             }else{
8440                 this.setStyle("position", pos);
8441             }
8442             if(zIndex){
8443                 this.setStyle("z-index", zIndex);
8444             }
8445             if(x !== undefined && y !== undefined){
8446                 this.setXY([x, y]);
8447             }else if(x !== undefined){
8448                 this.setX(x);
8449             }else if(y !== undefined){
8450                 this.setY(y);
8451             }
8452         },
8453
8454         /**
8455         * Clear positioning back to the default when the document was loaded
8456         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8457         * @return {Roo.Element} this
8458          */
8459         clearPositioning : function(value){
8460             value = value ||'';
8461             this.setStyle({
8462                 "left": value,
8463                 "right": value,
8464                 "top": value,
8465                 "bottom": value,
8466                 "z-index": "",
8467                 "position" : "static"
8468             });
8469             return this;
8470         },
8471
8472         /**
8473         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8474         * snapshot before performing an update and then restoring the element.
8475         * @return {Object}
8476         */
8477         getPositioning : function(){
8478             var l = this.getStyle("left");
8479             var t = this.getStyle("top");
8480             return {
8481                 "position" : this.getStyle("position"),
8482                 "left" : l,
8483                 "right" : l ? "" : this.getStyle("right"),
8484                 "top" : t,
8485                 "bottom" : t ? "" : this.getStyle("bottom"),
8486                 "z-index" : this.getStyle("z-index")
8487             };
8488         },
8489
8490         /**
8491          * Gets the width of the border(s) for the specified side(s)
8492          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8493          * passing lr would get the border (l)eft width + the border (r)ight width.
8494          * @return {Number} The width of the sides passed added together
8495          */
8496         getBorderWidth : function(side){
8497             return this.addStyles(side, El.borders);
8498         },
8499
8500         /**
8501          * Gets the width of the padding(s) for the specified side(s)
8502          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8503          * passing lr would get the padding (l)eft + the padding (r)ight.
8504          * @return {Number} The padding of the sides passed added together
8505          */
8506         getPadding : function(side){
8507             return this.addStyles(side, El.paddings);
8508         },
8509
8510         /**
8511         * Set positioning with an object returned by getPositioning().
8512         * @param {Object} posCfg
8513         * @return {Roo.Element} this
8514          */
8515         setPositioning : function(pc){
8516             this.applyStyles(pc);
8517             if(pc.right == "auto"){
8518                 this.dom.style.right = "";
8519             }
8520             if(pc.bottom == "auto"){
8521                 this.dom.style.bottom = "";
8522             }
8523             return this;
8524         },
8525
8526         // private
8527         fixDisplay : function(){
8528             if(this.getStyle("display") == "none"){
8529                 this.setStyle("visibility", "hidden");
8530                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8531                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8532                     this.setStyle("display", "block");
8533                 }
8534             }
8535         },
8536
8537         /**
8538          * Quick set left and top adding default units
8539          * @param {String} left The left CSS property value
8540          * @param {String} top The top CSS property value
8541          * @return {Roo.Element} this
8542          */
8543          setLeftTop : function(left, top){
8544             this.dom.style.left = this.addUnits(left);
8545             this.dom.style.top = this.addUnits(top);
8546             return this;
8547         },
8548
8549         /**
8550          * Move this element relative to its current position.
8551          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8552          * @param {Number} distance How far to move the element in pixels
8553          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8554          * @return {Roo.Element} this
8555          */
8556          move : function(direction, distance, animate){
8557             var xy = this.getXY();
8558             direction = direction.toLowerCase();
8559             switch(direction){
8560                 case "l":
8561                 case "left":
8562                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8563                     break;
8564                case "r":
8565                case "right":
8566                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8567                     break;
8568                case "t":
8569                case "top":
8570                case "up":
8571                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8572                     break;
8573                case "b":
8574                case "bottom":
8575                case "down":
8576                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8577                     break;
8578             }
8579             return this;
8580         },
8581
8582         /**
8583          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8584          * @return {Roo.Element} this
8585          */
8586         clip : function(){
8587             if(!this.isClipped){
8588                this.isClipped = true;
8589                this.originalClip = {
8590                    "o": this.getStyle("overflow"),
8591                    "x": this.getStyle("overflow-x"),
8592                    "y": this.getStyle("overflow-y")
8593                };
8594                this.setStyle("overflow", "hidden");
8595                this.setStyle("overflow-x", "hidden");
8596                this.setStyle("overflow-y", "hidden");
8597             }
8598             return this;
8599         },
8600
8601         /**
8602          *  Return clipping (overflow) to original clipping before clip() was called
8603          * @return {Roo.Element} this
8604          */
8605         unclip : function(){
8606             if(this.isClipped){
8607                 this.isClipped = false;
8608                 var o = this.originalClip;
8609                 if(o.o){this.setStyle("overflow", o.o);}
8610                 if(o.x){this.setStyle("overflow-x", o.x);}
8611                 if(o.y){this.setStyle("overflow-y", o.y);}
8612             }
8613             return this;
8614         },
8615
8616
8617         /**
8618          * Gets the x,y coordinates specified by the anchor position on the element.
8619          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8620          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8621          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8622          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8623          * @return {Array} [x, y] An array containing the element's x and y coordinates
8624          */
8625         getAnchorXY : function(anchor, local, s){
8626             //Passing a different size is useful for pre-calculating anchors,
8627             //especially for anchored animations that change the el size.
8628
8629             var w, h, vp = false;
8630             if(!s){
8631                 var d = this.dom;
8632                 if(d == document.body || d == document){
8633                     vp = true;
8634                     w = D.getViewWidth(); h = D.getViewHeight();
8635                 }else{
8636                     w = this.getWidth(); h = this.getHeight();
8637                 }
8638             }else{
8639                 w = s.width;  h = s.height;
8640             }
8641             var x = 0, y = 0, r = Math.round;
8642             switch((anchor || "tl").toLowerCase()){
8643                 case "c":
8644                     x = r(w*.5);
8645                     y = r(h*.5);
8646                 break;
8647                 case "t":
8648                     x = r(w*.5);
8649                     y = 0;
8650                 break;
8651                 case "l":
8652                     x = 0;
8653                     y = r(h*.5);
8654                 break;
8655                 case "r":
8656                     x = w;
8657                     y = r(h*.5);
8658                 break;
8659                 case "b":
8660                     x = r(w*.5);
8661                     y = h;
8662                 break;
8663                 case "tl":
8664                     x = 0;
8665                     y = 0;
8666                 break;
8667                 case "bl":
8668                     x = 0;
8669                     y = h;
8670                 break;
8671                 case "br":
8672                     x = w;
8673                     y = h;
8674                 break;
8675                 case "tr":
8676                     x = w;
8677                     y = 0;
8678                 break;
8679             }
8680             if(local === true){
8681                 return [x, y];
8682             }
8683             if(vp){
8684                 var sc = this.getScroll();
8685                 return [x + sc.left, y + sc.top];
8686             }
8687             //Add the element's offset xy
8688             var o = this.getXY();
8689             return [x+o[0], y+o[1]];
8690         },
8691
8692         /**
8693          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8694          * supported position values.
8695          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8696          * @param {String} position The position to align to.
8697          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8698          * @return {Array} [x, y]
8699          */
8700         getAlignToXY : function(el, p, o)
8701         {
8702             el = Roo.get(el);
8703             var d = this.dom;
8704             if(!el.dom){
8705                 throw "Element.alignTo with an element that doesn't exist";
8706             }
8707             var c = false; //constrain to viewport
8708             var p1 = "", p2 = "";
8709             o = o || [0,0];
8710
8711             if(!p){
8712                 p = "tl-bl";
8713             }else if(p == "?"){
8714                 p = "tl-bl?";
8715             }else if(p.indexOf("-") == -1){
8716                 p = "tl-" + p;
8717             }
8718             p = p.toLowerCase();
8719             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8720             if(!m){
8721                throw "Element.alignTo with an invalid alignment " + p;
8722             }
8723             p1 = m[1]; p2 = m[2]; c = !!m[3];
8724
8725             //Subtract the aligned el's internal xy from the target's offset xy
8726             //plus custom offset to get the aligned el's new offset xy
8727             var a1 = this.getAnchorXY(p1, true);
8728             var a2 = el.getAnchorXY(p2, false);
8729             var x = a2[0] - a1[0] + o[0];
8730             var y = a2[1] - a1[1] + o[1];
8731             if(c){
8732                 //constrain the aligned el to viewport if necessary
8733                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8734                 // 5px of margin for ie
8735                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8736
8737                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8738                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8739                 //otherwise swap the aligned el to the opposite border of the target.
8740                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8741                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8742                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8743                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8744
8745                var doc = document;
8746                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8747                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8748
8749                if((x+w) > dw + scrollX){
8750                     x = swapX ? r.left-w : dw+scrollX-w;
8751                 }
8752                if(x < scrollX){
8753                    x = swapX ? r.right : scrollX;
8754                }
8755                if((y+h) > dh + scrollY){
8756                     y = swapY ? r.top-h : dh+scrollY-h;
8757                 }
8758                if (y < scrollY){
8759                    y = swapY ? r.bottom : scrollY;
8760                }
8761             }
8762             return [x,y];
8763         },
8764
8765         // private
8766         getConstrainToXY : function(){
8767             var os = {top:0, left:0, bottom:0, right: 0};
8768
8769             return function(el, local, offsets, proposedXY){
8770                 el = Roo.get(el);
8771                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8772
8773                 var vw, vh, vx = 0, vy = 0;
8774                 if(el.dom == document.body || el.dom == document){
8775                     vw = Roo.lib.Dom.getViewWidth();
8776                     vh = Roo.lib.Dom.getViewHeight();
8777                 }else{
8778                     vw = el.dom.clientWidth;
8779                     vh = el.dom.clientHeight;
8780                     if(!local){
8781                         var vxy = el.getXY();
8782                         vx = vxy[0];
8783                         vy = vxy[1];
8784                     }
8785                 }
8786
8787                 var s = el.getScroll();
8788
8789                 vx += offsets.left + s.left;
8790                 vy += offsets.top + s.top;
8791
8792                 vw -= offsets.right;
8793                 vh -= offsets.bottom;
8794
8795                 var vr = vx+vw;
8796                 var vb = vy+vh;
8797
8798                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8799                 var x = xy[0], y = xy[1];
8800                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8801
8802                 // only move it if it needs it
8803                 var moved = false;
8804
8805                 // first validate right/bottom
8806                 if((x + w) > vr){
8807                     x = vr - w;
8808                     moved = true;
8809                 }
8810                 if((y + h) > vb){
8811                     y = vb - h;
8812                     moved = true;
8813                 }
8814                 // then make sure top/left isn't negative
8815                 if(x < vx){
8816                     x = vx;
8817                     moved = true;
8818                 }
8819                 if(y < vy){
8820                     y = vy;
8821                     moved = true;
8822                 }
8823                 return moved ? [x, y] : false;
8824             };
8825         }(),
8826
8827         // private
8828         adjustForConstraints : function(xy, parent, offsets){
8829             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8830         },
8831
8832         /**
8833          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8834          * document it aligns it to the viewport.
8835          * The position parameter is optional, and can be specified in any one of the following formats:
8836          * <ul>
8837          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8838          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8839          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8840          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8841          *   <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
8842          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8843          * </ul>
8844          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8845          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8846          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8847          * that specified in order to enforce the viewport constraints.
8848          * Following are all of the supported anchor positions:
8849     <pre>
8850     Value  Description
8851     -----  -----------------------------
8852     tl     The top left corner (default)
8853     t      The center of the top edge
8854     tr     The top right corner
8855     l      The center of the left edge
8856     c      In the center of the element
8857     r      The center of the right edge
8858     bl     The bottom left corner
8859     b      The center of the bottom edge
8860     br     The bottom right corner
8861     </pre>
8862     Example Usage:
8863     <pre><code>
8864     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8865     el.alignTo("other-el");
8866
8867     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8868     el.alignTo("other-el", "tr?");
8869
8870     // align the bottom right corner of el with the center left edge of other-el
8871     el.alignTo("other-el", "br-l?");
8872
8873     // align the center of el with the bottom left corner of other-el and
8874     // adjust the x position by -6 pixels (and the y position by 0)
8875     el.alignTo("other-el", "c-bl", [-6, 0]);
8876     </code></pre>
8877          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8878          * @param {String} position The position to align to.
8879          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8880          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8881          * @return {Roo.Element} this
8882          */
8883         alignTo : function(element, position, offsets, animate){
8884             var xy = this.getAlignToXY(element, position, offsets);
8885             this.setXY(xy, this.preanim(arguments, 3));
8886             return this;
8887         },
8888
8889         /**
8890          * Anchors an element to another element and realigns it when the window is resized.
8891          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8892          * @param {String} position The position to align to.
8893          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8894          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8895          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8896          * is a number, it is used as the buffer delay (defaults to 50ms).
8897          * @param {Function} callback The function to call after the animation finishes
8898          * @return {Roo.Element} this
8899          */
8900         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8901             var action = function(){
8902                 this.alignTo(el, alignment, offsets, animate);
8903                 Roo.callback(callback, this);
8904             };
8905             Roo.EventManager.onWindowResize(action, this);
8906             var tm = typeof monitorScroll;
8907             if(tm != 'undefined'){
8908                 Roo.EventManager.on(window, 'scroll', action, this,
8909                     {buffer: tm == 'number' ? monitorScroll : 50});
8910             }
8911             action.call(this); // align immediately
8912             return this;
8913         },
8914         /**
8915          * Clears any opacity settings from this element. Required in some cases for IE.
8916          * @return {Roo.Element} this
8917          */
8918         clearOpacity : function(){
8919             if (window.ActiveXObject) {
8920                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8921                     this.dom.style.filter = "";
8922                 }
8923             } else {
8924                 this.dom.style.opacity = "";
8925                 this.dom.style["-moz-opacity"] = "";
8926                 this.dom.style["-khtml-opacity"] = "";
8927             }
8928             return this;
8929         },
8930
8931         /**
8932          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8933          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8934          * @return {Roo.Element} this
8935          */
8936         hide : function(animate){
8937             this.setVisible(false, this.preanim(arguments, 0));
8938             return this;
8939         },
8940
8941         /**
8942         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8943         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8944          * @return {Roo.Element} this
8945          */
8946         show : function(animate){
8947             this.setVisible(true, this.preanim(arguments, 0));
8948             return this;
8949         },
8950
8951         /**
8952          * @private Test if size has a unit, otherwise appends the default
8953          */
8954         addUnits : function(size){
8955             return Roo.Element.addUnits(size, this.defaultUnit);
8956         },
8957
8958         /**
8959          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8960          * @return {Roo.Element} this
8961          */
8962         beginMeasure : function(){
8963             var el = this.dom;
8964             if(el.offsetWidth || el.offsetHeight){
8965                 return this; // offsets work already
8966             }
8967             var changed = [];
8968             var p = this.dom, b = document.body; // start with this element
8969             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8970                 var pe = Roo.get(p);
8971                 if(pe.getStyle('display') == 'none'){
8972                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8973                     p.style.visibility = "hidden";
8974                     p.style.display = "block";
8975                 }
8976                 p = p.parentNode;
8977             }
8978             this._measureChanged = changed;
8979             return this;
8980
8981         },
8982
8983         /**
8984          * Restores displays to before beginMeasure was called
8985          * @return {Roo.Element} this
8986          */
8987         endMeasure : function(){
8988             var changed = this._measureChanged;
8989             if(changed){
8990                 for(var i = 0, len = changed.length; i < len; i++) {
8991                     var r = changed[i];
8992                     r.el.style.visibility = r.visibility;
8993                     r.el.style.display = "none";
8994                 }
8995                 this._measureChanged = null;
8996             }
8997             return this;
8998         },
8999
9000         /**
9001         * Update the innerHTML of this element, optionally searching for and processing scripts
9002         * @param {String} html The new HTML
9003         * @param {Boolean} loadScripts (optional) true to look for and process scripts
9004         * @param {Function} callback For async script loading you can be noticed when the update completes
9005         * @return {Roo.Element} this
9006          */
9007         update : function(html, loadScripts, callback){
9008             if(typeof html == "undefined"){
9009                 html = "";
9010             }
9011             if(loadScripts !== true){
9012                 this.dom.innerHTML = html;
9013                 if(typeof callback == "function"){
9014                     callback();
9015                 }
9016                 return this;
9017             }
9018             var id = Roo.id();
9019             var dom = this.dom;
9020
9021             html += '<span id="' + id + '"></span>';
9022
9023             E.onAvailable(id, function(){
9024                 var hd = document.getElementsByTagName("head")[0];
9025                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
9026                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
9027                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
9028
9029                 var match;
9030                 while(match = re.exec(html)){
9031                     var attrs = match[1];
9032                     var srcMatch = attrs ? attrs.match(srcRe) : false;
9033                     if(srcMatch && srcMatch[2]){
9034                        var s = document.createElement("script");
9035                        s.src = srcMatch[2];
9036                        var typeMatch = attrs.match(typeRe);
9037                        if(typeMatch && typeMatch[2]){
9038                            s.type = typeMatch[2];
9039                        }
9040                        hd.appendChild(s);
9041                     }else if(match[2] && match[2].length > 0){
9042                         if(window.execScript) {
9043                            window.execScript(match[2]);
9044                         } else {
9045                             /**
9046                              * eval:var:id
9047                              * eval:var:dom
9048                              * eval:var:html
9049                              * 
9050                              */
9051                            window.eval(match[2]);
9052                         }
9053                     }
9054                 }
9055                 var el = document.getElementById(id);
9056                 if(el){el.parentNode.removeChild(el);}
9057                 if(typeof callback == "function"){
9058                     callback();
9059                 }
9060             });
9061             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9062             return this;
9063         },
9064
9065         /**
9066          * Direct access to the UpdateManager update() method (takes the same parameters).
9067          * @param {String/Function} url The url for this request or a function to call to get the url
9068          * @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}
9069          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9070          * @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.
9071          * @return {Roo.Element} this
9072          */
9073         load : function(){
9074             var um = this.getUpdateManager();
9075             um.update.apply(um, arguments);
9076             return this;
9077         },
9078
9079         /**
9080         * Gets this element's UpdateManager
9081         * @return {Roo.UpdateManager} The UpdateManager
9082         */
9083         getUpdateManager : function(){
9084             if(!this.updateManager){
9085                 this.updateManager = new Roo.UpdateManager(this);
9086             }
9087             return this.updateManager;
9088         },
9089
9090         /**
9091          * Disables text selection for this element (normalized across browsers)
9092          * @return {Roo.Element} this
9093          */
9094         unselectable : function(){
9095             this.dom.unselectable = "on";
9096             this.swallowEvent("selectstart", true);
9097             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9098             this.addClass("x-unselectable");
9099             return this;
9100         },
9101
9102         /**
9103         * Calculates the x, y to center this element on the screen
9104         * @return {Array} The x, y values [x, y]
9105         */
9106         getCenterXY : function(){
9107             return this.getAlignToXY(document, 'c-c');
9108         },
9109
9110         /**
9111         * Centers the Element in either the viewport, or another Element.
9112         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9113         */
9114         center : function(centerIn){
9115             this.alignTo(centerIn || document, 'c-c');
9116             return this;
9117         },
9118
9119         /**
9120          * Tests various css rules/browsers to determine if this element uses a border box
9121          * @return {Boolean}
9122          */
9123         isBorderBox : function(){
9124             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9125         },
9126
9127         /**
9128          * Return a box {x, y, width, height} that can be used to set another elements
9129          * size/location to match this element.
9130          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9131          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9132          * @return {Object} box An object in the format {x, y, width, height}
9133          */
9134         getBox : function(contentBox, local){
9135             var xy;
9136             if(!local){
9137                 xy = this.getXY();
9138             }else{
9139                 var left = parseInt(this.getStyle("left"), 10) || 0;
9140                 var top = parseInt(this.getStyle("top"), 10) || 0;
9141                 xy = [left, top];
9142             }
9143             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9144             if(!contentBox){
9145                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9146             }else{
9147                 var l = this.getBorderWidth("l")+this.getPadding("l");
9148                 var r = this.getBorderWidth("r")+this.getPadding("r");
9149                 var t = this.getBorderWidth("t")+this.getPadding("t");
9150                 var b = this.getBorderWidth("b")+this.getPadding("b");
9151                 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)};
9152             }
9153             bx.right = bx.x + bx.width;
9154             bx.bottom = bx.y + bx.height;
9155             return bx;
9156         },
9157
9158         /**
9159          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9160          for more information about the sides.
9161          * @param {String} sides
9162          * @return {Number}
9163          */
9164         getFrameWidth : function(sides, onlyContentBox){
9165             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9166         },
9167
9168         /**
9169          * 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.
9170          * @param {Object} box The box to fill {x, y, width, height}
9171          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9172          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9173          * @return {Roo.Element} this
9174          */
9175         setBox : function(box, adjust, animate){
9176             var w = box.width, h = box.height;
9177             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9178                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9179                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9180             }
9181             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9182             return this;
9183         },
9184
9185         /**
9186          * Forces the browser to repaint this element
9187          * @return {Roo.Element} this
9188          */
9189          repaint : function(){
9190             var dom = this.dom;
9191             this.addClass("x-repaint");
9192             setTimeout(function(){
9193                 Roo.get(dom).removeClass("x-repaint");
9194             }, 1);
9195             return this;
9196         },
9197
9198         /**
9199          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9200          * then it returns the calculated width of the sides (see getPadding)
9201          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9202          * @return {Object/Number}
9203          */
9204         getMargins : function(side){
9205             if(!side){
9206                 return {
9207                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9208                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9209                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9210                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9211                 };
9212             }else{
9213                 return this.addStyles(side, El.margins);
9214              }
9215         },
9216
9217         // private
9218         addStyles : function(sides, styles){
9219             var val = 0, v, w;
9220             for(var i = 0, len = sides.length; i < len; i++){
9221                 v = this.getStyle(styles[sides.charAt(i)]);
9222                 if(v){
9223                      w = parseInt(v, 10);
9224                      if(w){ val += w; }
9225                 }
9226             }
9227             return val;
9228         },
9229
9230         /**
9231          * Creates a proxy element of this element
9232          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9233          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9234          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9235          * @return {Roo.Element} The new proxy element
9236          */
9237         createProxy : function(config, renderTo, matchBox){
9238             if(renderTo){
9239                 renderTo = Roo.getDom(renderTo);
9240             }else{
9241                 renderTo = document.body;
9242             }
9243             config = typeof config == "object" ?
9244                 config : {tag : "div", cls: config};
9245             var proxy = Roo.DomHelper.append(renderTo, config, true);
9246             if(matchBox){
9247                proxy.setBox(this.getBox());
9248             }
9249             return proxy;
9250         },
9251
9252         /**
9253          * Puts a mask over this element to disable user interaction. Requires core.css.
9254          * This method can only be applied to elements which accept child nodes.
9255          * @param {String} msg (optional) A message to display in the mask
9256          * @param {String} msgCls (optional) A css class to apply to the msg element
9257          * @return {Element} The mask  element
9258          */
9259         mask : function(msg, msgCls)
9260         {
9261             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9262                 this.setStyle("position", "relative");
9263             }
9264             if(!this._mask){
9265                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9266             }
9267             
9268             this.addClass("x-masked");
9269             this._mask.setDisplayed(true);
9270             
9271             // we wander
9272             var z = 0;
9273             var dom = this.dom;
9274             while (dom && dom.style) {
9275                 if (!isNaN(parseInt(dom.style.zIndex))) {
9276                     z = Math.max(z, parseInt(dom.style.zIndex));
9277                 }
9278                 dom = dom.parentNode;
9279             }
9280             // if we are masking the body - then it hides everything..
9281             if (this.dom == document.body) {
9282                 z = 1000000;
9283                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9284                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9285             }
9286            
9287             if(typeof msg == 'string'){
9288                 if(!this._maskMsg){
9289                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9290                         cls: "roo-el-mask-msg", 
9291                         cn: [
9292                             {
9293                                 tag: 'i',
9294                                 cls: 'fa fa-spinner fa-spin'
9295                             },
9296                             {
9297                                 tag: 'div'
9298                             }   
9299                         ]
9300                     }, true);
9301                 }
9302                 var mm = this._maskMsg;
9303                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9304                 if (mm.dom.lastChild) { // weird IE issue?
9305                     mm.dom.lastChild.innerHTML = msg;
9306                 }
9307                 mm.setDisplayed(true);
9308                 mm.center(this);
9309                 mm.setStyle('z-index', z + 102);
9310             }
9311             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9312                 this._mask.setHeight(this.getHeight());
9313             }
9314             this._mask.setStyle('z-index', z + 100);
9315             
9316             return this._mask;
9317         },
9318
9319         /**
9320          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9321          * it is cached for reuse.
9322          */
9323         unmask : function(removeEl){
9324             if(this._mask){
9325                 if(removeEl === true){
9326                     this._mask.remove();
9327                     delete this._mask;
9328                     if(this._maskMsg){
9329                         this._maskMsg.remove();
9330                         delete this._maskMsg;
9331                     }
9332                 }else{
9333                     this._mask.setDisplayed(false);
9334                     if(this._maskMsg){
9335                         this._maskMsg.setDisplayed(false);
9336                     }
9337                 }
9338             }
9339             this.removeClass("x-masked");
9340         },
9341
9342         /**
9343          * Returns true if this element is masked
9344          * @return {Boolean}
9345          */
9346         isMasked : function(){
9347             return this._mask && this._mask.isVisible();
9348         },
9349
9350         /**
9351          * Creates an iframe shim for this element to keep selects and other windowed objects from
9352          * showing through.
9353          * @return {Roo.Element} The new shim element
9354          */
9355         createShim : function(){
9356             var el = document.createElement('iframe');
9357             el.frameBorder = 'no';
9358             el.className = 'roo-shim';
9359             if(Roo.isIE && Roo.isSecure){
9360                 el.src = Roo.SSL_SECURE_URL;
9361             }
9362             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9363             shim.autoBoxAdjust = false;
9364             return shim;
9365         },
9366
9367         /**
9368          * Removes this element from the DOM and deletes it from the cache
9369          */
9370         remove : function(){
9371             if(this.dom.parentNode){
9372                 this.dom.parentNode.removeChild(this.dom);
9373             }
9374             delete El.cache[this.dom.id];
9375         },
9376
9377         /**
9378          * Sets up event handlers to add and remove a css class when the mouse is over this element
9379          * @param {String} className
9380          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9381          * mouseout events for children elements
9382          * @return {Roo.Element} this
9383          */
9384         addClassOnOver : function(className, preventFlicker){
9385             this.on("mouseover", function(){
9386                 Roo.fly(this, '_internal').addClass(className);
9387             }, this.dom);
9388             var removeFn = function(e){
9389                 if(preventFlicker !== true || !e.within(this, true)){
9390                     Roo.fly(this, '_internal').removeClass(className);
9391                 }
9392             };
9393             this.on("mouseout", removeFn, this.dom);
9394             return this;
9395         },
9396
9397         /**
9398          * Sets up event handlers to add and remove a css class when this element has the focus
9399          * @param {String} className
9400          * @return {Roo.Element} this
9401          */
9402         addClassOnFocus : function(className){
9403             this.on("focus", function(){
9404                 Roo.fly(this, '_internal').addClass(className);
9405             }, this.dom);
9406             this.on("blur", function(){
9407                 Roo.fly(this, '_internal').removeClass(className);
9408             }, this.dom);
9409             return this;
9410         },
9411         /**
9412          * 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)
9413          * @param {String} className
9414          * @return {Roo.Element} this
9415          */
9416         addClassOnClick : function(className){
9417             var dom = this.dom;
9418             this.on("mousedown", function(){
9419                 Roo.fly(dom, '_internal').addClass(className);
9420                 var d = Roo.get(document);
9421                 var fn = function(){
9422                     Roo.fly(dom, '_internal').removeClass(className);
9423                     d.removeListener("mouseup", fn);
9424                 };
9425                 d.on("mouseup", fn);
9426             });
9427             return this;
9428         },
9429
9430         /**
9431          * Stops the specified event from bubbling and optionally prevents the default action
9432          * @param {String} eventName
9433          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9434          * @return {Roo.Element} this
9435          */
9436         swallowEvent : function(eventName, preventDefault){
9437             var fn = function(e){
9438                 e.stopPropagation();
9439                 if(preventDefault){
9440                     e.preventDefault();
9441                 }
9442             };
9443             if(eventName instanceof Array){
9444                 for(var i = 0, len = eventName.length; i < len; i++){
9445                      this.on(eventName[i], fn);
9446                 }
9447                 return this;
9448             }
9449             this.on(eventName, fn);
9450             return this;
9451         },
9452
9453         /**
9454          * @private
9455          */
9456         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9457
9458         /**
9459          * Sizes this element to its parent element's dimensions performing
9460          * neccessary box adjustments.
9461          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9462          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9463          * @return {Roo.Element} this
9464          */
9465         fitToParent : function(monitorResize, targetParent) {
9466           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9467           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9468           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9469             return this;
9470           }
9471           var p = Roo.get(targetParent || this.dom.parentNode);
9472           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9473           if (monitorResize === true) {
9474             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9475             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9476           }
9477           return this;
9478         },
9479
9480         /**
9481          * Gets the next sibling, skipping text nodes
9482          * @return {HTMLElement} The next sibling or null
9483          */
9484         getNextSibling : function(){
9485             var n = this.dom.nextSibling;
9486             while(n && n.nodeType != 1){
9487                 n = n.nextSibling;
9488             }
9489             return n;
9490         },
9491
9492         /**
9493          * Gets the previous sibling, skipping text nodes
9494          * @return {HTMLElement} The previous sibling or null
9495          */
9496         getPrevSibling : function(){
9497             var n = this.dom.previousSibling;
9498             while(n && n.nodeType != 1){
9499                 n = n.previousSibling;
9500             }
9501             return n;
9502         },
9503
9504
9505         /**
9506          * Appends the passed element(s) to this element
9507          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9508          * @return {Roo.Element} this
9509          */
9510         appendChild: function(el){
9511             el = Roo.get(el);
9512             el.appendTo(this);
9513             return this;
9514         },
9515
9516         /**
9517          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9518          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9519          * automatically generated with the specified attributes.
9520          * @param {HTMLElement} insertBefore (optional) a child element of this element
9521          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9522          * @return {Roo.Element} The new child element
9523          */
9524         createChild: function(config, insertBefore, returnDom){
9525             config = config || {tag:'div'};
9526             if(insertBefore){
9527                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9528             }
9529             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9530         },
9531
9532         /**
9533          * Appends this element to the passed element
9534          * @param {String/HTMLElement/Element} el The new parent element
9535          * @return {Roo.Element} this
9536          */
9537         appendTo: function(el){
9538             el = Roo.getDom(el);
9539             el.appendChild(this.dom);
9540             return this;
9541         },
9542
9543         /**
9544          * Inserts this element before the passed element in the DOM
9545          * @param {String/HTMLElement/Element} el The element to insert before
9546          * @return {Roo.Element} this
9547          */
9548         insertBefore: function(el){
9549             el = Roo.getDom(el);
9550             el.parentNode.insertBefore(this.dom, el);
9551             return this;
9552         },
9553
9554         /**
9555          * Inserts this element after the passed element in the DOM
9556          * @param {String/HTMLElement/Element} el The element to insert after
9557          * @return {Roo.Element} this
9558          */
9559         insertAfter: function(el){
9560             el = Roo.getDom(el);
9561             el.parentNode.insertBefore(this.dom, el.nextSibling);
9562             return this;
9563         },
9564
9565         /**
9566          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9567          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9568          * @return {Roo.Element} The new child
9569          */
9570         insertFirst: function(el, returnDom){
9571             el = el || {};
9572             if(typeof el == 'object' && !el.nodeType){ // dh config
9573                 return this.createChild(el, this.dom.firstChild, returnDom);
9574             }else{
9575                 el = Roo.getDom(el);
9576                 this.dom.insertBefore(el, this.dom.firstChild);
9577                 return !returnDom ? Roo.get(el) : el;
9578             }
9579         },
9580
9581         /**
9582          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9583          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9584          * @param {String} where (optional) 'before' or 'after' defaults to before
9585          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9586          * @return {Roo.Element} the inserted Element
9587          */
9588         insertSibling: function(el, where, returnDom){
9589             where = where ? where.toLowerCase() : 'before';
9590             el = el || {};
9591             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9592
9593             if(typeof el == 'object' && !el.nodeType){ // dh config
9594                 if(where == 'after' && !this.dom.nextSibling){
9595                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9596                 }else{
9597                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9598                 }
9599
9600             }else{
9601                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9602                             where == 'before' ? this.dom : this.dom.nextSibling);
9603                 if(!returnDom){
9604                     rt = Roo.get(rt);
9605                 }
9606             }
9607             return rt;
9608         },
9609
9610         /**
9611          * Creates and wraps this element with another element
9612          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9613          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9614          * @return {HTMLElement/Element} The newly created wrapper element
9615          */
9616         wrap: function(config, returnDom){
9617             if(!config){
9618                 config = {tag: "div"};
9619             }
9620             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9621             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9622             return newEl;
9623         },
9624
9625         /**
9626          * Replaces the passed element with this element
9627          * @param {String/HTMLElement/Element} el The element to replace
9628          * @return {Roo.Element} this
9629          */
9630         replace: function(el){
9631             el = Roo.get(el);
9632             this.insertBefore(el);
9633             el.remove();
9634             return this;
9635         },
9636
9637         /**
9638          * Inserts an html fragment into this element
9639          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9640          * @param {String} html The HTML fragment
9641          * @param {Boolean} returnEl True to return an Roo.Element
9642          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9643          */
9644         insertHtml : function(where, html, returnEl){
9645             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9646             return returnEl ? Roo.get(el) : el;
9647         },
9648
9649         /**
9650          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9651          * @param {Object} o The object with the attributes
9652          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9653          * @return {Roo.Element} this
9654          */
9655         set : function(o, useSet){
9656             var el = this.dom;
9657             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9658             for(var attr in o){
9659                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9660                 if(attr=="cls"){
9661                     el.className = o["cls"];
9662                 }else{
9663                     if(useSet) {
9664                         el.setAttribute(attr, o[attr]);
9665                     } else {
9666                         el[attr] = o[attr];
9667                     }
9668                 }
9669             }
9670             if(o.style){
9671                 Roo.DomHelper.applyStyles(el, o.style);
9672             }
9673             return this;
9674         },
9675
9676         /**
9677          * Convenience method for constructing a KeyMap
9678          * @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:
9679          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9680          * @param {Function} fn The function to call
9681          * @param {Object} scope (optional) The scope of the function
9682          * @return {Roo.KeyMap} The KeyMap created
9683          */
9684         addKeyListener : function(key, fn, scope){
9685             var config;
9686             if(typeof key != "object" || key instanceof Array){
9687                 config = {
9688                     key: key,
9689                     fn: fn,
9690                     scope: scope
9691                 };
9692             }else{
9693                 config = {
9694                     key : key.key,
9695                     shift : key.shift,
9696                     ctrl : key.ctrl,
9697                     alt : key.alt,
9698                     fn: fn,
9699                     scope: scope
9700                 };
9701             }
9702             return new Roo.KeyMap(this, config);
9703         },
9704
9705         /**
9706          * Creates a KeyMap for this element
9707          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9708          * @return {Roo.KeyMap} The KeyMap created
9709          */
9710         addKeyMap : function(config){
9711             return new Roo.KeyMap(this, config);
9712         },
9713
9714         /**
9715          * Returns true if this element is scrollable.
9716          * @return {Boolean}
9717          */
9718          isScrollable : function(){
9719             var dom = this.dom;
9720             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9721         },
9722
9723         /**
9724          * 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().
9725          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9726          * @param {Number} value The new scroll value
9727          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9728          * @return {Element} this
9729          */
9730
9731         scrollTo : function(side, value, animate){
9732             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9733             if(!animate || !A){
9734                 this.dom[prop] = value;
9735             }else{
9736                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9737                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9738             }
9739             return this;
9740         },
9741
9742         /**
9743          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9744          * within this element's scrollable range.
9745          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9746          * @param {Number} distance How far to scroll the element in pixels
9747          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9748          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9749          * was scrolled as far as it could go.
9750          */
9751          scroll : function(direction, distance, animate){
9752              if(!this.isScrollable()){
9753                  return;
9754              }
9755              var el = this.dom;
9756              var l = el.scrollLeft, t = el.scrollTop;
9757              var w = el.scrollWidth, h = el.scrollHeight;
9758              var cw = el.clientWidth, ch = el.clientHeight;
9759              direction = direction.toLowerCase();
9760              var scrolled = false;
9761              var a = this.preanim(arguments, 2);
9762              switch(direction){
9763                  case "l":
9764                  case "left":
9765                      if(w - l > cw){
9766                          var v = Math.min(l + distance, w-cw);
9767                          this.scrollTo("left", v, a);
9768                          scrolled = true;
9769                      }
9770                      break;
9771                 case "r":
9772                 case "right":
9773                      if(l > 0){
9774                          var v = Math.max(l - distance, 0);
9775                          this.scrollTo("left", v, a);
9776                          scrolled = true;
9777                      }
9778                      break;
9779                 case "t":
9780                 case "top":
9781                 case "up":
9782                      if(t > 0){
9783                          var v = Math.max(t - distance, 0);
9784                          this.scrollTo("top", v, a);
9785                          scrolled = true;
9786                      }
9787                      break;
9788                 case "b":
9789                 case "bottom":
9790                 case "down":
9791                      if(h - t > ch){
9792                          var v = Math.min(t + distance, h-ch);
9793                          this.scrollTo("top", v, a);
9794                          scrolled = true;
9795                      }
9796                      break;
9797              }
9798              return scrolled;
9799         },
9800
9801         /**
9802          * Translates the passed page coordinates into left/top css values for this element
9803          * @param {Number/Array} x The page x or an array containing [x, y]
9804          * @param {Number} y The page y
9805          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9806          */
9807         translatePoints : function(x, y){
9808             if(typeof x == 'object' || x instanceof Array){
9809                 y = x[1]; x = x[0];
9810             }
9811             var p = this.getStyle('position');
9812             var o = this.getXY();
9813
9814             var l = parseInt(this.getStyle('left'), 10);
9815             var t = parseInt(this.getStyle('top'), 10);
9816
9817             if(isNaN(l)){
9818                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9819             }
9820             if(isNaN(t)){
9821                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9822             }
9823
9824             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9825         },
9826
9827         /**
9828          * Returns the current scroll position of the element.
9829          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9830          */
9831         getScroll : function(){
9832             var d = this.dom, doc = document;
9833             if(d == doc || d == doc.body){
9834                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9835                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9836                 return {left: l, top: t};
9837             }else{
9838                 return {left: d.scrollLeft, top: d.scrollTop};
9839             }
9840         },
9841
9842         /**
9843          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9844          * are convert to standard 6 digit hex color.
9845          * @param {String} attr The css attribute
9846          * @param {String} defaultValue The default value to use when a valid color isn't found
9847          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9848          * YUI color anims.
9849          */
9850         getColor : function(attr, defaultValue, prefix){
9851             var v = this.getStyle(attr);
9852             if(!v || v == "transparent" || v == "inherit") {
9853                 return defaultValue;
9854             }
9855             var color = typeof prefix == "undefined" ? "#" : prefix;
9856             if(v.substr(0, 4) == "rgb("){
9857                 var rvs = v.slice(4, v.length -1).split(",");
9858                 for(var i = 0; i < 3; i++){
9859                     var h = parseInt(rvs[i]).toString(16);
9860                     if(h < 16){
9861                         h = "0" + h;
9862                     }
9863                     color += h;
9864                 }
9865             } else {
9866                 if(v.substr(0, 1) == "#"){
9867                     if(v.length == 4) {
9868                         for(var i = 1; i < 4; i++){
9869                             var c = v.charAt(i);
9870                             color +=  c + c;
9871                         }
9872                     }else if(v.length == 7){
9873                         color += v.substr(1);
9874                     }
9875                 }
9876             }
9877             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9878         },
9879
9880         /**
9881          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9882          * gradient background, rounded corners and a 4-way shadow.
9883          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9884          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9885          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9886          * @return {Roo.Element} this
9887          */
9888         boxWrap : function(cls){
9889             cls = cls || 'x-box';
9890             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9891             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9892             return el;
9893         },
9894
9895         /**
9896          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9897          * @param {String} namespace The namespace in which to look for the attribute
9898          * @param {String} name The attribute name
9899          * @return {String} The attribute value
9900          */
9901         getAttributeNS : Roo.isIE ? function(ns, name){
9902             var d = this.dom;
9903             var type = typeof d[ns+":"+name];
9904             if(type != 'undefined' && type != 'unknown'){
9905                 return d[ns+":"+name];
9906             }
9907             return d[name];
9908         } : function(ns, name){
9909             var d = this.dom;
9910             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9911         },
9912         
9913         
9914         /**
9915          * Sets or Returns the value the dom attribute value
9916          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9917          * @param {String} value (optional) The value to set the attribute to
9918          * @return {String} The attribute value
9919          */
9920         attr : function(name){
9921             if (arguments.length > 1) {
9922                 this.dom.setAttribute(name, arguments[1]);
9923                 return arguments[1];
9924             }
9925             if (typeof(name) == 'object') {
9926                 for(var i in name) {
9927                     this.attr(i, name[i]);
9928                 }
9929                 return name;
9930             }
9931             
9932             
9933             if (!this.dom.hasAttribute(name)) {
9934                 return undefined;
9935             }
9936             return this.dom.getAttribute(name);
9937         }
9938         
9939         
9940         
9941     };
9942
9943     var ep = El.prototype;
9944
9945     /**
9946      * Appends an event handler (Shorthand for addListener)
9947      * @param {String}   eventName     The type of event to append
9948      * @param {Function} fn        The method the event invokes
9949      * @param {Object} scope       (optional) The scope (this object) of the fn
9950      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9951      * @method
9952      */
9953     ep.on = ep.addListener;
9954         // backwards compat
9955     ep.mon = ep.addListener;
9956
9957     /**
9958      * Removes an event handler from this element (shorthand for removeListener)
9959      * @param {String} eventName the type of event to remove
9960      * @param {Function} fn the method the event invokes
9961      * @return {Roo.Element} this
9962      * @method
9963      */
9964     ep.un = ep.removeListener;
9965
9966     /**
9967      * true to automatically adjust width and height settings for box-model issues (default to true)
9968      */
9969     ep.autoBoxAdjust = true;
9970
9971     // private
9972     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9973
9974     // private
9975     El.addUnits = function(v, defaultUnit){
9976         if(v === "" || v == "auto"){
9977             return v;
9978         }
9979         if(v === undefined){
9980             return '';
9981         }
9982         if(typeof v == "number" || !El.unitPattern.test(v)){
9983             return v + (defaultUnit || 'px');
9984         }
9985         return v;
9986     };
9987
9988     // special markup used throughout Roo when box wrapping elements
9989     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>';
9990     /**
9991      * Visibility mode constant - Use visibility to hide element
9992      * @static
9993      * @type Number
9994      */
9995     El.VISIBILITY = 1;
9996     /**
9997      * Visibility mode constant - Use display to hide element
9998      * @static
9999      * @type Number
10000      */
10001     El.DISPLAY = 2;
10002
10003     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
10004     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
10005     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
10006
10007
10008
10009     /**
10010      * @private
10011      */
10012     El.cache = {};
10013
10014     var docEl;
10015
10016     /**
10017      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10018      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10019      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10020      * @return {Element} The Element object
10021      * @static
10022      */
10023     El.get = function(el){
10024         var ex, elm, id;
10025         if(!el){ return null; }
10026         if(typeof el == "string"){ // element id
10027             if(!(elm = document.getElementById(el))){
10028                 return null;
10029             }
10030             if(ex = El.cache[el]){
10031                 ex.dom = elm;
10032             }else{
10033                 ex = El.cache[el] = new El(elm);
10034             }
10035             return ex;
10036         }else if(el.tagName){ // dom element
10037             if(!(id = el.id)){
10038                 id = Roo.id(el);
10039             }
10040             if(ex = El.cache[id]){
10041                 ex.dom = el;
10042             }else{
10043                 ex = El.cache[id] = new El(el);
10044             }
10045             return ex;
10046         }else if(el instanceof El){
10047             if(el != docEl){
10048                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10049                                                               // catch case where it hasn't been appended
10050                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10051             }
10052             return el;
10053         }else if(el.isComposite){
10054             return el;
10055         }else if(el instanceof Array){
10056             return El.select(el);
10057         }else if(el == document){
10058             // create a bogus element object representing the document object
10059             if(!docEl){
10060                 var f = function(){};
10061                 f.prototype = El.prototype;
10062                 docEl = new f();
10063                 docEl.dom = document;
10064             }
10065             return docEl;
10066         }
10067         return null;
10068     };
10069
10070     // private
10071     El.uncache = function(el){
10072         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10073             if(a[i]){
10074                 delete El.cache[a[i].id || a[i]];
10075             }
10076         }
10077     };
10078
10079     // private
10080     // Garbage collection - uncache elements/purge listeners on orphaned elements
10081     // so we don't hold a reference and cause the browser to retain them
10082     El.garbageCollect = function(){
10083         if(!Roo.enableGarbageCollector){
10084             clearInterval(El.collectorThread);
10085             return;
10086         }
10087         for(var eid in El.cache){
10088             var el = El.cache[eid], d = el.dom;
10089             // -------------------------------------------------------
10090             // Determining what is garbage:
10091             // -------------------------------------------------------
10092             // !d
10093             // dom node is null, definitely garbage
10094             // -------------------------------------------------------
10095             // !d.parentNode
10096             // no parentNode == direct orphan, definitely garbage
10097             // -------------------------------------------------------
10098             // !d.offsetParent && !document.getElementById(eid)
10099             // display none elements have no offsetParent so we will
10100             // also try to look it up by it's id. However, check
10101             // offsetParent first so we don't do unneeded lookups.
10102             // This enables collection of elements that are not orphans
10103             // directly, but somewhere up the line they have an orphan
10104             // parent.
10105             // -------------------------------------------------------
10106             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10107                 delete El.cache[eid];
10108                 if(d && Roo.enableListenerCollection){
10109                     E.purgeElement(d);
10110                 }
10111             }
10112         }
10113     }
10114     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10115
10116
10117     // dom is optional
10118     El.Flyweight = function(dom){
10119         this.dom = dom;
10120     };
10121     El.Flyweight.prototype = El.prototype;
10122
10123     El._flyweights = {};
10124     /**
10125      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10126      * the dom node can be overwritten by other code.
10127      * @param {String/HTMLElement} el The dom node or id
10128      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10129      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10130      * @static
10131      * @return {Element} The shared Element object
10132      */
10133     El.fly = function(el, named){
10134         named = named || '_global';
10135         el = Roo.getDom(el);
10136         if(!el){
10137             return null;
10138         }
10139         if(!El._flyweights[named]){
10140             El._flyweights[named] = new El.Flyweight();
10141         }
10142         El._flyweights[named].dom = el;
10143         return El._flyweights[named];
10144     };
10145
10146     /**
10147      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10148      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10149      * Shorthand of {@link Roo.Element#get}
10150      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10151      * @return {Element} The Element object
10152      * @member Roo
10153      * @method get
10154      */
10155     Roo.get = El.get;
10156     /**
10157      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10158      * the dom node can be overwritten by other code.
10159      * Shorthand of {@link Roo.Element#fly}
10160      * @param {String/HTMLElement} el The dom node or id
10161      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10162      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10163      * @static
10164      * @return {Element} The shared Element object
10165      * @member Roo
10166      * @method fly
10167      */
10168     Roo.fly = El.fly;
10169
10170     // speedy lookup for elements never to box adjust
10171     var noBoxAdjust = Roo.isStrict ? {
10172         select:1
10173     } : {
10174         input:1, select:1, textarea:1
10175     };
10176     if(Roo.isIE || Roo.isGecko){
10177         noBoxAdjust['button'] = 1;
10178     }
10179
10180
10181     Roo.EventManager.on(window, 'unload', function(){
10182         delete El.cache;
10183         delete El._flyweights;
10184     });
10185 })();
10186
10187
10188
10189
10190 if(Roo.DomQuery){
10191     Roo.Element.selectorFunction = Roo.DomQuery.select;
10192 }
10193
10194 Roo.Element.select = function(selector, unique, root){
10195     var els;
10196     if(typeof selector == "string"){
10197         els = Roo.Element.selectorFunction(selector, root);
10198     }else if(selector.length !== undefined){
10199         els = selector;
10200     }else{
10201         throw "Invalid selector";
10202     }
10203     if(unique === true){
10204         return new Roo.CompositeElement(els);
10205     }else{
10206         return new Roo.CompositeElementLite(els);
10207     }
10208 };
10209 /**
10210  * Selects elements based on the passed CSS selector to enable working on them as 1.
10211  * @param {String/Array} selector The CSS selector or an array of elements
10212  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10213  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10214  * @return {CompositeElementLite/CompositeElement}
10215  * @member Roo
10216  * @method select
10217  */
10218 Roo.select = Roo.Element.select;
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
10231
10232
10233 /*
10234  * Based on:
10235  * Ext JS Library 1.1.1
10236  * Copyright(c) 2006-2007, Ext JS, LLC.
10237  *
10238  * Originally Released Under LGPL - original licence link has changed is not relivant.
10239  *
10240  * Fork - LGPL
10241  * <script type="text/javascript">
10242  */
10243
10244
10245
10246 //Notifies Element that fx methods are available
10247 Roo.enableFx = true;
10248
10249 /**
10250  * @class Roo.Fx
10251  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10252  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10253  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10254  * Element effects to work.</p><br/>
10255  *
10256  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10257  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10258  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10259  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10260  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10261  * expected results and should be done with care.</p><br/>
10262  *
10263  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10264  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10265 <pre>
10266 Value  Description
10267 -----  -----------------------------
10268 tl     The top left corner
10269 t      The center of the top edge
10270 tr     The top right corner
10271 l      The center of the left edge
10272 r      The center of the right edge
10273 bl     The bottom left corner
10274 b      The center of the bottom edge
10275 br     The bottom right corner
10276 </pre>
10277  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10278  * below are common options that can be passed to any Fx method.</b>
10279  * @cfg {Function} callback A function called when the effect is finished
10280  * @cfg {Object} scope The scope of the effect function
10281  * @cfg {String} easing A valid Easing value for the effect
10282  * @cfg {String} afterCls A css class to apply after the effect
10283  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10284  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10285  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10286  * effects that end with the element being visually hidden, ignored otherwise)
10287  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10288  * a function which returns such a specification that will be applied to the Element after the effect finishes
10289  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10290  * @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
10291  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10292  */
10293 Roo.Fx = {
10294         /**
10295          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10296          * origin for the slide effect.  This function automatically handles wrapping the element with
10297          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10298          * Usage:
10299          *<pre><code>
10300 // default: slide the element in from the top
10301 el.slideIn();
10302
10303 // custom: slide the element in from the right with a 2-second duration
10304 el.slideIn('r', { duration: 2 });
10305
10306 // common config options shown with default values
10307 el.slideIn('t', {
10308     easing: 'easeOut',
10309     duration: .5
10310 });
10311 </code></pre>
10312          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10313          * @param {Object} options (optional) Object literal with any of the Fx config options
10314          * @return {Roo.Element} The Element
10315          */
10316     slideIn : function(anchor, o){
10317         var el = this.getFxEl();
10318         o = o || {};
10319
10320         el.queueFx(o, function(){
10321
10322             anchor = anchor || "t";
10323
10324             // fix display to visibility
10325             this.fixDisplay();
10326
10327             // restore values after effect
10328             var r = this.getFxRestore();
10329             var b = this.getBox();
10330             // fixed size for slide
10331             this.setSize(b);
10332
10333             // wrap if needed
10334             var wrap = this.fxWrap(r.pos, o, "hidden");
10335
10336             var st = this.dom.style;
10337             st.visibility = "visible";
10338             st.position = "absolute";
10339
10340             // clear out temp styles after slide and unwrap
10341             var after = function(){
10342                 el.fxUnwrap(wrap, r.pos, o);
10343                 st.width = r.width;
10344                 st.height = r.height;
10345                 el.afterFx(o);
10346             };
10347             // time to calc the positions
10348             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10349
10350             switch(anchor.toLowerCase()){
10351                 case "t":
10352                     wrap.setSize(b.width, 0);
10353                     st.left = st.bottom = "0";
10354                     a = {height: bh};
10355                 break;
10356                 case "l":
10357                     wrap.setSize(0, b.height);
10358                     st.right = st.top = "0";
10359                     a = {width: bw};
10360                 break;
10361                 case "r":
10362                     wrap.setSize(0, b.height);
10363                     wrap.setX(b.right);
10364                     st.left = st.top = "0";
10365                     a = {width: bw, points: pt};
10366                 break;
10367                 case "b":
10368                     wrap.setSize(b.width, 0);
10369                     wrap.setY(b.bottom);
10370                     st.left = st.top = "0";
10371                     a = {height: bh, points: pt};
10372                 break;
10373                 case "tl":
10374                     wrap.setSize(0, 0);
10375                     st.right = st.bottom = "0";
10376                     a = {width: bw, height: bh};
10377                 break;
10378                 case "bl":
10379                     wrap.setSize(0, 0);
10380                     wrap.setY(b.y+b.height);
10381                     st.right = st.top = "0";
10382                     a = {width: bw, height: bh, points: pt};
10383                 break;
10384                 case "br":
10385                     wrap.setSize(0, 0);
10386                     wrap.setXY([b.right, b.bottom]);
10387                     st.left = st.top = "0";
10388                     a = {width: bw, height: bh, points: pt};
10389                 break;
10390                 case "tr":
10391                     wrap.setSize(0, 0);
10392                     wrap.setX(b.x+b.width);
10393                     st.left = st.bottom = "0";
10394                     a = {width: bw, height: bh, points: pt};
10395                 break;
10396             }
10397             this.dom.style.visibility = "visible";
10398             wrap.show();
10399
10400             arguments.callee.anim = wrap.fxanim(a,
10401                 o,
10402                 'motion',
10403                 .5,
10404                 'easeOut', after);
10405         });
10406         return this;
10407     },
10408     
10409         /**
10410          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10411          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10412          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10413          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10414          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10415          * Usage:
10416          *<pre><code>
10417 // default: slide the element out to the top
10418 el.slideOut();
10419
10420 // custom: slide the element out to the right with a 2-second duration
10421 el.slideOut('r', { duration: 2 });
10422
10423 // common config options shown with default values
10424 el.slideOut('t', {
10425     easing: 'easeOut',
10426     duration: .5,
10427     remove: false,
10428     useDisplay: false
10429 });
10430 </code></pre>
10431          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10432          * @param {Object} options (optional) Object literal with any of the Fx config options
10433          * @return {Roo.Element} The Element
10434          */
10435     slideOut : function(anchor, o){
10436         var el = this.getFxEl();
10437         o = o || {};
10438
10439         el.queueFx(o, function(){
10440
10441             anchor = anchor || "t";
10442
10443             // restore values after effect
10444             var r = this.getFxRestore();
10445             
10446             var b = this.getBox();
10447             // fixed size for slide
10448             this.setSize(b);
10449
10450             // wrap if needed
10451             var wrap = this.fxWrap(r.pos, o, "visible");
10452
10453             var st = this.dom.style;
10454             st.visibility = "visible";
10455             st.position = "absolute";
10456
10457             wrap.setSize(b);
10458
10459             var after = function(){
10460                 if(o.useDisplay){
10461                     el.setDisplayed(false);
10462                 }else{
10463                     el.hide();
10464                 }
10465
10466                 el.fxUnwrap(wrap, r.pos, o);
10467
10468                 st.width = r.width;
10469                 st.height = r.height;
10470
10471                 el.afterFx(o);
10472             };
10473
10474             var a, zero = {to: 0};
10475             switch(anchor.toLowerCase()){
10476                 case "t":
10477                     st.left = st.bottom = "0";
10478                     a = {height: zero};
10479                 break;
10480                 case "l":
10481                     st.right = st.top = "0";
10482                     a = {width: zero};
10483                 break;
10484                 case "r":
10485                     st.left = st.top = "0";
10486                     a = {width: zero, points: {to:[b.right, b.y]}};
10487                 break;
10488                 case "b":
10489                     st.left = st.top = "0";
10490                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10491                 break;
10492                 case "tl":
10493                     st.right = st.bottom = "0";
10494                     a = {width: zero, height: zero};
10495                 break;
10496                 case "bl":
10497                     st.right = st.top = "0";
10498                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10499                 break;
10500                 case "br":
10501                     st.left = st.top = "0";
10502                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10503                 break;
10504                 case "tr":
10505                     st.left = st.bottom = "0";
10506                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10507                 break;
10508             }
10509
10510             arguments.callee.anim = wrap.fxanim(a,
10511                 o,
10512                 'motion',
10513                 .5,
10514                 "easeOut", after);
10515         });
10516         return this;
10517     },
10518
10519         /**
10520          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10521          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10522          * The element must be removed from the DOM using the 'remove' config option if desired.
10523          * Usage:
10524          *<pre><code>
10525 // default
10526 el.puff();
10527
10528 // common config options shown with default values
10529 el.puff({
10530     easing: 'easeOut',
10531     duration: .5,
10532     remove: false,
10533     useDisplay: false
10534 });
10535 </code></pre>
10536          * @param {Object} options (optional) Object literal with any of the Fx config options
10537          * @return {Roo.Element} The Element
10538          */
10539     puff : function(o){
10540         var el = this.getFxEl();
10541         o = o || {};
10542
10543         el.queueFx(o, function(){
10544             this.clearOpacity();
10545             this.show();
10546
10547             // restore values after effect
10548             var r = this.getFxRestore();
10549             var st = this.dom.style;
10550
10551             var after = function(){
10552                 if(o.useDisplay){
10553                     el.setDisplayed(false);
10554                 }else{
10555                     el.hide();
10556                 }
10557
10558                 el.clearOpacity();
10559
10560                 el.setPositioning(r.pos);
10561                 st.width = r.width;
10562                 st.height = r.height;
10563                 st.fontSize = '';
10564                 el.afterFx(o);
10565             };
10566
10567             var width = this.getWidth();
10568             var height = this.getHeight();
10569
10570             arguments.callee.anim = this.fxanim({
10571                     width : {to: this.adjustWidth(width * 2)},
10572                     height : {to: this.adjustHeight(height * 2)},
10573                     points : {by: [-(width * .5), -(height * .5)]},
10574                     opacity : {to: 0},
10575                     fontSize: {to:200, unit: "%"}
10576                 },
10577                 o,
10578                 'motion',
10579                 .5,
10580                 "easeOut", after);
10581         });
10582         return this;
10583     },
10584
10585         /**
10586          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10587          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10588          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10589          * Usage:
10590          *<pre><code>
10591 // default
10592 el.switchOff();
10593
10594 // all config options shown with default values
10595 el.switchOff({
10596     easing: 'easeIn',
10597     duration: .3,
10598     remove: false,
10599     useDisplay: false
10600 });
10601 </code></pre>
10602          * @param {Object} options (optional) Object literal with any of the Fx config options
10603          * @return {Roo.Element} The Element
10604          */
10605     switchOff : function(o){
10606         var el = this.getFxEl();
10607         o = o || {};
10608
10609         el.queueFx(o, function(){
10610             this.clearOpacity();
10611             this.clip();
10612
10613             // restore values after effect
10614             var r = this.getFxRestore();
10615             var st = this.dom.style;
10616
10617             var after = function(){
10618                 if(o.useDisplay){
10619                     el.setDisplayed(false);
10620                 }else{
10621                     el.hide();
10622                 }
10623
10624                 el.clearOpacity();
10625                 el.setPositioning(r.pos);
10626                 st.width = r.width;
10627                 st.height = r.height;
10628
10629                 el.afterFx(o);
10630             };
10631
10632             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10633                 this.clearOpacity();
10634                 (function(){
10635                     this.fxanim({
10636                         height:{to:1},
10637                         points:{by:[0, this.getHeight() * .5]}
10638                     }, o, 'motion', 0.3, 'easeIn', after);
10639                 }).defer(100, this);
10640             });
10641         });
10642         return this;
10643     },
10644
10645     /**
10646      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10647      * changed using the "attr" config option) and then fading back to the original color. If no original
10648      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10649      * Usage:
10650 <pre><code>
10651 // default: highlight background to yellow
10652 el.highlight();
10653
10654 // custom: highlight foreground text to blue for 2 seconds
10655 el.highlight("0000ff", { attr: 'color', duration: 2 });
10656
10657 // common config options shown with default values
10658 el.highlight("ffff9c", {
10659     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10660     endColor: (current color) or "ffffff",
10661     easing: 'easeIn',
10662     duration: 1
10663 });
10664 </code></pre>
10665      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10666      * @param {Object} options (optional) Object literal with any of the Fx config options
10667      * @return {Roo.Element} The Element
10668      */ 
10669     highlight : function(color, o){
10670         var el = this.getFxEl();
10671         o = o || {};
10672
10673         el.queueFx(o, function(){
10674             color = color || "ffff9c";
10675             attr = o.attr || "backgroundColor";
10676
10677             this.clearOpacity();
10678             this.show();
10679
10680             var origColor = this.getColor(attr);
10681             var restoreColor = this.dom.style[attr];
10682             endColor = (o.endColor || origColor) || "ffffff";
10683
10684             var after = function(){
10685                 el.dom.style[attr] = restoreColor;
10686                 el.afterFx(o);
10687             };
10688
10689             var a = {};
10690             a[attr] = {from: color, to: endColor};
10691             arguments.callee.anim = this.fxanim(a,
10692                 o,
10693                 'color',
10694                 1,
10695                 'easeIn', after);
10696         });
10697         return this;
10698     },
10699
10700    /**
10701     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10702     * Usage:
10703 <pre><code>
10704 // default: a single light blue ripple
10705 el.frame();
10706
10707 // custom: 3 red ripples lasting 3 seconds total
10708 el.frame("ff0000", 3, { duration: 3 });
10709
10710 // common config options shown with default values
10711 el.frame("C3DAF9", 1, {
10712     duration: 1 //duration of entire animation (not each individual ripple)
10713     // Note: Easing is not configurable and will be ignored if included
10714 });
10715 </code></pre>
10716     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10717     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10718     * @param {Object} options (optional) Object literal with any of the Fx config options
10719     * @return {Roo.Element} The Element
10720     */
10721     frame : function(color, count, o){
10722         var el = this.getFxEl();
10723         o = o || {};
10724
10725         el.queueFx(o, function(){
10726             color = color || "#C3DAF9";
10727             if(color.length == 6){
10728                 color = "#" + color;
10729             }
10730             count = count || 1;
10731             duration = o.duration || 1;
10732             this.show();
10733
10734             var b = this.getBox();
10735             var animFn = function(){
10736                 var proxy = this.createProxy({
10737
10738                      style:{
10739                         visbility:"hidden",
10740                         position:"absolute",
10741                         "z-index":"35000", // yee haw
10742                         border:"0px solid " + color
10743                      }
10744                   });
10745                 var scale = Roo.isBorderBox ? 2 : 1;
10746                 proxy.animate({
10747                     top:{from:b.y, to:b.y - 20},
10748                     left:{from:b.x, to:b.x - 20},
10749                     borderWidth:{from:0, to:10},
10750                     opacity:{from:1, to:0},
10751                     height:{from:b.height, to:(b.height + (20*scale))},
10752                     width:{from:b.width, to:(b.width + (20*scale))}
10753                 }, duration, function(){
10754                     proxy.remove();
10755                 });
10756                 if(--count > 0){
10757                      animFn.defer((duration/2)*1000, this);
10758                 }else{
10759                     el.afterFx(o);
10760                 }
10761             };
10762             animFn.call(this);
10763         });
10764         return this;
10765     },
10766
10767    /**
10768     * Creates a pause before any subsequent queued effects begin.  If there are
10769     * no effects queued after the pause it will have no effect.
10770     * Usage:
10771 <pre><code>
10772 el.pause(1);
10773 </code></pre>
10774     * @param {Number} seconds The length of time to pause (in seconds)
10775     * @return {Roo.Element} The Element
10776     */
10777     pause : function(seconds){
10778         var el = this.getFxEl();
10779         var o = {};
10780
10781         el.queueFx(o, function(){
10782             setTimeout(function(){
10783                 el.afterFx(o);
10784             }, seconds * 1000);
10785         });
10786         return this;
10787     },
10788
10789    /**
10790     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10791     * using the "endOpacity" config option.
10792     * Usage:
10793 <pre><code>
10794 // default: fade in from opacity 0 to 100%
10795 el.fadeIn();
10796
10797 // custom: fade in from opacity 0 to 75% over 2 seconds
10798 el.fadeIn({ endOpacity: .75, duration: 2});
10799
10800 // common config options shown with default values
10801 el.fadeIn({
10802     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10803     easing: 'easeOut',
10804     duration: .5
10805 });
10806 </code></pre>
10807     * @param {Object} options (optional) Object literal with any of the Fx config options
10808     * @return {Roo.Element} The Element
10809     */
10810     fadeIn : function(o){
10811         var el = this.getFxEl();
10812         o = o || {};
10813         el.queueFx(o, function(){
10814             this.setOpacity(0);
10815             this.fixDisplay();
10816             this.dom.style.visibility = 'visible';
10817             var to = o.endOpacity || 1;
10818             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10819                 o, null, .5, "easeOut", function(){
10820                 if(to == 1){
10821                     this.clearOpacity();
10822                 }
10823                 el.afterFx(o);
10824             });
10825         });
10826         return this;
10827     },
10828
10829    /**
10830     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10831     * using the "endOpacity" config option.
10832     * Usage:
10833 <pre><code>
10834 // default: fade out from the element's current opacity to 0
10835 el.fadeOut();
10836
10837 // custom: fade out from the element's current opacity to 25% over 2 seconds
10838 el.fadeOut({ endOpacity: .25, duration: 2});
10839
10840 // common config options shown with default values
10841 el.fadeOut({
10842     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10843     easing: 'easeOut',
10844     duration: .5
10845     remove: false,
10846     useDisplay: false
10847 });
10848 </code></pre>
10849     * @param {Object} options (optional) Object literal with any of the Fx config options
10850     * @return {Roo.Element} The Element
10851     */
10852     fadeOut : function(o){
10853         var el = this.getFxEl();
10854         o = o || {};
10855         el.queueFx(o, function(){
10856             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10857                 o, null, .5, "easeOut", function(){
10858                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10859                      this.dom.style.display = "none";
10860                 }else{
10861                      this.dom.style.visibility = "hidden";
10862                 }
10863                 this.clearOpacity();
10864                 el.afterFx(o);
10865             });
10866         });
10867         return this;
10868     },
10869
10870    /**
10871     * Animates the transition of an element's dimensions from a starting height/width
10872     * to an ending height/width.
10873     * Usage:
10874 <pre><code>
10875 // change height and width to 100x100 pixels
10876 el.scale(100, 100);
10877
10878 // common config options shown with default values.  The height and width will default to
10879 // the element's existing values if passed as null.
10880 el.scale(
10881     [element's width],
10882     [element's height], {
10883     easing: 'easeOut',
10884     duration: .35
10885 });
10886 </code></pre>
10887     * @param {Number} width  The new width (pass undefined to keep the original width)
10888     * @param {Number} height  The new height (pass undefined to keep the original height)
10889     * @param {Object} options (optional) Object literal with any of the Fx config options
10890     * @return {Roo.Element} The Element
10891     */
10892     scale : function(w, h, o){
10893         this.shift(Roo.apply({}, o, {
10894             width: w,
10895             height: h
10896         }));
10897         return this;
10898     },
10899
10900    /**
10901     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10902     * Any of these properties not specified in the config object will not be changed.  This effect 
10903     * requires that at least one new dimension, position or opacity setting must be passed in on
10904     * the config object in order for the function to have any effect.
10905     * Usage:
10906 <pre><code>
10907 // slide the element horizontally to x position 200 while changing the height and opacity
10908 el.shift({ x: 200, height: 50, opacity: .8 });
10909
10910 // common config options shown with default values.
10911 el.shift({
10912     width: [element's width],
10913     height: [element's height],
10914     x: [element's x position],
10915     y: [element's y position],
10916     opacity: [element's opacity],
10917     easing: 'easeOut',
10918     duration: .35
10919 });
10920 </code></pre>
10921     * @param {Object} options  Object literal with any of the Fx config options
10922     * @return {Roo.Element} The Element
10923     */
10924     shift : function(o){
10925         var el = this.getFxEl();
10926         o = o || {};
10927         el.queueFx(o, function(){
10928             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10929             if(w !== undefined){
10930                 a.width = {to: this.adjustWidth(w)};
10931             }
10932             if(h !== undefined){
10933                 a.height = {to: this.adjustHeight(h)};
10934             }
10935             if(x !== undefined || y !== undefined){
10936                 a.points = {to: [
10937                     x !== undefined ? x : this.getX(),
10938                     y !== undefined ? y : this.getY()
10939                 ]};
10940             }
10941             if(op !== undefined){
10942                 a.opacity = {to: op};
10943             }
10944             if(o.xy !== undefined){
10945                 a.points = {to: o.xy};
10946             }
10947             arguments.callee.anim = this.fxanim(a,
10948                 o, 'motion', .35, "easeOut", function(){
10949                 el.afterFx(o);
10950             });
10951         });
10952         return this;
10953     },
10954
10955         /**
10956          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10957          * ending point of the effect.
10958          * Usage:
10959          *<pre><code>
10960 // default: slide the element downward while fading out
10961 el.ghost();
10962
10963 // custom: slide the element out to the right with a 2-second duration
10964 el.ghost('r', { duration: 2 });
10965
10966 // common config options shown with default values
10967 el.ghost('b', {
10968     easing: 'easeOut',
10969     duration: .5
10970     remove: false,
10971     useDisplay: false
10972 });
10973 </code></pre>
10974          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10975          * @param {Object} options (optional) Object literal with any of the Fx config options
10976          * @return {Roo.Element} The Element
10977          */
10978     ghost : function(anchor, o){
10979         var el = this.getFxEl();
10980         o = o || {};
10981
10982         el.queueFx(o, function(){
10983             anchor = anchor || "b";
10984
10985             // restore values after effect
10986             var r = this.getFxRestore();
10987             var w = this.getWidth(),
10988                 h = this.getHeight();
10989
10990             var st = this.dom.style;
10991
10992             var after = function(){
10993                 if(o.useDisplay){
10994                     el.setDisplayed(false);
10995                 }else{
10996                     el.hide();
10997                 }
10998
10999                 el.clearOpacity();
11000                 el.setPositioning(r.pos);
11001                 st.width = r.width;
11002                 st.height = r.height;
11003
11004                 el.afterFx(o);
11005             };
11006
11007             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
11008             switch(anchor.toLowerCase()){
11009                 case "t":
11010                     pt.by = [0, -h];
11011                 break;
11012                 case "l":
11013                     pt.by = [-w, 0];
11014                 break;
11015                 case "r":
11016                     pt.by = [w, 0];
11017                 break;
11018                 case "b":
11019                     pt.by = [0, h];
11020                 break;
11021                 case "tl":
11022                     pt.by = [-w, -h];
11023                 break;
11024                 case "bl":
11025                     pt.by = [-w, h];
11026                 break;
11027                 case "br":
11028                     pt.by = [w, h];
11029                 break;
11030                 case "tr":
11031                     pt.by = [w, -h];
11032                 break;
11033             }
11034
11035             arguments.callee.anim = this.fxanim(a,
11036                 o,
11037                 'motion',
11038                 .5,
11039                 "easeOut", after);
11040         });
11041         return this;
11042     },
11043
11044         /**
11045          * Ensures that all effects queued after syncFx is called on the element are
11046          * run concurrently.  This is the opposite of {@link #sequenceFx}.
11047          * @return {Roo.Element} The Element
11048          */
11049     syncFx : function(){
11050         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11051             block : false,
11052             concurrent : true,
11053             stopFx : false
11054         });
11055         return this;
11056     },
11057
11058         /**
11059          * Ensures that all effects queued after sequenceFx is called on the element are
11060          * run in sequence.  This is the opposite of {@link #syncFx}.
11061          * @return {Roo.Element} The Element
11062          */
11063     sequenceFx : function(){
11064         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11065             block : false,
11066             concurrent : false,
11067             stopFx : false
11068         });
11069         return this;
11070     },
11071
11072         /* @private */
11073     nextFx : function(){
11074         var ef = this.fxQueue[0];
11075         if(ef){
11076             ef.call(this);
11077         }
11078     },
11079
11080         /**
11081          * Returns true if the element has any effects actively running or queued, else returns false.
11082          * @return {Boolean} True if element has active effects, else false
11083          */
11084     hasActiveFx : function(){
11085         return this.fxQueue && this.fxQueue[0];
11086     },
11087
11088         /**
11089          * Stops any running effects and clears the element's internal effects queue if it contains
11090          * any additional effects that haven't started yet.
11091          * @return {Roo.Element} The Element
11092          */
11093     stopFx : function(){
11094         if(this.hasActiveFx()){
11095             var cur = this.fxQueue[0];
11096             if(cur && cur.anim && cur.anim.isAnimated()){
11097                 this.fxQueue = [cur]; // clear out others
11098                 cur.anim.stop(true);
11099             }
11100         }
11101         return this;
11102     },
11103
11104         /* @private */
11105     beforeFx : function(o){
11106         if(this.hasActiveFx() && !o.concurrent){
11107            if(o.stopFx){
11108                this.stopFx();
11109                return true;
11110            }
11111            return false;
11112         }
11113         return true;
11114     },
11115
11116         /**
11117          * Returns true if the element is currently blocking so that no other effect can be queued
11118          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11119          * used to ensure that an effect initiated by a user action runs to completion prior to the
11120          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11121          * @return {Boolean} True if blocking, else false
11122          */
11123     hasFxBlock : function(){
11124         var q = this.fxQueue;
11125         return q && q[0] && q[0].block;
11126     },
11127
11128         /* @private */
11129     queueFx : function(o, fn){
11130         if(!this.fxQueue){
11131             this.fxQueue = [];
11132         }
11133         if(!this.hasFxBlock()){
11134             Roo.applyIf(o, this.fxDefaults);
11135             if(!o.concurrent){
11136                 var run = this.beforeFx(o);
11137                 fn.block = o.block;
11138                 this.fxQueue.push(fn);
11139                 if(run){
11140                     this.nextFx();
11141                 }
11142             }else{
11143                 fn.call(this);
11144             }
11145         }
11146         return this;
11147     },
11148
11149         /* @private */
11150     fxWrap : function(pos, o, vis){
11151         var wrap;
11152         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11153             var wrapXY;
11154             if(o.fixPosition){
11155                 wrapXY = this.getXY();
11156             }
11157             var div = document.createElement("div");
11158             div.style.visibility = vis;
11159             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11160             wrap.setPositioning(pos);
11161             if(wrap.getStyle("position") == "static"){
11162                 wrap.position("relative");
11163             }
11164             this.clearPositioning('auto');
11165             wrap.clip();
11166             wrap.dom.appendChild(this.dom);
11167             if(wrapXY){
11168                 wrap.setXY(wrapXY);
11169             }
11170         }
11171         return wrap;
11172     },
11173
11174         /* @private */
11175     fxUnwrap : function(wrap, pos, o){
11176         this.clearPositioning();
11177         this.setPositioning(pos);
11178         if(!o.wrap){
11179             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11180             wrap.remove();
11181         }
11182     },
11183
11184         /* @private */
11185     getFxRestore : function(){
11186         var st = this.dom.style;
11187         return {pos: this.getPositioning(), width: st.width, height : st.height};
11188     },
11189
11190         /* @private */
11191     afterFx : function(o){
11192         if(o.afterStyle){
11193             this.applyStyles(o.afterStyle);
11194         }
11195         if(o.afterCls){
11196             this.addClass(o.afterCls);
11197         }
11198         if(o.remove === true){
11199             this.remove();
11200         }
11201         Roo.callback(o.callback, o.scope, [this]);
11202         if(!o.concurrent){
11203             this.fxQueue.shift();
11204             this.nextFx();
11205         }
11206     },
11207
11208         /* @private */
11209     getFxEl : function(){ // support for composite element fx
11210         return Roo.get(this.dom);
11211     },
11212
11213         /* @private */
11214     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11215         animType = animType || 'run';
11216         opt = opt || {};
11217         var anim = Roo.lib.Anim[animType](
11218             this.dom, args,
11219             (opt.duration || defaultDur) || .35,
11220             (opt.easing || defaultEase) || 'easeOut',
11221             function(){
11222                 Roo.callback(cb, this);
11223             },
11224             this
11225         );
11226         opt.anim = anim;
11227         return anim;
11228     }
11229 };
11230
11231 // backwords compat
11232 Roo.Fx.resize = Roo.Fx.scale;
11233
11234 //When included, Roo.Fx is automatically applied to Element so that all basic
11235 //effects are available directly via the Element API
11236 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11237  * Based on:
11238  * Ext JS Library 1.1.1
11239  * Copyright(c) 2006-2007, Ext JS, LLC.
11240  *
11241  * Originally Released Under LGPL - original licence link has changed is not relivant.
11242  *
11243  * Fork - LGPL
11244  * <script type="text/javascript">
11245  */
11246
11247
11248 /**
11249  * @class Roo.CompositeElement
11250  * Standard composite class. Creates a Roo.Element for every element in the collection.
11251  * <br><br>
11252  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11253  * actions will be performed on all the elements in this collection.</b>
11254  * <br><br>
11255  * All methods return <i>this</i> and can be chained.
11256  <pre><code>
11257  var els = Roo.select("#some-el div.some-class", true);
11258  // or select directly from an existing element
11259  var el = Roo.get('some-el');
11260  el.select('div.some-class', true);
11261
11262  els.setWidth(100); // all elements become 100 width
11263  els.hide(true); // all elements fade out and hide
11264  // or
11265  els.setWidth(100).hide(true);
11266  </code></pre>
11267  */
11268 Roo.CompositeElement = function(els){
11269     this.elements = [];
11270     this.addElements(els);
11271 };
11272 Roo.CompositeElement.prototype = {
11273     isComposite: true,
11274     addElements : function(els){
11275         if(!els) {
11276             return this;
11277         }
11278         if(typeof els == "string"){
11279             els = Roo.Element.selectorFunction(els);
11280         }
11281         var yels = this.elements;
11282         var index = yels.length-1;
11283         for(var i = 0, len = els.length; i < len; i++) {
11284                 yels[++index] = Roo.get(els[i]);
11285         }
11286         return this;
11287     },
11288
11289     /**
11290     * Clears this composite and adds the elements returned by the passed selector.
11291     * @param {String/Array} els A string CSS selector, an array of elements or an element
11292     * @return {CompositeElement} this
11293     */
11294     fill : function(els){
11295         this.elements = [];
11296         this.add(els);
11297         return this;
11298     },
11299
11300     /**
11301     * Filters this composite to only elements that match the passed selector.
11302     * @param {String} selector A string CSS selector
11303     * @param {Boolean} inverse return inverse filter (not matches)
11304     * @return {CompositeElement} this
11305     */
11306     filter : function(selector, inverse){
11307         var els = [];
11308         inverse = inverse || false;
11309         this.each(function(el){
11310             var match = inverse ? !el.is(selector) : el.is(selector);
11311             if(match){
11312                 els[els.length] = el.dom;
11313             }
11314         });
11315         this.fill(els);
11316         return this;
11317     },
11318
11319     invoke : function(fn, args){
11320         var els = this.elements;
11321         for(var i = 0, len = els.length; i < len; i++) {
11322                 Roo.Element.prototype[fn].apply(els[i], args);
11323         }
11324         return this;
11325     },
11326     /**
11327     * Adds elements to this composite.
11328     * @param {String/Array} els A string CSS selector, an array of elements or an element
11329     * @return {CompositeElement} this
11330     */
11331     add : function(els){
11332         if(typeof els == "string"){
11333             this.addElements(Roo.Element.selectorFunction(els));
11334         }else if(els.length !== undefined){
11335             this.addElements(els);
11336         }else{
11337             this.addElements([els]);
11338         }
11339         return this;
11340     },
11341     /**
11342     * Calls the passed function passing (el, this, index) for each element in this composite.
11343     * @param {Function} fn The function to call
11344     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11345     * @return {CompositeElement} this
11346     */
11347     each : function(fn, scope){
11348         var els = this.elements;
11349         for(var i = 0, len = els.length; i < len; i++){
11350             if(fn.call(scope || els[i], els[i], this, i) === false) {
11351                 break;
11352             }
11353         }
11354         return this;
11355     },
11356
11357     /**
11358      * Returns the Element object at the specified index
11359      * @param {Number} index
11360      * @return {Roo.Element}
11361      */
11362     item : function(index){
11363         return this.elements[index] || null;
11364     },
11365
11366     /**
11367      * Returns the first Element
11368      * @return {Roo.Element}
11369      */
11370     first : function(){
11371         return this.item(0);
11372     },
11373
11374     /**
11375      * Returns the last Element
11376      * @return {Roo.Element}
11377      */
11378     last : function(){
11379         return this.item(this.elements.length-1);
11380     },
11381
11382     /**
11383      * Returns the number of elements in this composite
11384      * @return Number
11385      */
11386     getCount : function(){
11387         return this.elements.length;
11388     },
11389
11390     /**
11391      * Returns true if this composite contains the passed element
11392      * @return Boolean
11393      */
11394     contains : function(el){
11395         return this.indexOf(el) !== -1;
11396     },
11397
11398     /**
11399      * Returns true if this composite contains the passed element
11400      * @return Boolean
11401      */
11402     indexOf : function(el){
11403         return this.elements.indexOf(Roo.get(el));
11404     },
11405
11406
11407     /**
11408     * Removes the specified element(s).
11409     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11410     * or an array of any of those.
11411     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11412     * @return {CompositeElement} this
11413     */
11414     removeElement : function(el, removeDom){
11415         if(el instanceof Array){
11416             for(var i = 0, len = el.length; i < len; i++){
11417                 this.removeElement(el[i]);
11418             }
11419             return this;
11420         }
11421         var index = typeof el == 'number' ? el : this.indexOf(el);
11422         if(index !== -1){
11423             if(removeDom){
11424                 var d = this.elements[index];
11425                 if(d.dom){
11426                     d.remove();
11427                 }else{
11428                     d.parentNode.removeChild(d);
11429                 }
11430             }
11431             this.elements.splice(index, 1);
11432         }
11433         return this;
11434     },
11435
11436     /**
11437     * Replaces the specified element with the passed element.
11438     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11439     * to replace.
11440     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11441     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11442     * @return {CompositeElement} this
11443     */
11444     replaceElement : function(el, replacement, domReplace){
11445         var index = typeof el == 'number' ? el : this.indexOf(el);
11446         if(index !== -1){
11447             if(domReplace){
11448                 this.elements[index].replaceWith(replacement);
11449             }else{
11450                 this.elements.splice(index, 1, Roo.get(replacement))
11451             }
11452         }
11453         return this;
11454     },
11455
11456     /**
11457      * Removes all elements.
11458      */
11459     clear : function(){
11460         this.elements = [];
11461     }
11462 };
11463 (function(){
11464     Roo.CompositeElement.createCall = function(proto, fnName){
11465         if(!proto[fnName]){
11466             proto[fnName] = function(){
11467                 return this.invoke(fnName, arguments);
11468             };
11469         }
11470     };
11471     for(var fnName in Roo.Element.prototype){
11472         if(typeof Roo.Element.prototype[fnName] == "function"){
11473             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11474         }
11475     };
11476 })();
11477 /*
11478  * Based on:
11479  * Ext JS Library 1.1.1
11480  * Copyright(c) 2006-2007, Ext JS, LLC.
11481  *
11482  * Originally Released Under LGPL - original licence link has changed is not relivant.
11483  *
11484  * Fork - LGPL
11485  * <script type="text/javascript">
11486  */
11487
11488 /**
11489  * @class Roo.CompositeElementLite
11490  * @extends Roo.CompositeElement
11491  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11492  <pre><code>
11493  var els = Roo.select("#some-el div.some-class");
11494  // or select directly from an existing element
11495  var el = Roo.get('some-el');
11496  el.select('div.some-class');
11497
11498  els.setWidth(100); // all elements become 100 width
11499  els.hide(true); // all elements fade out and hide
11500  // or
11501  els.setWidth(100).hide(true);
11502  </code></pre><br><br>
11503  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11504  * actions will be performed on all the elements in this collection.</b>
11505  */
11506 Roo.CompositeElementLite = function(els){
11507     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11508     this.el = new Roo.Element.Flyweight();
11509 };
11510 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11511     addElements : function(els){
11512         if(els){
11513             if(els instanceof Array){
11514                 this.elements = this.elements.concat(els);
11515             }else{
11516                 var yels = this.elements;
11517                 var index = yels.length-1;
11518                 for(var i = 0, len = els.length; i < len; i++) {
11519                     yels[++index] = els[i];
11520                 }
11521             }
11522         }
11523         return this;
11524     },
11525     invoke : function(fn, args){
11526         var els = this.elements;
11527         var el = this.el;
11528         for(var i = 0, len = els.length; i < len; i++) {
11529             el.dom = els[i];
11530                 Roo.Element.prototype[fn].apply(el, args);
11531         }
11532         return this;
11533     },
11534     /**
11535      * Returns a flyweight Element of the dom element object at the specified index
11536      * @param {Number} index
11537      * @return {Roo.Element}
11538      */
11539     item : function(index){
11540         if(!this.elements[index]){
11541             return null;
11542         }
11543         this.el.dom = this.elements[index];
11544         return this.el;
11545     },
11546
11547     // fixes scope with flyweight
11548     addListener : function(eventName, handler, scope, opt){
11549         var els = this.elements;
11550         for(var i = 0, len = els.length; i < len; i++) {
11551             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11552         }
11553         return this;
11554     },
11555
11556     /**
11557     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11558     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11559     * a reference to the dom node, use el.dom.</b>
11560     * @param {Function} fn The function to call
11561     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11562     * @return {CompositeElement} this
11563     */
11564     each : function(fn, scope){
11565         var els = this.elements;
11566         var el = this.el;
11567         for(var i = 0, len = els.length; i < len; i++){
11568             el.dom = els[i];
11569                 if(fn.call(scope || el, el, this, i) === false){
11570                 break;
11571             }
11572         }
11573         return this;
11574     },
11575
11576     indexOf : function(el){
11577         return this.elements.indexOf(Roo.getDom(el));
11578     },
11579
11580     replaceElement : function(el, replacement, domReplace){
11581         var index = typeof el == 'number' ? el : this.indexOf(el);
11582         if(index !== -1){
11583             replacement = Roo.getDom(replacement);
11584             if(domReplace){
11585                 var d = this.elements[index];
11586                 d.parentNode.insertBefore(replacement, d);
11587                 d.parentNode.removeChild(d);
11588             }
11589             this.elements.splice(index, 1, replacement);
11590         }
11591         return this;
11592     }
11593 });
11594 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11595
11596 /*
11597  * Based on:
11598  * Ext JS Library 1.1.1
11599  * Copyright(c) 2006-2007, Ext JS, LLC.
11600  *
11601  * Originally Released Under LGPL - original licence link has changed is not relivant.
11602  *
11603  * Fork - LGPL
11604  * <script type="text/javascript">
11605  */
11606
11607  
11608
11609 /**
11610  * @class Roo.data.Connection
11611  * @extends Roo.util.Observable
11612  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11613  * either to a configured URL, or to a URL specified at request time. 
11614  * 
11615  * Requests made by this class are asynchronous, and will return immediately. No data from
11616  * the server will be available to the statement immediately following the {@link #request} call.
11617  * To process returned data, use a callback in the request options object, or an event listener.
11618  * 
11619  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11620  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11621  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11622  * property and, if present, the IFRAME's XML document as the responseXML property.
11623  * 
11624  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11625  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11626  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11627  * standard DOM methods.
11628  * @constructor
11629  * @param {Object} config a configuration object.
11630  */
11631 Roo.data.Connection = function(config){
11632     Roo.apply(this, config);
11633     this.addEvents({
11634         /**
11635          * @event beforerequest
11636          * Fires before a network request is made to retrieve a data object.
11637          * @param {Connection} conn This Connection object.
11638          * @param {Object} options The options config object passed to the {@link #request} method.
11639          */
11640         "beforerequest" : true,
11641         /**
11642          * @event requestcomplete
11643          * Fires if the request was successfully completed.
11644          * @param {Connection} conn This Connection object.
11645          * @param {Object} response The XHR object containing the response data.
11646          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11647          * @param {Object} options The options config object passed to the {@link #request} method.
11648          */
11649         "requestcomplete" : true,
11650         /**
11651          * @event requestexception
11652          * Fires if an error HTTP status was returned from the server.
11653          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11654          * @param {Connection} conn This Connection object.
11655          * @param {Object} response The XHR object containing the response data.
11656          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11657          * @param {Object} options The options config object passed to the {@link #request} method.
11658          */
11659         "requestexception" : true
11660     });
11661     Roo.data.Connection.superclass.constructor.call(this);
11662 };
11663
11664 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11665     /**
11666      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11667      */
11668     /**
11669      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11670      * extra parameters to each request made by this object. (defaults to undefined)
11671      */
11672     /**
11673      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11674      *  to each request made by this object. (defaults to undefined)
11675      */
11676     /**
11677      * @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)
11678      */
11679     /**
11680      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11681      */
11682     timeout : 30000,
11683     /**
11684      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11685      * @type Boolean
11686      */
11687     autoAbort:false,
11688
11689     /**
11690      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11691      * @type Boolean
11692      */
11693     disableCaching: true,
11694
11695     /**
11696      * Sends an HTTP request to a remote server.
11697      * @param {Object} options An object which may contain the following properties:<ul>
11698      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11699      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11700      * request, a url encoded string or a function to call to get either.</li>
11701      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11702      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11703      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11704      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11705      * <li>options {Object} The parameter to the request call.</li>
11706      * <li>success {Boolean} True if the request succeeded.</li>
11707      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11708      * </ul></li>
11709      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11710      * The callback is passed the following parameters:<ul>
11711      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11712      * <li>options {Object} The parameter to the request call.</li>
11713      * </ul></li>
11714      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11715      * The callback is passed the following parameters:<ul>
11716      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11717      * <li>options {Object} The parameter to the request call.</li>
11718      * </ul></li>
11719      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11720      * for the callback function. Defaults to the browser window.</li>
11721      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11722      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11723      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11724      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11725      * params for the post data. Any params will be appended to the URL.</li>
11726      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11727      * </ul>
11728      * @return {Number} transactionId
11729      */
11730     request : function(o){
11731         if(this.fireEvent("beforerequest", this, o) !== false){
11732             var p = o.params;
11733
11734             if(typeof p == "function"){
11735                 p = p.call(o.scope||window, o);
11736             }
11737             if(typeof p == "object"){
11738                 p = Roo.urlEncode(o.params);
11739             }
11740             if(this.extraParams){
11741                 var extras = Roo.urlEncode(this.extraParams);
11742                 p = p ? (p + '&' + extras) : extras;
11743             }
11744
11745             var url = o.url || this.url;
11746             if(typeof url == 'function'){
11747                 url = url.call(o.scope||window, o);
11748             }
11749
11750             if(o.form){
11751                 var form = Roo.getDom(o.form);
11752                 url = url || form.action;
11753
11754                 var enctype = form.getAttribute("enctype");
11755                 
11756                 if (o.formData) {
11757                     return this.doFormDataUpload(o, url);
11758                 }
11759                 
11760                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11761                     return this.doFormUpload(o, p, url);
11762                 }
11763                 var f = Roo.lib.Ajax.serializeForm(form);
11764                 p = p ? (p + '&' + f) : f;
11765             }
11766             
11767             if (!o.form && o.formData) {
11768                 o.formData = o.formData === true ? new FormData() : o.formData;
11769                 for (var k in o.params) {
11770                     o.formData.append(k,o.params[k]);
11771                 }
11772                     
11773                 return this.doFormDataUpload(o, url);
11774             }
11775             
11776
11777             var hs = o.headers;
11778             if(this.defaultHeaders){
11779                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11780                 if(!o.headers){
11781                     o.headers = hs;
11782                 }
11783             }
11784
11785             var cb = {
11786                 success: this.handleResponse,
11787                 failure: this.handleFailure,
11788                 scope: this,
11789                 argument: {options: o},
11790                 timeout : o.timeout || this.timeout
11791             };
11792
11793             var method = o.method||this.method||(p ? "POST" : "GET");
11794
11795             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11796                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11797             }
11798
11799             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11800                 if(o.autoAbort){
11801                     this.abort();
11802                 }
11803             }else if(this.autoAbort !== false){
11804                 this.abort();
11805             }
11806
11807             if((method == 'GET' && p) || o.xmlData){
11808                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11809                 p = '';
11810             }
11811             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11812             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11813             Roo.lib.Ajax.useDefaultHeader == true;
11814             return this.transId;
11815         }else{
11816             Roo.callback(o.callback, o.scope, [o, null, null]);
11817             return null;
11818         }
11819     },
11820
11821     /**
11822      * Determine whether this object has a request outstanding.
11823      * @param {Number} transactionId (Optional) defaults to the last transaction
11824      * @return {Boolean} True if there is an outstanding request.
11825      */
11826     isLoading : function(transId){
11827         if(transId){
11828             return Roo.lib.Ajax.isCallInProgress(transId);
11829         }else{
11830             return this.transId ? true : false;
11831         }
11832     },
11833
11834     /**
11835      * Aborts any outstanding request.
11836      * @param {Number} transactionId (Optional) defaults to the last transaction
11837      */
11838     abort : function(transId){
11839         if(transId || this.isLoading()){
11840             Roo.lib.Ajax.abort(transId || this.transId);
11841         }
11842     },
11843
11844     // private
11845     handleResponse : function(response){
11846         this.transId = false;
11847         var options = response.argument.options;
11848         response.argument = options ? options.argument : null;
11849         this.fireEvent("requestcomplete", this, response, options);
11850         Roo.callback(options.success, options.scope, [response, options]);
11851         Roo.callback(options.callback, options.scope, [options, true, response]);
11852     },
11853
11854     // private
11855     handleFailure : function(response, e){
11856         this.transId = false;
11857         var options = response.argument.options;
11858         response.argument = options ? options.argument : null;
11859         this.fireEvent("requestexception", this, response, options, e);
11860         Roo.callback(options.failure, options.scope, [response, options]);
11861         Roo.callback(options.callback, options.scope, [options, false, response]);
11862     },
11863
11864     // private
11865     doFormUpload : function(o, ps, url){
11866         var id = Roo.id();
11867         var frame = document.createElement('iframe');
11868         frame.id = id;
11869         frame.name = id;
11870         frame.className = 'x-hidden';
11871         if(Roo.isIE){
11872             frame.src = Roo.SSL_SECURE_URL;
11873         }
11874         document.body.appendChild(frame);
11875
11876         if(Roo.isIE){
11877            document.frames[id].name = id;
11878         }
11879
11880         var form = Roo.getDom(o.form);
11881         form.target = id;
11882         form.method = 'POST';
11883         form.enctype = form.encoding = 'multipart/form-data';
11884         if(url){
11885             form.action = url;
11886         }
11887
11888         var hiddens, hd;
11889         if(ps){ // add dynamic params
11890             hiddens = [];
11891             ps = Roo.urlDecode(ps, false);
11892             for(var k in ps){
11893                 if(ps.hasOwnProperty(k)){
11894                     hd = document.createElement('input');
11895                     hd.type = 'hidden';
11896                     hd.name = k;
11897                     hd.value = ps[k];
11898                     form.appendChild(hd);
11899                     hiddens.push(hd);
11900                 }
11901             }
11902         }
11903
11904         function cb(){
11905             var r = {  // bogus response object
11906                 responseText : '',
11907                 responseXML : null
11908             };
11909
11910             r.argument = o ? o.argument : null;
11911
11912             try { //
11913                 var doc;
11914                 if(Roo.isIE){
11915                     doc = frame.contentWindow.document;
11916                 }else {
11917                     doc = (frame.contentDocument || window.frames[id].document);
11918                 }
11919                 if(doc && doc.body){
11920                     r.responseText = doc.body.innerHTML;
11921                 }
11922                 if(doc && doc.XMLDocument){
11923                     r.responseXML = doc.XMLDocument;
11924                 }else {
11925                     r.responseXML = doc;
11926                 }
11927             }
11928             catch(e) {
11929                 // ignore
11930             }
11931
11932             Roo.EventManager.removeListener(frame, 'load', cb, this);
11933
11934             this.fireEvent("requestcomplete", this, r, o);
11935             Roo.callback(o.success, o.scope, [r, o]);
11936             Roo.callback(o.callback, o.scope, [o, true, r]);
11937
11938             setTimeout(function(){document.body.removeChild(frame);}, 100);
11939         }
11940
11941         Roo.EventManager.on(frame, 'load', cb, this);
11942         form.submit();
11943
11944         if(hiddens){ // remove dynamic params
11945             for(var i = 0, len = hiddens.length; i < len; i++){
11946                 form.removeChild(hiddens[i]);
11947             }
11948         }
11949     },
11950     // this is a 'formdata version???'
11951     
11952     
11953     doFormDataUpload : function(o,  url)
11954     {
11955         var formData;
11956         if (o.form) {
11957             var form =  Roo.getDom(o.form);
11958             form.enctype = form.encoding = 'multipart/form-data';
11959             formData = o.formData === true ? new FormData(form) : o.formData;
11960         } else {
11961             formData = o.formData === true ? new FormData() : o.formData;
11962         }
11963         
11964       
11965         var cb = {
11966             success: this.handleResponse,
11967             failure: this.handleFailure,
11968             scope: this,
11969             argument: {options: o},
11970             timeout : o.timeout || this.timeout
11971         };
11972  
11973         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11974             if(o.autoAbort){
11975                 this.abort();
11976             }
11977         }else if(this.autoAbort !== false){
11978             this.abort();
11979         }
11980
11981         //Roo.lib.Ajax.defaultPostHeader = null;
11982         Roo.lib.Ajax.useDefaultHeader = false;
11983         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11984         Roo.lib.Ajax.useDefaultHeader = true;
11985  
11986          
11987     }
11988     
11989 });
11990 /*
11991  * Based on:
11992  * Ext JS Library 1.1.1
11993  * Copyright(c) 2006-2007, Ext JS, LLC.
11994  *
11995  * Originally Released Under LGPL - original licence link has changed is not relivant.
11996  *
11997  * Fork - LGPL
11998  * <script type="text/javascript">
11999  */
12000  
12001 /**
12002  * Global Ajax request class.
12003  * 
12004  * @class Roo.Ajax
12005  * @extends Roo.data.Connection
12006  * @static
12007  * 
12008  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
12009  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
12010  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
12011  * @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)
12012  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12013  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
12014  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
12015  */
12016 Roo.Ajax = new Roo.data.Connection({
12017     // fix up the docs
12018     /**
12019      * @scope Roo.Ajax
12020      * @type {Boolear} 
12021      */
12022     autoAbort : false,
12023
12024     /**
12025      * Serialize the passed form into a url encoded string
12026      * @scope Roo.Ajax
12027      * @param {String/HTMLElement} form
12028      * @return {String}
12029      */
12030     serializeForm : function(form){
12031         return Roo.lib.Ajax.serializeForm(form);
12032     }
12033 });/*
12034  * Based on:
12035  * Ext JS Library 1.1.1
12036  * Copyright(c) 2006-2007, Ext JS, LLC.
12037  *
12038  * Originally Released Under LGPL - original licence link has changed is not relivant.
12039  *
12040  * Fork - LGPL
12041  * <script type="text/javascript">
12042  */
12043
12044  
12045 /**
12046  * @class Roo.UpdateManager
12047  * @extends Roo.util.Observable
12048  * Provides AJAX-style update for Element object.<br><br>
12049  * Usage:<br>
12050  * <pre><code>
12051  * // Get it from a Roo.Element object
12052  * var el = Roo.get("foo");
12053  * var mgr = el.getUpdateManager();
12054  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12055  * ...
12056  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12057  * <br>
12058  * // or directly (returns the same UpdateManager instance)
12059  * var mgr = new Roo.UpdateManager("myElementId");
12060  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12061  * mgr.on("update", myFcnNeedsToKnow);
12062  * <br>
12063    // short handed call directly from the element object
12064    Roo.get("foo").load({
12065         url: "bar.php",
12066         scripts:true,
12067         params: "for=bar",
12068         text: "Loading Foo..."
12069    });
12070  * </code></pre>
12071  * @constructor
12072  * Create new UpdateManager directly.
12073  * @param {String/HTMLElement/Roo.Element} el The element to update
12074  * @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).
12075  */
12076 Roo.UpdateManager = function(el, forceNew){
12077     el = Roo.get(el);
12078     if(!forceNew && el.updateManager){
12079         return el.updateManager;
12080     }
12081     /**
12082      * The Element object
12083      * @type Roo.Element
12084      */
12085     this.el = el;
12086     /**
12087      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12088      * @type String
12089      */
12090     this.defaultUrl = null;
12091
12092     this.addEvents({
12093         /**
12094          * @event beforeupdate
12095          * Fired before an update is made, return false from your handler and the update is cancelled.
12096          * @param {Roo.Element} el
12097          * @param {String/Object/Function} url
12098          * @param {String/Object} params
12099          */
12100         "beforeupdate": true,
12101         /**
12102          * @event update
12103          * Fired after successful update is made.
12104          * @param {Roo.Element} el
12105          * @param {Object} oResponseObject The response Object
12106          */
12107         "update": true,
12108         /**
12109          * @event failure
12110          * Fired on update failure.
12111          * @param {Roo.Element} el
12112          * @param {Object} oResponseObject The response Object
12113          */
12114         "failure": true
12115     });
12116     var d = Roo.UpdateManager.defaults;
12117     /**
12118      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12119      * @type String
12120      */
12121     this.sslBlankUrl = d.sslBlankUrl;
12122     /**
12123      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12124      * @type Boolean
12125      */
12126     this.disableCaching = d.disableCaching;
12127     /**
12128      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12129      * @type String
12130      */
12131     this.indicatorText = d.indicatorText;
12132     /**
12133      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12134      * @type String
12135      */
12136     this.showLoadIndicator = d.showLoadIndicator;
12137     /**
12138      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12139      * @type Number
12140      */
12141     this.timeout = d.timeout;
12142
12143     /**
12144      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12145      * @type Boolean
12146      */
12147     this.loadScripts = d.loadScripts;
12148
12149     /**
12150      * Transaction object of current executing transaction
12151      */
12152     this.transaction = null;
12153
12154     /**
12155      * @private
12156      */
12157     this.autoRefreshProcId = null;
12158     /**
12159      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12160      * @type Function
12161      */
12162     this.refreshDelegate = this.refresh.createDelegate(this);
12163     /**
12164      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12165      * @type Function
12166      */
12167     this.updateDelegate = this.update.createDelegate(this);
12168     /**
12169      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12170      * @type Function
12171      */
12172     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12173     /**
12174      * @private
12175      */
12176     this.successDelegate = this.processSuccess.createDelegate(this);
12177     /**
12178      * @private
12179      */
12180     this.failureDelegate = this.processFailure.createDelegate(this);
12181
12182     if(!this.renderer){
12183      /**
12184       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12185       */
12186     this.renderer = new Roo.UpdateManager.BasicRenderer();
12187     }
12188     
12189     Roo.UpdateManager.superclass.constructor.call(this);
12190 };
12191
12192 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12193     /**
12194      * Get the Element this UpdateManager is bound to
12195      * @return {Roo.Element} The element
12196      */
12197     getEl : function(){
12198         return this.el;
12199     },
12200     /**
12201      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12202      * @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:
12203 <pre><code>
12204 um.update({<br/>
12205     url: "your-url.php",<br/>
12206     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12207     callback: yourFunction,<br/>
12208     scope: yourObject, //(optional scope)  <br/>
12209     discardUrl: false, <br/>
12210     nocache: false,<br/>
12211     text: "Loading...",<br/>
12212     timeout: 30,<br/>
12213     scripts: false<br/>
12214 });
12215 </code></pre>
12216      * The only required property is url. The optional properties nocache, text and scripts
12217      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12218      * @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}
12219      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12220      * @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.
12221      */
12222     update : function(url, params, callback, discardUrl){
12223         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12224             var method = this.method,
12225                 cfg;
12226             if(typeof url == "object"){ // must be config object
12227                 cfg = url;
12228                 url = cfg.url;
12229                 params = params || cfg.params;
12230                 callback = callback || cfg.callback;
12231                 discardUrl = discardUrl || cfg.discardUrl;
12232                 if(callback && cfg.scope){
12233                     callback = callback.createDelegate(cfg.scope);
12234                 }
12235                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12236                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12237                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12238                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12239                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12240             }
12241             this.showLoading();
12242             if(!discardUrl){
12243                 this.defaultUrl = url;
12244             }
12245             if(typeof url == "function"){
12246                 url = url.call(this);
12247             }
12248
12249             method = method || (params ? "POST" : "GET");
12250             if(method == "GET"){
12251                 url = this.prepareUrl(url);
12252             }
12253
12254             var o = Roo.apply(cfg ||{}, {
12255                 url : url,
12256                 params: params,
12257                 success: this.successDelegate,
12258                 failure: this.failureDelegate,
12259                 callback: undefined,
12260                 timeout: (this.timeout*1000),
12261                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12262             });
12263             Roo.log("updated manager called with timeout of " + o.timeout);
12264             this.transaction = Roo.Ajax.request(o);
12265         }
12266     },
12267
12268     /**
12269      * 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.
12270      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12271      * @param {String/HTMLElement} form The form Id or form element
12272      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12273      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12274      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12275      */
12276     formUpdate : function(form, url, reset, callback){
12277         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12278             if(typeof url == "function"){
12279                 url = url.call(this);
12280             }
12281             form = Roo.getDom(form);
12282             this.transaction = Roo.Ajax.request({
12283                 form: form,
12284                 url:url,
12285                 success: this.successDelegate,
12286                 failure: this.failureDelegate,
12287                 timeout: (this.timeout*1000),
12288                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12289             });
12290             this.showLoading.defer(1, this);
12291         }
12292     },
12293
12294     /**
12295      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12296      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12297      */
12298     refresh : function(callback){
12299         if(this.defaultUrl == null){
12300             return;
12301         }
12302         this.update(this.defaultUrl, null, callback, true);
12303     },
12304
12305     /**
12306      * Set this element to auto refresh.
12307      * @param {Number} interval How often to update (in seconds).
12308      * @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)
12309      * @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}
12310      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12311      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12312      */
12313     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12314         if(refreshNow){
12315             this.update(url || this.defaultUrl, params, callback, true);
12316         }
12317         if(this.autoRefreshProcId){
12318             clearInterval(this.autoRefreshProcId);
12319         }
12320         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12321     },
12322
12323     /**
12324      * Stop auto refresh on this element.
12325      */
12326      stopAutoRefresh : function(){
12327         if(this.autoRefreshProcId){
12328             clearInterval(this.autoRefreshProcId);
12329             delete this.autoRefreshProcId;
12330         }
12331     },
12332
12333     isAutoRefreshing : function(){
12334        return this.autoRefreshProcId ? true : false;
12335     },
12336     /**
12337      * Called to update the element to "Loading" state. Override to perform custom action.
12338      */
12339     showLoading : function(){
12340         if(this.showLoadIndicator){
12341             this.el.update(this.indicatorText);
12342         }
12343     },
12344
12345     /**
12346      * Adds unique parameter to query string if disableCaching = true
12347      * @private
12348      */
12349     prepareUrl : function(url){
12350         if(this.disableCaching){
12351             var append = "_dc=" + (new Date().getTime());
12352             if(url.indexOf("?") !== -1){
12353                 url += "&" + append;
12354             }else{
12355                 url += "?" + append;
12356             }
12357         }
12358         return url;
12359     },
12360
12361     /**
12362      * @private
12363      */
12364     processSuccess : function(response){
12365         this.transaction = null;
12366         if(response.argument.form && response.argument.reset){
12367             try{ // put in try/catch since some older FF releases had problems with this
12368                 response.argument.form.reset();
12369             }catch(e){}
12370         }
12371         if(this.loadScripts){
12372             this.renderer.render(this.el, response, this,
12373                 this.updateComplete.createDelegate(this, [response]));
12374         }else{
12375             this.renderer.render(this.el, response, this);
12376             this.updateComplete(response);
12377         }
12378     },
12379
12380     updateComplete : function(response){
12381         this.fireEvent("update", this.el, response);
12382         if(typeof response.argument.callback == "function"){
12383             response.argument.callback(this.el, true, response);
12384         }
12385     },
12386
12387     /**
12388      * @private
12389      */
12390     processFailure : function(response){
12391         this.transaction = null;
12392         this.fireEvent("failure", this.el, response);
12393         if(typeof response.argument.callback == "function"){
12394             response.argument.callback(this.el, false, response);
12395         }
12396     },
12397
12398     /**
12399      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12400      * @param {Object} renderer The object implementing the render() method
12401      */
12402     setRenderer : function(renderer){
12403         this.renderer = renderer;
12404     },
12405
12406     getRenderer : function(){
12407        return this.renderer;
12408     },
12409
12410     /**
12411      * Set the defaultUrl used for updates
12412      * @param {String/Function} defaultUrl The url or a function to call to get the url
12413      */
12414     setDefaultUrl : function(defaultUrl){
12415         this.defaultUrl = defaultUrl;
12416     },
12417
12418     /**
12419      * Aborts the executing transaction
12420      */
12421     abort : function(){
12422         if(this.transaction){
12423             Roo.Ajax.abort(this.transaction);
12424         }
12425     },
12426
12427     /**
12428      * Returns true if an update is in progress
12429      * @return {Boolean}
12430      */
12431     isUpdating : function(){
12432         if(this.transaction){
12433             return Roo.Ajax.isLoading(this.transaction);
12434         }
12435         return false;
12436     }
12437 });
12438
12439 /**
12440  * @class Roo.UpdateManager.defaults
12441  * @static (not really - but it helps the doc tool)
12442  * The defaults collection enables customizing the default properties of UpdateManager
12443  */
12444    Roo.UpdateManager.defaults = {
12445        /**
12446          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12447          * @type Number
12448          */
12449          timeout : 30,
12450
12451          /**
12452          * True to process scripts by default (Defaults to false).
12453          * @type Boolean
12454          */
12455         loadScripts : false,
12456
12457         /**
12458         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12459         * @type String
12460         */
12461         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12462         /**
12463          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12464          * @type Boolean
12465          */
12466         disableCaching : false,
12467         /**
12468          * Whether to show indicatorText when loading (Defaults to true).
12469          * @type Boolean
12470          */
12471         showLoadIndicator : true,
12472         /**
12473          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12474          * @type String
12475          */
12476         indicatorText : '<div class="loading-indicator">Loading...</div>'
12477    };
12478
12479 /**
12480  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12481  *Usage:
12482  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12483  * @param {String/HTMLElement/Roo.Element} el The element to update
12484  * @param {String} url The url
12485  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12486  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12487  * @static
12488  * @deprecated
12489  * @member Roo.UpdateManager
12490  */
12491 Roo.UpdateManager.updateElement = function(el, url, params, options){
12492     var um = Roo.get(el, true).getUpdateManager();
12493     Roo.apply(um, options);
12494     um.update(url, params, options ? options.callback : null);
12495 };
12496 // alias for backwards compat
12497 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12498 /**
12499  * @class Roo.UpdateManager.BasicRenderer
12500  * Default Content renderer. Updates the elements innerHTML with the responseText.
12501  */
12502 Roo.UpdateManager.BasicRenderer = function(){};
12503
12504 Roo.UpdateManager.BasicRenderer.prototype = {
12505     /**
12506      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12507      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12508      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12509      * @param {Roo.Element} el The element being rendered
12510      * @param {Object} response The YUI Connect response object
12511      * @param {UpdateManager} updateManager The calling update manager
12512      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12513      */
12514      render : function(el, response, updateManager, callback){
12515         el.update(response.responseText, updateManager.loadScripts, callback);
12516     }
12517 };
12518 /*
12519  * Based on:
12520  * Roo JS
12521  * (c)) Alan Knowles
12522  * Licence : LGPL
12523  */
12524
12525
12526 /**
12527  * @class Roo.DomTemplate
12528  * @extends Roo.Template
12529  * An effort at a dom based template engine..
12530  *
12531  * Similar to XTemplate, except it uses dom parsing to create the template..
12532  *
12533  * Supported features:
12534  *
12535  *  Tags:
12536
12537 <pre><code>
12538       {a_variable} - output encoded.
12539       {a_variable.format:("Y-m-d")} - call a method on the variable
12540       {a_variable:raw} - unencoded output
12541       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12542       {a_variable:this.method_on_template(...)} - call a method on the template object.
12543  
12544 </code></pre>
12545  *  The tpl tag:
12546 <pre><code>
12547         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12548         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12549         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12550         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12551   
12552 </code></pre>
12553  *      
12554  */
12555 Roo.DomTemplate = function()
12556 {
12557      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12558      if (this.html) {
12559         this.compile();
12560      }
12561 };
12562
12563
12564 Roo.extend(Roo.DomTemplate, Roo.Template, {
12565     /**
12566      * id counter for sub templates.
12567      */
12568     id : 0,
12569     /**
12570      * flag to indicate if dom parser is inside a pre,
12571      * it will strip whitespace if not.
12572      */
12573     inPre : false,
12574     
12575     /**
12576      * The various sub templates
12577      */
12578     tpls : false,
12579     
12580     
12581     
12582     /**
12583      *
12584      * basic tag replacing syntax
12585      * WORD:WORD()
12586      *
12587      * // you can fake an object call by doing this
12588      *  x.t:(test,tesT) 
12589      * 
12590      */
12591     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12592     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12593     
12594     iterChild : function (node, method) {
12595         
12596         var oldPre = this.inPre;
12597         if (node.tagName == 'PRE') {
12598             this.inPre = true;
12599         }
12600         for( var i = 0; i < node.childNodes.length; i++) {
12601             method.call(this, node.childNodes[i]);
12602         }
12603         this.inPre = oldPre;
12604     },
12605     
12606     
12607     
12608     /**
12609      * compile the template
12610      *
12611      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12612      *
12613      */
12614     compile: function()
12615     {
12616         var s = this.html;
12617         
12618         // covert the html into DOM...
12619         var doc = false;
12620         var div =false;
12621         try {
12622             doc = document.implementation.createHTMLDocument("");
12623             doc.documentElement.innerHTML =   this.html  ;
12624             div = doc.documentElement;
12625         } catch (e) {
12626             // old IE... - nasty -- it causes all sorts of issues.. with
12627             // images getting pulled from server..
12628             div = document.createElement('div');
12629             div.innerHTML = this.html;
12630         }
12631         //doc.documentElement.innerHTML = htmlBody
12632          
12633         
12634         
12635         this.tpls = [];
12636         var _t = this;
12637         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12638         
12639         var tpls = this.tpls;
12640         
12641         // create a top level template from the snippet..
12642         
12643         //Roo.log(div.innerHTML);
12644         
12645         var tpl = {
12646             uid : 'master',
12647             id : this.id++,
12648             attr : false,
12649             value : false,
12650             body : div.innerHTML,
12651             
12652             forCall : false,
12653             execCall : false,
12654             dom : div,
12655             isTop : true
12656             
12657         };
12658         tpls.unshift(tpl);
12659         
12660         
12661         // compile them...
12662         this.tpls = [];
12663         Roo.each(tpls, function(tp){
12664             this.compileTpl(tp);
12665             this.tpls[tp.id] = tp;
12666         }, this);
12667         
12668         this.master = tpls[0];
12669         return this;
12670         
12671         
12672     },
12673     
12674     compileNode : function(node, istop) {
12675         // test for
12676         //Roo.log(node);
12677         
12678         
12679         // skip anything not a tag..
12680         if (node.nodeType != 1) {
12681             if (node.nodeType == 3 && !this.inPre) {
12682                 // reduce white space..
12683                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12684                 
12685             }
12686             return;
12687         }
12688         
12689         var tpl = {
12690             uid : false,
12691             id : false,
12692             attr : false,
12693             value : false,
12694             body : '',
12695             
12696             forCall : false,
12697             execCall : false,
12698             dom : false,
12699             isTop : istop
12700             
12701             
12702         };
12703         
12704         
12705         switch(true) {
12706             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12707             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12708             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12709             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12710             // no default..
12711         }
12712         
12713         
12714         if (!tpl.attr) {
12715             // just itterate children..
12716             this.iterChild(node,this.compileNode);
12717             return;
12718         }
12719         tpl.uid = this.id++;
12720         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12721         node.removeAttribute('roo-'+ tpl.attr);
12722         if (tpl.attr != 'name') {
12723             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12724             node.parentNode.replaceChild(placeholder,  node);
12725         } else {
12726             
12727             var placeholder =  document.createElement('span');
12728             placeholder.className = 'roo-tpl-' + tpl.value;
12729             node.parentNode.replaceChild(placeholder,  node);
12730         }
12731         
12732         // parent now sees '{domtplXXXX}
12733         this.iterChild(node,this.compileNode);
12734         
12735         // we should now have node body...
12736         var div = document.createElement('div');
12737         div.appendChild(node);
12738         tpl.dom = node;
12739         // this has the unfortunate side effect of converting tagged attributes
12740         // eg. href="{...}" into %7C...%7D
12741         // this has been fixed by searching for those combo's although it's a bit hacky..
12742         
12743         
12744         tpl.body = div.innerHTML;
12745         
12746         
12747          
12748         tpl.id = tpl.uid;
12749         switch(tpl.attr) {
12750             case 'for' :
12751                 switch (tpl.value) {
12752                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12753                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12754                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12755                 }
12756                 break;
12757             
12758             case 'exec':
12759                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12760                 break;
12761             
12762             case 'if':     
12763                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12764                 break;
12765             
12766             case 'name':
12767                 tpl.id  = tpl.value; // replace non characters???
12768                 break;
12769             
12770         }
12771         
12772         
12773         this.tpls.push(tpl);
12774         
12775         
12776         
12777     },
12778     
12779     
12780     
12781     
12782     /**
12783      * Compile a segment of the template into a 'sub-template'
12784      *
12785      * 
12786      * 
12787      *
12788      */
12789     compileTpl : function(tpl)
12790     {
12791         var fm = Roo.util.Format;
12792         var useF = this.disableFormats !== true;
12793         
12794         var sep = Roo.isGecko ? "+\n" : ",\n";
12795         
12796         var undef = function(str) {
12797             Roo.debug && Roo.log("Property not found :"  + str);
12798             return '';
12799         };
12800           
12801         //Roo.log(tpl.body);
12802         
12803         
12804         
12805         var fn = function(m, lbrace, name, format, args)
12806         {
12807             //Roo.log("ARGS");
12808             //Roo.log(arguments);
12809             args = args ? args.replace(/\\'/g,"'") : args;
12810             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12811             if (typeof(format) == 'undefined') {
12812                 format =  'htmlEncode'; 
12813             }
12814             if (format == 'raw' ) {
12815                 format = false;
12816             }
12817             
12818             if(name.substr(0, 6) == 'domtpl'){
12819                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12820             }
12821             
12822             // build an array of options to determine if value is undefined..
12823             
12824             // basically get 'xxxx.yyyy' then do
12825             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12826             //    (function () { Roo.log("Property not found"); return ''; })() :
12827             //    ......
12828             
12829             var udef_ar = [];
12830             var lookfor = '';
12831             Roo.each(name.split('.'), function(st) {
12832                 lookfor += (lookfor.length ? '.': '') + st;
12833                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12834             });
12835             
12836             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12837             
12838             
12839             if(format && useF){
12840                 
12841                 args = args ? ',' + args : "";
12842                  
12843                 if(format.substr(0, 5) != "this."){
12844                     format = "fm." + format + '(';
12845                 }else{
12846                     format = 'this.call("'+ format.substr(5) + '", ';
12847                     args = ", values";
12848                 }
12849                 
12850                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12851             }
12852              
12853             if (args && args.length) {
12854                 // called with xxyx.yuu:(test,test)
12855                 // change to ()
12856                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12857             }
12858             // raw.. - :raw modifier..
12859             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12860             
12861         };
12862         var body;
12863         // branched to use + in gecko and [].join() in others
12864         if(Roo.isGecko){
12865             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12866                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12867                     "';};};";
12868         }else{
12869             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12870             body.push(tpl.body.replace(/(\r\n|\n)/g,
12871                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12872             body.push("'].join('');};};");
12873             body = body.join('');
12874         }
12875         
12876         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12877        
12878         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12879         eval(body);
12880         
12881         return this;
12882     },
12883      
12884     /**
12885      * same as applyTemplate, except it's done to one of the subTemplates
12886      * when using named templates, you can do:
12887      *
12888      * var str = pl.applySubTemplate('your-name', values);
12889      *
12890      * 
12891      * @param {Number} id of the template
12892      * @param {Object} values to apply to template
12893      * @param {Object} parent (normaly the instance of this object)
12894      */
12895     applySubTemplate : function(id, values, parent)
12896     {
12897         
12898         
12899         var t = this.tpls[id];
12900         
12901         
12902         try { 
12903             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12904                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12905                 return '';
12906             }
12907         } catch(e) {
12908             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12909             Roo.log(values);
12910           
12911             return '';
12912         }
12913         try { 
12914             
12915             if(t.execCall && t.execCall.call(this, values, parent)){
12916                 return '';
12917             }
12918         } catch(e) {
12919             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12920             Roo.log(values);
12921             return '';
12922         }
12923         
12924         try {
12925             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12926             parent = t.target ? values : parent;
12927             if(t.forCall && vs instanceof Array){
12928                 var buf = [];
12929                 for(var i = 0, len = vs.length; i < len; i++){
12930                     try {
12931                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12932                     } catch (e) {
12933                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12934                         Roo.log(e.body);
12935                         //Roo.log(t.compiled);
12936                         Roo.log(vs[i]);
12937                     }   
12938                 }
12939                 return buf.join('');
12940             }
12941         } catch (e) {
12942             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12943             Roo.log(values);
12944             return '';
12945         }
12946         try {
12947             return t.compiled.call(this, vs, parent);
12948         } catch (e) {
12949             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12950             Roo.log(e.body);
12951             //Roo.log(t.compiled);
12952             Roo.log(values);
12953             return '';
12954         }
12955     },
12956
12957    
12958
12959     applyTemplate : function(values){
12960         return this.master.compiled.call(this, values, {});
12961         //var s = this.subs;
12962     },
12963
12964     apply : function(){
12965         return this.applyTemplate.apply(this, arguments);
12966     }
12967
12968  });
12969
12970 Roo.DomTemplate.from = function(el){
12971     el = Roo.getDom(el);
12972     return new Roo.Domtemplate(el.value || el.innerHTML);
12973 };/*
12974  * Based on:
12975  * Ext JS Library 1.1.1
12976  * Copyright(c) 2006-2007, Ext JS, LLC.
12977  *
12978  * Originally Released Under LGPL - original licence link has changed is not relivant.
12979  *
12980  * Fork - LGPL
12981  * <script type="text/javascript">
12982  */
12983
12984 /**
12985  * @class Roo.util.DelayedTask
12986  * Provides a convenient method of performing setTimeout where a new
12987  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12988  * You can use this class to buffer
12989  * the keypress events for a certain number of milliseconds, and perform only if they stop
12990  * for that amount of time.
12991  * @constructor The parameters to this constructor serve as defaults and are not required.
12992  * @param {Function} fn (optional) The default function to timeout
12993  * @param {Object} scope (optional) The default scope of that timeout
12994  * @param {Array} args (optional) The default Array of arguments
12995  */
12996 Roo.util.DelayedTask = function(fn, scope, args){
12997     var id = null, d, t;
12998
12999     var call = function(){
13000         var now = new Date().getTime();
13001         if(now - t >= d){
13002             clearInterval(id);
13003             id = null;
13004             fn.apply(scope, args || []);
13005         }
13006     };
13007     /**
13008      * Cancels any pending timeout and queues a new one
13009      * @param {Number} delay The milliseconds to delay
13010      * @param {Function} newFn (optional) Overrides function passed to constructor
13011      * @param {Object} newScope (optional) Overrides scope passed to constructor
13012      * @param {Array} newArgs (optional) Overrides args passed to constructor
13013      */
13014     this.delay = function(delay, newFn, newScope, newArgs){
13015         if(id && delay != d){
13016             this.cancel();
13017         }
13018         d = delay;
13019         t = new Date().getTime();
13020         fn = newFn || fn;
13021         scope = newScope || scope;
13022         args = newArgs || args;
13023         if(!id){
13024             id = setInterval(call, d);
13025         }
13026     };
13027
13028     /**
13029      * Cancel the last queued timeout
13030      */
13031     this.cancel = function(){
13032         if(id){
13033             clearInterval(id);
13034             id = null;
13035         }
13036     };
13037 };/*
13038  * Based on:
13039  * Ext JS Library 1.1.1
13040  * Copyright(c) 2006-2007, Ext JS, LLC.
13041  *
13042  * Originally Released Under LGPL - original licence link has changed is not relivant.
13043  *
13044  * Fork - LGPL
13045  * <script type="text/javascript">
13046  */
13047  
13048  
13049 Roo.util.TaskRunner = function(interval){
13050     interval = interval || 10;
13051     var tasks = [], removeQueue = [];
13052     var id = 0;
13053     var running = false;
13054
13055     var stopThread = function(){
13056         running = false;
13057         clearInterval(id);
13058         id = 0;
13059     };
13060
13061     var startThread = function(){
13062         if(!running){
13063             running = true;
13064             id = setInterval(runTasks, interval);
13065         }
13066     };
13067
13068     var removeTask = function(task){
13069         removeQueue.push(task);
13070         if(task.onStop){
13071             task.onStop();
13072         }
13073     };
13074
13075     var runTasks = function(){
13076         if(removeQueue.length > 0){
13077             for(var i = 0, len = removeQueue.length; i < len; i++){
13078                 tasks.remove(removeQueue[i]);
13079             }
13080             removeQueue = [];
13081             if(tasks.length < 1){
13082                 stopThread();
13083                 return;
13084             }
13085         }
13086         var now = new Date().getTime();
13087         for(var i = 0, len = tasks.length; i < len; ++i){
13088             var t = tasks[i];
13089             var itime = now - t.taskRunTime;
13090             if(t.interval <= itime){
13091                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13092                 t.taskRunTime = now;
13093                 if(rt === false || t.taskRunCount === t.repeat){
13094                     removeTask(t);
13095                     return;
13096                 }
13097             }
13098             if(t.duration && t.duration <= (now - t.taskStartTime)){
13099                 removeTask(t);
13100             }
13101         }
13102     };
13103
13104     /**
13105      * Queues a new task.
13106      * @param {Object} task
13107      */
13108     this.start = function(task){
13109         tasks.push(task);
13110         task.taskStartTime = new Date().getTime();
13111         task.taskRunTime = 0;
13112         task.taskRunCount = 0;
13113         startThread();
13114         return task;
13115     };
13116
13117     this.stop = function(task){
13118         removeTask(task);
13119         return task;
13120     };
13121
13122     this.stopAll = function(){
13123         stopThread();
13124         for(var i = 0, len = tasks.length; i < len; i++){
13125             if(tasks[i].onStop){
13126                 tasks[i].onStop();
13127             }
13128         }
13129         tasks = [];
13130         removeQueue = [];
13131     };
13132 };
13133
13134 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13135  * Based on:
13136  * Ext JS Library 1.1.1
13137  * Copyright(c) 2006-2007, Ext JS, LLC.
13138  *
13139  * Originally Released Under LGPL - original licence link has changed is not relivant.
13140  *
13141  * Fork - LGPL
13142  * <script type="text/javascript">
13143  */
13144
13145  
13146 /**
13147  * @class Roo.util.MixedCollection
13148  * @extends Roo.util.Observable
13149  * A Collection class that maintains both numeric indexes and keys and exposes events.
13150  * @constructor
13151  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13152  * collection (defaults to false)
13153  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13154  * and return the key value for that item.  This is used when available to look up the key on items that
13155  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13156  * equivalent to providing an implementation for the {@link #getKey} method.
13157  */
13158 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13159     this.items = [];
13160     this.map = {};
13161     this.keys = [];
13162     this.length = 0;
13163     this.addEvents({
13164         /**
13165          * @event clear
13166          * Fires when the collection is cleared.
13167          */
13168         "clear" : true,
13169         /**
13170          * @event add
13171          * Fires when an item is added to the collection.
13172          * @param {Number} index The index at which the item was added.
13173          * @param {Object} o The item added.
13174          * @param {String} key The key associated with the added item.
13175          */
13176         "add" : true,
13177         /**
13178          * @event replace
13179          * Fires when an item is replaced in the collection.
13180          * @param {String} key he key associated with the new added.
13181          * @param {Object} old The item being replaced.
13182          * @param {Object} new The new item.
13183          */
13184         "replace" : true,
13185         /**
13186          * @event remove
13187          * Fires when an item is removed from the collection.
13188          * @param {Object} o The item being removed.
13189          * @param {String} key (optional) The key associated with the removed item.
13190          */
13191         "remove" : true,
13192         "sort" : true
13193     });
13194     this.allowFunctions = allowFunctions === true;
13195     if(keyFn){
13196         this.getKey = keyFn;
13197     }
13198     Roo.util.MixedCollection.superclass.constructor.call(this);
13199 };
13200
13201 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13202     allowFunctions : false,
13203     
13204 /**
13205  * Adds an item to the collection.
13206  * @param {String} key The key to associate with the item
13207  * @param {Object} o The item to add.
13208  * @return {Object} The item added.
13209  */
13210     add : function(key, o){
13211         if(arguments.length == 1){
13212             o = arguments[0];
13213             key = this.getKey(o);
13214         }
13215         if(typeof key == "undefined" || key === null){
13216             this.length++;
13217             this.items.push(o);
13218             this.keys.push(null);
13219         }else{
13220             var old = this.map[key];
13221             if(old){
13222                 return this.replace(key, o);
13223             }
13224             this.length++;
13225             this.items.push(o);
13226             this.map[key] = o;
13227             this.keys.push(key);
13228         }
13229         this.fireEvent("add", this.length-1, o, key);
13230         return o;
13231     },
13232        
13233 /**
13234   * MixedCollection has a generic way to fetch keys if you implement getKey.
13235 <pre><code>
13236 // normal way
13237 var mc = new Roo.util.MixedCollection();
13238 mc.add(someEl.dom.id, someEl);
13239 mc.add(otherEl.dom.id, otherEl);
13240 //and so on
13241
13242 // using getKey
13243 var mc = new Roo.util.MixedCollection();
13244 mc.getKey = function(el){
13245    return el.dom.id;
13246 };
13247 mc.add(someEl);
13248 mc.add(otherEl);
13249
13250 // or via the constructor
13251 var mc = new Roo.util.MixedCollection(false, function(el){
13252    return el.dom.id;
13253 });
13254 mc.add(someEl);
13255 mc.add(otherEl);
13256 </code></pre>
13257  * @param o {Object} The item for which to find the key.
13258  * @return {Object} The key for the passed item.
13259  */
13260     getKey : function(o){
13261          return o.id; 
13262     },
13263    
13264 /**
13265  * Replaces an item in the collection.
13266  * @param {String} key The key associated with the item to replace, or the item to replace.
13267  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13268  * @return {Object}  The new item.
13269  */
13270     replace : function(key, o){
13271         if(arguments.length == 1){
13272             o = arguments[0];
13273             key = this.getKey(o);
13274         }
13275         var old = this.item(key);
13276         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13277              return this.add(key, o);
13278         }
13279         var index = this.indexOfKey(key);
13280         this.items[index] = o;
13281         this.map[key] = o;
13282         this.fireEvent("replace", key, old, o);
13283         return o;
13284     },
13285    
13286 /**
13287  * Adds all elements of an Array or an Object to the collection.
13288  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13289  * an Array of values, each of which are added to the collection.
13290  */
13291     addAll : function(objs){
13292         if(arguments.length > 1 || objs instanceof Array){
13293             var args = arguments.length > 1 ? arguments : objs;
13294             for(var i = 0, len = args.length; i < len; i++){
13295                 this.add(args[i]);
13296             }
13297         }else{
13298             for(var key in objs){
13299                 if(this.allowFunctions || typeof objs[key] != "function"){
13300                     this.add(key, objs[key]);
13301                 }
13302             }
13303         }
13304     },
13305    
13306 /**
13307  * Executes the specified function once for every item in the collection, passing each
13308  * item as the first and only parameter. returning false from the function will stop the iteration.
13309  * @param {Function} fn The function to execute for each item.
13310  * @param {Object} scope (optional) The scope in which to execute the function.
13311  */
13312     each : function(fn, scope){
13313         var items = [].concat(this.items); // each safe for removal
13314         for(var i = 0, len = items.length; i < len; i++){
13315             if(fn.call(scope || items[i], items[i], i, len) === false){
13316                 break;
13317             }
13318         }
13319     },
13320    
13321 /**
13322  * Executes the specified function once for every key in the collection, passing each
13323  * key, and its associated item as the first two parameters.
13324  * @param {Function} fn The function to execute for each item.
13325  * @param {Object} scope (optional) The scope in which to execute the function.
13326  */
13327     eachKey : function(fn, scope){
13328         for(var i = 0, len = this.keys.length; i < len; i++){
13329             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13330         }
13331     },
13332    
13333 /**
13334  * Returns the first item in the collection which elicits a true return value from the
13335  * passed selection function.
13336  * @param {Function} fn The selection function to execute for each item.
13337  * @param {Object} scope (optional) The scope in which to execute the function.
13338  * @return {Object} The first item in the collection which returned true from the selection function.
13339  */
13340     find : function(fn, scope){
13341         for(var i = 0, len = this.items.length; i < len; i++){
13342             if(fn.call(scope || window, this.items[i], this.keys[i])){
13343                 return this.items[i];
13344             }
13345         }
13346         return null;
13347     },
13348    
13349 /**
13350  * Inserts an item at the specified index in the collection.
13351  * @param {Number} index The index to insert the item at.
13352  * @param {String} key The key to associate with the new item, or the item itself.
13353  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13354  * @return {Object} The item inserted.
13355  */
13356     insert : function(index, key, o){
13357         if(arguments.length == 2){
13358             o = arguments[1];
13359             key = this.getKey(o);
13360         }
13361         if(index >= this.length){
13362             return this.add(key, o);
13363         }
13364         this.length++;
13365         this.items.splice(index, 0, o);
13366         if(typeof key != "undefined" && key != null){
13367             this.map[key] = o;
13368         }
13369         this.keys.splice(index, 0, key);
13370         this.fireEvent("add", index, o, key);
13371         return o;
13372     },
13373    
13374 /**
13375  * Removed an item from the collection.
13376  * @param {Object} o The item to remove.
13377  * @return {Object} The item removed.
13378  */
13379     remove : function(o){
13380         return this.removeAt(this.indexOf(o));
13381     },
13382    
13383 /**
13384  * Remove an item from a specified index in the collection.
13385  * @param {Number} index The index within the collection of the item to remove.
13386  */
13387     removeAt : function(index){
13388         if(index < this.length && index >= 0){
13389             this.length--;
13390             var o = this.items[index];
13391             this.items.splice(index, 1);
13392             var key = this.keys[index];
13393             if(typeof key != "undefined"){
13394                 delete this.map[key];
13395             }
13396             this.keys.splice(index, 1);
13397             this.fireEvent("remove", o, key);
13398         }
13399     },
13400    
13401 /**
13402  * Removed an item associated with the passed key fom the collection.
13403  * @param {String} key The key of the item to remove.
13404  */
13405     removeKey : function(key){
13406         return this.removeAt(this.indexOfKey(key));
13407     },
13408    
13409 /**
13410  * Returns the number of items in the collection.
13411  * @return {Number} the number of items in the collection.
13412  */
13413     getCount : function(){
13414         return this.length; 
13415     },
13416    
13417 /**
13418  * Returns index within the collection of the passed Object.
13419  * @param {Object} o The item to find the index of.
13420  * @return {Number} index of the item.
13421  */
13422     indexOf : function(o){
13423         if(!this.items.indexOf){
13424             for(var i = 0, len = this.items.length; i < len; i++){
13425                 if(this.items[i] == o) {
13426                     return i;
13427                 }
13428             }
13429             return -1;
13430         }else{
13431             return this.items.indexOf(o);
13432         }
13433     },
13434    
13435 /**
13436  * Returns index within the collection of the passed key.
13437  * @param {String} key The key to find the index of.
13438  * @return {Number} index of the key.
13439  */
13440     indexOfKey : function(key){
13441         if(!this.keys.indexOf){
13442             for(var i = 0, len = this.keys.length; i < len; i++){
13443                 if(this.keys[i] == key) {
13444                     return i;
13445                 }
13446             }
13447             return -1;
13448         }else{
13449             return this.keys.indexOf(key);
13450         }
13451     },
13452    
13453 /**
13454  * Returns the item associated with the passed key OR index. Key has priority over index.
13455  * @param {String/Number} key The key or index of the item.
13456  * @return {Object} The item associated with the passed key.
13457  */
13458     item : function(key){
13459         if (key === 'length') {
13460             return null;
13461         }
13462         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13463         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13464     },
13465     
13466 /**
13467  * Returns the item at the specified index.
13468  * @param {Number} index The index of the item.
13469  * @return {Object}
13470  */
13471     itemAt : function(index){
13472         return this.items[index];
13473     },
13474     
13475 /**
13476  * Returns the item associated with the passed key.
13477  * @param {String/Number} key The key of the item.
13478  * @return {Object} The item associated with the passed key.
13479  */
13480     key : function(key){
13481         return this.map[key];
13482     },
13483    
13484 /**
13485  * Returns true if the collection contains the passed Object as an item.
13486  * @param {Object} o  The Object to look for in the collection.
13487  * @return {Boolean} True if the collection contains the Object as an item.
13488  */
13489     contains : function(o){
13490         return this.indexOf(o) != -1;
13491     },
13492    
13493 /**
13494  * Returns true if the collection contains the passed Object as a key.
13495  * @param {String} key The key to look for in the collection.
13496  * @return {Boolean} True if the collection contains the Object as a key.
13497  */
13498     containsKey : function(key){
13499         return typeof this.map[key] != "undefined";
13500     },
13501    
13502 /**
13503  * Removes all items from the collection.
13504  */
13505     clear : function(){
13506         this.length = 0;
13507         this.items = [];
13508         this.keys = [];
13509         this.map = {};
13510         this.fireEvent("clear");
13511     },
13512    
13513 /**
13514  * Returns the first item in the collection.
13515  * @return {Object} the first item in the collection..
13516  */
13517     first : function(){
13518         return this.items[0]; 
13519     },
13520    
13521 /**
13522  * Returns the last item in the collection.
13523  * @return {Object} the last item in the collection..
13524  */
13525     last : function(){
13526         return this.items[this.length-1];   
13527     },
13528     
13529     _sort : function(property, dir, fn){
13530         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13531         fn = fn || function(a, b){
13532             return a-b;
13533         };
13534         var c = [], k = this.keys, items = this.items;
13535         for(var i = 0, len = items.length; i < len; i++){
13536             c[c.length] = {key: k[i], value: items[i], index: i};
13537         }
13538         c.sort(function(a, b){
13539             var v = fn(a[property], b[property]) * dsc;
13540             if(v == 0){
13541                 v = (a.index < b.index ? -1 : 1);
13542             }
13543             return v;
13544         });
13545         for(var i = 0, len = c.length; i < len; i++){
13546             items[i] = c[i].value;
13547             k[i] = c[i].key;
13548         }
13549         this.fireEvent("sort", this);
13550     },
13551     
13552     /**
13553      * Sorts this collection with the passed comparison function
13554      * @param {String} direction (optional) "ASC" or "DESC"
13555      * @param {Function} fn (optional) comparison function
13556      */
13557     sort : function(dir, fn){
13558         this._sort("value", dir, fn);
13559     },
13560     
13561     /**
13562      * Sorts this collection by keys
13563      * @param {String} direction (optional) "ASC" or "DESC"
13564      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13565      */
13566     keySort : function(dir, fn){
13567         this._sort("key", dir, fn || function(a, b){
13568             return String(a).toUpperCase()-String(b).toUpperCase();
13569         });
13570     },
13571     
13572     /**
13573      * Returns a range of items in this collection
13574      * @param {Number} startIndex (optional) defaults to 0
13575      * @param {Number} endIndex (optional) default to the last item
13576      * @return {Array} An array of items
13577      */
13578     getRange : function(start, end){
13579         var items = this.items;
13580         if(items.length < 1){
13581             return [];
13582         }
13583         start = start || 0;
13584         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13585         var r = [];
13586         if(start <= end){
13587             for(var i = start; i <= end; i++) {
13588                     r[r.length] = items[i];
13589             }
13590         }else{
13591             for(var i = start; i >= end; i--) {
13592                     r[r.length] = items[i];
13593             }
13594         }
13595         return r;
13596     },
13597         
13598     /**
13599      * Filter the <i>objects</i> in this collection by a specific property. 
13600      * Returns a new collection that has been filtered.
13601      * @param {String} property A property on your objects
13602      * @param {String/RegExp} value Either string that the property values 
13603      * should start with or a RegExp to test against the property
13604      * @return {MixedCollection} The new filtered collection
13605      */
13606     filter : function(property, value){
13607         if(!value.exec){ // not a regex
13608             value = String(value);
13609             if(value.length == 0){
13610                 return this.clone();
13611             }
13612             value = new RegExp("^" + Roo.escapeRe(value), "i");
13613         }
13614         return this.filterBy(function(o){
13615             return o && value.test(o[property]);
13616         });
13617         },
13618     
13619     /**
13620      * Filter by a function. * Returns a new collection that has been filtered.
13621      * The passed function will be called with each 
13622      * object in the collection. If the function returns true, the value is included 
13623      * otherwise it is filtered.
13624      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13625      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13626      * @return {MixedCollection} The new filtered collection
13627      */
13628     filterBy : function(fn, scope){
13629         var r = new Roo.util.MixedCollection();
13630         r.getKey = this.getKey;
13631         var k = this.keys, it = this.items;
13632         for(var i = 0, len = it.length; i < len; i++){
13633             if(fn.call(scope||this, it[i], k[i])){
13634                                 r.add(k[i], it[i]);
13635                         }
13636         }
13637         return r;
13638     },
13639     
13640     /**
13641      * Creates a duplicate of this collection
13642      * @return {MixedCollection}
13643      */
13644     clone : function(){
13645         var r = new Roo.util.MixedCollection();
13646         var k = this.keys, it = this.items;
13647         for(var i = 0, len = it.length; i < len; i++){
13648             r.add(k[i], it[i]);
13649         }
13650         r.getKey = this.getKey;
13651         return r;
13652     }
13653 });
13654 /**
13655  * Returns the item associated with the passed key or index.
13656  * @method
13657  * @param {String/Number} key The key or index of the item.
13658  * @return {Object} The item associated with the passed key.
13659  */
13660 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13661  * Based on:
13662  * Ext JS Library 1.1.1
13663  * Copyright(c) 2006-2007, Ext JS, LLC.
13664  *
13665  * Originally Released Under LGPL - original licence link has changed is not relivant.
13666  *
13667  * Fork - LGPL
13668  * <script type="text/javascript">
13669  */
13670 /**
13671  * @class Roo.util.JSON
13672  * Modified version of Douglas Crockford"s json.js that doesn"t
13673  * mess with the Object prototype 
13674  * http://www.json.org/js.html
13675  * @singleton
13676  */
13677 Roo.util.JSON = new (function(){
13678     var useHasOwn = {}.hasOwnProperty ? true : false;
13679     
13680     // crashes Safari in some instances
13681     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13682     
13683     var pad = function(n) {
13684         return n < 10 ? "0" + n : n;
13685     };
13686     
13687     var m = {
13688         "\b": '\\b',
13689         "\t": '\\t',
13690         "\n": '\\n',
13691         "\f": '\\f',
13692         "\r": '\\r',
13693         '"' : '\\"',
13694         "\\": '\\\\'
13695     };
13696
13697     var encodeString = function(s){
13698         if (/["\\\x00-\x1f]/.test(s)) {
13699             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13700                 var c = m[b];
13701                 if(c){
13702                     return c;
13703                 }
13704                 c = b.charCodeAt();
13705                 return "\\u00" +
13706                     Math.floor(c / 16).toString(16) +
13707                     (c % 16).toString(16);
13708             }) + '"';
13709         }
13710         return '"' + s + '"';
13711     };
13712     
13713     var encodeArray = function(o){
13714         var a = ["["], b, i, l = o.length, v;
13715             for (i = 0; i < l; i += 1) {
13716                 v = o[i];
13717                 switch (typeof v) {
13718                     case "undefined":
13719                     case "function":
13720                     case "unknown":
13721                         break;
13722                     default:
13723                         if (b) {
13724                             a.push(',');
13725                         }
13726                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13727                         b = true;
13728                 }
13729             }
13730             a.push("]");
13731             return a.join("");
13732     };
13733     
13734     var encodeDate = function(o){
13735         return '"' + o.getFullYear() + "-" +
13736                 pad(o.getMonth() + 1) + "-" +
13737                 pad(o.getDate()) + "T" +
13738                 pad(o.getHours()) + ":" +
13739                 pad(o.getMinutes()) + ":" +
13740                 pad(o.getSeconds()) + '"';
13741     };
13742     
13743     /**
13744      * Encodes an Object, Array or other value
13745      * @param {Mixed} o The variable to encode
13746      * @return {String} The JSON string
13747      */
13748     this.encode = function(o)
13749     {
13750         // should this be extended to fully wrap stringify..
13751         
13752         if(typeof o == "undefined" || o === null){
13753             return "null";
13754         }else if(o instanceof Array){
13755             return encodeArray(o);
13756         }else if(o instanceof Date){
13757             return encodeDate(o);
13758         }else if(typeof o == "string"){
13759             return encodeString(o);
13760         }else if(typeof o == "number"){
13761             return isFinite(o) ? String(o) : "null";
13762         }else if(typeof o == "boolean"){
13763             return String(o);
13764         }else {
13765             var a = ["{"], b, i, v;
13766             for (i in o) {
13767                 if(!useHasOwn || o.hasOwnProperty(i)) {
13768                     v = o[i];
13769                     switch (typeof v) {
13770                     case "undefined":
13771                     case "function":
13772                     case "unknown":
13773                         break;
13774                     default:
13775                         if(b){
13776                             a.push(',');
13777                         }
13778                         a.push(this.encode(i), ":",
13779                                 v === null ? "null" : this.encode(v));
13780                         b = true;
13781                     }
13782                 }
13783             }
13784             a.push("}");
13785             return a.join("");
13786         }
13787     };
13788     
13789     /**
13790      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13791      * @param {String} json The JSON string
13792      * @return {Object} The resulting object
13793      */
13794     this.decode = function(json){
13795         
13796         return  /** eval:var:json */ eval("(" + json + ')');
13797     };
13798 })();
13799 /** 
13800  * Shorthand for {@link Roo.util.JSON#encode}
13801  * @member Roo encode 
13802  * @method */
13803 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13804 /** 
13805  * Shorthand for {@link Roo.util.JSON#decode}
13806  * @member Roo decode 
13807  * @method */
13808 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13809 /*
13810  * Based on:
13811  * Ext JS Library 1.1.1
13812  * Copyright(c) 2006-2007, Ext JS, LLC.
13813  *
13814  * Originally Released Under LGPL - original licence link has changed is not relivant.
13815  *
13816  * Fork - LGPL
13817  * <script type="text/javascript">
13818  */
13819  
13820 /**
13821  * @class Roo.util.Format
13822  * Reusable data formatting functions
13823  * @singleton
13824  */
13825 Roo.util.Format = function(){
13826     var trimRe = /^\s+|\s+$/g;
13827     return {
13828         /**
13829          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13830          * @param {String} value The string to truncate
13831          * @param {Number} length The maximum length to allow before truncating
13832          * @return {String} The converted text
13833          */
13834         ellipsis : function(value, len){
13835             if(value && value.length > len){
13836                 return value.substr(0, len-3)+"...";
13837             }
13838             return value;
13839         },
13840
13841         /**
13842          * Checks a reference and converts it to empty string if it is undefined
13843          * @param {Mixed} value Reference to check
13844          * @return {Mixed} Empty string if converted, otherwise the original value
13845          */
13846         undef : function(value){
13847             return typeof value != "undefined" ? value : "";
13848         },
13849
13850         /**
13851          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13852          * @param {String} value The string to encode
13853          * @return {String} The encoded text
13854          */
13855         htmlEncode : function(value){
13856             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13857         },
13858
13859         /**
13860          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13861          * @param {String} value The string to decode
13862          * @return {String} The decoded text
13863          */
13864         htmlDecode : function(value){
13865             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13866         },
13867
13868         /**
13869          * Trims any whitespace from either side of a string
13870          * @param {String} value The text to trim
13871          * @return {String} The trimmed text
13872          */
13873         trim : function(value){
13874             return String(value).replace(trimRe, "");
13875         },
13876
13877         /**
13878          * Returns a substring from within an original string
13879          * @param {String} value The original text
13880          * @param {Number} start The start index of the substring
13881          * @param {Number} length The length of the substring
13882          * @return {String} The substring
13883          */
13884         substr : function(value, start, length){
13885             return String(value).substr(start, length);
13886         },
13887
13888         /**
13889          * Converts a string to all lower case letters
13890          * @param {String} value The text to convert
13891          * @return {String} The converted text
13892          */
13893         lowercase : function(value){
13894             return String(value).toLowerCase();
13895         },
13896
13897         /**
13898          * Converts a string to all upper case letters
13899          * @param {String} value The text to convert
13900          * @return {String} The converted text
13901          */
13902         uppercase : function(value){
13903             return String(value).toUpperCase();
13904         },
13905
13906         /**
13907          * Converts the first character only of a string to upper case
13908          * @param {String} value The text to convert
13909          * @return {String} The converted text
13910          */
13911         capitalize : function(value){
13912             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13913         },
13914
13915         // private
13916         call : function(value, fn){
13917             if(arguments.length > 2){
13918                 var args = Array.prototype.slice.call(arguments, 2);
13919                 args.unshift(value);
13920                  
13921                 return /** eval:var:value */  eval(fn).apply(window, args);
13922             }else{
13923                 /** eval:var:value */
13924                 return /** eval:var:value */ eval(fn).call(window, value);
13925             }
13926         },
13927
13928        
13929         /**
13930          * safer version of Math.toFixed..??/
13931          * @param {Number/String} value The numeric value to format
13932          * @param {Number/String} value Decimal places 
13933          * @return {String} The formatted currency string
13934          */
13935         toFixed : function(v, n)
13936         {
13937             // why not use to fixed - precision is buggered???
13938             if (!n) {
13939                 return Math.round(v-0);
13940             }
13941             var fact = Math.pow(10,n+1);
13942             v = (Math.round((v-0)*fact))/fact;
13943             var z = (''+fact).substring(2);
13944             if (v == Math.floor(v)) {
13945                 return Math.floor(v) + '.' + z;
13946             }
13947             
13948             // now just padd decimals..
13949             var ps = String(v).split('.');
13950             var fd = (ps[1] + z);
13951             var r = fd.substring(0,n); 
13952             var rm = fd.substring(n); 
13953             if (rm < 5) {
13954                 return ps[0] + '.' + r;
13955             }
13956             r*=1; // turn it into a number;
13957             r++;
13958             if (String(r).length != n) {
13959                 ps[0]*=1;
13960                 ps[0]++;
13961                 r = String(r).substring(1); // chop the end off.
13962             }
13963             
13964             return ps[0] + '.' + r;
13965              
13966         },
13967         
13968         /**
13969          * Format a number as US currency
13970          * @param {Number/String} value The numeric value to format
13971          * @return {String} The formatted currency string
13972          */
13973         usMoney : function(v){
13974             return '$' + Roo.util.Format.number(v);
13975         },
13976         
13977         /**
13978          * Format a number
13979          * eventually this should probably emulate php's number_format
13980          * @param {Number/String} value The numeric value to format
13981          * @param {Number} decimals number of decimal places
13982          * @param {String} delimiter for thousands (default comma)
13983          * @return {String} The formatted currency string
13984          */
13985         number : function(v, decimals, thousandsDelimiter)
13986         {
13987             // multiply and round.
13988             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13989             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13990             
13991             var mul = Math.pow(10, decimals);
13992             var zero = String(mul).substring(1);
13993             v = (Math.round((v-0)*mul))/mul;
13994             
13995             // if it's '0' number.. then
13996             
13997             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13998             v = String(v);
13999             var ps = v.split('.');
14000             var whole = ps[0];
14001             
14002             var r = /(\d+)(\d{3})/;
14003             // add comma's
14004             
14005             if(thousandsDelimiter.length != 0) {
14006                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
14007             } 
14008             
14009             var sub = ps[1] ?
14010                     // has decimals..
14011                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
14012                     // does not have decimals
14013                     (decimals ? ('.' + zero) : '');
14014             
14015             
14016             return whole + sub ;
14017         },
14018         
14019         /**
14020          * Parse a value into a formatted date using the specified format pattern.
14021          * @param {Mixed} value The value to format
14022          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
14023          * @return {String} The formatted date string
14024          */
14025         date : function(v, format){
14026             if(!v){
14027                 return "";
14028             }
14029             if(!(v instanceof Date)){
14030                 v = new Date(Date.parse(v));
14031             }
14032             return v.dateFormat(format || Roo.util.Format.defaults.date);
14033         },
14034
14035         /**
14036          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
14037          * @param {String} format Any valid date format string
14038          * @return {Function} The date formatting function
14039          */
14040         dateRenderer : function(format){
14041             return function(v){
14042                 return Roo.util.Format.date(v, format);  
14043             };
14044         },
14045
14046         // private
14047         stripTagsRE : /<\/?[^>]+>/gi,
14048         
14049         /**
14050          * Strips all HTML tags
14051          * @param {Mixed} value The text from which to strip tags
14052          * @return {String} The stripped text
14053          */
14054         stripTags : function(v){
14055             return !v ? v : String(v).replace(this.stripTagsRE, "");
14056         },
14057         
14058         /**
14059          * Size in Mb,Gb etc.
14060          * @param {Number} value The number to be formated
14061          * @param {number} decimals how many decimal places
14062          * @return {String} the formated string
14063          */
14064         size : function(value, decimals)
14065         {
14066             var sizes = ['b', 'k', 'M', 'G', 'T'];
14067             if (value == 0) {
14068                 return 0;
14069             }
14070             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14071             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14072         }
14073         
14074         
14075         
14076     };
14077 }();
14078 Roo.util.Format.defaults = {
14079     date : 'd/M/Y'
14080 };/*
14081  * Based on:
14082  * Ext JS Library 1.1.1
14083  * Copyright(c) 2006-2007, Ext JS, LLC.
14084  *
14085  * Originally Released Under LGPL - original licence link has changed is not relivant.
14086  *
14087  * Fork - LGPL
14088  * <script type="text/javascript">
14089  */
14090
14091
14092  
14093
14094 /**
14095  * @class Roo.MasterTemplate
14096  * @extends Roo.Template
14097  * Provides a template that can have child templates. The syntax is:
14098 <pre><code>
14099 var t = new Roo.MasterTemplate(
14100         '&lt;select name="{name}"&gt;',
14101                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14102         '&lt;/select&gt;'
14103 );
14104 t.add('options', {value: 'foo', text: 'bar'});
14105 // or you can add multiple child elements in one shot
14106 t.addAll('options', [
14107     {value: 'foo', text: 'bar'},
14108     {value: 'foo2', text: 'bar2'},
14109     {value: 'foo3', text: 'bar3'}
14110 ]);
14111 // then append, applying the master template values
14112 t.append('my-form', {name: 'my-select'});
14113 </code></pre>
14114 * A name attribute for the child template is not required if you have only one child
14115 * template or you want to refer to them by index.
14116  */
14117 Roo.MasterTemplate = function(){
14118     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14119     this.originalHtml = this.html;
14120     var st = {};
14121     var m, re = this.subTemplateRe;
14122     re.lastIndex = 0;
14123     var subIndex = 0;
14124     while(m = re.exec(this.html)){
14125         var name = m[1], content = m[2];
14126         st[subIndex] = {
14127             name: name,
14128             index: subIndex,
14129             buffer: [],
14130             tpl : new Roo.Template(content)
14131         };
14132         if(name){
14133             st[name] = st[subIndex];
14134         }
14135         st[subIndex].tpl.compile();
14136         st[subIndex].tpl.call = this.call.createDelegate(this);
14137         subIndex++;
14138     }
14139     this.subCount = subIndex;
14140     this.subs = st;
14141 };
14142 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14143     /**
14144     * The regular expression used to match sub templates
14145     * @type RegExp
14146     * @property
14147     */
14148     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14149
14150     /**
14151      * Applies the passed values to a child template.
14152      * @param {String/Number} name (optional) The name or index of the child template
14153      * @param {Array/Object} values The values to be applied to the template
14154      * @return {MasterTemplate} this
14155      */
14156      add : function(name, values){
14157         if(arguments.length == 1){
14158             values = arguments[0];
14159             name = 0;
14160         }
14161         var s = this.subs[name];
14162         s.buffer[s.buffer.length] = s.tpl.apply(values);
14163         return this;
14164     },
14165
14166     /**
14167      * Applies all the passed values to a child template.
14168      * @param {String/Number} name (optional) The name or index of the child template
14169      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14170      * @param {Boolean} reset (optional) True to reset the template first
14171      * @return {MasterTemplate} this
14172      */
14173     fill : function(name, values, reset){
14174         var a = arguments;
14175         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14176             values = a[0];
14177             name = 0;
14178             reset = a[1];
14179         }
14180         if(reset){
14181             this.reset();
14182         }
14183         for(var i = 0, len = values.length; i < len; i++){
14184             this.add(name, values[i]);
14185         }
14186         return this;
14187     },
14188
14189     /**
14190      * Resets the template for reuse
14191      * @return {MasterTemplate} this
14192      */
14193      reset : function(){
14194         var s = this.subs;
14195         for(var i = 0; i < this.subCount; i++){
14196             s[i].buffer = [];
14197         }
14198         return this;
14199     },
14200
14201     applyTemplate : function(values){
14202         var s = this.subs;
14203         var replaceIndex = -1;
14204         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14205             return s[++replaceIndex].buffer.join("");
14206         });
14207         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14208     },
14209
14210     apply : function(){
14211         return this.applyTemplate.apply(this, arguments);
14212     },
14213
14214     compile : function(){return this;}
14215 });
14216
14217 /**
14218  * Alias for fill().
14219  * @method
14220  */
14221 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14222  /**
14223  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14224  * var tpl = Roo.MasterTemplate.from('element-id');
14225  * @param {String/HTMLElement} el
14226  * @param {Object} config
14227  * @static
14228  */
14229 Roo.MasterTemplate.from = function(el, config){
14230     el = Roo.getDom(el);
14231     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14232 };/*
14233  * Based on:
14234  * Ext JS Library 1.1.1
14235  * Copyright(c) 2006-2007, Ext JS, LLC.
14236  *
14237  * Originally Released Under LGPL - original licence link has changed is not relivant.
14238  *
14239  * Fork - LGPL
14240  * <script type="text/javascript">
14241  */
14242
14243  
14244 /**
14245  * @class Roo.util.CSS
14246  * Utility class for manipulating CSS rules
14247  * @singleton
14248  */
14249 Roo.util.CSS = function(){
14250         var rules = null;
14251         var doc = document;
14252
14253     var camelRe = /(-[a-z])/gi;
14254     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14255
14256    return {
14257    /**
14258     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14259     * tag and appended to the HEAD of the document.
14260     * @param {String|Object} cssText The text containing the css rules
14261     * @param {String} id An id to add to the stylesheet for later removal
14262     * @return {StyleSheet}
14263     */
14264     createStyleSheet : function(cssText, id){
14265         var ss;
14266         var head = doc.getElementsByTagName("head")[0];
14267         var nrules = doc.createElement("style");
14268         nrules.setAttribute("type", "text/css");
14269         if(id){
14270             nrules.setAttribute("id", id);
14271         }
14272         if (typeof(cssText) != 'string') {
14273             // support object maps..
14274             // not sure if this a good idea.. 
14275             // perhaps it should be merged with the general css handling
14276             // and handle js style props.
14277             var cssTextNew = [];
14278             for(var n in cssText) {
14279                 var citems = [];
14280                 for(var k in cssText[n]) {
14281                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14282                 }
14283                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14284                 
14285             }
14286             cssText = cssTextNew.join("\n");
14287             
14288         }
14289        
14290        
14291        if(Roo.isIE){
14292            head.appendChild(nrules);
14293            ss = nrules.styleSheet;
14294            ss.cssText = cssText;
14295        }else{
14296            try{
14297                 nrules.appendChild(doc.createTextNode(cssText));
14298            }catch(e){
14299                nrules.cssText = cssText; 
14300            }
14301            head.appendChild(nrules);
14302            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14303        }
14304        this.cacheStyleSheet(ss);
14305        return ss;
14306    },
14307
14308    /**
14309     * Removes a style or link tag by id
14310     * @param {String} id The id of the tag
14311     */
14312    removeStyleSheet : function(id){
14313        var existing = doc.getElementById(id);
14314        if(existing){
14315            existing.parentNode.removeChild(existing);
14316        }
14317    },
14318
14319    /**
14320     * Dynamically swaps an existing stylesheet reference for a new one
14321     * @param {String} id The id of an existing link tag to remove
14322     * @param {String} url The href of the new stylesheet to include
14323     */
14324    swapStyleSheet : function(id, url){
14325        this.removeStyleSheet(id);
14326        var ss = doc.createElement("link");
14327        ss.setAttribute("rel", "stylesheet");
14328        ss.setAttribute("type", "text/css");
14329        ss.setAttribute("id", id);
14330        ss.setAttribute("href", url);
14331        doc.getElementsByTagName("head")[0].appendChild(ss);
14332    },
14333    
14334    /**
14335     * Refresh the rule cache if you have dynamically added stylesheets
14336     * @return {Object} An object (hash) of rules indexed by selector
14337     */
14338    refreshCache : function(){
14339        return this.getRules(true);
14340    },
14341
14342    // private
14343    cacheStyleSheet : function(stylesheet){
14344        if(!rules){
14345            rules = {};
14346        }
14347        try{// try catch for cross domain access issue
14348            var ssRules = stylesheet.cssRules || stylesheet.rules;
14349            for(var j = ssRules.length-1; j >= 0; --j){
14350                rules[ssRules[j].selectorText] = ssRules[j];
14351            }
14352        }catch(e){}
14353    },
14354    
14355    /**
14356     * Gets all css rules for the document
14357     * @param {Boolean} refreshCache true to refresh the internal cache
14358     * @return {Object} An object (hash) of rules indexed by selector
14359     */
14360    getRules : function(refreshCache){
14361                 if(rules == null || refreshCache){
14362                         rules = {};
14363                         var ds = doc.styleSheets;
14364                         for(var i =0, len = ds.length; i < len; i++){
14365                             try{
14366                         this.cacheStyleSheet(ds[i]);
14367                     }catch(e){} 
14368                 }
14369                 }
14370                 return rules;
14371         },
14372         
14373         /**
14374     * Gets an an individual CSS rule by selector(s)
14375     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14376     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14377     * @return {CSSRule} The CSS rule or null if one is not found
14378     */
14379    getRule : function(selector, refreshCache){
14380                 var rs = this.getRules(refreshCache);
14381                 if(!(selector instanceof Array)){
14382                     return rs[selector];
14383                 }
14384                 for(var i = 0; i < selector.length; i++){
14385                         if(rs[selector[i]]){
14386                                 return rs[selector[i]];
14387                         }
14388                 }
14389                 return null;
14390         },
14391         
14392         
14393         /**
14394     * Updates a rule property
14395     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14396     * @param {String} property The css property
14397     * @param {String} value The new value for the property
14398     * @return {Boolean} true If a rule was found and updated
14399     */
14400    updateRule : function(selector, property, value){
14401                 if(!(selector instanceof Array)){
14402                         var rule = this.getRule(selector);
14403                         if(rule){
14404                                 rule.style[property.replace(camelRe, camelFn)] = value;
14405                                 return true;
14406                         }
14407                 }else{
14408                         for(var i = 0; i < selector.length; i++){
14409                                 if(this.updateRule(selector[i], property, value)){
14410                                         return true;
14411                                 }
14412                         }
14413                 }
14414                 return false;
14415         }
14416    };   
14417 }();/*
14418  * Based on:
14419  * Ext JS Library 1.1.1
14420  * Copyright(c) 2006-2007, Ext JS, LLC.
14421  *
14422  * Originally Released Under LGPL - original licence link has changed is not relivant.
14423  *
14424  * Fork - LGPL
14425  * <script type="text/javascript">
14426  */
14427
14428  
14429
14430 /**
14431  * @class Roo.util.ClickRepeater
14432  * @extends Roo.util.Observable
14433  * 
14434  * A wrapper class which can be applied to any element. Fires a "click" event while the
14435  * mouse is pressed. The interval between firings may be specified in the config but
14436  * defaults to 10 milliseconds.
14437  * 
14438  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14439  * 
14440  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14441  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14442  * Similar to an autorepeat key delay.
14443  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14444  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14445  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14446  *           "interval" and "delay" are ignored. "immediate" is honored.
14447  * @cfg {Boolean} preventDefault True to prevent the default click event
14448  * @cfg {Boolean} stopDefault True to stop the default click event
14449  * 
14450  * @history
14451  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14452  *     2007-02-02 jvs Renamed to ClickRepeater
14453  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14454  *
14455  *  @constructor
14456  * @param {String/HTMLElement/Element} el The element to listen on
14457  * @param {Object} config
14458  **/
14459 Roo.util.ClickRepeater = function(el, config)
14460 {
14461     this.el = Roo.get(el);
14462     this.el.unselectable();
14463
14464     Roo.apply(this, config);
14465
14466     this.addEvents({
14467     /**
14468      * @event mousedown
14469      * Fires when the mouse button is depressed.
14470      * @param {Roo.util.ClickRepeater} this
14471      */
14472         "mousedown" : true,
14473     /**
14474      * @event click
14475      * Fires on a specified interval during the time the element is pressed.
14476      * @param {Roo.util.ClickRepeater} this
14477      */
14478         "click" : true,
14479     /**
14480      * @event mouseup
14481      * Fires when the mouse key is released.
14482      * @param {Roo.util.ClickRepeater} this
14483      */
14484         "mouseup" : true
14485     });
14486
14487     this.el.on("mousedown", this.handleMouseDown, this);
14488     if(this.preventDefault || this.stopDefault){
14489         this.el.on("click", function(e){
14490             if(this.preventDefault){
14491                 e.preventDefault();
14492             }
14493             if(this.stopDefault){
14494                 e.stopEvent();
14495             }
14496         }, this);
14497     }
14498
14499     // allow inline handler
14500     if(this.handler){
14501         this.on("click", this.handler,  this.scope || this);
14502     }
14503
14504     Roo.util.ClickRepeater.superclass.constructor.call(this);
14505 };
14506
14507 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14508     interval : 20,
14509     delay: 250,
14510     preventDefault : true,
14511     stopDefault : false,
14512     timer : 0,
14513
14514     // private
14515     handleMouseDown : function(){
14516         clearTimeout(this.timer);
14517         this.el.blur();
14518         if(this.pressClass){
14519             this.el.addClass(this.pressClass);
14520         }
14521         this.mousedownTime = new Date();
14522
14523         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14524         this.el.on("mouseout", this.handleMouseOut, this);
14525
14526         this.fireEvent("mousedown", this);
14527         this.fireEvent("click", this);
14528         
14529         this.timer = this.click.defer(this.delay || this.interval, this);
14530     },
14531
14532     // private
14533     click : function(){
14534         this.fireEvent("click", this);
14535         this.timer = this.click.defer(this.getInterval(), this);
14536     },
14537
14538     // private
14539     getInterval: function(){
14540         if(!this.accelerate){
14541             return this.interval;
14542         }
14543         var pressTime = this.mousedownTime.getElapsed();
14544         if(pressTime < 500){
14545             return 400;
14546         }else if(pressTime < 1700){
14547             return 320;
14548         }else if(pressTime < 2600){
14549             return 250;
14550         }else if(pressTime < 3500){
14551             return 180;
14552         }else if(pressTime < 4400){
14553             return 140;
14554         }else if(pressTime < 5300){
14555             return 80;
14556         }else if(pressTime < 6200){
14557             return 50;
14558         }else{
14559             return 10;
14560         }
14561     },
14562
14563     // private
14564     handleMouseOut : function(){
14565         clearTimeout(this.timer);
14566         if(this.pressClass){
14567             this.el.removeClass(this.pressClass);
14568         }
14569         this.el.on("mouseover", this.handleMouseReturn, this);
14570     },
14571
14572     // private
14573     handleMouseReturn : function(){
14574         this.el.un("mouseover", this.handleMouseReturn);
14575         if(this.pressClass){
14576             this.el.addClass(this.pressClass);
14577         }
14578         this.click();
14579     },
14580
14581     // private
14582     handleMouseUp : function(){
14583         clearTimeout(this.timer);
14584         this.el.un("mouseover", this.handleMouseReturn);
14585         this.el.un("mouseout", this.handleMouseOut);
14586         Roo.get(document).un("mouseup", this.handleMouseUp);
14587         this.el.removeClass(this.pressClass);
14588         this.fireEvent("mouseup", this);
14589     }
14590 });/**
14591  * @class Roo.util.Clipboard
14592  * @static
14593  * 
14594  * Clipboard UTILS
14595  * 
14596  **/
14597 Roo.util.Clipboard = {
14598     /**
14599      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14600      * @param {String} text to copy to clipboard
14601      */
14602     write : function(text) {
14603         // navigator clipboard api needs a secure context (https)
14604         if (navigator.clipboard && window.isSecureContext) {
14605             // navigator clipboard api method'
14606             navigator.clipboard.writeText(text);
14607             return ;
14608         } 
14609         // text area method
14610         var ta = document.createElement("textarea");
14611         ta.value = text;
14612         // make the textarea out of viewport
14613         ta.style.position = "fixed";
14614         ta.style.left = "-999999px";
14615         ta.style.top = "-999999px";
14616         document.body.appendChild(ta);
14617         ta.focus();
14618         ta.select();
14619         document.execCommand('copy');
14620         (function() {
14621             ta.remove();
14622         }).defer(100);
14623         
14624     }
14625         
14626 }
14627     /*
14628  * Based on:
14629  * Ext JS Library 1.1.1
14630  * Copyright(c) 2006-2007, Ext JS, LLC.
14631  *
14632  * Originally Released Under LGPL - original licence link has changed is not relivant.
14633  *
14634  * Fork - LGPL
14635  * <script type="text/javascript">
14636  */
14637
14638  
14639 /**
14640  * @class Roo.KeyNav
14641  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14642  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14643  * way to implement custom navigation schemes for any UI component.</p>
14644  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14645  * pageUp, pageDown, del, home, end.  Usage:</p>
14646  <pre><code>
14647 var nav = new Roo.KeyNav("my-element", {
14648     "left" : function(e){
14649         this.moveLeft(e.ctrlKey);
14650     },
14651     "right" : function(e){
14652         this.moveRight(e.ctrlKey);
14653     },
14654     "enter" : function(e){
14655         this.save();
14656     },
14657     scope : this
14658 });
14659 </code></pre>
14660  * @constructor
14661  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14662  * @param {Object} config The config
14663  */
14664 Roo.KeyNav = function(el, config){
14665     this.el = Roo.get(el);
14666     Roo.apply(this, config);
14667     if(!this.disabled){
14668         this.disabled = true;
14669         this.enable();
14670     }
14671 };
14672
14673 Roo.KeyNav.prototype = {
14674     /**
14675      * @cfg {Boolean} disabled
14676      * True to disable this KeyNav instance (defaults to false)
14677      */
14678     disabled : false,
14679     /**
14680      * @cfg {String} defaultEventAction
14681      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14682      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14683      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14684      */
14685     defaultEventAction: "stopEvent",
14686     /**
14687      * @cfg {Boolean} forceKeyDown
14688      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14689      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14690      * handle keydown instead of keypress.
14691      */
14692     forceKeyDown : false,
14693
14694     // private
14695     prepareEvent : function(e){
14696         var k = e.getKey();
14697         var h = this.keyToHandler[k];
14698         //if(h && this[h]){
14699         //    e.stopPropagation();
14700         //}
14701         if(Roo.isSafari && h && k >= 37 && k <= 40){
14702             e.stopEvent();
14703         }
14704     },
14705
14706     // private
14707     relay : function(e){
14708         var k = e.getKey();
14709         var h = this.keyToHandler[k];
14710         if(h && this[h]){
14711             if(this.doRelay(e, this[h], h) !== true){
14712                 e[this.defaultEventAction]();
14713             }
14714         }
14715     },
14716
14717     // private
14718     doRelay : function(e, h, hname){
14719         return h.call(this.scope || this, e);
14720     },
14721
14722     // possible handlers
14723     enter : false,
14724     left : false,
14725     right : false,
14726     up : false,
14727     down : false,
14728     tab : false,
14729     esc : false,
14730     pageUp : false,
14731     pageDown : false,
14732     del : false,
14733     home : false,
14734     end : false,
14735
14736     // quick lookup hash
14737     keyToHandler : {
14738         37 : "left",
14739         39 : "right",
14740         38 : "up",
14741         40 : "down",
14742         33 : "pageUp",
14743         34 : "pageDown",
14744         46 : "del",
14745         36 : "home",
14746         35 : "end",
14747         13 : "enter",
14748         27 : "esc",
14749         9  : "tab"
14750     },
14751
14752         /**
14753          * Enable this KeyNav
14754          */
14755         enable: function(){
14756                 if(this.disabled){
14757             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14758             // the EventObject will normalize Safari automatically
14759             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14760                 this.el.on("keydown", this.relay,  this);
14761             }else{
14762                 this.el.on("keydown", this.prepareEvent,  this);
14763                 this.el.on("keypress", this.relay,  this);
14764             }
14765                     this.disabled = false;
14766                 }
14767         },
14768
14769         /**
14770          * Disable this KeyNav
14771          */
14772         disable: function(){
14773                 if(!this.disabled){
14774                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14775                 this.el.un("keydown", this.relay);
14776             }else{
14777                 this.el.un("keydown", this.prepareEvent);
14778                 this.el.un("keypress", this.relay);
14779             }
14780                     this.disabled = true;
14781                 }
14782         }
14783 };/*
14784  * Based on:
14785  * Ext JS Library 1.1.1
14786  * Copyright(c) 2006-2007, Ext JS, LLC.
14787  *
14788  * Originally Released Under LGPL - original licence link has changed is not relivant.
14789  *
14790  * Fork - LGPL
14791  * <script type="text/javascript">
14792  */
14793
14794  
14795 /**
14796  * @class Roo.KeyMap
14797  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14798  * The constructor accepts the same config object as defined by {@link #addBinding}.
14799  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14800  * combination it will call the function with this signature (if the match is a multi-key
14801  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14802  * A KeyMap can also handle a string representation of keys.<br />
14803  * Usage:
14804  <pre><code>
14805 // map one key by key code
14806 var map = new Roo.KeyMap("my-element", {
14807     key: 13, // or Roo.EventObject.ENTER
14808     fn: myHandler,
14809     scope: myObject
14810 });
14811
14812 // map multiple keys to one action by string
14813 var map = new Roo.KeyMap("my-element", {
14814     key: "a\r\n\t",
14815     fn: myHandler,
14816     scope: myObject
14817 });
14818
14819 // map multiple keys to multiple actions by strings and array of codes
14820 var map = new Roo.KeyMap("my-element", [
14821     {
14822         key: [10,13],
14823         fn: function(){ alert("Return was pressed"); }
14824     }, {
14825         key: "abc",
14826         fn: function(){ alert('a, b or c was pressed'); }
14827     }, {
14828         key: "\t",
14829         ctrl:true,
14830         shift:true,
14831         fn: function(){ alert('Control + shift + tab was pressed.'); }
14832     }
14833 ]);
14834 </code></pre>
14835  * <b>Note: A KeyMap starts enabled</b>
14836  * @constructor
14837  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14838  * @param {Object} config The config (see {@link #addBinding})
14839  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14840  */
14841 Roo.KeyMap = function(el, config, eventName){
14842     this.el  = Roo.get(el);
14843     this.eventName = eventName || "keydown";
14844     this.bindings = [];
14845     if(config){
14846         this.addBinding(config);
14847     }
14848     this.enable();
14849 };
14850
14851 Roo.KeyMap.prototype = {
14852     /**
14853      * True to stop the event from bubbling and prevent the default browser action if the
14854      * key was handled by the KeyMap (defaults to false)
14855      * @type Boolean
14856      */
14857     stopEvent : false,
14858
14859     /**
14860      * Add a new binding to this KeyMap. The following config object properties are supported:
14861      * <pre>
14862 Property    Type             Description
14863 ----------  ---------------  ----------------------------------------------------------------------
14864 key         String/Array     A single keycode or an array of keycodes to handle
14865 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14866 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14867 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14868 fn          Function         The function to call when KeyMap finds the expected key combination
14869 scope       Object           The scope of the callback function
14870 </pre>
14871      *
14872      * Usage:
14873      * <pre><code>
14874 // Create a KeyMap
14875 var map = new Roo.KeyMap(document, {
14876     key: Roo.EventObject.ENTER,
14877     fn: handleKey,
14878     scope: this
14879 });
14880
14881 //Add a new binding to the existing KeyMap later
14882 map.addBinding({
14883     key: 'abc',
14884     shift: true,
14885     fn: handleKey,
14886     scope: this
14887 });
14888 </code></pre>
14889      * @param {Object/Array} config A single KeyMap config or an array of configs
14890      */
14891         addBinding : function(config){
14892         if(config instanceof Array){
14893             for(var i = 0, len = config.length; i < len; i++){
14894                 this.addBinding(config[i]);
14895             }
14896             return;
14897         }
14898         var keyCode = config.key,
14899             shift = config.shift, 
14900             ctrl = config.ctrl, 
14901             alt = config.alt,
14902             fn = config.fn,
14903             scope = config.scope;
14904         if(typeof keyCode == "string"){
14905             var ks = [];
14906             var keyString = keyCode.toUpperCase();
14907             for(var j = 0, len = keyString.length; j < len; j++){
14908                 ks.push(keyString.charCodeAt(j));
14909             }
14910             keyCode = ks;
14911         }
14912         var keyArray = keyCode instanceof Array;
14913         var handler = function(e){
14914             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14915                 var k = e.getKey();
14916                 if(keyArray){
14917                     for(var i = 0, len = keyCode.length; i < len; i++){
14918                         if(keyCode[i] == k){
14919                           if(this.stopEvent){
14920                               e.stopEvent();
14921                           }
14922                           fn.call(scope || window, k, e);
14923                           return;
14924                         }
14925                     }
14926                 }else{
14927                     if(k == keyCode){
14928                         if(this.stopEvent){
14929                            e.stopEvent();
14930                         }
14931                         fn.call(scope || window, k, e);
14932                     }
14933                 }
14934             }
14935         };
14936         this.bindings.push(handler);  
14937         },
14938
14939     /**
14940      * Shorthand for adding a single key listener
14941      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14942      * following options:
14943      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14944      * @param {Function} fn The function to call
14945      * @param {Object} scope (optional) The scope of the function
14946      */
14947     on : function(key, fn, scope){
14948         var keyCode, shift, ctrl, alt;
14949         if(typeof key == "object" && !(key instanceof Array)){
14950             keyCode = key.key;
14951             shift = key.shift;
14952             ctrl = key.ctrl;
14953             alt = key.alt;
14954         }else{
14955             keyCode = key;
14956         }
14957         this.addBinding({
14958             key: keyCode,
14959             shift: shift,
14960             ctrl: ctrl,
14961             alt: alt,
14962             fn: fn,
14963             scope: scope
14964         })
14965     },
14966
14967     // private
14968     handleKeyDown : function(e){
14969             if(this.enabled){ //just in case
14970             var b = this.bindings;
14971             for(var i = 0, len = b.length; i < len; i++){
14972                 b[i].call(this, e);
14973             }
14974             }
14975         },
14976         
14977         /**
14978          * Returns true if this KeyMap is enabled
14979          * @return {Boolean} 
14980          */
14981         isEnabled : function(){
14982             return this.enabled;  
14983         },
14984         
14985         /**
14986          * Enables this KeyMap
14987          */
14988         enable: function(){
14989                 if(!this.enabled){
14990                     this.el.on(this.eventName, this.handleKeyDown, this);
14991                     this.enabled = true;
14992                 }
14993         },
14994
14995         /**
14996          * Disable this KeyMap
14997          */
14998         disable: function(){
14999                 if(this.enabled){
15000                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
15001                     this.enabled = false;
15002                 }
15003         }
15004 };/*
15005  * Based on:
15006  * Ext JS Library 1.1.1
15007  * Copyright(c) 2006-2007, Ext JS, LLC.
15008  *
15009  * Originally Released Under LGPL - original licence link has changed is not relivant.
15010  *
15011  * Fork - LGPL
15012  * <script type="text/javascript">
15013  */
15014
15015  
15016 /**
15017  * @class Roo.util.TextMetrics
15018  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
15019  * wide, in pixels, a given block of text will be.
15020  * @singleton
15021  */
15022 Roo.util.TextMetrics = function(){
15023     var shared;
15024     return {
15025         /**
15026          * Measures the size of the specified text
15027          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
15028          * that can affect the size of the rendered text
15029          * @param {String} text The text to measure
15030          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15031          * in order to accurately measure the text height
15032          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15033          */
15034         measure : function(el, text, fixedWidth){
15035             if(!shared){
15036                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
15037             }
15038             shared.bind(el);
15039             shared.setFixedWidth(fixedWidth || 'auto');
15040             return shared.getSize(text);
15041         },
15042
15043         /**
15044          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
15045          * the overhead of multiple calls to initialize the style properties on each measurement.
15046          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
15047          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15048          * in order to accurately measure the text height
15049          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15050          */
15051         createInstance : function(el, fixedWidth){
15052             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15053         }
15054     };
15055 }();
15056
15057  
15058
15059 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15060     var ml = new Roo.Element(document.createElement('div'));
15061     document.body.appendChild(ml.dom);
15062     ml.position('absolute');
15063     ml.setLeftTop(-1000, -1000);
15064     ml.hide();
15065
15066     if(fixedWidth){
15067         ml.setWidth(fixedWidth);
15068     }
15069      
15070     var instance = {
15071         /**
15072          * Returns the size of the specified text based on the internal element's style and width properties
15073          * @memberOf Roo.util.TextMetrics.Instance#
15074          * @param {String} text The text to measure
15075          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15076          */
15077         getSize : function(text){
15078             ml.update(text);
15079             var s = ml.getSize();
15080             ml.update('');
15081             return s;
15082         },
15083
15084         /**
15085          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15086          * that can affect the size of the rendered text
15087          * @memberOf Roo.util.TextMetrics.Instance#
15088          * @param {String/HTMLElement} el The element, dom node or id
15089          */
15090         bind : function(el){
15091             ml.setStyle(
15092                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15093             );
15094         },
15095
15096         /**
15097          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15098          * to set a fixed width in order to accurately measure the text height.
15099          * @memberOf Roo.util.TextMetrics.Instance#
15100          * @param {Number} width The width to set on the element
15101          */
15102         setFixedWidth : function(width){
15103             ml.setWidth(width);
15104         },
15105
15106         /**
15107          * Returns the measured width of the specified text
15108          * @memberOf Roo.util.TextMetrics.Instance#
15109          * @param {String} text The text to measure
15110          * @return {Number} width The width in pixels
15111          */
15112         getWidth : function(text){
15113             ml.dom.style.width = 'auto';
15114             return this.getSize(text).width;
15115         },
15116
15117         /**
15118          * Returns the measured height of the specified text.  For multiline text, be sure to call
15119          * {@link #setFixedWidth} if necessary.
15120          * @memberOf Roo.util.TextMetrics.Instance#
15121          * @param {String} text The text to measure
15122          * @return {Number} height The height in pixels
15123          */
15124         getHeight : function(text){
15125             return this.getSize(text).height;
15126         }
15127     };
15128
15129     instance.bind(bindTo);
15130
15131     return instance;
15132 };
15133
15134 // backwards compat
15135 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15136  * Based on:
15137  * Ext JS Library 1.1.1
15138  * Copyright(c) 2006-2007, Ext JS, LLC.
15139  *
15140  * Originally Released Under LGPL - original licence link has changed is not relivant.
15141  *
15142  * Fork - LGPL
15143  * <script type="text/javascript">
15144  */
15145
15146 /**
15147  * @class Roo.state.Provider
15148  * Abstract base class for state provider implementations. This class provides methods
15149  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15150  * Provider interface.
15151  */
15152 Roo.state.Provider = function(){
15153     /**
15154      * @event statechange
15155      * Fires when a state change occurs.
15156      * @param {Provider} this This state provider
15157      * @param {String} key The state key which was changed
15158      * @param {String} value The encoded value for the state
15159      */
15160     this.addEvents({
15161         "statechange": true
15162     });
15163     this.state = {};
15164     Roo.state.Provider.superclass.constructor.call(this);
15165 };
15166 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15167     /**
15168      * Returns the current value for a key
15169      * @param {String} name The key name
15170      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15171      * @return {Mixed} The state data
15172      */
15173     get : function(name, defaultValue){
15174         return typeof this.state[name] == "undefined" ?
15175             defaultValue : this.state[name];
15176     },
15177     
15178     /**
15179      * Clears a value from the state
15180      * @param {String} name The key name
15181      */
15182     clear : function(name){
15183         delete this.state[name];
15184         this.fireEvent("statechange", this, name, null);
15185     },
15186     
15187     /**
15188      * Sets the value for a key
15189      * @param {String} name The key name
15190      * @param {Mixed} value The value to set
15191      */
15192     set : function(name, value){
15193         this.state[name] = value;
15194         this.fireEvent("statechange", this, name, value);
15195     },
15196     
15197     /**
15198      * Decodes a string previously encoded with {@link #encodeValue}.
15199      * @param {String} value The value to decode
15200      * @return {Mixed} The decoded value
15201      */
15202     decodeValue : function(cookie){
15203         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15204         var matches = re.exec(unescape(cookie));
15205         if(!matches || !matches[1]) {
15206             return; // non state cookie
15207         }
15208         var type = matches[1];
15209         var v = matches[2];
15210         switch(type){
15211             case "n":
15212                 return parseFloat(v);
15213             case "d":
15214                 return new Date(Date.parse(v));
15215             case "b":
15216                 return (v == "1");
15217             case "a":
15218                 var all = [];
15219                 var values = v.split("^");
15220                 for(var i = 0, len = values.length; i < len; i++){
15221                     all.push(this.decodeValue(values[i]));
15222                 }
15223                 return all;
15224            case "o":
15225                 var all = {};
15226                 var values = v.split("^");
15227                 for(var i = 0, len = values.length; i < len; i++){
15228                     var kv = values[i].split("=");
15229                     all[kv[0]] = this.decodeValue(kv[1]);
15230                 }
15231                 return all;
15232            default:
15233                 return v;
15234         }
15235     },
15236     
15237     /**
15238      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15239      * @param {Mixed} value The value to encode
15240      * @return {String} The encoded value
15241      */
15242     encodeValue : function(v){
15243         var enc;
15244         if(typeof v == "number"){
15245             enc = "n:" + v;
15246         }else if(typeof v == "boolean"){
15247             enc = "b:" + (v ? "1" : "0");
15248         }else if(v instanceof Date){
15249             enc = "d:" + v.toGMTString();
15250         }else if(v instanceof Array){
15251             var flat = "";
15252             for(var i = 0, len = v.length; i < len; i++){
15253                 flat += this.encodeValue(v[i]);
15254                 if(i != len-1) {
15255                     flat += "^";
15256                 }
15257             }
15258             enc = "a:" + flat;
15259         }else if(typeof v == "object"){
15260             var flat = "";
15261             for(var key in v){
15262                 if(typeof v[key] != "function"){
15263                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15264                 }
15265             }
15266             enc = "o:" + flat.substring(0, flat.length-1);
15267         }else{
15268             enc = "s:" + v;
15269         }
15270         return escape(enc);        
15271     }
15272 });
15273
15274 /*
15275  * Based on:
15276  * Ext JS Library 1.1.1
15277  * Copyright(c) 2006-2007, Ext JS, LLC.
15278  *
15279  * Originally Released Under LGPL - original licence link has changed is not relivant.
15280  *
15281  * Fork - LGPL
15282  * <script type="text/javascript">
15283  */
15284 /**
15285  * @class Roo.state.Manager
15286  * This is the global state manager. By default all components that are "state aware" check this class
15287  * for state information if you don't pass them a custom state provider. In order for this class
15288  * to be useful, it must be initialized with a provider when your application initializes.
15289  <pre><code>
15290 // in your initialization function
15291 init : function(){
15292    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15293    ...
15294    // supposed you have a {@link Roo.BorderLayout}
15295    var layout = new Roo.BorderLayout(...);
15296    layout.restoreState();
15297    // or a {Roo.BasicDialog}
15298    var dialog = new Roo.BasicDialog(...);
15299    dialog.restoreState();
15300  </code></pre>
15301  * @singleton
15302  */
15303 Roo.state.Manager = function(){
15304     var provider = new Roo.state.Provider();
15305     
15306     return {
15307         /**
15308          * Configures the default state provider for your application
15309          * @param {Provider} stateProvider The state provider to set
15310          */
15311         setProvider : function(stateProvider){
15312             provider = stateProvider;
15313         },
15314         
15315         /**
15316          * Returns the current value for a key
15317          * @param {String} name The key name
15318          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15319          * @return {Mixed} The state data
15320          */
15321         get : function(key, defaultValue){
15322             return provider.get(key, defaultValue);
15323         },
15324         
15325         /**
15326          * Sets the value for a key
15327          * @param {String} name The key name
15328          * @param {Mixed} value The state data
15329          */
15330          set : function(key, value){
15331             provider.set(key, value);
15332         },
15333         
15334         /**
15335          * Clears a value from the state
15336          * @param {String} name The key name
15337          */
15338         clear : function(key){
15339             provider.clear(key);
15340         },
15341         
15342         /**
15343          * Gets the currently configured state provider
15344          * @return {Provider} The state provider
15345          */
15346         getProvider : function(){
15347             return provider;
15348         }
15349     };
15350 }();
15351 /*
15352  * Based on:
15353  * Ext JS Library 1.1.1
15354  * Copyright(c) 2006-2007, Ext JS, LLC.
15355  *
15356  * Originally Released Under LGPL - original licence link has changed is not relivant.
15357  *
15358  * Fork - LGPL
15359  * <script type="text/javascript">
15360  */
15361 /**
15362  * @class Roo.state.CookieProvider
15363  * @extends Roo.state.Provider
15364  * The default Provider implementation which saves state via cookies.
15365  * <br />Usage:
15366  <pre><code>
15367    var cp = new Roo.state.CookieProvider({
15368        path: "/cgi-bin/",
15369        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15370        domain: "roojs.com"
15371    })
15372    Roo.state.Manager.setProvider(cp);
15373  </code></pre>
15374  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15375  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15376  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15377  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15378  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15379  * domain the page is running on including the 'www' like 'www.roojs.com')
15380  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15381  * @constructor
15382  * Create a new CookieProvider
15383  * @param {Object} config The configuration object
15384  */
15385 Roo.state.CookieProvider = function(config){
15386     Roo.state.CookieProvider.superclass.constructor.call(this);
15387     this.path = "/";
15388     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15389     this.domain = null;
15390     this.secure = false;
15391     Roo.apply(this, config);
15392     this.state = this.readCookies();
15393 };
15394
15395 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15396     // private
15397     set : function(name, value){
15398         if(typeof value == "undefined" || value === null){
15399             this.clear(name);
15400             return;
15401         }
15402         this.setCookie(name, value);
15403         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15404     },
15405
15406     // private
15407     clear : function(name){
15408         this.clearCookie(name);
15409         Roo.state.CookieProvider.superclass.clear.call(this, name);
15410     },
15411
15412     // private
15413     readCookies : function(){
15414         var cookies = {};
15415         var c = document.cookie + ";";
15416         var re = /\s?(.*?)=(.*?);/g;
15417         var matches;
15418         while((matches = re.exec(c)) != null){
15419             var name = matches[1];
15420             var value = matches[2];
15421             if(name && name.substring(0,3) == "ys-"){
15422                 cookies[name.substr(3)] = this.decodeValue(value);
15423             }
15424         }
15425         return cookies;
15426     },
15427
15428     // private
15429     setCookie : function(name, value){
15430         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15431            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15432            ((this.path == null) ? "" : ("; path=" + this.path)) +
15433            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15434            ((this.secure == true) ? "; secure" : "");
15435     },
15436
15437     // private
15438     clearCookie : function(name){
15439         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15440            ((this.path == null) ? "" : ("; path=" + this.path)) +
15441            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15442            ((this.secure == true) ? "; secure" : "");
15443     }
15444 });/*
15445  * Based on:
15446  * Ext JS Library 1.1.1
15447  * Copyright(c) 2006-2007, Ext JS, LLC.
15448  *
15449  * Originally Released Under LGPL - original licence link has changed is not relivant.
15450  *
15451  * Fork - LGPL
15452  * <script type="text/javascript">
15453  */
15454  
15455
15456 /**
15457  * @class Roo.ComponentMgr
15458  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15459  * @singleton
15460  */
15461 Roo.ComponentMgr = function(){
15462     var all = new Roo.util.MixedCollection();
15463
15464     return {
15465         /**
15466          * Registers a component.
15467          * @param {Roo.Component} c The component
15468          */
15469         register : function(c){
15470             all.add(c);
15471         },
15472
15473         /**
15474          * Unregisters a component.
15475          * @param {Roo.Component} c The component
15476          */
15477         unregister : function(c){
15478             all.remove(c);
15479         },
15480
15481         /**
15482          * Returns a component by id
15483          * @param {String} id The component id
15484          */
15485         get : function(id){
15486             return all.get(id);
15487         },
15488
15489         /**
15490          * Registers a function that will be called when a specified component is added to ComponentMgr
15491          * @param {String} id The component id
15492          * @param {Funtction} fn The callback function
15493          * @param {Object} scope The scope of the callback
15494          */
15495         onAvailable : function(id, fn, scope){
15496             all.on("add", function(index, o){
15497                 if(o.id == id){
15498                     fn.call(scope || o, o);
15499                     all.un("add", fn, scope);
15500                 }
15501             });
15502         }
15503     };
15504 }();/*
15505  * Based on:
15506  * Ext JS Library 1.1.1
15507  * Copyright(c) 2006-2007, Ext JS, LLC.
15508  *
15509  * Originally Released Under LGPL - original licence link has changed is not relivant.
15510  *
15511  * Fork - LGPL
15512  * <script type="text/javascript">
15513  */
15514  
15515 /**
15516  * @class Roo.Component
15517  * @extends Roo.util.Observable
15518  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15519  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15520  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15521  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15522  * All visual components (widgets) that require rendering into a layout should subclass Component.
15523  * @constructor
15524  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15525  * 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
15526  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15527  */
15528 Roo.Component = function(config){
15529     config = config || {};
15530     if(config.tagName || config.dom || typeof config == "string"){ // element object
15531         config = {el: config, id: config.id || config};
15532     }
15533     this.initialConfig = config;
15534
15535     Roo.apply(this, config);
15536     this.addEvents({
15537         /**
15538          * @event disable
15539          * Fires after the component is disabled.
15540              * @param {Roo.Component} this
15541              */
15542         disable : true,
15543         /**
15544          * @event enable
15545          * Fires after the component is enabled.
15546              * @param {Roo.Component} this
15547              */
15548         enable : true,
15549         /**
15550          * @event beforeshow
15551          * Fires before the component is shown.  Return false to stop the show.
15552              * @param {Roo.Component} this
15553              */
15554         beforeshow : true,
15555         /**
15556          * @event show
15557          * Fires after the component is shown.
15558              * @param {Roo.Component} this
15559              */
15560         show : true,
15561         /**
15562          * @event beforehide
15563          * Fires before the component is hidden. Return false to stop the hide.
15564              * @param {Roo.Component} this
15565              */
15566         beforehide : true,
15567         /**
15568          * @event hide
15569          * Fires after the component is hidden.
15570              * @param {Roo.Component} this
15571              */
15572         hide : true,
15573         /**
15574          * @event beforerender
15575          * Fires before the component is rendered. Return false to stop the render.
15576              * @param {Roo.Component} this
15577              */
15578         beforerender : true,
15579         /**
15580          * @event render
15581          * Fires after the component is rendered.
15582              * @param {Roo.Component} this
15583              */
15584         render : true,
15585         /**
15586          * @event beforedestroy
15587          * Fires before the component is destroyed. Return false to stop the destroy.
15588              * @param {Roo.Component} this
15589              */
15590         beforedestroy : true,
15591         /**
15592          * @event destroy
15593          * Fires after the component is destroyed.
15594              * @param {Roo.Component} this
15595              */
15596         destroy : true
15597     });
15598     if(!this.id){
15599         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15600     }
15601     Roo.ComponentMgr.register(this);
15602     Roo.Component.superclass.constructor.call(this);
15603     this.initComponent();
15604     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15605         this.render(this.renderTo);
15606         delete this.renderTo;
15607     }
15608 };
15609
15610 /** @private */
15611 Roo.Component.AUTO_ID = 1000;
15612
15613 Roo.extend(Roo.Component, Roo.util.Observable, {
15614     /**
15615      * @scope Roo.Component.prototype
15616      * @type {Boolean}
15617      * true if this component is hidden. Read-only.
15618      */
15619     hidden : false,
15620     /**
15621      * @type {Boolean}
15622      * true if this component is disabled. Read-only.
15623      */
15624     disabled : false,
15625     /**
15626      * @type {Boolean}
15627      * true if this component has been rendered. Read-only.
15628      */
15629     rendered : false,
15630     
15631     /** @cfg {String} disableClass
15632      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15633      */
15634     disabledClass : "x-item-disabled",
15635         /** @cfg {Boolean} allowDomMove
15636          * Whether the component can move the Dom node when rendering (defaults to true).
15637          */
15638     allowDomMove : true,
15639     /** @cfg {String} hideMode (display|visibility)
15640      * How this component should hidden. Supported values are
15641      * "visibility" (css visibility), "offsets" (negative offset position) and
15642      * "display" (css display) - defaults to "display".
15643      */
15644     hideMode: 'display',
15645
15646     /** @private */
15647     ctype : "Roo.Component",
15648
15649     /**
15650      * @cfg {String} actionMode 
15651      * which property holds the element that used for  hide() / show() / disable() / enable()
15652      * default is 'el' for forms you probably want to set this to fieldEl 
15653      */
15654     actionMode : "el",
15655
15656     /** @private */
15657     getActionEl : function(){
15658         return this[this.actionMode];
15659     },
15660
15661     initComponent : Roo.emptyFn,
15662     /**
15663      * If this is a lazy rendering component, render it to its container element.
15664      * @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.
15665      */
15666     render : function(container, position){
15667         
15668         if(this.rendered){
15669             return this;
15670         }
15671         
15672         if(this.fireEvent("beforerender", this) === false){
15673             return false;
15674         }
15675         
15676         if(!container && this.el){
15677             this.el = Roo.get(this.el);
15678             container = this.el.dom.parentNode;
15679             this.allowDomMove = false;
15680         }
15681         this.container = Roo.get(container);
15682         this.rendered = true;
15683         if(position !== undefined){
15684             if(typeof position == 'number'){
15685                 position = this.container.dom.childNodes[position];
15686             }else{
15687                 position = Roo.getDom(position);
15688             }
15689         }
15690         this.onRender(this.container, position || null);
15691         if(this.cls){
15692             this.el.addClass(this.cls);
15693             delete this.cls;
15694         }
15695         if(this.style){
15696             this.el.applyStyles(this.style);
15697             delete this.style;
15698         }
15699         this.fireEvent("render", this);
15700         this.afterRender(this.container);
15701         if(this.hidden){
15702             this.hide();
15703         }
15704         if(this.disabled){
15705             this.disable();
15706         }
15707
15708         return this;
15709         
15710     },
15711
15712     /** @private */
15713     // default function is not really useful
15714     onRender : function(ct, position){
15715         if(this.el){
15716             this.el = Roo.get(this.el);
15717             if(this.allowDomMove !== false){
15718                 ct.dom.insertBefore(this.el.dom, position);
15719             }
15720         }
15721     },
15722
15723     /** @private */
15724     getAutoCreate : function(){
15725         var cfg = typeof this.autoCreate == "object" ?
15726                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15727         if(this.id && !cfg.id){
15728             cfg.id = this.id;
15729         }
15730         return cfg;
15731     },
15732
15733     /** @private */
15734     afterRender : Roo.emptyFn,
15735
15736     /**
15737      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15738      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15739      */
15740     destroy : function(){
15741         if(this.fireEvent("beforedestroy", this) !== false){
15742             this.purgeListeners();
15743             this.beforeDestroy();
15744             if(this.rendered){
15745                 this.el.removeAllListeners();
15746                 this.el.remove();
15747                 if(this.actionMode == "container"){
15748                     this.container.remove();
15749                 }
15750             }
15751             this.onDestroy();
15752             Roo.ComponentMgr.unregister(this);
15753             this.fireEvent("destroy", this);
15754         }
15755     },
15756
15757         /** @private */
15758     beforeDestroy : function(){
15759
15760     },
15761
15762         /** @private */
15763         onDestroy : function(){
15764
15765     },
15766
15767     /**
15768      * Returns the underlying {@link Roo.Element}.
15769      * @return {Roo.Element} The element
15770      */
15771     getEl : function(){
15772         return this.el;
15773     },
15774
15775     /**
15776      * Returns the id of this component.
15777      * @return {String}
15778      */
15779     getId : function(){
15780         return this.id;
15781     },
15782
15783     /**
15784      * Try to focus this component.
15785      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15786      * @return {Roo.Component} this
15787      */
15788     focus : function(selectText){
15789         if(this.rendered){
15790             this.el.focus();
15791             if(selectText === true){
15792                 this.el.dom.select();
15793             }
15794         }
15795         return this;
15796     },
15797
15798     /** @private */
15799     blur : function(){
15800         if(this.rendered){
15801             this.el.blur();
15802         }
15803         return this;
15804     },
15805
15806     /**
15807      * Disable this component.
15808      * @return {Roo.Component} this
15809      */
15810     disable : function(){
15811         if(this.rendered){
15812             this.onDisable();
15813         }
15814         this.disabled = true;
15815         this.fireEvent("disable", this);
15816         return this;
15817     },
15818
15819         // private
15820     onDisable : function(){
15821         this.getActionEl().addClass(this.disabledClass);
15822         this.el.dom.disabled = true;
15823     },
15824
15825     /**
15826      * Enable this component.
15827      * @return {Roo.Component} this
15828      */
15829     enable : function(){
15830         if(this.rendered){
15831             this.onEnable();
15832         }
15833         this.disabled = false;
15834         this.fireEvent("enable", this);
15835         return this;
15836     },
15837
15838         // private
15839     onEnable : function(){
15840         this.getActionEl().removeClass(this.disabledClass);
15841         this.el.dom.disabled = false;
15842     },
15843
15844     /**
15845      * Convenience function for setting disabled/enabled by boolean.
15846      * @param {Boolean} disabled
15847      */
15848     setDisabled : function(disabled){
15849         this[disabled ? "disable" : "enable"]();
15850     },
15851
15852     /**
15853      * Show this component.
15854      * @return {Roo.Component} this
15855      */
15856     show: function(){
15857         if(this.fireEvent("beforeshow", this) !== false){
15858             this.hidden = false;
15859             if(this.rendered){
15860                 this.onShow();
15861             }
15862             this.fireEvent("show", this);
15863         }
15864         return this;
15865     },
15866
15867     // private
15868     onShow : function(){
15869         var ae = this.getActionEl();
15870         if(this.hideMode == 'visibility'){
15871             ae.dom.style.visibility = "visible";
15872         }else if(this.hideMode == 'offsets'){
15873             ae.removeClass('x-hidden');
15874         }else{
15875             ae.dom.style.display = "";
15876         }
15877     },
15878
15879     /**
15880      * Hide this component.
15881      * @return {Roo.Component} this
15882      */
15883     hide: function(){
15884         if(this.fireEvent("beforehide", this) !== false){
15885             this.hidden = true;
15886             if(this.rendered){
15887                 this.onHide();
15888             }
15889             this.fireEvent("hide", this);
15890         }
15891         return this;
15892     },
15893
15894     // private
15895     onHide : function(){
15896         var ae = this.getActionEl();
15897         if(this.hideMode == 'visibility'){
15898             ae.dom.style.visibility = "hidden";
15899         }else if(this.hideMode == 'offsets'){
15900             ae.addClass('x-hidden');
15901         }else{
15902             ae.dom.style.display = "none";
15903         }
15904     },
15905
15906     /**
15907      * Convenience function to hide or show this component by boolean.
15908      * @param {Boolean} visible True to show, false to hide
15909      * @return {Roo.Component} this
15910      */
15911     setVisible: function(visible){
15912         if(visible) {
15913             this.show();
15914         }else{
15915             this.hide();
15916         }
15917         return this;
15918     },
15919
15920     /**
15921      * Returns true if this component is visible.
15922      */
15923     isVisible : function(){
15924         return this.getActionEl().isVisible();
15925     },
15926
15927     cloneConfig : function(overrides){
15928         overrides = overrides || {};
15929         var id = overrides.id || Roo.id();
15930         var cfg = Roo.applyIf(overrides, this.initialConfig);
15931         cfg.id = id; // prevent dup id
15932         return new this.constructor(cfg);
15933     }
15934 });/*
15935  * Based on:
15936  * Ext JS Library 1.1.1
15937  * Copyright(c) 2006-2007, Ext JS, LLC.
15938  *
15939  * Originally Released Under LGPL - original licence link has changed is not relivant.
15940  *
15941  * Fork - LGPL
15942  * <script type="text/javascript">
15943  */
15944
15945 /**
15946  * @class Roo.BoxComponent
15947  * @extends Roo.Component
15948  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15949  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15950  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
15951  * layout containers.
15952  * @constructor
15953  * @param {Roo.Element/String/Object} config The configuration options.
15954  */
15955 Roo.BoxComponent = function(config){
15956     Roo.Component.call(this, config);
15957     this.addEvents({
15958         /**
15959          * @event resize
15960          * Fires after the component is resized.
15961              * @param {Roo.Component} this
15962              * @param {Number} adjWidth The box-adjusted width that was set
15963              * @param {Number} adjHeight The box-adjusted height that was set
15964              * @param {Number} rawWidth The width that was originally specified
15965              * @param {Number} rawHeight The height that was originally specified
15966              */
15967         resize : true,
15968         /**
15969          * @event move
15970          * Fires after the component is moved.
15971              * @param {Roo.Component} this
15972              * @param {Number} x The new x position
15973              * @param {Number} y The new y position
15974              */
15975         move : true
15976     });
15977 };
15978
15979 Roo.extend(Roo.BoxComponent, Roo.Component, {
15980     // private, set in afterRender to signify that the component has been rendered
15981     boxReady : false,
15982     // private, used to defer height settings to subclasses
15983     deferHeight: false,
15984     /** @cfg {Number} width
15985      * width (optional) size of component
15986      */
15987      /** @cfg {Number} height
15988      * height (optional) size of component
15989      */
15990      
15991     /**
15992      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15993      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15994      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15995      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15996      * @return {Roo.BoxComponent} this
15997      */
15998     setSize : function(w, h){
15999         // support for standard size objects
16000         if(typeof w == 'object'){
16001             h = w.height;
16002             w = w.width;
16003         }
16004         // not rendered
16005         if(!this.boxReady){
16006             this.width = w;
16007             this.height = h;
16008             return this;
16009         }
16010
16011         // prevent recalcs when not needed
16012         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
16013             return this;
16014         }
16015         this.lastSize = {width: w, height: h};
16016
16017         var adj = this.adjustSize(w, h);
16018         var aw = adj.width, ah = adj.height;
16019         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
16020             var rz = this.getResizeEl();
16021             if(!this.deferHeight && aw !== undefined && ah !== undefined){
16022                 rz.setSize(aw, ah);
16023             }else if(!this.deferHeight && ah !== undefined){
16024                 rz.setHeight(ah);
16025             }else if(aw !== undefined){
16026                 rz.setWidth(aw);
16027             }
16028             this.onResize(aw, ah, w, h);
16029             this.fireEvent('resize', this, aw, ah, w, h);
16030         }
16031         return this;
16032     },
16033
16034     /**
16035      * Gets the current size of the component's underlying element.
16036      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
16037      */
16038     getSize : function(){
16039         return this.el.getSize();
16040     },
16041
16042     /**
16043      * Gets the current XY position of the component's underlying element.
16044      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16045      * @return {Array} The XY position of the element (e.g., [100, 200])
16046      */
16047     getPosition : function(local){
16048         if(local === true){
16049             return [this.el.getLeft(true), this.el.getTop(true)];
16050         }
16051         return this.xy || this.el.getXY();
16052     },
16053
16054     /**
16055      * Gets the current box measurements of the component's underlying element.
16056      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16057      * @returns {Object} box An object in the format {x, y, width, height}
16058      */
16059     getBox : function(local){
16060         var s = this.el.getSize();
16061         if(local){
16062             s.x = this.el.getLeft(true);
16063             s.y = this.el.getTop(true);
16064         }else{
16065             var xy = this.xy || this.el.getXY();
16066             s.x = xy[0];
16067             s.y = xy[1];
16068         }
16069         return s;
16070     },
16071
16072     /**
16073      * Sets the current box measurements of the component's underlying element.
16074      * @param {Object} box An object in the format {x, y, width, height}
16075      * @returns {Roo.BoxComponent} this
16076      */
16077     updateBox : function(box){
16078         this.setSize(box.width, box.height);
16079         this.setPagePosition(box.x, box.y);
16080         return this;
16081     },
16082
16083     // protected
16084     getResizeEl : function(){
16085         return this.resizeEl || this.el;
16086     },
16087
16088     // protected
16089     getPositionEl : function(){
16090         return this.positionEl || this.el;
16091     },
16092
16093     /**
16094      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16095      * This method fires the move event.
16096      * @param {Number} left The new left
16097      * @param {Number} top The new top
16098      * @returns {Roo.BoxComponent} this
16099      */
16100     setPosition : function(x, y){
16101         this.x = x;
16102         this.y = y;
16103         if(!this.boxReady){
16104             return this;
16105         }
16106         var adj = this.adjustPosition(x, y);
16107         var ax = adj.x, ay = adj.y;
16108
16109         var el = this.getPositionEl();
16110         if(ax !== undefined || ay !== undefined){
16111             if(ax !== undefined && ay !== undefined){
16112                 el.setLeftTop(ax, ay);
16113             }else if(ax !== undefined){
16114                 el.setLeft(ax);
16115             }else if(ay !== undefined){
16116                 el.setTop(ay);
16117             }
16118             this.onPosition(ax, ay);
16119             this.fireEvent('move', this, ax, ay);
16120         }
16121         return this;
16122     },
16123
16124     /**
16125      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16126      * This method fires the move event.
16127      * @param {Number} x The new x position
16128      * @param {Number} y The new y position
16129      * @returns {Roo.BoxComponent} this
16130      */
16131     setPagePosition : function(x, y){
16132         this.pageX = x;
16133         this.pageY = y;
16134         if(!this.boxReady){
16135             return;
16136         }
16137         if(x === undefined || y === undefined){ // cannot translate undefined points
16138             return;
16139         }
16140         var p = this.el.translatePoints(x, y);
16141         this.setPosition(p.left, p.top);
16142         return this;
16143     },
16144
16145     // private
16146     onRender : function(ct, position){
16147         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16148         if(this.resizeEl){
16149             this.resizeEl = Roo.get(this.resizeEl);
16150         }
16151         if(this.positionEl){
16152             this.positionEl = Roo.get(this.positionEl);
16153         }
16154     },
16155
16156     // private
16157     afterRender : function(){
16158         Roo.BoxComponent.superclass.afterRender.call(this);
16159         this.boxReady = true;
16160         this.setSize(this.width, this.height);
16161         if(this.x || this.y){
16162             this.setPosition(this.x, this.y);
16163         }
16164         if(this.pageX || this.pageY){
16165             this.setPagePosition(this.pageX, this.pageY);
16166         }
16167     },
16168
16169     /**
16170      * Force the component's size to recalculate based on the underlying element's current height and width.
16171      * @returns {Roo.BoxComponent} this
16172      */
16173     syncSize : function(){
16174         delete this.lastSize;
16175         this.setSize(this.el.getWidth(), this.el.getHeight());
16176         return this;
16177     },
16178
16179     /**
16180      * Called after the component is resized, this method is empty by default but can be implemented by any
16181      * subclass that needs to perform custom logic after a resize occurs.
16182      * @param {Number} adjWidth The box-adjusted width that was set
16183      * @param {Number} adjHeight The box-adjusted height that was set
16184      * @param {Number} rawWidth The width that was originally specified
16185      * @param {Number} rawHeight The height that was originally specified
16186      */
16187     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16188
16189     },
16190
16191     /**
16192      * Called after the component is moved, this method is empty by default but can be implemented by any
16193      * subclass that needs to perform custom logic after a move occurs.
16194      * @param {Number} x The new x position
16195      * @param {Number} y The new y position
16196      */
16197     onPosition : function(x, y){
16198
16199     },
16200
16201     // private
16202     adjustSize : function(w, h){
16203         if(this.autoWidth){
16204             w = 'auto';
16205         }
16206         if(this.autoHeight){
16207             h = 'auto';
16208         }
16209         return {width : w, height: h};
16210     },
16211
16212     // private
16213     adjustPosition : function(x, y){
16214         return {x : x, y: y};
16215     }
16216 });/*
16217  * Based on:
16218  * Ext JS Library 1.1.1
16219  * Copyright(c) 2006-2007, Ext JS, LLC.
16220  *
16221  * Originally Released Under LGPL - original licence link has changed is not relivant.
16222  *
16223  * Fork - LGPL
16224  * <script type="text/javascript">
16225  */
16226  (function(){ 
16227 /**
16228  * @class Roo.Layer
16229  * @extends Roo.Element
16230  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16231  * automatic maintaining of shadow/shim positions.
16232  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16233  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16234  * you can pass a string with a CSS class name. False turns off the shadow.
16235  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16236  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16237  * @cfg {String} cls CSS class to add to the element
16238  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16239  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16240  * @constructor
16241  * @param {Object} config An object with config options.
16242  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16243  */
16244
16245 Roo.Layer = function(config, existingEl){
16246     config = config || {};
16247     var dh = Roo.DomHelper;
16248     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16249     if(existingEl){
16250         this.dom = Roo.getDom(existingEl);
16251     }
16252     if(!this.dom){
16253         var o = config.dh || {tag: "div", cls: "x-layer"};
16254         this.dom = dh.append(pel, o);
16255     }
16256     if(config.cls){
16257         this.addClass(config.cls);
16258     }
16259     this.constrain = config.constrain !== false;
16260     this.visibilityMode = Roo.Element.VISIBILITY;
16261     if(config.id){
16262         this.id = this.dom.id = config.id;
16263     }else{
16264         this.id = Roo.id(this.dom);
16265     }
16266     this.zindex = config.zindex || this.getZIndex();
16267     this.position("absolute", this.zindex);
16268     if(config.shadow){
16269         this.shadowOffset = config.shadowOffset || 4;
16270         this.shadow = new Roo.Shadow({
16271             offset : this.shadowOffset,
16272             mode : config.shadow
16273         });
16274     }else{
16275         this.shadowOffset = 0;
16276     }
16277     this.useShim = config.shim !== false && Roo.useShims;
16278     this.useDisplay = config.useDisplay;
16279     this.hide();
16280 };
16281
16282 var supr = Roo.Element.prototype;
16283
16284 // shims are shared among layer to keep from having 100 iframes
16285 var shims = [];
16286
16287 Roo.extend(Roo.Layer, Roo.Element, {
16288
16289     getZIndex : function(){
16290         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16291     },
16292
16293     getShim : function(){
16294         if(!this.useShim){
16295             return null;
16296         }
16297         if(this.shim){
16298             return this.shim;
16299         }
16300         var shim = shims.shift();
16301         if(!shim){
16302             shim = this.createShim();
16303             shim.enableDisplayMode('block');
16304             shim.dom.style.display = 'none';
16305             shim.dom.style.visibility = 'visible';
16306         }
16307         var pn = this.dom.parentNode;
16308         if(shim.dom.parentNode != pn){
16309             pn.insertBefore(shim.dom, this.dom);
16310         }
16311         shim.setStyle('z-index', this.getZIndex()-2);
16312         this.shim = shim;
16313         return shim;
16314     },
16315
16316     hideShim : function(){
16317         if(this.shim){
16318             this.shim.setDisplayed(false);
16319             shims.push(this.shim);
16320             delete this.shim;
16321         }
16322     },
16323
16324     disableShadow : function(){
16325         if(this.shadow){
16326             this.shadowDisabled = true;
16327             this.shadow.hide();
16328             this.lastShadowOffset = this.shadowOffset;
16329             this.shadowOffset = 0;
16330         }
16331     },
16332
16333     enableShadow : function(show){
16334         if(this.shadow){
16335             this.shadowDisabled = false;
16336             this.shadowOffset = this.lastShadowOffset;
16337             delete this.lastShadowOffset;
16338             if(show){
16339                 this.sync(true);
16340             }
16341         }
16342     },
16343
16344     // private
16345     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16346     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16347     sync : function(doShow){
16348         var sw = this.shadow;
16349         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16350             var sh = this.getShim();
16351
16352             var w = this.getWidth(),
16353                 h = this.getHeight();
16354
16355             var l = this.getLeft(true),
16356                 t = this.getTop(true);
16357
16358             if(sw && !this.shadowDisabled){
16359                 if(doShow && !sw.isVisible()){
16360                     sw.show(this);
16361                 }else{
16362                     sw.realign(l, t, w, h);
16363                 }
16364                 if(sh){
16365                     if(doShow){
16366                        sh.show();
16367                     }
16368                     // fit the shim behind the shadow, so it is shimmed too
16369                     var a = sw.adjusts, s = sh.dom.style;
16370                     s.left = (Math.min(l, l+a.l))+"px";
16371                     s.top = (Math.min(t, t+a.t))+"px";
16372                     s.width = (w+a.w)+"px";
16373                     s.height = (h+a.h)+"px";
16374                 }
16375             }else if(sh){
16376                 if(doShow){
16377                    sh.show();
16378                 }
16379                 sh.setSize(w, h);
16380                 sh.setLeftTop(l, t);
16381             }
16382             
16383         }
16384     },
16385
16386     // private
16387     destroy : function(){
16388         this.hideShim();
16389         if(this.shadow){
16390             this.shadow.hide();
16391         }
16392         this.removeAllListeners();
16393         var pn = this.dom.parentNode;
16394         if(pn){
16395             pn.removeChild(this.dom);
16396         }
16397         Roo.Element.uncache(this.id);
16398     },
16399
16400     remove : function(){
16401         this.destroy();
16402     },
16403
16404     // private
16405     beginUpdate : function(){
16406         this.updating = true;
16407     },
16408
16409     // private
16410     endUpdate : function(){
16411         this.updating = false;
16412         this.sync(true);
16413     },
16414
16415     // private
16416     hideUnders : function(negOffset){
16417         if(this.shadow){
16418             this.shadow.hide();
16419         }
16420         this.hideShim();
16421     },
16422
16423     // private
16424     constrainXY : function(){
16425         if(this.constrain){
16426             var vw = Roo.lib.Dom.getViewWidth(),
16427                 vh = Roo.lib.Dom.getViewHeight();
16428             var s = Roo.get(document).getScroll();
16429
16430             var xy = this.getXY();
16431             var x = xy[0], y = xy[1];   
16432             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16433             // only move it if it needs it
16434             var moved = false;
16435             // first validate right/bottom
16436             if((x + w) > vw+s.left){
16437                 x = vw - w - this.shadowOffset;
16438                 moved = true;
16439             }
16440             if((y + h) > vh+s.top){
16441                 y = vh - h - this.shadowOffset;
16442                 moved = true;
16443             }
16444             // then make sure top/left isn't negative
16445             if(x < s.left){
16446                 x = s.left;
16447                 moved = true;
16448             }
16449             if(y < s.top){
16450                 y = s.top;
16451                 moved = true;
16452             }
16453             if(moved){
16454                 if(this.avoidY){
16455                     var ay = this.avoidY;
16456                     if(y <= ay && (y+h) >= ay){
16457                         y = ay-h-5;   
16458                     }
16459                 }
16460                 xy = [x, y];
16461                 this.storeXY(xy);
16462                 supr.setXY.call(this, xy);
16463                 this.sync();
16464             }
16465         }
16466     },
16467
16468     isVisible : function(){
16469         return this.visible;    
16470     },
16471
16472     // private
16473     showAction : function(){
16474         this.visible = true; // track visibility to prevent getStyle calls
16475         if(this.useDisplay === true){
16476             this.setDisplayed("");
16477         }else if(this.lastXY){
16478             supr.setXY.call(this, this.lastXY);
16479         }else if(this.lastLT){
16480             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16481         }
16482     },
16483
16484     // private
16485     hideAction : function(){
16486         this.visible = false;
16487         if(this.useDisplay === true){
16488             this.setDisplayed(false);
16489         }else{
16490             this.setLeftTop(-10000,-10000);
16491         }
16492     },
16493
16494     // overridden Element method
16495     setVisible : function(v, a, d, c, e){
16496         if(v){
16497             this.showAction();
16498         }
16499         if(a && v){
16500             var cb = function(){
16501                 this.sync(true);
16502                 if(c){
16503                     c();
16504                 }
16505             }.createDelegate(this);
16506             supr.setVisible.call(this, true, true, d, cb, e);
16507         }else{
16508             if(!v){
16509                 this.hideUnders(true);
16510             }
16511             var cb = c;
16512             if(a){
16513                 cb = function(){
16514                     this.hideAction();
16515                     if(c){
16516                         c();
16517                     }
16518                 }.createDelegate(this);
16519             }
16520             supr.setVisible.call(this, v, a, d, cb, e);
16521             if(v){
16522                 this.sync(true);
16523             }else if(!a){
16524                 this.hideAction();
16525             }
16526         }
16527     },
16528
16529     storeXY : function(xy){
16530         delete this.lastLT;
16531         this.lastXY = xy;
16532     },
16533
16534     storeLeftTop : function(left, top){
16535         delete this.lastXY;
16536         this.lastLT = [left, top];
16537     },
16538
16539     // private
16540     beforeFx : function(){
16541         this.beforeAction();
16542         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16543     },
16544
16545     // private
16546     afterFx : function(){
16547         Roo.Layer.superclass.afterFx.apply(this, arguments);
16548         this.sync(this.isVisible());
16549     },
16550
16551     // private
16552     beforeAction : function(){
16553         if(!this.updating && this.shadow){
16554             this.shadow.hide();
16555         }
16556     },
16557
16558     // overridden Element method
16559     setLeft : function(left){
16560         this.storeLeftTop(left, this.getTop(true));
16561         supr.setLeft.apply(this, arguments);
16562         this.sync();
16563     },
16564
16565     setTop : function(top){
16566         this.storeLeftTop(this.getLeft(true), top);
16567         supr.setTop.apply(this, arguments);
16568         this.sync();
16569     },
16570
16571     setLeftTop : function(left, top){
16572         this.storeLeftTop(left, top);
16573         supr.setLeftTop.apply(this, arguments);
16574         this.sync();
16575     },
16576
16577     setXY : function(xy, a, d, c, e){
16578         this.fixDisplay();
16579         this.beforeAction();
16580         this.storeXY(xy);
16581         var cb = this.createCB(c);
16582         supr.setXY.call(this, xy, a, d, cb, e);
16583         if(!a){
16584             cb();
16585         }
16586     },
16587
16588     // private
16589     createCB : function(c){
16590         var el = this;
16591         return function(){
16592             el.constrainXY();
16593             el.sync(true);
16594             if(c){
16595                 c();
16596             }
16597         };
16598     },
16599
16600     // overridden Element method
16601     setX : function(x, a, d, c, e){
16602         this.setXY([x, this.getY()], a, d, c, e);
16603     },
16604
16605     // overridden Element method
16606     setY : function(y, a, d, c, e){
16607         this.setXY([this.getX(), y], a, d, c, e);
16608     },
16609
16610     // overridden Element method
16611     setSize : function(w, h, a, d, c, e){
16612         this.beforeAction();
16613         var cb = this.createCB(c);
16614         supr.setSize.call(this, w, h, a, d, cb, e);
16615         if(!a){
16616             cb();
16617         }
16618     },
16619
16620     // overridden Element method
16621     setWidth : function(w, a, d, c, e){
16622         this.beforeAction();
16623         var cb = this.createCB(c);
16624         supr.setWidth.call(this, w, a, d, cb, e);
16625         if(!a){
16626             cb();
16627         }
16628     },
16629
16630     // overridden Element method
16631     setHeight : function(h, a, d, c, e){
16632         this.beforeAction();
16633         var cb = this.createCB(c);
16634         supr.setHeight.call(this, h, a, d, cb, e);
16635         if(!a){
16636             cb();
16637         }
16638     },
16639
16640     // overridden Element method
16641     setBounds : function(x, y, w, h, a, d, c, e){
16642         this.beforeAction();
16643         var cb = this.createCB(c);
16644         if(!a){
16645             this.storeXY([x, y]);
16646             supr.setXY.call(this, [x, y]);
16647             supr.setSize.call(this, w, h, a, d, cb, e);
16648             cb();
16649         }else{
16650             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16651         }
16652         return this;
16653     },
16654     
16655     /**
16656      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16657      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16658      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16659      * @param {Number} zindex The new z-index to set
16660      * @return {this} The Layer
16661      */
16662     setZIndex : function(zindex){
16663         this.zindex = zindex;
16664         this.setStyle("z-index", zindex + 2);
16665         if(this.shadow){
16666             this.shadow.setZIndex(zindex + 1);
16667         }
16668         if(this.shim){
16669             this.shim.setStyle("z-index", zindex);
16670         }
16671     }
16672 });
16673 })();/*
16674  * Original code for Roojs - LGPL
16675  * <script type="text/javascript">
16676  */
16677  
16678 /**
16679  * @class Roo.XComponent
16680  * A delayed Element creator...
16681  * Or a way to group chunks of interface together.
16682  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16683  *  used in conjunction with XComponent.build() it will create an instance of each element,
16684  *  then call addxtype() to build the User interface.
16685  * 
16686  * Mypart.xyx = new Roo.XComponent({
16687
16688     parent : 'Mypart.xyz', // empty == document.element.!!
16689     order : '001',
16690     name : 'xxxx'
16691     region : 'xxxx'
16692     disabled : function() {} 
16693      
16694     tree : function() { // return an tree of xtype declared components
16695         var MODULE = this;
16696         return 
16697         {
16698             xtype : 'NestedLayoutPanel',
16699             // technicall
16700         }
16701      ]
16702  *})
16703  *
16704  *
16705  * It can be used to build a big heiracy, with parent etc.
16706  * or you can just use this to render a single compoent to a dom element
16707  * MYPART.render(Roo.Element | String(id) | dom_element )
16708  *
16709  *
16710  * Usage patterns.
16711  *
16712  * Classic Roo
16713  *
16714  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16715  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16716  *
16717  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16718  *
16719  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16720  * - if mulitple topModules exist, the last one is defined as the top module.
16721  *
16722  * Embeded Roo
16723  * 
16724  * When the top level or multiple modules are to embedded into a existing HTML page,
16725  * the parent element can container '#id' of the element where the module will be drawn.
16726  *
16727  * Bootstrap Roo
16728  *
16729  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16730  * it relies more on a include mechanism, where sub modules are included into an outer page.
16731  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16732  * 
16733  * Bootstrap Roo Included elements
16734  *
16735  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16736  * hence confusing the component builder as it thinks there are multiple top level elements. 
16737  *
16738  * String Over-ride & Translations
16739  *
16740  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16741  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16742  * are needed. @see Roo.XComponent.overlayString  
16743  * 
16744  * 
16745  * 
16746  * @extends Roo.util.Observable
16747  * @constructor
16748  * @param cfg {Object} configuration of component
16749  * 
16750  */
16751 Roo.XComponent = function(cfg) {
16752     Roo.apply(this, cfg);
16753     this.addEvents({ 
16754         /**
16755              * @event built
16756              * Fires when this the componnt is built
16757              * @param {Roo.XComponent} c the component
16758              */
16759         'built' : true
16760         
16761     });
16762     this.region = this.region || 'center'; // default..
16763     Roo.XComponent.register(this);
16764     this.modules = false;
16765     this.el = false; // where the layout goes..
16766     
16767     
16768 }
16769 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16770     /**
16771      * @property el
16772      * The created element (with Roo.factory())
16773      * @type {Roo.Layout}
16774      */
16775     el  : false,
16776     
16777     /**
16778      * @property el
16779      * for BC  - use el in new code
16780      * @type {Roo.Layout}
16781      */
16782     panel : false,
16783     
16784     /**
16785      * @property layout
16786      * for BC  - use el in new code
16787      * @type {Roo.Layout}
16788      */
16789     layout : false,
16790     
16791      /**
16792      * @cfg {Function|boolean} disabled
16793      * If this module is disabled by some rule, return true from the funtion
16794      */
16795     disabled : false,
16796     
16797     /**
16798      * @cfg {String} parent 
16799      * Name of parent element which it get xtype added to..
16800      */
16801     parent: false,
16802     
16803     /**
16804      * @cfg {String} order
16805      * Used to set the order in which elements are created (usefull for multiple tabs)
16806      */
16807     
16808     order : false,
16809     /**
16810      * @cfg {String} name
16811      * String to display while loading.
16812      */
16813     name : false,
16814     /**
16815      * @cfg {String} region
16816      * Region to render component to (defaults to center)
16817      */
16818     region : 'center',
16819     
16820     /**
16821      * @cfg {Array} items
16822      * A single item array - the first element is the root of the tree..
16823      * It's done this way to stay compatible with the Xtype system...
16824      */
16825     items : false,
16826     
16827     /**
16828      * @property _tree
16829      * The method that retuns the tree of parts that make up this compoennt 
16830      * @type {function}
16831      */
16832     _tree  : false,
16833     
16834      /**
16835      * render
16836      * render element to dom or tree
16837      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16838      */
16839     
16840     render : function(el)
16841     {
16842         
16843         el = el || false;
16844         var hp = this.parent ? 1 : 0;
16845         Roo.debug &&  Roo.log(this);
16846         
16847         var tree = this._tree ? this._tree() : this.tree();
16848
16849         
16850         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16851             // if parent is a '#.....' string, then let's use that..
16852             var ename = this.parent.substr(1);
16853             this.parent = false;
16854             Roo.debug && Roo.log(ename);
16855             switch (ename) {
16856                 case 'bootstrap-body':
16857                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16858                         // this is the BorderLayout standard?
16859                        this.parent = { el : true };
16860                        break;
16861                     }
16862                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16863                         // need to insert stuff...
16864                         this.parent =  {
16865                              el : new Roo.bootstrap.layout.Border({
16866                                  el : document.body, 
16867                      
16868                                  center: {
16869                                     titlebar: false,
16870                                     autoScroll:false,
16871                                     closeOnTab: true,
16872                                     tabPosition: 'top',
16873                                       //resizeTabs: true,
16874                                     alwaysShowTabs: true,
16875                                     hideTabs: false
16876                                      //minTabWidth: 140
16877                                  }
16878                              })
16879                         
16880                          };
16881                          break;
16882                     }
16883                          
16884                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16885                         this.parent = { el :  new  Roo.bootstrap.Body() };
16886                         Roo.debug && Roo.log("setting el to doc body");
16887                          
16888                     } else {
16889                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16890                     }
16891                     break;
16892                 case 'bootstrap':
16893                     this.parent = { el : true};
16894                     // fall through
16895                 default:
16896                     el = Roo.get(ename);
16897                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16898                         this.parent = { el : true};
16899                     }
16900                     
16901                     break;
16902             }
16903                 
16904             
16905             if (!el && !this.parent) {
16906                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16907                 return;
16908             }
16909         }
16910         
16911         Roo.debug && Roo.log("EL:");
16912         Roo.debug && Roo.log(el);
16913         Roo.debug && Roo.log("this.parent.el:");
16914         Roo.debug && Roo.log(this.parent.el);
16915         
16916
16917         // altertive root elements ??? - we need a better way to indicate these.
16918         var is_alt = Roo.XComponent.is_alt ||
16919                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16920                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16921                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16922         
16923         
16924         
16925         if (!this.parent && is_alt) {
16926             //el = Roo.get(document.body);
16927             this.parent = { el : true };
16928         }
16929             
16930             
16931         
16932         if (!this.parent) {
16933             
16934             Roo.debug && Roo.log("no parent - creating one");
16935             
16936             el = el ? Roo.get(el) : false;      
16937             
16938             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16939                 
16940                 this.parent =  {
16941                     el : new Roo.bootstrap.layout.Border({
16942                         el: el || document.body,
16943                     
16944                         center: {
16945                             titlebar: false,
16946                             autoScroll:false,
16947                             closeOnTab: true,
16948                             tabPosition: 'top',
16949                              //resizeTabs: true,
16950                             alwaysShowTabs: false,
16951                             hideTabs: true,
16952                             minTabWidth: 140,
16953                             overflow: 'visible'
16954                          }
16955                      })
16956                 };
16957             } else {
16958             
16959                 // it's a top level one..
16960                 this.parent =  {
16961                     el : new Roo.BorderLayout(el || document.body, {
16962                         center: {
16963                             titlebar: false,
16964                             autoScroll:false,
16965                             closeOnTab: true,
16966                             tabPosition: 'top',
16967                              //resizeTabs: true,
16968                             alwaysShowTabs: el && hp? false :  true,
16969                             hideTabs: el || !hp ? true :  false,
16970                             minTabWidth: 140
16971                          }
16972                     })
16973                 };
16974             }
16975         }
16976         
16977         if (!this.parent.el) {
16978                 // probably an old style ctor, which has been disabled.
16979                 return;
16980
16981         }
16982                 // The 'tree' method is  '_tree now' 
16983             
16984         tree.region = tree.region || this.region;
16985         var is_body = false;
16986         if (this.parent.el === true) {
16987             // bootstrap... - body..
16988             if (el) {
16989                 tree.el = el;
16990             }
16991             this.parent.el = Roo.factory(tree);
16992             is_body = true;
16993         }
16994         
16995         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16996         this.fireEvent('built', this);
16997         
16998         this.panel = this.el;
16999         this.layout = this.panel.layout;
17000         this.parentLayout = this.parent.layout  || false;  
17001          
17002     }
17003     
17004 });
17005
17006 Roo.apply(Roo.XComponent, {
17007     /**
17008      * @property  hideProgress
17009      * true to disable the building progress bar.. usefull on single page renders.
17010      * @type Boolean
17011      */
17012     hideProgress : false,
17013     /**
17014      * @property  buildCompleted
17015      * True when the builder has completed building the interface.
17016      * @type Boolean
17017      */
17018     buildCompleted : false,
17019      
17020     /**
17021      * @property  topModule
17022      * the upper most module - uses document.element as it's constructor.
17023      * @type Object
17024      */
17025      
17026     topModule  : false,
17027       
17028     /**
17029      * @property  modules
17030      * array of modules to be created by registration system.
17031      * @type {Array} of Roo.XComponent
17032      */
17033     
17034     modules : [],
17035     /**
17036      * @property  elmodules
17037      * array of modules to be created by which use #ID 
17038      * @type {Array} of Roo.XComponent
17039      */
17040      
17041     elmodules : [],
17042
17043      /**
17044      * @property  is_alt
17045      * Is an alternative Root - normally used by bootstrap or other systems,
17046      *    where the top element in the tree can wrap 'body' 
17047      * @type {boolean}  (default false)
17048      */
17049      
17050     is_alt : false,
17051     /**
17052      * @property  build_from_html
17053      * Build elements from html - used by bootstrap HTML stuff 
17054      *    - this is cleared after build is completed
17055      * @type {boolean}    (default false)
17056      */
17057      
17058     build_from_html : false,
17059     /**
17060      * Register components to be built later.
17061      *
17062      * This solves the following issues
17063      * - Building is not done on page load, but after an authentication process has occured.
17064      * - Interface elements are registered on page load
17065      * - Parent Interface elements may not be loaded before child, so this handles that..
17066      * 
17067      *
17068      * example:
17069      * 
17070      * MyApp.register({
17071           order : '000001',
17072           module : 'Pman.Tab.projectMgr',
17073           region : 'center',
17074           parent : 'Pman.layout',
17075           disabled : false,  // or use a function..
17076         })
17077      
17078      * * @param {Object} details about module
17079      */
17080     register : function(obj) {
17081                 
17082         Roo.XComponent.event.fireEvent('register', obj);
17083         switch(typeof(obj.disabled) ) {
17084                 
17085             case 'undefined':
17086                 break;
17087             
17088             case 'function':
17089                 if ( obj.disabled() ) {
17090                         return;
17091                 }
17092                 break;
17093             
17094             default:
17095                 if (obj.disabled || obj.region == '#disabled') {
17096                         return;
17097                 }
17098                 break;
17099         }
17100                 
17101         this.modules.push(obj);
17102          
17103     },
17104     /**
17105      * convert a string to an object..
17106      * eg. 'AAA.BBB' -> finds AAA.BBB
17107
17108      */
17109     
17110     toObject : function(str)
17111     {
17112         if (!str || typeof(str) == 'object') {
17113             return str;
17114         }
17115         if (str.substring(0,1) == '#') {
17116             return str;
17117         }
17118
17119         var ar = str.split('.');
17120         var rt, o;
17121         rt = ar.shift();
17122             /** eval:var:o */
17123         try {
17124             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17125         } catch (e) {
17126             throw "Module not found : " + str;
17127         }
17128         
17129         if (o === false) {
17130             throw "Module not found : " + str;
17131         }
17132         Roo.each(ar, function(e) {
17133             if (typeof(o[e]) == 'undefined') {
17134                 throw "Module not found : " + str;
17135             }
17136             o = o[e];
17137         });
17138         
17139         return o;
17140         
17141     },
17142     
17143     
17144     /**
17145      * move modules into their correct place in the tree..
17146      * 
17147      */
17148     preBuild : function ()
17149     {
17150         var _t = this;
17151         Roo.each(this.modules , function (obj)
17152         {
17153             Roo.XComponent.event.fireEvent('beforebuild', obj);
17154             
17155             var opar = obj.parent;
17156             try { 
17157                 obj.parent = this.toObject(opar);
17158             } catch(e) {
17159                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17160                 return;
17161             }
17162             
17163             if (!obj.parent) {
17164                 Roo.debug && Roo.log("GOT top level module");
17165                 Roo.debug && Roo.log(obj);
17166                 obj.modules = new Roo.util.MixedCollection(false, 
17167                     function(o) { return o.order + '' }
17168                 );
17169                 this.topModule = obj;
17170                 return;
17171             }
17172                         // parent is a string (usually a dom element name..)
17173             if (typeof(obj.parent) == 'string') {
17174                 this.elmodules.push(obj);
17175                 return;
17176             }
17177             if (obj.parent.constructor != Roo.XComponent) {
17178                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17179             }
17180             if (!obj.parent.modules) {
17181                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17182                     function(o) { return o.order + '' }
17183                 );
17184             }
17185             if (obj.parent.disabled) {
17186                 obj.disabled = true;
17187             }
17188             obj.parent.modules.add(obj);
17189         }, this);
17190     },
17191     
17192      /**
17193      * make a list of modules to build.
17194      * @return {Array} list of modules. 
17195      */ 
17196     
17197     buildOrder : function()
17198     {
17199         var _this = this;
17200         var cmp = function(a,b) {   
17201             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17202         };
17203         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17204             throw "No top level modules to build";
17205         }
17206         
17207         // make a flat list in order of modules to build.
17208         var mods = this.topModule ? [ this.topModule ] : [];
17209                 
17210         
17211         // elmodules (is a list of DOM based modules )
17212         Roo.each(this.elmodules, function(e) {
17213             mods.push(e);
17214             if (!this.topModule &&
17215                 typeof(e.parent) == 'string' &&
17216                 e.parent.substring(0,1) == '#' &&
17217                 Roo.get(e.parent.substr(1))
17218                ) {
17219                 
17220                 _this.topModule = e;
17221             }
17222             
17223         });
17224
17225         
17226         // add modules to their parents..
17227         var addMod = function(m) {
17228             Roo.debug && Roo.log("build Order: add: " + m.name);
17229                 
17230             mods.push(m);
17231             if (m.modules && !m.disabled) {
17232                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17233                 m.modules.keySort('ASC',  cmp );
17234                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17235     
17236                 m.modules.each(addMod);
17237             } else {
17238                 Roo.debug && Roo.log("build Order: no child modules");
17239             }
17240             // not sure if this is used any more..
17241             if (m.finalize) {
17242                 m.finalize.name = m.name + " (clean up) ";
17243                 mods.push(m.finalize);
17244             }
17245             
17246         }
17247         if (this.topModule && this.topModule.modules) { 
17248             this.topModule.modules.keySort('ASC',  cmp );
17249             this.topModule.modules.each(addMod);
17250         } 
17251         return mods;
17252     },
17253     
17254      /**
17255      * Build the registered modules.
17256      * @param {Object} parent element.
17257      * @param {Function} optional method to call after module has been added.
17258      * 
17259      */ 
17260    
17261     build : function(opts) 
17262     {
17263         
17264         if (typeof(opts) != 'undefined') {
17265             Roo.apply(this,opts);
17266         }
17267         
17268         this.preBuild();
17269         var mods = this.buildOrder();
17270       
17271         //this.allmods = mods;
17272         //Roo.debug && Roo.log(mods);
17273         //return;
17274         if (!mods.length) { // should not happen
17275             throw "NO modules!!!";
17276         }
17277         
17278         
17279         var msg = "Building Interface...";
17280         // flash it up as modal - so we store the mask!?
17281         if (!this.hideProgress && Roo.MessageBox) {
17282             Roo.MessageBox.show({ title: 'loading' });
17283             Roo.MessageBox.show({
17284                title: "Please wait...",
17285                msg: msg,
17286                width:450,
17287                progress:true,
17288                buttons : false,
17289                closable:false,
17290                modal: false
17291               
17292             });
17293         }
17294         var total = mods.length;
17295         
17296         var _this = this;
17297         var progressRun = function() {
17298             if (!mods.length) {
17299                 Roo.debug && Roo.log('hide?');
17300                 if (!this.hideProgress && Roo.MessageBox) {
17301                     Roo.MessageBox.hide();
17302                 }
17303                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17304                 
17305                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17306                 
17307                 // THE END...
17308                 return false;   
17309             }
17310             
17311             var m = mods.shift();
17312             
17313             
17314             Roo.debug && Roo.log(m);
17315             // not sure if this is supported any more.. - modules that are are just function
17316             if (typeof(m) == 'function') { 
17317                 m.call(this);
17318                 return progressRun.defer(10, _this);
17319             } 
17320             
17321             
17322             msg = "Building Interface " + (total  - mods.length) + 
17323                     " of " + total + 
17324                     (m.name ? (' - ' + m.name) : '');
17325                         Roo.debug && Roo.log(msg);
17326             if (!_this.hideProgress &&  Roo.MessageBox) { 
17327                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17328             }
17329             
17330          
17331             // is the module disabled?
17332             var disabled = (typeof(m.disabled) == 'function') ?
17333                 m.disabled.call(m.module.disabled) : m.disabled;    
17334             
17335             
17336             if (disabled) {
17337                 return progressRun(); // we do not update the display!
17338             }
17339             
17340             // now build 
17341             
17342                         
17343                         
17344             m.render();
17345             // it's 10 on top level, and 1 on others??? why...
17346             return progressRun.defer(10, _this);
17347              
17348         }
17349         progressRun.defer(1, _this);
17350      
17351         
17352         
17353     },
17354     /**
17355      * Overlay a set of modified strings onto a component
17356      * This is dependant on our builder exporting the strings and 'named strings' elements.
17357      * 
17358      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17359      * @param {Object} associative array of 'named' string and it's new value.
17360      * 
17361      */
17362         overlayStrings : function( component, strings )
17363     {
17364         if (typeof(component['_named_strings']) == 'undefined') {
17365             throw "ERROR: component does not have _named_strings";
17366         }
17367         for ( var k in strings ) {
17368             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17369             if (md !== false) {
17370                 component['_strings'][md] = strings[k];
17371             } else {
17372                 Roo.log('could not find named string: ' + k + ' in');
17373                 Roo.log(component);
17374             }
17375             
17376         }
17377         
17378     },
17379     
17380         
17381         /**
17382          * Event Object.
17383          *
17384          *
17385          */
17386         event: false, 
17387     /**
17388          * wrapper for event.on - aliased later..  
17389          * Typically use to register a event handler for register:
17390          *
17391          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17392          *
17393          */
17394     on : false
17395    
17396     
17397     
17398 });
17399
17400 Roo.XComponent.event = new Roo.util.Observable({
17401                 events : { 
17402                         /**
17403                          * @event register
17404                          * Fires when an Component is registered,
17405                          * set the disable property on the Component to stop registration.
17406                          * @param {Roo.XComponent} c the component being registerd.
17407                          * 
17408                          */
17409                         'register' : true,
17410             /**
17411                          * @event beforebuild
17412                          * Fires before each Component is built
17413                          * can be used to apply permissions.
17414                          * @param {Roo.XComponent} c the component being registerd.
17415                          * 
17416                          */
17417                         'beforebuild' : true,
17418                         /**
17419                          * @event buildcomplete
17420                          * Fires on the top level element when all elements have been built
17421                          * @param {Roo.XComponent} the top level component.
17422                          */
17423                         'buildcomplete' : true
17424                         
17425                 }
17426 });
17427
17428 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17429  //
17430  /**
17431  * marked - a markdown parser
17432  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17433  * https://github.com/chjj/marked
17434  */
17435
17436
17437 /**
17438  *
17439  * Roo.Markdown - is a very crude wrapper around marked..
17440  *
17441  * usage:
17442  * 
17443  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17444  * 
17445  * Note: move the sample code to the bottom of this
17446  * file before uncommenting it.
17447  *
17448  */
17449
17450 Roo.Markdown = {};
17451 Roo.Markdown.toHtml = function(text) {
17452     
17453     var c = new Roo.Markdown.marked.setOptions({
17454             renderer: new Roo.Markdown.marked.Renderer(),
17455             gfm: true,
17456             tables: true,
17457             breaks: false,
17458             pedantic: false,
17459             sanitize: false,
17460             smartLists: true,
17461             smartypants: false
17462           });
17463     // A FEW HACKS!!?
17464     
17465     text = text.replace(/\\\n/g,' ');
17466     return Roo.Markdown.marked(text);
17467 };
17468 //
17469 // converter
17470 //
17471 // Wraps all "globals" so that the only thing
17472 // exposed is makeHtml().
17473 //
17474 (function() {
17475     
17476      /**
17477          * eval:var:escape
17478          * eval:var:unescape
17479          * eval:var:replace
17480          */
17481       
17482     /**
17483      * Helpers
17484      */
17485     
17486     var escape = function (html, encode) {
17487       return html
17488         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17489         .replace(/</g, '&lt;')
17490         .replace(/>/g, '&gt;')
17491         .replace(/"/g, '&quot;')
17492         .replace(/'/g, '&#39;');
17493     }
17494     
17495     var unescape = function (html) {
17496         // explicitly match decimal, hex, and named HTML entities 
17497       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17498         n = n.toLowerCase();
17499         if (n === 'colon') { return ':'; }
17500         if (n.charAt(0) === '#') {
17501           return n.charAt(1) === 'x'
17502             ? String.fromCharCode(parseInt(n.substring(2), 16))
17503             : String.fromCharCode(+n.substring(1));
17504         }
17505         return '';
17506       });
17507     }
17508     
17509     var replace = function (regex, opt) {
17510       regex = regex.source;
17511       opt = opt || '';
17512       return function self(name, val) {
17513         if (!name) { return new RegExp(regex, opt); }
17514         val = val.source || val;
17515         val = val.replace(/(^|[^\[])\^/g, '$1');
17516         regex = regex.replace(name, val);
17517         return self;
17518       };
17519     }
17520
17521
17522          /**
17523          * eval:var:noop
17524     */
17525     var noop = function () {}
17526     noop.exec = noop;
17527     
17528          /**
17529          * eval:var:merge
17530     */
17531     var merge = function (obj) {
17532       var i = 1
17533         , target
17534         , key;
17535     
17536       for (; i < arguments.length; i++) {
17537         target = arguments[i];
17538         for (key in target) {
17539           if (Object.prototype.hasOwnProperty.call(target, key)) {
17540             obj[key] = target[key];
17541           }
17542         }
17543       }
17544     
17545       return obj;
17546     }
17547     
17548     
17549     /**
17550      * Block-Level Grammar
17551      */
17552     
17553     
17554     
17555     
17556     var block = {
17557       newline: /^\n+/,
17558       code: /^( {4}[^\n]+\n*)+/,
17559       fences: noop,
17560       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17561       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17562       nptable: noop,
17563       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17564       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17565       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17566       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17567       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17568       table: noop,
17569       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17570       text: /^[^\n]+/
17571     };
17572     
17573     block.bullet = /(?:[*+-]|\d+\.)/;
17574     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17575     block.item = replace(block.item, 'gm')
17576       (/bull/g, block.bullet)
17577       ();
17578     
17579     block.list = replace(block.list)
17580       (/bull/g, block.bullet)
17581       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17582       ('def', '\\n+(?=' + block.def.source + ')')
17583       ();
17584     
17585     block.blockquote = replace(block.blockquote)
17586       ('def', block.def)
17587       ();
17588     
17589     block._tag = '(?!(?:'
17590       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17591       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17592       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17593     
17594     block.html = replace(block.html)
17595       ('comment', /<!--[\s\S]*?-->/)
17596       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17597       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17598       (/tag/g, block._tag)
17599       ();
17600     
17601     block.paragraph = replace(block.paragraph)
17602       ('hr', block.hr)
17603       ('heading', block.heading)
17604       ('lheading', block.lheading)
17605       ('blockquote', block.blockquote)
17606       ('tag', '<' + block._tag)
17607       ('def', block.def)
17608       ();
17609     
17610     /**
17611      * Normal Block Grammar
17612      */
17613     
17614     block.normal = merge({}, block);
17615     
17616     /**
17617      * GFM Block Grammar
17618      */
17619     
17620     block.gfm = merge({}, block.normal, {
17621       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17622       paragraph: /^/,
17623       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17624     });
17625     
17626     block.gfm.paragraph = replace(block.paragraph)
17627       ('(?!', '(?!'
17628         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17629         + block.list.source.replace('\\1', '\\3') + '|')
17630       ();
17631     
17632     /**
17633      * GFM + Tables Block Grammar
17634      */
17635     
17636     block.tables = merge({}, block.gfm, {
17637       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17638       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17639     });
17640     
17641     /**
17642      * Block Lexer
17643      */
17644     
17645     var Lexer = function (options) {
17646       this.tokens = [];
17647       this.tokens.links = {};
17648       this.options = options || marked.defaults;
17649       this.rules = block.normal;
17650     
17651       if (this.options.gfm) {
17652         if (this.options.tables) {
17653           this.rules = block.tables;
17654         } else {
17655           this.rules = block.gfm;
17656         }
17657       }
17658     }
17659     
17660     /**
17661      * Expose Block Rules
17662      */
17663     
17664     Lexer.rules = block;
17665     
17666     /**
17667      * Static Lex Method
17668      */
17669     
17670     Lexer.lex = function(src, options) {
17671       var lexer = new Lexer(options);
17672       return lexer.lex(src);
17673     };
17674     
17675     /**
17676      * Preprocessing
17677      */
17678     
17679     Lexer.prototype.lex = function(src) {
17680       src = src
17681         .replace(/\r\n|\r/g, '\n')
17682         .replace(/\t/g, '    ')
17683         .replace(/\u00a0/g, ' ')
17684         .replace(/\u2424/g, '\n');
17685     
17686       return this.token(src, true);
17687     };
17688     
17689     /**
17690      * Lexing
17691      */
17692     
17693     Lexer.prototype.token = function(src, top, bq) {
17694       var src = src.replace(/^ +$/gm, '')
17695         , next
17696         , loose
17697         , cap
17698         , bull
17699         , b
17700         , item
17701         , space
17702         , i
17703         , l;
17704     
17705       while (src) {
17706         // newline
17707         if (cap = this.rules.newline.exec(src)) {
17708           src = src.substring(cap[0].length);
17709           if (cap[0].length > 1) {
17710             this.tokens.push({
17711               type: 'space'
17712             });
17713           }
17714         }
17715     
17716         // code
17717         if (cap = this.rules.code.exec(src)) {
17718           src = src.substring(cap[0].length);
17719           cap = cap[0].replace(/^ {4}/gm, '');
17720           this.tokens.push({
17721             type: 'code',
17722             text: !this.options.pedantic
17723               ? cap.replace(/\n+$/, '')
17724               : cap
17725           });
17726           continue;
17727         }
17728     
17729         // fences (gfm)
17730         if (cap = this.rules.fences.exec(src)) {
17731           src = src.substring(cap[0].length);
17732           this.tokens.push({
17733             type: 'code',
17734             lang: cap[2],
17735             text: cap[3] || ''
17736           });
17737           continue;
17738         }
17739     
17740         // heading
17741         if (cap = this.rules.heading.exec(src)) {
17742           src = src.substring(cap[0].length);
17743           this.tokens.push({
17744             type: 'heading',
17745             depth: cap[1].length,
17746             text: cap[2]
17747           });
17748           continue;
17749         }
17750     
17751         // table no leading pipe (gfm)
17752         if (top && (cap = this.rules.nptable.exec(src))) {
17753           src = src.substring(cap[0].length);
17754     
17755           item = {
17756             type: 'table',
17757             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17758             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17759             cells: cap[3].replace(/\n$/, '').split('\n')
17760           };
17761     
17762           for (i = 0; i < item.align.length; i++) {
17763             if (/^ *-+: *$/.test(item.align[i])) {
17764               item.align[i] = 'right';
17765             } else if (/^ *:-+: *$/.test(item.align[i])) {
17766               item.align[i] = 'center';
17767             } else if (/^ *:-+ *$/.test(item.align[i])) {
17768               item.align[i] = 'left';
17769             } else {
17770               item.align[i] = null;
17771             }
17772           }
17773     
17774           for (i = 0; i < item.cells.length; i++) {
17775             item.cells[i] = item.cells[i].split(/ *\| */);
17776           }
17777     
17778           this.tokens.push(item);
17779     
17780           continue;
17781         }
17782     
17783         // lheading
17784         if (cap = this.rules.lheading.exec(src)) {
17785           src = src.substring(cap[0].length);
17786           this.tokens.push({
17787             type: 'heading',
17788             depth: cap[2] === '=' ? 1 : 2,
17789             text: cap[1]
17790           });
17791           continue;
17792         }
17793     
17794         // hr
17795         if (cap = this.rules.hr.exec(src)) {
17796           src = src.substring(cap[0].length);
17797           this.tokens.push({
17798             type: 'hr'
17799           });
17800           continue;
17801         }
17802     
17803         // blockquote
17804         if (cap = this.rules.blockquote.exec(src)) {
17805           src = src.substring(cap[0].length);
17806     
17807           this.tokens.push({
17808             type: 'blockquote_start'
17809           });
17810     
17811           cap = cap[0].replace(/^ *> ?/gm, '');
17812     
17813           // Pass `top` to keep the current
17814           // "toplevel" state. This is exactly
17815           // how markdown.pl works.
17816           this.token(cap, top, true);
17817     
17818           this.tokens.push({
17819             type: 'blockquote_end'
17820           });
17821     
17822           continue;
17823         }
17824     
17825         // list
17826         if (cap = this.rules.list.exec(src)) {
17827           src = src.substring(cap[0].length);
17828           bull = cap[2];
17829     
17830           this.tokens.push({
17831             type: 'list_start',
17832             ordered: bull.length > 1
17833           });
17834     
17835           // Get each top-level item.
17836           cap = cap[0].match(this.rules.item);
17837     
17838           next = false;
17839           l = cap.length;
17840           i = 0;
17841     
17842           for (; i < l; i++) {
17843             item = cap[i];
17844     
17845             // Remove the list item's bullet
17846             // so it is seen as the next token.
17847             space = item.length;
17848             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17849     
17850             // Outdent whatever the
17851             // list item contains. Hacky.
17852             if (~item.indexOf('\n ')) {
17853               space -= item.length;
17854               item = !this.options.pedantic
17855                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17856                 : item.replace(/^ {1,4}/gm, '');
17857             }
17858     
17859             // Determine whether the next list item belongs here.
17860             // Backpedal if it does not belong in this list.
17861             if (this.options.smartLists && i !== l - 1) {
17862               b = block.bullet.exec(cap[i + 1])[0];
17863               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17864                 src = cap.slice(i + 1).join('\n') + src;
17865                 i = l - 1;
17866               }
17867             }
17868     
17869             // Determine whether item is loose or not.
17870             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17871             // for discount behavior.
17872             loose = next || /\n\n(?!\s*$)/.test(item);
17873             if (i !== l - 1) {
17874               next = item.charAt(item.length - 1) === '\n';
17875               if (!loose) { loose = next; }
17876             }
17877     
17878             this.tokens.push({
17879               type: loose
17880                 ? 'loose_item_start'
17881                 : 'list_item_start'
17882             });
17883     
17884             // Recurse.
17885             this.token(item, false, bq);
17886     
17887             this.tokens.push({
17888               type: 'list_item_end'
17889             });
17890           }
17891     
17892           this.tokens.push({
17893             type: 'list_end'
17894           });
17895     
17896           continue;
17897         }
17898     
17899         // html
17900         if (cap = this.rules.html.exec(src)) {
17901           src = src.substring(cap[0].length);
17902           this.tokens.push({
17903             type: this.options.sanitize
17904               ? 'paragraph'
17905               : 'html',
17906             pre: !this.options.sanitizer
17907               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17908             text: cap[0]
17909           });
17910           continue;
17911         }
17912     
17913         // def
17914         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17915           src = src.substring(cap[0].length);
17916           this.tokens.links[cap[1].toLowerCase()] = {
17917             href: cap[2],
17918             title: cap[3]
17919           };
17920           continue;
17921         }
17922     
17923         // table (gfm)
17924         if (top && (cap = this.rules.table.exec(src))) {
17925           src = src.substring(cap[0].length);
17926     
17927           item = {
17928             type: 'table',
17929             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17930             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17931             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17932           };
17933     
17934           for (i = 0; i < item.align.length; i++) {
17935             if (/^ *-+: *$/.test(item.align[i])) {
17936               item.align[i] = 'right';
17937             } else if (/^ *:-+: *$/.test(item.align[i])) {
17938               item.align[i] = 'center';
17939             } else if (/^ *:-+ *$/.test(item.align[i])) {
17940               item.align[i] = 'left';
17941             } else {
17942               item.align[i] = null;
17943             }
17944           }
17945     
17946           for (i = 0; i < item.cells.length; i++) {
17947             item.cells[i] = item.cells[i]
17948               .replace(/^ *\| *| *\| *$/g, '')
17949               .split(/ *\| */);
17950           }
17951     
17952           this.tokens.push(item);
17953     
17954           continue;
17955         }
17956     
17957         // top-level paragraph
17958         if (top && (cap = this.rules.paragraph.exec(src))) {
17959           src = src.substring(cap[0].length);
17960           this.tokens.push({
17961             type: 'paragraph',
17962             text: cap[1].charAt(cap[1].length - 1) === '\n'
17963               ? cap[1].slice(0, -1)
17964               : cap[1]
17965           });
17966           continue;
17967         }
17968     
17969         // text
17970         if (cap = this.rules.text.exec(src)) {
17971           // Top-level should never reach here.
17972           src = src.substring(cap[0].length);
17973           this.tokens.push({
17974             type: 'text',
17975             text: cap[0]
17976           });
17977           continue;
17978         }
17979     
17980         if (src) {
17981           throw new
17982             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17983         }
17984       }
17985     
17986       return this.tokens;
17987     };
17988     
17989     /**
17990      * Inline-Level Grammar
17991      */
17992     
17993     var inline = {
17994       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17995       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17996       url: noop,
17997       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17998       link: /^!?\[(inside)\]\(href\)/,
17999       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
18000       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
18001       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
18002       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
18003       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
18004       br: /^ {2,}\n(?!\s*$)/,
18005       del: noop,
18006       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
18007     };
18008     
18009     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
18010     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
18011     
18012     inline.link = replace(inline.link)
18013       ('inside', inline._inside)
18014       ('href', inline._href)
18015       ();
18016     
18017     inline.reflink = replace(inline.reflink)
18018       ('inside', inline._inside)
18019       ();
18020     
18021     /**
18022      * Normal Inline Grammar
18023      */
18024     
18025     inline.normal = merge({}, inline);
18026     
18027     /**
18028      * Pedantic Inline Grammar
18029      */
18030     
18031     inline.pedantic = merge({}, inline.normal, {
18032       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
18033       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
18034     });
18035     
18036     /**
18037      * GFM Inline Grammar
18038      */
18039     
18040     inline.gfm = merge({}, inline.normal, {
18041       escape: replace(inline.escape)('])', '~|])')(),
18042       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
18043       del: /^~~(?=\S)([\s\S]*?\S)~~/,
18044       text: replace(inline.text)
18045         (']|', '~]|')
18046         ('|', '|https?://|')
18047         ()
18048     });
18049     
18050     /**
18051      * GFM + Line Breaks Inline Grammar
18052      */
18053     
18054     inline.breaks = merge({}, inline.gfm, {
18055       br: replace(inline.br)('{2,}', '*')(),
18056       text: replace(inline.gfm.text)('{2,}', '*')()
18057     });
18058     
18059     /**
18060      * Inline Lexer & Compiler
18061      */
18062     
18063     var InlineLexer  = function (links, options) {
18064       this.options = options || marked.defaults;
18065       this.links = links;
18066       this.rules = inline.normal;
18067       this.renderer = this.options.renderer || new Renderer;
18068       this.renderer.options = this.options;
18069     
18070       if (!this.links) {
18071         throw new
18072           Error('Tokens array requires a `links` property.');
18073       }
18074     
18075       if (this.options.gfm) {
18076         if (this.options.breaks) {
18077           this.rules = inline.breaks;
18078         } else {
18079           this.rules = inline.gfm;
18080         }
18081       } else if (this.options.pedantic) {
18082         this.rules = inline.pedantic;
18083       }
18084     }
18085     
18086     /**
18087      * Expose Inline Rules
18088      */
18089     
18090     InlineLexer.rules = inline;
18091     
18092     /**
18093      * Static Lexing/Compiling Method
18094      */
18095     
18096     InlineLexer.output = function(src, links, options) {
18097       var inline = new InlineLexer(links, options);
18098       return inline.output(src);
18099     };
18100     
18101     /**
18102      * Lexing/Compiling
18103      */
18104     
18105     InlineLexer.prototype.output = function(src) {
18106       var out = ''
18107         , link
18108         , text
18109         , href
18110         , cap;
18111     
18112       while (src) {
18113         // escape
18114         if (cap = this.rules.escape.exec(src)) {
18115           src = src.substring(cap[0].length);
18116           out += cap[1];
18117           continue;
18118         }
18119     
18120         // autolink
18121         if (cap = this.rules.autolink.exec(src)) {
18122           src = src.substring(cap[0].length);
18123           if (cap[2] === '@') {
18124             text = cap[1].charAt(6) === ':'
18125               ? this.mangle(cap[1].substring(7))
18126               : this.mangle(cap[1]);
18127             href = this.mangle('mailto:') + text;
18128           } else {
18129             text = escape(cap[1]);
18130             href = text;
18131           }
18132           out += this.renderer.link(href, null, text);
18133           continue;
18134         }
18135     
18136         // url (gfm)
18137         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18138           src = src.substring(cap[0].length);
18139           text = escape(cap[1]);
18140           href = text;
18141           out += this.renderer.link(href, null, text);
18142           continue;
18143         }
18144     
18145         // tag
18146         if (cap = this.rules.tag.exec(src)) {
18147           if (!this.inLink && /^<a /i.test(cap[0])) {
18148             this.inLink = true;
18149           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18150             this.inLink = false;
18151           }
18152           src = src.substring(cap[0].length);
18153           out += this.options.sanitize
18154             ? this.options.sanitizer
18155               ? this.options.sanitizer(cap[0])
18156               : escape(cap[0])
18157             : cap[0];
18158           continue;
18159         }
18160     
18161         // link
18162         if (cap = this.rules.link.exec(src)) {
18163           src = src.substring(cap[0].length);
18164           this.inLink = true;
18165           out += this.outputLink(cap, {
18166             href: cap[2],
18167             title: cap[3]
18168           });
18169           this.inLink = false;
18170           continue;
18171         }
18172     
18173         // reflink, nolink
18174         if ((cap = this.rules.reflink.exec(src))
18175             || (cap = this.rules.nolink.exec(src))) {
18176           src = src.substring(cap[0].length);
18177           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18178           link = this.links[link.toLowerCase()];
18179           if (!link || !link.href) {
18180             out += cap[0].charAt(0);
18181             src = cap[0].substring(1) + src;
18182             continue;
18183           }
18184           this.inLink = true;
18185           out += this.outputLink(cap, link);
18186           this.inLink = false;
18187           continue;
18188         }
18189     
18190         // strong
18191         if (cap = this.rules.strong.exec(src)) {
18192           src = src.substring(cap[0].length);
18193           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18194           continue;
18195         }
18196     
18197         // em
18198         if (cap = this.rules.em.exec(src)) {
18199           src = src.substring(cap[0].length);
18200           out += this.renderer.em(this.output(cap[2] || cap[1]));
18201           continue;
18202         }
18203     
18204         // code
18205         if (cap = this.rules.code.exec(src)) {
18206           src = src.substring(cap[0].length);
18207           out += this.renderer.codespan(escape(cap[2], true));
18208           continue;
18209         }
18210     
18211         // br
18212         if (cap = this.rules.br.exec(src)) {
18213           src = src.substring(cap[0].length);
18214           out += this.renderer.br();
18215           continue;
18216         }
18217     
18218         // del (gfm)
18219         if (cap = this.rules.del.exec(src)) {
18220           src = src.substring(cap[0].length);
18221           out += this.renderer.del(this.output(cap[1]));
18222           continue;
18223         }
18224     
18225         // text
18226         if (cap = this.rules.text.exec(src)) {
18227           src = src.substring(cap[0].length);
18228           out += this.renderer.text(escape(this.smartypants(cap[0])));
18229           continue;
18230         }
18231     
18232         if (src) {
18233           throw new
18234             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18235         }
18236       }
18237     
18238       return out;
18239     };
18240     
18241     /**
18242      * Compile Link
18243      */
18244     
18245     InlineLexer.prototype.outputLink = function(cap, link) {
18246       var href = escape(link.href)
18247         , title = link.title ? escape(link.title) : null;
18248     
18249       return cap[0].charAt(0) !== '!'
18250         ? this.renderer.link(href, title, this.output(cap[1]))
18251         : this.renderer.image(href, title, escape(cap[1]));
18252     };
18253     
18254     /**
18255      * Smartypants Transformations
18256      */
18257     
18258     InlineLexer.prototype.smartypants = function(text) {
18259       if (!this.options.smartypants)  { return text; }
18260       return text
18261         // em-dashes
18262         .replace(/---/g, '\u2014')
18263         // en-dashes
18264         .replace(/--/g, '\u2013')
18265         // opening singles
18266         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18267         // closing singles & apostrophes
18268         .replace(/'/g, '\u2019')
18269         // opening doubles
18270         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18271         // closing doubles
18272         .replace(/"/g, '\u201d')
18273         // ellipses
18274         .replace(/\.{3}/g, '\u2026');
18275     };
18276     
18277     /**
18278      * Mangle Links
18279      */
18280     
18281     InlineLexer.prototype.mangle = function(text) {
18282       if (!this.options.mangle) { return text; }
18283       var out = ''
18284         , l = text.length
18285         , i = 0
18286         , ch;
18287     
18288       for (; i < l; i++) {
18289         ch = text.charCodeAt(i);
18290         if (Math.random() > 0.5) {
18291           ch = 'x' + ch.toString(16);
18292         }
18293         out += '&#' + ch + ';';
18294       }
18295     
18296       return out;
18297     };
18298     
18299     /**
18300      * Renderer
18301      */
18302     
18303      /**
18304          * eval:var:Renderer
18305     */
18306     
18307     var Renderer   = function (options) {
18308       this.options = options || {};
18309     }
18310     
18311     Renderer.prototype.code = function(code, lang, escaped) {
18312       if (this.options.highlight) {
18313         var out = this.options.highlight(code, lang);
18314         if (out != null && out !== code) {
18315           escaped = true;
18316           code = out;
18317         }
18318       } else {
18319             // hack!!! - it's already escapeD?
18320             escaped = true;
18321       }
18322     
18323       if (!lang) {
18324         return '<pre><code>'
18325           + (escaped ? code : escape(code, true))
18326           + '\n</code></pre>';
18327       }
18328     
18329       return '<pre><code class="'
18330         + this.options.langPrefix
18331         + escape(lang, true)
18332         + '">'
18333         + (escaped ? code : escape(code, true))
18334         + '\n</code></pre>\n';
18335     };
18336     
18337     Renderer.prototype.blockquote = function(quote) {
18338       return '<blockquote>\n' + quote + '</blockquote>\n';
18339     };
18340     
18341     Renderer.prototype.html = function(html) {
18342       return html;
18343     };
18344     
18345     Renderer.prototype.heading = function(text, level, raw) {
18346       return '<h'
18347         + level
18348         + ' id="'
18349         + this.options.headerPrefix
18350         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18351         + '">'
18352         + text
18353         + '</h'
18354         + level
18355         + '>\n';
18356     };
18357     
18358     Renderer.prototype.hr = function() {
18359       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18360     };
18361     
18362     Renderer.prototype.list = function(body, ordered) {
18363       var type = ordered ? 'ol' : 'ul';
18364       return '<' + type + '>\n' + body + '</' + type + '>\n';
18365     };
18366     
18367     Renderer.prototype.listitem = function(text) {
18368       return '<li>' + text + '</li>\n';
18369     };
18370     
18371     Renderer.prototype.paragraph = function(text) {
18372       return '<p>' + text + '</p>\n';
18373     };
18374     
18375     Renderer.prototype.table = function(header, body) {
18376       return '<table class="table table-striped">\n'
18377         + '<thead>\n'
18378         + header
18379         + '</thead>\n'
18380         + '<tbody>\n'
18381         + body
18382         + '</tbody>\n'
18383         + '</table>\n';
18384     };
18385     
18386     Renderer.prototype.tablerow = function(content) {
18387       return '<tr>\n' + content + '</tr>\n';
18388     };
18389     
18390     Renderer.prototype.tablecell = function(content, flags) {
18391       var type = flags.header ? 'th' : 'td';
18392       var tag = flags.align
18393         ? '<' + type + ' style="text-align:' + flags.align + '">'
18394         : '<' + type + '>';
18395       return tag + content + '</' + type + '>\n';
18396     };
18397     
18398     // span level renderer
18399     Renderer.prototype.strong = function(text) {
18400       return '<strong>' + text + '</strong>';
18401     };
18402     
18403     Renderer.prototype.em = function(text) {
18404       return '<em>' + text + '</em>';
18405     };
18406     
18407     Renderer.prototype.codespan = function(text) {
18408       return '<code>' + text + '</code>';
18409     };
18410     
18411     Renderer.prototype.br = function() {
18412       return this.options.xhtml ? '<br/>' : '<br>';
18413     };
18414     
18415     Renderer.prototype.del = function(text) {
18416       return '<del>' + text + '</del>';
18417     };
18418     
18419     Renderer.prototype.link = function(href, title, text) {
18420       if (this.options.sanitize) {
18421         try {
18422           var prot = decodeURIComponent(unescape(href))
18423             .replace(/[^\w:]/g, '')
18424             .toLowerCase();
18425         } catch (e) {
18426           return '';
18427         }
18428         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18429           return '';
18430         }
18431       }
18432       var out = '<a href="' + href + '"';
18433       if (title) {
18434         out += ' title="' + title + '"';
18435       }
18436       out += '>' + text + '</a>';
18437       return out;
18438     };
18439     
18440     Renderer.prototype.image = function(href, title, text) {
18441       var out = '<img src="' + href + '" alt="' + text + '"';
18442       if (title) {
18443         out += ' title="' + title + '"';
18444       }
18445       out += this.options.xhtml ? '/>' : '>';
18446       return out;
18447     };
18448     
18449     Renderer.prototype.text = function(text) {
18450       return text;
18451     };
18452     
18453     /**
18454      * Parsing & Compiling
18455      */
18456          /**
18457          * eval:var:Parser
18458     */
18459     
18460     var Parser= function (options) {
18461       this.tokens = [];
18462       this.token = null;
18463       this.options = options || marked.defaults;
18464       this.options.renderer = this.options.renderer || new Renderer;
18465       this.renderer = this.options.renderer;
18466       this.renderer.options = this.options;
18467     }
18468     
18469     /**
18470      * Static Parse Method
18471      */
18472     
18473     Parser.parse = function(src, options, renderer) {
18474       var parser = new Parser(options, renderer);
18475       return parser.parse(src);
18476     };
18477     
18478     /**
18479      * Parse Loop
18480      */
18481     
18482     Parser.prototype.parse = function(src) {
18483       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18484       this.tokens = src.reverse();
18485     
18486       var out = '';
18487       while (this.next()) {
18488         out += this.tok();
18489       }
18490     
18491       return out;
18492     };
18493     
18494     /**
18495      * Next Token
18496      */
18497     
18498     Parser.prototype.next = function() {
18499       return this.token = this.tokens.pop();
18500     };
18501     
18502     /**
18503      * Preview Next Token
18504      */
18505     
18506     Parser.prototype.peek = function() {
18507       return this.tokens[this.tokens.length - 1] || 0;
18508     };
18509     
18510     /**
18511      * Parse Text Tokens
18512      */
18513     
18514     Parser.prototype.parseText = function() {
18515       var body = this.token.text;
18516     
18517       while (this.peek().type === 'text') {
18518         body += '\n' + this.next().text;
18519       }
18520     
18521       return this.inline.output(body);
18522     };
18523     
18524     /**
18525      * Parse Current Token
18526      */
18527     
18528     Parser.prototype.tok = function() {
18529       switch (this.token.type) {
18530         case 'space': {
18531           return '';
18532         }
18533         case 'hr': {
18534           return this.renderer.hr();
18535         }
18536         case 'heading': {
18537           return this.renderer.heading(
18538             this.inline.output(this.token.text),
18539             this.token.depth,
18540             this.token.text);
18541         }
18542         case 'code': {
18543           return this.renderer.code(this.token.text,
18544             this.token.lang,
18545             this.token.escaped);
18546         }
18547         case 'table': {
18548           var header = ''
18549             , body = ''
18550             , i
18551             , row
18552             , cell
18553             , flags
18554             , j;
18555     
18556           // header
18557           cell = '';
18558           for (i = 0; i < this.token.header.length; i++) {
18559             flags = { header: true, align: this.token.align[i] };
18560             cell += this.renderer.tablecell(
18561               this.inline.output(this.token.header[i]),
18562               { header: true, align: this.token.align[i] }
18563             );
18564           }
18565           header += this.renderer.tablerow(cell);
18566     
18567           for (i = 0; i < this.token.cells.length; i++) {
18568             row = this.token.cells[i];
18569     
18570             cell = '';
18571             for (j = 0; j < row.length; j++) {
18572               cell += this.renderer.tablecell(
18573                 this.inline.output(row[j]),
18574                 { header: false, align: this.token.align[j] }
18575               );
18576             }
18577     
18578             body += this.renderer.tablerow(cell);
18579           }
18580           return this.renderer.table(header, body);
18581         }
18582         case 'blockquote_start': {
18583           var body = '';
18584     
18585           while (this.next().type !== 'blockquote_end') {
18586             body += this.tok();
18587           }
18588     
18589           return this.renderer.blockquote(body);
18590         }
18591         case 'list_start': {
18592           var body = ''
18593             , ordered = this.token.ordered;
18594     
18595           while (this.next().type !== 'list_end') {
18596             body += this.tok();
18597           }
18598     
18599           return this.renderer.list(body, ordered);
18600         }
18601         case 'list_item_start': {
18602           var body = '';
18603     
18604           while (this.next().type !== 'list_item_end') {
18605             body += this.token.type === 'text'
18606               ? this.parseText()
18607               : this.tok();
18608           }
18609     
18610           return this.renderer.listitem(body);
18611         }
18612         case 'loose_item_start': {
18613           var body = '';
18614     
18615           while (this.next().type !== 'list_item_end') {
18616             body += this.tok();
18617           }
18618     
18619           return this.renderer.listitem(body);
18620         }
18621         case 'html': {
18622           var html = !this.token.pre && !this.options.pedantic
18623             ? this.inline.output(this.token.text)
18624             : this.token.text;
18625           return this.renderer.html(html);
18626         }
18627         case 'paragraph': {
18628           return this.renderer.paragraph(this.inline.output(this.token.text));
18629         }
18630         case 'text': {
18631           return this.renderer.paragraph(this.parseText());
18632         }
18633       }
18634     };
18635   
18636     
18637     /**
18638      * Marked
18639      */
18640          /**
18641          * eval:var:marked
18642     */
18643     var marked = function (src, opt, callback) {
18644       if (callback || typeof opt === 'function') {
18645         if (!callback) {
18646           callback = opt;
18647           opt = null;
18648         }
18649     
18650         opt = merge({}, marked.defaults, opt || {});
18651     
18652         var highlight = opt.highlight
18653           , tokens
18654           , pending
18655           , i = 0;
18656     
18657         try {
18658           tokens = Lexer.lex(src, opt)
18659         } catch (e) {
18660           return callback(e);
18661         }
18662     
18663         pending = tokens.length;
18664          /**
18665          * eval:var:done
18666     */
18667         var done = function(err) {
18668           if (err) {
18669             opt.highlight = highlight;
18670             return callback(err);
18671           }
18672     
18673           var out;
18674     
18675           try {
18676             out = Parser.parse(tokens, opt);
18677           } catch (e) {
18678             err = e;
18679           }
18680     
18681           opt.highlight = highlight;
18682     
18683           return err
18684             ? callback(err)
18685             : callback(null, out);
18686         };
18687     
18688         if (!highlight || highlight.length < 3) {
18689           return done();
18690         }
18691     
18692         delete opt.highlight;
18693     
18694         if (!pending) { return done(); }
18695     
18696         for (; i < tokens.length; i++) {
18697           (function(token) {
18698             if (token.type !== 'code') {
18699               return --pending || done();
18700             }
18701             return highlight(token.text, token.lang, function(err, code) {
18702               if (err) { return done(err); }
18703               if (code == null || code === token.text) {
18704                 return --pending || done();
18705               }
18706               token.text = code;
18707               token.escaped = true;
18708               --pending || done();
18709             });
18710           })(tokens[i]);
18711         }
18712     
18713         return;
18714       }
18715       try {
18716         if (opt) { opt = merge({}, marked.defaults, opt); }
18717         return Parser.parse(Lexer.lex(src, opt), opt);
18718       } catch (e) {
18719         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18720         if ((opt || marked.defaults).silent) {
18721           return '<p>An error occured:</p><pre>'
18722             + escape(e.message + '', true)
18723             + '</pre>';
18724         }
18725         throw e;
18726       }
18727     }
18728     
18729     /**
18730      * Options
18731      */
18732     
18733     marked.options =
18734     marked.setOptions = function(opt) {
18735       merge(marked.defaults, opt);
18736       return marked;
18737     };
18738     
18739     marked.defaults = {
18740       gfm: true,
18741       tables: true,
18742       breaks: false,
18743       pedantic: false,
18744       sanitize: false,
18745       sanitizer: null,
18746       mangle: true,
18747       smartLists: false,
18748       silent: false,
18749       highlight: null,
18750       langPrefix: 'lang-',
18751       smartypants: false,
18752       headerPrefix: '',
18753       renderer: new Renderer,
18754       xhtml: false
18755     };
18756     
18757     /**
18758      * Expose
18759      */
18760     
18761     marked.Parser = Parser;
18762     marked.parser = Parser.parse;
18763     
18764     marked.Renderer = Renderer;
18765     
18766     marked.Lexer = Lexer;
18767     marked.lexer = Lexer.lex;
18768     
18769     marked.InlineLexer = InlineLexer;
18770     marked.inlineLexer = InlineLexer.output;
18771     
18772     marked.parse = marked;
18773     
18774     Roo.Markdown.marked = marked;
18775
18776 })();/*
18777  * Based on:
18778  * Ext JS Library 1.1.1
18779  * Copyright(c) 2006-2007, Ext JS, LLC.
18780  *
18781  * Originally Released Under LGPL - original licence link has changed is not relivant.
18782  *
18783  * Fork - LGPL
18784  * <script type="text/javascript">
18785  */
18786
18787
18788
18789 /*
18790  * These classes are derivatives of the similarly named classes in the YUI Library.
18791  * The original license:
18792  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18793  * Code licensed under the BSD License:
18794  * http://developer.yahoo.net/yui/license.txt
18795  */
18796
18797 (function() {
18798
18799 var Event=Roo.EventManager;
18800 var Dom=Roo.lib.Dom;
18801
18802 /**
18803  * @class Roo.dd.DragDrop
18804  * @extends Roo.util.Observable
18805  * Defines the interface and base operation of items that that can be
18806  * dragged or can be drop targets.  It was designed to be extended, overriding
18807  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18808  * Up to three html elements can be associated with a DragDrop instance:
18809  * <ul>
18810  * <li>linked element: the element that is passed into the constructor.
18811  * This is the element which defines the boundaries for interaction with
18812  * other DragDrop objects.</li>
18813  * <li>handle element(s): The drag operation only occurs if the element that
18814  * was clicked matches a handle element.  By default this is the linked
18815  * element, but there are times that you will want only a portion of the
18816  * linked element to initiate the drag operation, and the setHandleElId()
18817  * method provides a way to define this.</li>
18818  * <li>drag element: this represents the element that would be moved along
18819  * with the cursor during a drag operation.  By default, this is the linked
18820  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18821  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18822  * </li>
18823  * </ul>
18824  * This class should not be instantiated until the onload event to ensure that
18825  * the associated elements are available.
18826  * The following would define a DragDrop obj that would interact with any
18827  * other DragDrop obj in the "group1" group:
18828  * <pre>
18829  *  dd = new Roo.dd.DragDrop("div1", "group1");
18830  * </pre>
18831  * Since none of the event handlers have been implemented, nothing would
18832  * actually happen if you were to run the code above.  Normally you would
18833  * override this class or one of the default implementations, but you can
18834  * also override the methods you want on an instance of the class...
18835  * <pre>
18836  *  dd.onDragDrop = function(e, id) {
18837  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18838  *  }
18839  * </pre>
18840  * @constructor
18841  * @param {String} id of the element that is linked to this instance
18842  * @param {String} sGroup the group of related DragDrop objects
18843  * @param {object} config an object containing configurable attributes
18844  *                Valid properties for DragDrop:
18845  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18846  */
18847 Roo.dd.DragDrop = function(id, sGroup, config) {
18848     if (id) {
18849         this.init(id, sGroup, config);
18850     }
18851     
18852 };
18853
18854 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18855
18856     /**
18857      * The id of the element associated with this object.  This is what we
18858      * refer to as the "linked element" because the size and position of
18859      * this element is used to determine when the drag and drop objects have
18860      * interacted.
18861      * @property id
18862      * @type String
18863      */
18864     id: null,
18865
18866     /**
18867      * Configuration attributes passed into the constructor
18868      * @property config
18869      * @type object
18870      */
18871     config: null,
18872
18873     /**
18874      * The id of the element that will be dragged.  By default this is same
18875      * as the linked element , but could be changed to another element. Ex:
18876      * Roo.dd.DDProxy
18877      * @property dragElId
18878      * @type String
18879      * @private
18880      */
18881     dragElId: null,
18882
18883     /**
18884      * the id of the element that initiates the drag operation.  By default
18885      * this is the linked element, but could be changed to be a child of this
18886      * element.  This lets us do things like only starting the drag when the
18887      * header element within the linked html element is clicked.
18888      * @property handleElId
18889      * @type String
18890      * @private
18891      */
18892     handleElId: null,
18893
18894     /**
18895      * An associative array of HTML tags that will be ignored if clicked.
18896      * @property invalidHandleTypes
18897      * @type {string: string}
18898      */
18899     invalidHandleTypes: null,
18900
18901     /**
18902      * An associative array of ids for elements that will be ignored if clicked
18903      * @property invalidHandleIds
18904      * @type {string: string}
18905      */
18906     invalidHandleIds: null,
18907
18908     /**
18909      * An indexted array of css class names for elements that will be ignored
18910      * if clicked.
18911      * @property invalidHandleClasses
18912      * @type string[]
18913      */
18914     invalidHandleClasses: null,
18915
18916     /**
18917      * The linked element's absolute X position at the time the drag was
18918      * started
18919      * @property startPageX
18920      * @type int
18921      * @private
18922      */
18923     startPageX: 0,
18924
18925     /**
18926      * The linked element's absolute X position at the time the drag was
18927      * started
18928      * @property startPageY
18929      * @type int
18930      * @private
18931      */
18932     startPageY: 0,
18933
18934     /**
18935      * The group defines a logical collection of DragDrop objects that are
18936      * related.  Instances only get events when interacting with other
18937      * DragDrop object in the same group.  This lets us define multiple
18938      * groups using a single DragDrop subclass if we want.
18939      * @property groups
18940      * @type {string: string}
18941      */
18942     groups: null,
18943
18944     /**
18945      * Individual drag/drop instances can be locked.  This will prevent
18946      * onmousedown start drag.
18947      * @property locked
18948      * @type boolean
18949      * @private
18950      */
18951     locked: false,
18952
18953     /**
18954      * Lock this instance
18955      * @method lock
18956      */
18957     lock: function() { this.locked = true; },
18958
18959     /**
18960      * Unlock this instace
18961      * @method unlock
18962      */
18963     unlock: function() { this.locked = false; },
18964
18965     /**
18966      * By default, all insances can be a drop target.  This can be disabled by
18967      * setting isTarget to false.
18968      * @method isTarget
18969      * @type boolean
18970      */
18971     isTarget: true,
18972
18973     /**
18974      * The padding configured for this drag and drop object for calculating
18975      * the drop zone intersection with this object.
18976      * @method padding
18977      * @type int[]
18978      */
18979     padding: null,
18980
18981     /**
18982      * Cached reference to the linked element
18983      * @property _domRef
18984      * @private
18985      */
18986     _domRef: null,
18987
18988     /**
18989      * Internal typeof flag
18990      * @property __ygDragDrop
18991      * @private
18992      */
18993     __ygDragDrop: true,
18994
18995     /**
18996      * Set to true when horizontal contraints are applied
18997      * @property constrainX
18998      * @type boolean
18999      * @private
19000      */
19001     constrainX: false,
19002
19003     /**
19004      * Set to true when vertical contraints are applied
19005      * @property constrainY
19006      * @type boolean
19007      * @private
19008      */
19009     constrainY: false,
19010
19011     /**
19012      * The left constraint
19013      * @property minX
19014      * @type int
19015      * @private
19016      */
19017     minX: 0,
19018
19019     /**
19020      * The right constraint
19021      * @property maxX
19022      * @type int
19023      * @private
19024      */
19025     maxX: 0,
19026
19027     /**
19028      * The up constraint
19029      * @property minY
19030      * @type int
19031      * @type int
19032      * @private
19033      */
19034     minY: 0,
19035
19036     /**
19037      * The down constraint
19038      * @property maxY
19039      * @type int
19040      * @private
19041      */
19042     maxY: 0,
19043
19044     /**
19045      * Maintain offsets when we resetconstraints.  Set to true when you want
19046      * the position of the element relative to its parent to stay the same
19047      * when the page changes
19048      *
19049      * @property maintainOffset
19050      * @type boolean
19051      */
19052     maintainOffset: false,
19053
19054     /**
19055      * Array of pixel locations the element will snap to if we specified a
19056      * horizontal graduation/interval.  This array is generated automatically
19057      * when you define a tick interval.
19058      * @property xTicks
19059      * @type int[]
19060      */
19061     xTicks: null,
19062
19063     /**
19064      * Array of pixel locations the element will snap to if we specified a
19065      * vertical graduation/interval.  This array is generated automatically
19066      * when you define a tick interval.
19067      * @property yTicks
19068      * @type int[]
19069      */
19070     yTicks: null,
19071
19072     /**
19073      * By default the drag and drop instance will only respond to the primary
19074      * button click (left button for a right-handed mouse).  Set to true to
19075      * allow drag and drop to start with any mouse click that is propogated
19076      * by the browser
19077      * @property primaryButtonOnly
19078      * @type boolean
19079      */
19080     primaryButtonOnly: true,
19081
19082     /**
19083      * The availabe property is false until the linked dom element is accessible.
19084      * @property available
19085      * @type boolean
19086      */
19087     available: false,
19088
19089     /**
19090      * By default, drags can only be initiated if the mousedown occurs in the
19091      * region the linked element is.  This is done in part to work around a
19092      * bug in some browsers that mis-report the mousedown if the previous
19093      * mouseup happened outside of the window.  This property is set to true
19094      * if outer handles are defined.
19095      *
19096      * @property hasOuterHandles
19097      * @type boolean
19098      * @default false
19099      */
19100     hasOuterHandles: false,
19101
19102     /**
19103      * Code that executes immediately before the startDrag event
19104      * @method b4StartDrag
19105      * @private
19106      */
19107     b4StartDrag: function(x, y) { },
19108
19109     /**
19110      * Abstract method called after a drag/drop object is clicked
19111      * and the drag or mousedown time thresholds have beeen met.
19112      * @method startDrag
19113      * @param {int} X click location
19114      * @param {int} Y click location
19115      */
19116     startDrag: function(x, y) { /* override this */ },
19117
19118     /**
19119      * Code that executes immediately before the onDrag event
19120      * @method b4Drag
19121      * @private
19122      */
19123     b4Drag: function(e) { },
19124
19125     /**
19126      * Abstract method called during the onMouseMove event while dragging an
19127      * object.
19128      * @method onDrag
19129      * @param {Event} e the mousemove event
19130      */
19131     onDrag: function(e) { /* override this */ },
19132
19133     /**
19134      * Abstract method called when this element fist begins hovering over
19135      * another DragDrop obj
19136      * @method onDragEnter
19137      * @param {Event} e the mousemove event
19138      * @param {String|DragDrop[]} id In POINT mode, the element
19139      * id this is hovering over.  In INTERSECT mode, an array of one or more
19140      * dragdrop items being hovered over.
19141      */
19142     onDragEnter: function(e, id) { /* override this */ },
19143
19144     /**
19145      * Code that executes immediately before the onDragOver event
19146      * @method b4DragOver
19147      * @private
19148      */
19149     b4DragOver: function(e) { },
19150
19151     /**
19152      * Abstract method called when this element is hovering over another
19153      * DragDrop obj
19154      * @method onDragOver
19155      * @param {Event} e the mousemove event
19156      * @param {String|DragDrop[]} id In POINT mode, the element
19157      * id this is hovering over.  In INTERSECT mode, an array of dd items
19158      * being hovered over.
19159      */
19160     onDragOver: function(e, id) { /* override this */ },
19161
19162     /**
19163      * Code that executes immediately before the onDragOut event
19164      * @method b4DragOut
19165      * @private
19166      */
19167     b4DragOut: function(e) { },
19168
19169     /**
19170      * Abstract method called when we are no longer hovering over an element
19171      * @method onDragOut
19172      * @param {Event} e the mousemove event
19173      * @param {String|DragDrop[]} id In POINT mode, the element
19174      * id this was hovering over.  In INTERSECT mode, an array of dd items
19175      * that the mouse is no longer over.
19176      */
19177     onDragOut: function(e, id) { /* override this */ },
19178
19179     /**
19180      * Code that executes immediately before the onDragDrop event
19181      * @method b4DragDrop
19182      * @private
19183      */
19184     b4DragDrop: function(e) { },
19185
19186     /**
19187      * Abstract method called when this item is dropped on another DragDrop
19188      * obj
19189      * @method onDragDrop
19190      * @param {Event} e the mouseup event
19191      * @param {String|DragDrop[]} id In POINT mode, the element
19192      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19193      * was dropped on.
19194      */
19195     onDragDrop: function(e, id) { /* override this */ },
19196
19197     /**
19198      * Abstract method called when this item is dropped on an area with no
19199      * drop target
19200      * @method onInvalidDrop
19201      * @param {Event} e the mouseup event
19202      */
19203     onInvalidDrop: function(e) { /* override this */ },
19204
19205     /**
19206      * Code that executes immediately before the endDrag event
19207      * @method b4EndDrag
19208      * @private
19209      */
19210     b4EndDrag: function(e) { },
19211
19212     /**
19213      * Fired when we are done dragging the object
19214      * @method endDrag
19215      * @param {Event} e the mouseup event
19216      */
19217     endDrag: function(e) { /* override this */ },
19218
19219     /**
19220      * Code executed immediately before the onMouseDown event
19221      * @method b4MouseDown
19222      * @param {Event} e the mousedown event
19223      * @private
19224      */
19225     b4MouseDown: function(e) {  },
19226
19227     /**
19228      * Event handler that fires when a drag/drop obj gets a mousedown
19229      * @method onMouseDown
19230      * @param {Event} e the mousedown event
19231      */
19232     onMouseDown: function(e) { /* override this */ },
19233
19234     /**
19235      * Event handler that fires when a drag/drop obj gets a mouseup
19236      * @method onMouseUp
19237      * @param {Event} e the mouseup event
19238      */
19239     onMouseUp: function(e) { /* override this */ },
19240
19241     /**
19242      * Override the onAvailable method to do what is needed after the initial
19243      * position was determined.
19244      * @method onAvailable
19245      */
19246     onAvailable: function () {
19247     },
19248
19249     /*
19250      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19251      * @type Object
19252      */
19253     defaultPadding : {left:0, right:0, top:0, bottom:0},
19254
19255     /*
19256      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19257  *
19258  * Usage:
19259  <pre><code>
19260  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19261                 { dragElId: "existingProxyDiv" });
19262  dd.startDrag = function(){
19263      this.constrainTo("parent-id");
19264  };
19265  </code></pre>
19266  * Or you can initalize it using the {@link Roo.Element} object:
19267  <pre><code>
19268  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19269      startDrag : function(){
19270          this.constrainTo("parent-id");
19271      }
19272  });
19273  </code></pre>
19274      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19275      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19276      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19277      * an object containing the sides to pad. For example: {right:10, bottom:10}
19278      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19279      */
19280     constrainTo : function(constrainTo, pad, inContent){
19281         if(typeof pad == "number"){
19282             pad = {left: pad, right:pad, top:pad, bottom:pad};
19283         }
19284         pad = pad || this.defaultPadding;
19285         var b = Roo.get(this.getEl()).getBox();
19286         var ce = Roo.get(constrainTo);
19287         var s = ce.getScroll();
19288         var c, cd = ce.dom;
19289         if(cd == document.body){
19290             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19291         }else{
19292             xy = ce.getXY();
19293             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19294         }
19295
19296
19297         var topSpace = b.y - c.y;
19298         var leftSpace = b.x - c.x;
19299
19300         this.resetConstraints();
19301         this.setXConstraint(leftSpace - (pad.left||0), // left
19302                 c.width - leftSpace - b.width - (pad.right||0) //right
19303         );
19304         this.setYConstraint(topSpace - (pad.top||0), //top
19305                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19306         );
19307     },
19308
19309     /**
19310      * Returns a reference to the linked element
19311      * @method getEl
19312      * @return {HTMLElement} the html element
19313      */
19314     getEl: function() {
19315         if (!this._domRef) {
19316             this._domRef = Roo.getDom(this.id);
19317         }
19318
19319         return this._domRef;
19320     },
19321
19322     /**
19323      * Returns a reference to the actual element to drag.  By default this is
19324      * the same as the html element, but it can be assigned to another
19325      * element. An example of this can be found in Roo.dd.DDProxy
19326      * @method getDragEl
19327      * @return {HTMLElement} the html element
19328      */
19329     getDragEl: function() {
19330         return Roo.getDom(this.dragElId);
19331     },
19332
19333     /**
19334      * Sets up the DragDrop object.  Must be called in the constructor of any
19335      * Roo.dd.DragDrop subclass
19336      * @method init
19337      * @param id the id of the linked element
19338      * @param {String} sGroup the group of related items
19339      * @param {object} config configuration attributes
19340      */
19341     init: function(id, sGroup, config) {
19342         this.initTarget(id, sGroup, config);
19343         if (!Roo.isTouch) {
19344             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19345         }
19346         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19347         // Event.on(this.id, "selectstart", Event.preventDefault);
19348     },
19349
19350     /**
19351      * Initializes Targeting functionality only... the object does not
19352      * get a mousedown handler.
19353      * @method initTarget
19354      * @param id the id of the linked element
19355      * @param {String} sGroup the group of related items
19356      * @param {object} config configuration attributes
19357      */
19358     initTarget: function(id, sGroup, config) {
19359
19360         // configuration attributes
19361         this.config = config || {};
19362
19363         // create a local reference to the drag and drop manager
19364         this.DDM = Roo.dd.DDM;
19365         // initialize the groups array
19366         this.groups = {};
19367
19368         // assume that we have an element reference instead of an id if the
19369         // parameter is not a string
19370         if (typeof id !== "string") {
19371             id = Roo.id(id);
19372         }
19373
19374         // set the id
19375         this.id = id;
19376
19377         // add to an interaction group
19378         this.addToGroup((sGroup) ? sGroup : "default");
19379
19380         // We don't want to register this as the handle with the manager
19381         // so we just set the id rather than calling the setter.
19382         this.handleElId = id;
19383
19384         // the linked element is the element that gets dragged by default
19385         this.setDragElId(id);
19386
19387         // by default, clicked anchors will not start drag operations.
19388         this.invalidHandleTypes = { A: "A" };
19389         this.invalidHandleIds = {};
19390         this.invalidHandleClasses = [];
19391
19392         this.applyConfig();
19393
19394         this.handleOnAvailable();
19395     },
19396
19397     /**
19398      * Applies the configuration parameters that were passed into the constructor.
19399      * This is supposed to happen at each level through the inheritance chain.  So
19400      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19401      * DragDrop in order to get all of the parameters that are available in
19402      * each object.
19403      * @method applyConfig
19404      */
19405     applyConfig: function() {
19406
19407         // configurable properties:
19408         //    padding, isTarget, maintainOffset, primaryButtonOnly
19409         this.padding           = this.config.padding || [0, 0, 0, 0];
19410         this.isTarget          = (this.config.isTarget !== false);
19411         this.maintainOffset    = (this.config.maintainOffset);
19412         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19413
19414     },
19415
19416     /**
19417      * Executed when the linked element is available
19418      * @method handleOnAvailable
19419      * @private
19420      */
19421     handleOnAvailable: function() {
19422         this.available = true;
19423         this.resetConstraints();
19424         this.onAvailable();
19425     },
19426
19427      /**
19428      * Configures the padding for the target zone in px.  Effectively expands
19429      * (or reduces) the virtual object size for targeting calculations.
19430      * Supports css-style shorthand; if only one parameter is passed, all sides
19431      * will have that padding, and if only two are passed, the top and bottom
19432      * will have the first param, the left and right the second.
19433      * @method setPadding
19434      * @param {int} iTop    Top pad
19435      * @param {int} iRight  Right pad
19436      * @param {int} iBot    Bot pad
19437      * @param {int} iLeft   Left pad
19438      */
19439     setPadding: function(iTop, iRight, iBot, iLeft) {
19440         // this.padding = [iLeft, iRight, iTop, iBot];
19441         if (!iRight && 0 !== iRight) {
19442             this.padding = [iTop, iTop, iTop, iTop];
19443         } else if (!iBot && 0 !== iBot) {
19444             this.padding = [iTop, iRight, iTop, iRight];
19445         } else {
19446             this.padding = [iTop, iRight, iBot, iLeft];
19447         }
19448     },
19449
19450     /**
19451      * Stores the initial placement of the linked element.
19452      * @method setInitialPosition
19453      * @param {int} diffX   the X offset, default 0
19454      * @param {int} diffY   the Y offset, default 0
19455      */
19456     setInitPosition: function(diffX, diffY) {
19457         var el = this.getEl();
19458
19459         if (!this.DDM.verifyEl(el)) {
19460             return;
19461         }
19462
19463         var dx = diffX || 0;
19464         var dy = diffY || 0;
19465
19466         var p = Dom.getXY( el );
19467
19468         this.initPageX = p[0] - dx;
19469         this.initPageY = p[1] - dy;
19470
19471         this.lastPageX = p[0];
19472         this.lastPageY = p[1];
19473
19474
19475         this.setStartPosition(p);
19476     },
19477
19478     /**
19479      * Sets the start position of the element.  This is set when the obj
19480      * is initialized, the reset when a drag is started.
19481      * @method setStartPosition
19482      * @param pos current position (from previous lookup)
19483      * @private
19484      */
19485     setStartPosition: function(pos) {
19486         var p = pos || Dom.getXY( this.getEl() );
19487         this.deltaSetXY = null;
19488
19489         this.startPageX = p[0];
19490         this.startPageY = p[1];
19491     },
19492
19493     /**
19494      * Add this instance to a group of related drag/drop objects.  All
19495      * instances belong to at least one group, and can belong to as many
19496      * groups as needed.
19497      * @method addToGroup
19498      * @param sGroup {string} the name of the group
19499      */
19500     addToGroup: function(sGroup) {
19501         this.groups[sGroup] = true;
19502         this.DDM.regDragDrop(this, sGroup);
19503     },
19504
19505     /**
19506      * Remove's this instance from the supplied interaction group
19507      * @method removeFromGroup
19508      * @param {string}  sGroup  The group to drop
19509      */
19510     removeFromGroup: function(sGroup) {
19511         if (this.groups[sGroup]) {
19512             delete this.groups[sGroup];
19513         }
19514
19515         this.DDM.removeDDFromGroup(this, sGroup);
19516     },
19517
19518     /**
19519      * Allows you to specify that an element other than the linked element
19520      * will be moved with the cursor during a drag
19521      * @method setDragElId
19522      * @param id {string} the id of the element that will be used to initiate the drag
19523      */
19524     setDragElId: function(id) {
19525         this.dragElId = id;
19526     },
19527
19528     /**
19529      * Allows you to specify a child of the linked element that should be
19530      * used to initiate the drag operation.  An example of this would be if
19531      * you have a content div with text and links.  Clicking anywhere in the
19532      * content area would normally start the drag operation.  Use this method
19533      * to specify that an element inside of the content div is the element
19534      * that starts the drag operation.
19535      * @method setHandleElId
19536      * @param id {string} the id of the element that will be used to
19537      * initiate the drag.
19538      */
19539     setHandleElId: function(id) {
19540         if (typeof id !== "string") {
19541             id = Roo.id(id);
19542         }
19543         this.handleElId = id;
19544         this.DDM.regHandle(this.id, id);
19545     },
19546
19547     /**
19548      * Allows you to set an element outside of the linked element as a drag
19549      * handle
19550      * @method setOuterHandleElId
19551      * @param id the id of the element that will be used to initiate the drag
19552      */
19553     setOuterHandleElId: function(id) {
19554         if (typeof id !== "string") {
19555             id = Roo.id(id);
19556         }
19557         Event.on(id, "mousedown",
19558                 this.handleMouseDown, this);
19559         this.setHandleElId(id);
19560
19561         this.hasOuterHandles = true;
19562     },
19563
19564     /**
19565      * Remove all drag and drop hooks for this element
19566      * @method unreg
19567      */
19568     unreg: function() {
19569         Event.un(this.id, "mousedown",
19570                 this.handleMouseDown);
19571         Event.un(this.id, "touchstart",
19572                 this.handleMouseDown);
19573         this._domRef = null;
19574         this.DDM._remove(this);
19575     },
19576
19577     destroy : function(){
19578         this.unreg();
19579     },
19580
19581     /**
19582      * Returns true if this instance is locked, or the drag drop mgr is locked
19583      * (meaning that all drag/drop is disabled on the page.)
19584      * @method isLocked
19585      * @return {boolean} true if this obj or all drag/drop is locked, else
19586      * false
19587      */
19588     isLocked: function() {
19589         return (this.DDM.isLocked() || this.locked);
19590     },
19591
19592     /**
19593      * Fired when this object is clicked
19594      * @method handleMouseDown
19595      * @param {Event} e
19596      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19597      * @private
19598      */
19599     handleMouseDown: function(e, oDD){
19600      
19601         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19602             //Roo.log('not touch/ button !=0');
19603             return;
19604         }
19605         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19606             return; // double touch..
19607         }
19608         
19609
19610         if (this.isLocked()) {
19611             //Roo.log('locked');
19612             return;
19613         }
19614
19615         this.DDM.refreshCache(this.groups);
19616 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19617         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19618         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19619             //Roo.log('no outer handes or not over target');
19620                 // do nothing.
19621         } else {
19622 //            Roo.log('check validator');
19623             if (this.clickValidator(e)) {
19624 //                Roo.log('validate success');
19625                 // set the initial element position
19626                 this.setStartPosition();
19627
19628
19629                 this.b4MouseDown(e);
19630                 this.onMouseDown(e);
19631
19632                 this.DDM.handleMouseDown(e, this);
19633
19634                 this.DDM.stopEvent(e);
19635             } else {
19636
19637
19638             }
19639         }
19640     },
19641
19642     clickValidator: function(e) {
19643         var target = e.getTarget();
19644         return ( this.isValidHandleChild(target) &&
19645                     (this.id == this.handleElId ||
19646                         this.DDM.handleWasClicked(target, this.id)) );
19647     },
19648
19649     /**
19650      * Allows you to specify a tag name that should not start a drag operation
19651      * when clicked.  This is designed to facilitate embedding links within a
19652      * drag handle that do something other than start the drag.
19653      * @method addInvalidHandleType
19654      * @param {string} tagName the type of element to exclude
19655      */
19656     addInvalidHandleType: function(tagName) {
19657         var type = tagName.toUpperCase();
19658         this.invalidHandleTypes[type] = type;
19659     },
19660
19661     /**
19662      * Lets you to specify an element id for a child of a drag handle
19663      * that should not initiate a drag
19664      * @method addInvalidHandleId
19665      * @param {string} id the element id of the element you wish to ignore
19666      */
19667     addInvalidHandleId: function(id) {
19668         if (typeof id !== "string") {
19669             id = Roo.id(id);
19670         }
19671         this.invalidHandleIds[id] = id;
19672     },
19673
19674     /**
19675      * Lets you specify a css class of elements that will not initiate a drag
19676      * @method addInvalidHandleClass
19677      * @param {string} cssClass the class of the elements you wish to ignore
19678      */
19679     addInvalidHandleClass: function(cssClass) {
19680         this.invalidHandleClasses.push(cssClass);
19681     },
19682
19683     /**
19684      * Unsets an excluded tag name set by addInvalidHandleType
19685      * @method removeInvalidHandleType
19686      * @param {string} tagName the type of element to unexclude
19687      */
19688     removeInvalidHandleType: function(tagName) {
19689         var type = tagName.toUpperCase();
19690         // this.invalidHandleTypes[type] = null;
19691         delete this.invalidHandleTypes[type];
19692     },
19693
19694     /**
19695      * Unsets an invalid handle id
19696      * @method removeInvalidHandleId
19697      * @param {string} id the id of the element to re-enable
19698      */
19699     removeInvalidHandleId: function(id) {
19700         if (typeof id !== "string") {
19701             id = Roo.id(id);
19702         }
19703         delete this.invalidHandleIds[id];
19704     },
19705
19706     /**
19707      * Unsets an invalid css class
19708      * @method removeInvalidHandleClass
19709      * @param {string} cssClass the class of the element(s) you wish to
19710      * re-enable
19711      */
19712     removeInvalidHandleClass: function(cssClass) {
19713         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19714             if (this.invalidHandleClasses[i] == cssClass) {
19715                 delete this.invalidHandleClasses[i];
19716             }
19717         }
19718     },
19719
19720     /**
19721      * Checks the tag exclusion list to see if this click should be ignored
19722      * @method isValidHandleChild
19723      * @param {HTMLElement} node the HTMLElement to evaluate
19724      * @return {boolean} true if this is a valid tag type, false if not
19725      */
19726     isValidHandleChild: function(node) {
19727
19728         var valid = true;
19729         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19730         var nodeName;
19731         try {
19732             nodeName = node.nodeName.toUpperCase();
19733         } catch(e) {
19734             nodeName = node.nodeName;
19735         }
19736         valid = valid && !this.invalidHandleTypes[nodeName];
19737         valid = valid && !this.invalidHandleIds[node.id];
19738
19739         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19740             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19741         }
19742
19743
19744         return valid;
19745
19746     },
19747
19748     /**
19749      * Create the array of horizontal tick marks if an interval was specified
19750      * in setXConstraint().
19751      * @method setXTicks
19752      * @private
19753      */
19754     setXTicks: function(iStartX, iTickSize) {
19755         this.xTicks = [];
19756         this.xTickSize = iTickSize;
19757
19758         var tickMap = {};
19759
19760         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19761             if (!tickMap[i]) {
19762                 this.xTicks[this.xTicks.length] = i;
19763                 tickMap[i] = true;
19764             }
19765         }
19766
19767         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19768             if (!tickMap[i]) {
19769                 this.xTicks[this.xTicks.length] = i;
19770                 tickMap[i] = true;
19771             }
19772         }
19773
19774         this.xTicks.sort(this.DDM.numericSort) ;
19775     },
19776
19777     /**
19778      * Create the array of vertical tick marks if an interval was specified in
19779      * setYConstraint().
19780      * @method setYTicks
19781      * @private
19782      */
19783     setYTicks: function(iStartY, iTickSize) {
19784         this.yTicks = [];
19785         this.yTickSize = iTickSize;
19786
19787         var tickMap = {};
19788
19789         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19790             if (!tickMap[i]) {
19791                 this.yTicks[this.yTicks.length] = i;
19792                 tickMap[i] = true;
19793             }
19794         }
19795
19796         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19797             if (!tickMap[i]) {
19798                 this.yTicks[this.yTicks.length] = i;
19799                 tickMap[i] = true;
19800             }
19801         }
19802
19803         this.yTicks.sort(this.DDM.numericSort) ;
19804     },
19805
19806     /**
19807      * By default, the element can be dragged any place on the screen.  Use
19808      * this method to limit the horizontal travel of the element.  Pass in
19809      * 0,0 for the parameters if you want to lock the drag to the y axis.
19810      * @method setXConstraint
19811      * @param {int} iLeft the number of pixels the element can move to the left
19812      * @param {int} iRight the number of pixels the element can move to the
19813      * right
19814      * @param {int} iTickSize optional parameter for specifying that the
19815      * element
19816      * should move iTickSize pixels at a time.
19817      */
19818     setXConstraint: function(iLeft, iRight, iTickSize) {
19819         this.leftConstraint = iLeft;
19820         this.rightConstraint = iRight;
19821
19822         this.minX = this.initPageX - iLeft;
19823         this.maxX = this.initPageX + iRight;
19824         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19825
19826         this.constrainX = true;
19827     },
19828
19829     /**
19830      * Clears any constraints applied to this instance.  Also clears ticks
19831      * since they can't exist independent of a constraint at this time.
19832      * @method clearConstraints
19833      */
19834     clearConstraints: function() {
19835         this.constrainX = false;
19836         this.constrainY = false;
19837         this.clearTicks();
19838     },
19839
19840     /**
19841      * Clears any tick interval defined for this instance
19842      * @method clearTicks
19843      */
19844     clearTicks: function() {
19845         this.xTicks = null;
19846         this.yTicks = null;
19847         this.xTickSize = 0;
19848         this.yTickSize = 0;
19849     },
19850
19851     /**
19852      * By default, the element can be dragged any place on the screen.  Set
19853      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19854      * parameters if you want to lock the drag to the x axis.
19855      * @method setYConstraint
19856      * @param {int} iUp the number of pixels the element can move up
19857      * @param {int} iDown the number of pixels the element can move down
19858      * @param {int} iTickSize optional parameter for specifying that the
19859      * element should move iTickSize pixels at a time.
19860      */
19861     setYConstraint: function(iUp, iDown, iTickSize) {
19862         this.topConstraint = iUp;
19863         this.bottomConstraint = iDown;
19864
19865         this.minY = this.initPageY - iUp;
19866         this.maxY = this.initPageY + iDown;
19867         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19868
19869         this.constrainY = true;
19870
19871     },
19872
19873     /**
19874      * resetConstraints must be called if you manually reposition a dd element.
19875      * @method resetConstraints
19876      * @param {boolean} maintainOffset
19877      */
19878     resetConstraints: function() {
19879
19880
19881         // Maintain offsets if necessary
19882         if (this.initPageX || this.initPageX === 0) {
19883             // figure out how much this thing has moved
19884             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19885             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19886
19887             this.setInitPosition(dx, dy);
19888
19889         // This is the first time we have detected the element's position
19890         } else {
19891             this.setInitPosition();
19892         }
19893
19894         if (this.constrainX) {
19895             this.setXConstraint( this.leftConstraint,
19896                                  this.rightConstraint,
19897                                  this.xTickSize        );
19898         }
19899
19900         if (this.constrainY) {
19901             this.setYConstraint( this.topConstraint,
19902                                  this.bottomConstraint,
19903                                  this.yTickSize         );
19904         }
19905     },
19906
19907     /**
19908      * Normally the drag element is moved pixel by pixel, but we can specify
19909      * that it move a number of pixels at a time.  This method resolves the
19910      * location when we have it set up like this.
19911      * @method getTick
19912      * @param {int} val where we want to place the object
19913      * @param {int[]} tickArray sorted array of valid points
19914      * @return {int} the closest tick
19915      * @private
19916      */
19917     getTick: function(val, tickArray) {
19918
19919         if (!tickArray) {
19920             // If tick interval is not defined, it is effectively 1 pixel,
19921             // so we return the value passed to us.
19922             return val;
19923         } else if (tickArray[0] >= val) {
19924             // The value is lower than the first tick, so we return the first
19925             // tick.
19926             return tickArray[0];
19927         } else {
19928             for (var i=0, len=tickArray.length; i<len; ++i) {
19929                 var next = i + 1;
19930                 if (tickArray[next] && tickArray[next] >= val) {
19931                     var diff1 = val - tickArray[i];
19932                     var diff2 = tickArray[next] - val;
19933                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19934                 }
19935             }
19936
19937             // The value is larger than the last tick, so we return the last
19938             // tick.
19939             return tickArray[tickArray.length - 1];
19940         }
19941     },
19942
19943     /**
19944      * toString method
19945      * @method toString
19946      * @return {string} string representation of the dd obj
19947      */
19948     toString: function() {
19949         return ("DragDrop " + this.id);
19950     }
19951
19952 });
19953
19954 })();
19955 /*
19956  * Based on:
19957  * Ext JS Library 1.1.1
19958  * Copyright(c) 2006-2007, Ext JS, LLC.
19959  *
19960  * Originally Released Under LGPL - original licence link has changed is not relivant.
19961  *
19962  * Fork - LGPL
19963  * <script type="text/javascript">
19964  */
19965
19966
19967 /**
19968  * The drag and drop utility provides a framework for building drag and drop
19969  * applications.  In addition to enabling drag and drop for specific elements,
19970  * the drag and drop elements are tracked by the manager class, and the
19971  * interactions between the various elements are tracked during the drag and
19972  * the implementing code is notified about these important moments.
19973  */
19974
19975 // Only load the library once.  Rewriting the manager class would orphan
19976 // existing drag and drop instances.
19977 if (!Roo.dd.DragDropMgr) {
19978
19979 /**
19980  * @class Roo.dd.DragDropMgr
19981  * DragDropMgr is a singleton that tracks the element interaction for
19982  * all DragDrop items in the window.  Generally, you will not call
19983  * this class directly, but it does have helper methods that could
19984  * be useful in your DragDrop implementations.
19985  * @singleton
19986  */
19987 Roo.dd.DragDropMgr = function() {
19988
19989     var Event = Roo.EventManager;
19990
19991     return {
19992
19993         /**
19994          * Two dimensional Array of registered DragDrop objects.  The first
19995          * dimension is the DragDrop item group, the second the DragDrop
19996          * object.
19997          * @property ids
19998          * @type {string: string}
19999          * @private
20000          * @static
20001          */
20002         ids: {},
20003
20004         /**
20005          * Array of element ids defined as drag handles.  Used to determine
20006          * if the element that generated the mousedown event is actually the
20007          * handle and not the html element itself.
20008          * @property handleIds
20009          * @type {string: string}
20010          * @private
20011          * @static
20012          */
20013         handleIds: {},
20014
20015         /**
20016          * the DragDrop object that is currently being dragged
20017          * @property dragCurrent
20018          * @type DragDrop
20019          * @private
20020          * @static
20021          **/
20022         dragCurrent: null,
20023
20024         /**
20025          * the DragDrop object(s) that are being hovered over
20026          * @property dragOvers
20027          * @type Array
20028          * @private
20029          * @static
20030          */
20031         dragOvers: {},
20032
20033         /**
20034          * the X distance between the cursor and the object being dragged
20035          * @property deltaX
20036          * @type int
20037          * @private
20038          * @static
20039          */
20040         deltaX: 0,
20041
20042         /**
20043          * the Y distance between the cursor and the object being dragged
20044          * @property deltaY
20045          * @type int
20046          * @private
20047          * @static
20048          */
20049         deltaY: 0,
20050
20051         /**
20052          * Flag to determine if we should prevent the default behavior of the
20053          * events we define. By default this is true, but this can be set to
20054          * false if you need the default behavior (not recommended)
20055          * @property preventDefault
20056          * @type boolean
20057          * @static
20058          */
20059         preventDefault: true,
20060
20061         /**
20062          * Flag to determine if we should stop the propagation of the events
20063          * we generate. This is true by default but you may want to set it to
20064          * false if the html element contains other features that require the
20065          * mouse click.
20066          * @property stopPropagation
20067          * @type boolean
20068          * @static
20069          */
20070         stopPropagation: true,
20071
20072         /**
20073          * Internal flag that is set to true when drag and drop has been
20074          * intialized
20075          * @property initialized
20076          * @private
20077          * @static
20078          */
20079         initalized: false,
20080
20081         /**
20082          * All drag and drop can be disabled.
20083          * @property locked
20084          * @private
20085          * @static
20086          */
20087         locked: false,
20088
20089         /**
20090          * Called the first time an element is registered.
20091          * @method init
20092          * @private
20093          * @static
20094          */
20095         init: function() {
20096             this.initialized = true;
20097         },
20098
20099         /**
20100          * In point mode, drag and drop interaction is defined by the
20101          * location of the cursor during the drag/drop
20102          * @property POINT
20103          * @type int
20104          * @static
20105          */
20106         POINT: 0,
20107
20108         /**
20109          * In intersect mode, drag and drop interactio nis defined by the
20110          * overlap of two or more drag and drop objects.
20111          * @property INTERSECT
20112          * @type int
20113          * @static
20114          */
20115         INTERSECT: 1,
20116
20117         /**
20118          * The current drag and drop mode.  Default: POINT
20119          * @property mode
20120          * @type int
20121          * @static
20122          */
20123         mode: 0,
20124
20125         /**
20126          * Runs method on all drag and drop objects
20127          * @method _execOnAll
20128          * @private
20129          * @static
20130          */
20131         _execOnAll: function(sMethod, args) {
20132             for (var i in this.ids) {
20133                 for (var j in this.ids[i]) {
20134                     var oDD = this.ids[i][j];
20135                     if (! this.isTypeOfDD(oDD)) {
20136                         continue;
20137                     }
20138                     oDD[sMethod].apply(oDD, args);
20139                 }
20140             }
20141         },
20142
20143         /**
20144          * Drag and drop initialization.  Sets up the global event handlers
20145          * @method _onLoad
20146          * @private
20147          * @static
20148          */
20149         _onLoad: function() {
20150
20151             this.init();
20152
20153             if (!Roo.isTouch) {
20154                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20155                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20156             }
20157             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20158             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20159             
20160             Event.on(window,   "unload",    this._onUnload, this, true);
20161             Event.on(window,   "resize",    this._onResize, this, true);
20162             // Event.on(window,   "mouseout",    this._test);
20163
20164         },
20165
20166         /**
20167          * Reset constraints on all drag and drop objs
20168          * @method _onResize
20169          * @private
20170          * @static
20171          */
20172         _onResize: function(e) {
20173             this._execOnAll("resetConstraints", []);
20174         },
20175
20176         /**
20177          * Lock all drag and drop functionality
20178          * @method lock
20179          * @static
20180          */
20181         lock: function() { this.locked = true; },
20182
20183         /**
20184          * Unlock all drag and drop functionality
20185          * @method unlock
20186          * @static
20187          */
20188         unlock: function() { this.locked = false; },
20189
20190         /**
20191          * Is drag and drop locked?
20192          * @method isLocked
20193          * @return {boolean} True if drag and drop is locked, false otherwise.
20194          * @static
20195          */
20196         isLocked: function() { return this.locked; },
20197
20198         /**
20199          * Location cache that is set for all drag drop objects when a drag is
20200          * initiated, cleared when the drag is finished.
20201          * @property locationCache
20202          * @private
20203          * @static
20204          */
20205         locationCache: {},
20206
20207         /**
20208          * Set useCache to false if you want to force object the lookup of each
20209          * drag and drop linked element constantly during a drag.
20210          * @property useCache
20211          * @type boolean
20212          * @static
20213          */
20214         useCache: true,
20215
20216         /**
20217          * The number of pixels that the mouse needs to move after the
20218          * mousedown before the drag is initiated.  Default=3;
20219          * @property clickPixelThresh
20220          * @type int
20221          * @static
20222          */
20223         clickPixelThresh: 3,
20224
20225         /**
20226          * The number of milliseconds after the mousedown event to initiate the
20227          * drag if we don't get a mouseup event. Default=1000
20228          * @property clickTimeThresh
20229          * @type int
20230          * @static
20231          */
20232         clickTimeThresh: 350,
20233
20234         /**
20235          * Flag that indicates that either the drag pixel threshold or the
20236          * mousdown time threshold has been met
20237          * @property dragThreshMet
20238          * @type boolean
20239          * @private
20240          * @static
20241          */
20242         dragThreshMet: false,
20243
20244         /**
20245          * Timeout used for the click time threshold
20246          * @property clickTimeout
20247          * @type Object
20248          * @private
20249          * @static
20250          */
20251         clickTimeout: null,
20252
20253         /**
20254          * The X position of the mousedown event stored for later use when a
20255          * drag threshold is met.
20256          * @property startX
20257          * @type int
20258          * @private
20259          * @static
20260          */
20261         startX: 0,
20262
20263         /**
20264          * The Y position of the mousedown event stored for later use when a
20265          * drag threshold is met.
20266          * @property startY
20267          * @type int
20268          * @private
20269          * @static
20270          */
20271         startY: 0,
20272
20273         /**
20274          * Each DragDrop instance must be registered with the DragDropMgr.
20275          * This is executed in DragDrop.init()
20276          * @method regDragDrop
20277          * @param {DragDrop} oDD the DragDrop object to register
20278          * @param {String} sGroup the name of the group this element belongs to
20279          * @static
20280          */
20281         regDragDrop: function(oDD, sGroup) {
20282             if (!this.initialized) { this.init(); }
20283
20284             if (!this.ids[sGroup]) {
20285                 this.ids[sGroup] = {};
20286             }
20287             this.ids[sGroup][oDD.id] = oDD;
20288         },
20289
20290         /**
20291          * Removes the supplied dd instance from the supplied group. Executed
20292          * by DragDrop.removeFromGroup, so don't call this function directly.
20293          * @method removeDDFromGroup
20294          * @private
20295          * @static
20296          */
20297         removeDDFromGroup: function(oDD, sGroup) {
20298             if (!this.ids[sGroup]) {
20299                 this.ids[sGroup] = {};
20300             }
20301
20302             var obj = this.ids[sGroup];
20303             if (obj && obj[oDD.id]) {
20304                 delete obj[oDD.id];
20305             }
20306         },
20307
20308         /**
20309          * Unregisters a drag and drop item.  This is executed in
20310          * DragDrop.unreg, use that method instead of calling this directly.
20311          * @method _remove
20312          * @private
20313          * @static
20314          */
20315         _remove: function(oDD) {
20316             for (var g in oDD.groups) {
20317                 if (g && this.ids[g][oDD.id]) {
20318                     delete this.ids[g][oDD.id];
20319                 }
20320             }
20321             delete this.handleIds[oDD.id];
20322         },
20323
20324         /**
20325          * Each DragDrop handle element must be registered.  This is done
20326          * automatically when executing DragDrop.setHandleElId()
20327          * @method regHandle
20328          * @param {String} sDDId the DragDrop id this element is a handle for
20329          * @param {String} sHandleId the id of the element that is the drag
20330          * handle
20331          * @static
20332          */
20333         regHandle: function(sDDId, sHandleId) {
20334             if (!this.handleIds[sDDId]) {
20335                 this.handleIds[sDDId] = {};
20336             }
20337             this.handleIds[sDDId][sHandleId] = sHandleId;
20338         },
20339
20340         /**
20341          * Utility function to determine if a given element has been
20342          * registered as a drag drop item.
20343          * @method isDragDrop
20344          * @param {String} id the element id to check
20345          * @return {boolean} true if this element is a DragDrop item,
20346          * false otherwise
20347          * @static
20348          */
20349         isDragDrop: function(id) {
20350             return ( this.getDDById(id) ) ? true : false;
20351         },
20352
20353         /**
20354          * Returns the drag and drop instances that are in all groups the
20355          * passed in instance belongs to.
20356          * @method getRelated
20357          * @param {DragDrop} p_oDD the obj to get related data for
20358          * @param {boolean} bTargetsOnly if true, only return targetable objs
20359          * @return {DragDrop[]} the related instances
20360          * @static
20361          */
20362         getRelated: function(p_oDD, bTargetsOnly) {
20363             var oDDs = [];
20364             for (var i in p_oDD.groups) {
20365                 for (j in this.ids[i]) {
20366                     var dd = this.ids[i][j];
20367                     if (! this.isTypeOfDD(dd)) {
20368                         continue;
20369                     }
20370                     if (!bTargetsOnly || dd.isTarget) {
20371                         oDDs[oDDs.length] = dd;
20372                     }
20373                 }
20374             }
20375
20376             return oDDs;
20377         },
20378
20379         /**
20380          * Returns true if the specified dd target is a legal target for
20381          * the specifice drag obj
20382          * @method isLegalTarget
20383          * @param {DragDrop} the drag obj
20384          * @param {DragDrop} the target
20385          * @return {boolean} true if the target is a legal target for the
20386          * dd obj
20387          * @static
20388          */
20389         isLegalTarget: function (oDD, oTargetDD) {
20390             var targets = this.getRelated(oDD, true);
20391             for (var i=0, len=targets.length;i<len;++i) {
20392                 if (targets[i].id == oTargetDD.id) {
20393                     return true;
20394                 }
20395             }
20396
20397             return false;
20398         },
20399
20400         /**
20401          * My goal is to be able to transparently determine if an object is
20402          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20403          * returns "object", oDD.constructor.toString() always returns
20404          * "DragDrop" and not the name of the subclass.  So for now it just
20405          * evaluates a well-known variable in DragDrop.
20406          * @method isTypeOfDD
20407          * @param {Object} the object to evaluate
20408          * @return {boolean} true if typeof oDD = DragDrop
20409          * @static
20410          */
20411         isTypeOfDD: function (oDD) {
20412             return (oDD && oDD.__ygDragDrop);
20413         },
20414
20415         /**
20416          * Utility function to determine if a given element has been
20417          * registered as a drag drop handle for the given Drag Drop object.
20418          * @method isHandle
20419          * @param {String} id the element id to check
20420          * @return {boolean} true if this element is a DragDrop handle, false
20421          * otherwise
20422          * @static
20423          */
20424         isHandle: function(sDDId, sHandleId) {
20425             return ( this.handleIds[sDDId] &&
20426                             this.handleIds[sDDId][sHandleId] );
20427         },
20428
20429         /**
20430          * Returns the DragDrop instance for a given id
20431          * @method getDDById
20432          * @param {String} id the id of the DragDrop object
20433          * @return {DragDrop} the drag drop object, null if it is not found
20434          * @static
20435          */
20436         getDDById: function(id) {
20437             for (var i in this.ids) {
20438                 if (this.ids[i][id]) {
20439                     return this.ids[i][id];
20440                 }
20441             }
20442             return null;
20443         },
20444
20445         /**
20446          * Fired after a registered DragDrop object gets the mousedown event.
20447          * Sets up the events required to track the object being dragged
20448          * @method handleMouseDown
20449          * @param {Event} e the event
20450          * @param oDD the DragDrop object being dragged
20451          * @private
20452          * @static
20453          */
20454         handleMouseDown: function(e, oDD) {
20455             if(Roo.QuickTips){
20456                 Roo.QuickTips.disable();
20457             }
20458             this.currentTarget = e.getTarget();
20459
20460             this.dragCurrent = oDD;
20461
20462             var el = oDD.getEl();
20463
20464             // track start position
20465             this.startX = e.getPageX();
20466             this.startY = e.getPageY();
20467
20468             this.deltaX = this.startX - el.offsetLeft;
20469             this.deltaY = this.startY - el.offsetTop;
20470
20471             this.dragThreshMet = false;
20472
20473             this.clickTimeout = setTimeout(
20474                     function() {
20475                         var DDM = Roo.dd.DDM;
20476                         DDM.startDrag(DDM.startX, DDM.startY);
20477                     },
20478                     this.clickTimeThresh );
20479         },
20480
20481         /**
20482          * Fired when either the drag pixel threshol or the mousedown hold
20483          * time threshold has been met.
20484          * @method startDrag
20485          * @param x {int} the X position of the original mousedown
20486          * @param y {int} the Y position of the original mousedown
20487          * @static
20488          */
20489         startDrag: function(x, y) {
20490             clearTimeout(this.clickTimeout);
20491             if (this.dragCurrent) {
20492                 this.dragCurrent.b4StartDrag(x, y);
20493                 this.dragCurrent.startDrag(x, y);
20494             }
20495             this.dragThreshMet = true;
20496         },
20497
20498         /**
20499          * Internal function to handle the mouseup event.  Will be invoked
20500          * from the context of the document.
20501          * @method handleMouseUp
20502          * @param {Event} e the event
20503          * @private
20504          * @static
20505          */
20506         handleMouseUp: function(e) {
20507
20508             if(Roo.QuickTips){
20509                 Roo.QuickTips.enable();
20510             }
20511             if (! this.dragCurrent) {
20512                 return;
20513             }
20514
20515             clearTimeout(this.clickTimeout);
20516
20517             if (this.dragThreshMet) {
20518                 this.fireEvents(e, true);
20519             } else {
20520             }
20521
20522             this.stopDrag(e);
20523
20524             this.stopEvent(e);
20525         },
20526
20527         /**
20528          * Utility to stop event propagation and event default, if these
20529          * features are turned on.
20530          * @method stopEvent
20531          * @param {Event} e the event as returned by this.getEvent()
20532          * @static
20533          */
20534         stopEvent: function(e){
20535             if(this.stopPropagation) {
20536                 e.stopPropagation();
20537             }
20538
20539             if (this.preventDefault) {
20540                 e.preventDefault();
20541             }
20542         },
20543
20544         /**
20545          * Internal function to clean up event handlers after the drag
20546          * operation is complete
20547          * @method stopDrag
20548          * @param {Event} e the event
20549          * @private
20550          * @static
20551          */
20552         stopDrag: function(e) {
20553             // Fire the drag end event for the item that was dragged
20554             if (this.dragCurrent) {
20555                 if (this.dragThreshMet) {
20556                     this.dragCurrent.b4EndDrag(e);
20557                     this.dragCurrent.endDrag(e);
20558                 }
20559
20560                 this.dragCurrent.onMouseUp(e);
20561             }
20562
20563             this.dragCurrent = null;
20564             this.dragOvers = {};
20565         },
20566
20567         /**
20568          * Internal function to handle the mousemove event.  Will be invoked
20569          * from the context of the html element.
20570          *
20571          * @TODO figure out what we can do about mouse events lost when the
20572          * user drags objects beyond the window boundary.  Currently we can
20573          * detect this in internet explorer by verifying that the mouse is
20574          * down during the mousemove event.  Firefox doesn't give us the
20575          * button state on the mousemove event.
20576          * @method handleMouseMove
20577          * @param {Event} e the event
20578          * @private
20579          * @static
20580          */
20581         handleMouseMove: function(e) {
20582             if (! this.dragCurrent) {
20583                 return true;
20584             }
20585
20586             // var button = e.which || e.button;
20587
20588             // check for IE mouseup outside of page boundary
20589             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20590                 this.stopEvent(e);
20591                 return this.handleMouseUp(e);
20592             }
20593
20594             if (!this.dragThreshMet) {
20595                 var diffX = Math.abs(this.startX - e.getPageX());
20596                 var diffY = Math.abs(this.startY - e.getPageY());
20597                 if (diffX > this.clickPixelThresh ||
20598                             diffY > this.clickPixelThresh) {
20599                     this.startDrag(this.startX, this.startY);
20600                 }
20601             }
20602
20603             if (this.dragThreshMet) {
20604                 this.dragCurrent.b4Drag(e);
20605                 this.dragCurrent.onDrag(e);
20606                 if(!this.dragCurrent.moveOnly){
20607                     this.fireEvents(e, false);
20608                 }
20609             }
20610
20611             this.stopEvent(e);
20612
20613             return true;
20614         },
20615
20616         /**
20617          * Iterates over all of the DragDrop elements to find ones we are
20618          * hovering over or dropping on
20619          * @method fireEvents
20620          * @param {Event} e the event
20621          * @param {boolean} isDrop is this a drop op or a mouseover op?
20622          * @private
20623          * @static
20624          */
20625         fireEvents: function(e, isDrop) {
20626             var dc = this.dragCurrent;
20627
20628             // If the user did the mouse up outside of the window, we could
20629             // get here even though we have ended the drag.
20630             if (!dc || dc.isLocked()) {
20631                 return;
20632             }
20633
20634             var pt = e.getPoint();
20635
20636             // cache the previous dragOver array
20637             var oldOvers = [];
20638
20639             var outEvts   = [];
20640             var overEvts  = [];
20641             var dropEvts  = [];
20642             var enterEvts = [];
20643
20644             // Check to see if the object(s) we were hovering over is no longer
20645             // being hovered over so we can fire the onDragOut event
20646             for (var i in this.dragOvers) {
20647
20648                 var ddo = this.dragOvers[i];
20649
20650                 if (! this.isTypeOfDD(ddo)) {
20651                     continue;
20652                 }
20653
20654                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20655                     outEvts.push( ddo );
20656                 }
20657
20658                 oldOvers[i] = true;
20659                 delete this.dragOvers[i];
20660             }
20661
20662             for (var sGroup in dc.groups) {
20663
20664                 if ("string" != typeof sGroup) {
20665                     continue;
20666                 }
20667
20668                 for (i in this.ids[sGroup]) {
20669                     var oDD = this.ids[sGroup][i];
20670                     if (! this.isTypeOfDD(oDD)) {
20671                         continue;
20672                     }
20673
20674                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20675                         if (this.isOverTarget(pt, oDD, this.mode)) {
20676                             // look for drop interactions
20677                             if (isDrop) {
20678                                 dropEvts.push( oDD );
20679                             // look for drag enter and drag over interactions
20680                             } else {
20681
20682                                 // initial drag over: dragEnter fires
20683                                 if (!oldOvers[oDD.id]) {
20684                                     enterEvts.push( oDD );
20685                                 // subsequent drag overs: dragOver fires
20686                                 } else {
20687                                     overEvts.push( oDD );
20688                                 }
20689
20690                                 this.dragOvers[oDD.id] = oDD;
20691                             }
20692                         }
20693                     }
20694                 }
20695             }
20696
20697             if (this.mode) {
20698                 if (outEvts.length) {
20699                     dc.b4DragOut(e, outEvts);
20700                     dc.onDragOut(e, outEvts);
20701                 }
20702
20703                 if (enterEvts.length) {
20704                     dc.onDragEnter(e, enterEvts);
20705                 }
20706
20707                 if (overEvts.length) {
20708                     dc.b4DragOver(e, overEvts);
20709                     dc.onDragOver(e, overEvts);
20710                 }
20711
20712                 if (dropEvts.length) {
20713                     dc.b4DragDrop(e, dropEvts);
20714                     dc.onDragDrop(e, dropEvts);
20715                 }
20716
20717             } else {
20718                 // fire dragout events
20719                 var len = 0;
20720                 for (i=0, len=outEvts.length; i<len; ++i) {
20721                     dc.b4DragOut(e, outEvts[i].id);
20722                     dc.onDragOut(e, outEvts[i].id);
20723                 }
20724
20725                 // fire enter events
20726                 for (i=0,len=enterEvts.length; i<len; ++i) {
20727                     // dc.b4DragEnter(e, oDD.id);
20728                     dc.onDragEnter(e, enterEvts[i].id);
20729                 }
20730
20731                 // fire over events
20732                 for (i=0,len=overEvts.length; i<len; ++i) {
20733                     dc.b4DragOver(e, overEvts[i].id);
20734                     dc.onDragOver(e, overEvts[i].id);
20735                 }
20736
20737                 // fire drop events
20738                 for (i=0, len=dropEvts.length; i<len; ++i) {
20739                     dc.b4DragDrop(e, dropEvts[i].id);
20740                     dc.onDragDrop(e, dropEvts[i].id);
20741                 }
20742
20743             }
20744
20745             // notify about a drop that did not find a target
20746             if (isDrop && !dropEvts.length) {
20747                 dc.onInvalidDrop(e);
20748             }
20749
20750         },
20751
20752         /**
20753          * Helper function for getting the best match from the list of drag
20754          * and drop objects returned by the drag and drop events when we are
20755          * in INTERSECT mode.  It returns either the first object that the
20756          * cursor is over, or the object that has the greatest overlap with
20757          * the dragged element.
20758          * @method getBestMatch
20759          * @param  {DragDrop[]} dds The array of drag and drop objects
20760          * targeted
20761          * @return {DragDrop}       The best single match
20762          * @static
20763          */
20764         getBestMatch: function(dds) {
20765             var winner = null;
20766             // Return null if the input is not what we expect
20767             //if (!dds || !dds.length || dds.length == 0) {
20768                // winner = null;
20769             // If there is only one item, it wins
20770             //} else if (dds.length == 1) {
20771
20772             var len = dds.length;
20773
20774             if (len == 1) {
20775                 winner = dds[0];
20776             } else {
20777                 // Loop through the targeted items
20778                 for (var i=0; i<len; ++i) {
20779                     var dd = dds[i];
20780                     // If the cursor is over the object, it wins.  If the
20781                     // cursor is over multiple matches, the first one we come
20782                     // to wins.
20783                     if (dd.cursorIsOver) {
20784                         winner = dd;
20785                         break;
20786                     // Otherwise the object with the most overlap wins
20787                     } else {
20788                         if (!winner ||
20789                             winner.overlap.getArea() < dd.overlap.getArea()) {
20790                             winner = dd;
20791                         }
20792                     }
20793                 }
20794             }
20795
20796             return winner;
20797         },
20798
20799         /**
20800          * Refreshes the cache of the top-left and bottom-right points of the
20801          * drag and drop objects in the specified group(s).  This is in the
20802          * format that is stored in the drag and drop instance, so typical
20803          * usage is:
20804          * <code>
20805          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20806          * </code>
20807          * Alternatively:
20808          * <code>
20809          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20810          * </code>
20811          * @TODO this really should be an indexed array.  Alternatively this
20812          * method could accept both.
20813          * @method refreshCache
20814          * @param {Object} groups an associative array of groups to refresh
20815          * @static
20816          */
20817         refreshCache: function(groups) {
20818             for (var sGroup in groups) {
20819                 if ("string" != typeof sGroup) {
20820                     continue;
20821                 }
20822                 for (var i in this.ids[sGroup]) {
20823                     var oDD = this.ids[sGroup][i];
20824
20825                     if (this.isTypeOfDD(oDD)) {
20826                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20827                         var loc = this.getLocation(oDD);
20828                         if (loc) {
20829                             this.locationCache[oDD.id] = loc;
20830                         } else {
20831                             delete this.locationCache[oDD.id];
20832                             // this will unregister the drag and drop object if
20833                             // the element is not in a usable state
20834                             // oDD.unreg();
20835                         }
20836                     }
20837                 }
20838             }
20839         },
20840
20841         /**
20842          * This checks to make sure an element exists and is in the DOM.  The
20843          * main purpose is to handle cases where innerHTML is used to remove
20844          * drag and drop objects from the DOM.  IE provides an 'unspecified
20845          * error' when trying to access the offsetParent of such an element
20846          * @method verifyEl
20847          * @param {HTMLElement} el the element to check
20848          * @return {boolean} true if the element looks usable
20849          * @static
20850          */
20851         verifyEl: function(el) {
20852             if (el) {
20853                 var parent;
20854                 if(Roo.isIE){
20855                     try{
20856                         parent = el.offsetParent;
20857                     }catch(e){}
20858                 }else{
20859                     parent = el.offsetParent;
20860                 }
20861                 if (parent) {
20862                     return true;
20863                 }
20864             }
20865
20866             return false;
20867         },
20868
20869         /**
20870          * Returns a Region object containing the drag and drop element's position
20871          * and size, including the padding configured for it
20872          * @method getLocation
20873          * @param {DragDrop} oDD the drag and drop object to get the
20874          *                       location for
20875          * @return {Roo.lib.Region} a Region object representing the total area
20876          *                             the element occupies, including any padding
20877          *                             the instance is configured for.
20878          * @static
20879          */
20880         getLocation: function(oDD) {
20881             if (! this.isTypeOfDD(oDD)) {
20882                 return null;
20883             }
20884
20885             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20886
20887             try {
20888                 pos= Roo.lib.Dom.getXY(el);
20889             } catch (e) { }
20890
20891             if (!pos) {
20892                 return null;
20893             }
20894
20895             x1 = pos[0];
20896             x2 = x1 + el.offsetWidth;
20897             y1 = pos[1];
20898             y2 = y1 + el.offsetHeight;
20899
20900             t = y1 - oDD.padding[0];
20901             r = x2 + oDD.padding[1];
20902             b = y2 + oDD.padding[2];
20903             l = x1 - oDD.padding[3];
20904
20905             return new Roo.lib.Region( t, r, b, l );
20906         },
20907
20908         /**
20909          * Checks the cursor location to see if it over the target
20910          * @method isOverTarget
20911          * @param {Roo.lib.Point} pt The point to evaluate
20912          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20913          * @return {boolean} true if the mouse is over the target
20914          * @private
20915          * @static
20916          */
20917         isOverTarget: function(pt, oTarget, intersect) {
20918             // use cache if available
20919             var loc = this.locationCache[oTarget.id];
20920             if (!loc || !this.useCache) {
20921                 loc = this.getLocation(oTarget);
20922                 this.locationCache[oTarget.id] = loc;
20923
20924             }
20925
20926             if (!loc) {
20927                 return false;
20928             }
20929
20930             oTarget.cursorIsOver = loc.contains( pt );
20931
20932             // DragDrop is using this as a sanity check for the initial mousedown
20933             // in this case we are done.  In POINT mode, if the drag obj has no
20934             // contraints, we are also done. Otherwise we need to evaluate the
20935             // location of the target as related to the actual location of the
20936             // dragged element.
20937             var dc = this.dragCurrent;
20938             if (!dc || !dc.getTargetCoord ||
20939                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20940                 return oTarget.cursorIsOver;
20941             }
20942
20943             oTarget.overlap = null;
20944
20945             // Get the current location of the drag element, this is the
20946             // location of the mouse event less the delta that represents
20947             // where the original mousedown happened on the element.  We
20948             // need to consider constraints and ticks as well.
20949             var pos = dc.getTargetCoord(pt.x, pt.y);
20950
20951             var el = dc.getDragEl();
20952             var curRegion = new Roo.lib.Region( pos.y,
20953                                                    pos.x + el.offsetWidth,
20954                                                    pos.y + el.offsetHeight,
20955                                                    pos.x );
20956
20957             var overlap = curRegion.intersect(loc);
20958
20959             if (overlap) {
20960                 oTarget.overlap = overlap;
20961                 return (intersect) ? true : oTarget.cursorIsOver;
20962             } else {
20963                 return false;
20964             }
20965         },
20966
20967         /**
20968          * unload event handler
20969          * @method _onUnload
20970          * @private
20971          * @static
20972          */
20973         _onUnload: function(e, me) {
20974             Roo.dd.DragDropMgr.unregAll();
20975         },
20976
20977         /**
20978          * Cleans up the drag and drop events and objects.
20979          * @method unregAll
20980          * @private
20981          * @static
20982          */
20983         unregAll: function() {
20984
20985             if (this.dragCurrent) {
20986                 this.stopDrag();
20987                 this.dragCurrent = null;
20988             }
20989
20990             this._execOnAll("unreg", []);
20991
20992             for (i in this.elementCache) {
20993                 delete this.elementCache[i];
20994             }
20995
20996             this.elementCache = {};
20997             this.ids = {};
20998         },
20999
21000         /**
21001          * A cache of DOM elements
21002          * @property elementCache
21003          * @private
21004          * @static
21005          */
21006         elementCache: {},
21007
21008         /**
21009          * Get the wrapper for the DOM element specified
21010          * @method getElWrapper
21011          * @param {String} id the id of the element to get
21012          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
21013          * @private
21014          * @deprecated This wrapper isn't that useful
21015          * @static
21016          */
21017         getElWrapper: function(id) {
21018             var oWrapper = this.elementCache[id];
21019             if (!oWrapper || !oWrapper.el) {
21020                 oWrapper = this.elementCache[id] =
21021                     new this.ElementWrapper(Roo.getDom(id));
21022             }
21023             return oWrapper;
21024         },
21025
21026         /**
21027          * Returns the actual DOM element
21028          * @method getElement
21029          * @param {String} id the id of the elment to get
21030          * @return {Object} The element
21031          * @deprecated use Roo.getDom instead
21032          * @static
21033          */
21034         getElement: function(id) {
21035             return Roo.getDom(id);
21036         },
21037
21038         /**
21039          * Returns the style property for the DOM element (i.e.,
21040          * document.getElById(id).style)
21041          * @method getCss
21042          * @param {String} id the id of the elment to get
21043          * @return {Object} The style property of the element
21044          * @deprecated use Roo.getDom instead
21045          * @static
21046          */
21047         getCss: function(id) {
21048             var el = Roo.getDom(id);
21049             return (el) ? el.style : null;
21050         },
21051
21052         /**
21053          * Inner class for cached elements
21054          * @class DragDropMgr.ElementWrapper
21055          * @for DragDropMgr
21056          * @private
21057          * @deprecated
21058          */
21059         ElementWrapper: function(el) {
21060                 /**
21061                  * The element
21062                  * @property el
21063                  */
21064                 this.el = el || null;
21065                 /**
21066                  * The element id
21067                  * @property id
21068                  */
21069                 this.id = this.el && el.id;
21070                 /**
21071                  * A reference to the style property
21072                  * @property css
21073                  */
21074                 this.css = this.el && el.style;
21075             },
21076
21077         /**
21078          * Returns the X position of an html element
21079          * @method getPosX
21080          * @param el the element for which to get the position
21081          * @return {int} the X coordinate
21082          * @for DragDropMgr
21083          * @deprecated use Roo.lib.Dom.getX instead
21084          * @static
21085          */
21086         getPosX: function(el) {
21087             return Roo.lib.Dom.getX(el);
21088         },
21089
21090         /**
21091          * Returns the Y position of an html element
21092          * @method getPosY
21093          * @param el the element for which to get the position
21094          * @return {int} the Y coordinate
21095          * @deprecated use Roo.lib.Dom.getY instead
21096          * @static
21097          */
21098         getPosY: function(el) {
21099             return Roo.lib.Dom.getY(el);
21100         },
21101
21102         /**
21103          * Swap two nodes.  In IE, we use the native method, for others we
21104          * emulate the IE behavior
21105          * @method swapNode
21106          * @param n1 the first node to swap
21107          * @param n2 the other node to swap
21108          * @static
21109          */
21110         swapNode: function(n1, n2) {
21111             if (n1.swapNode) {
21112                 n1.swapNode(n2);
21113             } else {
21114                 var p = n2.parentNode;
21115                 var s = n2.nextSibling;
21116
21117                 if (s == n1) {
21118                     p.insertBefore(n1, n2);
21119                 } else if (n2 == n1.nextSibling) {
21120                     p.insertBefore(n2, n1);
21121                 } else {
21122                     n1.parentNode.replaceChild(n2, n1);
21123                     p.insertBefore(n1, s);
21124                 }
21125             }
21126         },
21127
21128         /**
21129          * Returns the current scroll position
21130          * @method getScroll
21131          * @private
21132          * @static
21133          */
21134         getScroll: function () {
21135             var t, l, dde=document.documentElement, db=document.body;
21136             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21137                 t = dde.scrollTop;
21138                 l = dde.scrollLeft;
21139             } else if (db) {
21140                 t = db.scrollTop;
21141                 l = db.scrollLeft;
21142             } else {
21143
21144             }
21145             return { top: t, left: l };
21146         },
21147
21148         /**
21149          * Returns the specified element style property
21150          * @method getStyle
21151          * @param {HTMLElement} el          the element
21152          * @param {string}      styleProp   the style property
21153          * @return {string} The value of the style property
21154          * @deprecated use Roo.lib.Dom.getStyle
21155          * @static
21156          */
21157         getStyle: function(el, styleProp) {
21158             return Roo.fly(el).getStyle(styleProp);
21159         },
21160
21161         /**
21162          * Gets the scrollTop
21163          * @method getScrollTop
21164          * @return {int} the document's scrollTop
21165          * @static
21166          */
21167         getScrollTop: function () { return this.getScroll().top; },
21168
21169         /**
21170          * Gets the scrollLeft
21171          * @method getScrollLeft
21172          * @return {int} the document's scrollTop
21173          * @static
21174          */
21175         getScrollLeft: function () { return this.getScroll().left; },
21176
21177         /**
21178          * Sets the x/y position of an element to the location of the
21179          * target element.
21180          * @method moveToEl
21181          * @param {HTMLElement} moveEl      The element to move
21182          * @param {HTMLElement} targetEl    The position reference element
21183          * @static
21184          */
21185         moveToEl: function (moveEl, targetEl) {
21186             var aCoord = Roo.lib.Dom.getXY(targetEl);
21187             Roo.lib.Dom.setXY(moveEl, aCoord);
21188         },
21189
21190         /**
21191          * Numeric array sort function
21192          * @method numericSort
21193          * @static
21194          */
21195         numericSort: function(a, b) { return (a - b); },
21196
21197         /**
21198          * Internal counter
21199          * @property _timeoutCount
21200          * @private
21201          * @static
21202          */
21203         _timeoutCount: 0,
21204
21205         /**
21206          * Trying to make the load order less important.  Without this we get
21207          * an error if this file is loaded before the Event Utility.
21208          * @method _addListeners
21209          * @private
21210          * @static
21211          */
21212         _addListeners: function() {
21213             var DDM = Roo.dd.DDM;
21214             if ( Roo.lib.Event && document ) {
21215                 DDM._onLoad();
21216             } else {
21217                 if (DDM._timeoutCount > 2000) {
21218                 } else {
21219                     setTimeout(DDM._addListeners, 10);
21220                     if (document && document.body) {
21221                         DDM._timeoutCount += 1;
21222                     }
21223                 }
21224             }
21225         },
21226
21227         /**
21228          * Recursively searches the immediate parent and all child nodes for
21229          * the handle element in order to determine wheter or not it was
21230          * clicked.
21231          * @method handleWasClicked
21232          * @param node the html element to inspect
21233          * @static
21234          */
21235         handleWasClicked: function(node, id) {
21236             if (this.isHandle(id, node.id)) {
21237                 return true;
21238             } else {
21239                 // check to see if this is a text node child of the one we want
21240                 var p = node.parentNode;
21241
21242                 while (p) {
21243                     if (this.isHandle(id, p.id)) {
21244                         return true;
21245                     } else {
21246                         p = p.parentNode;
21247                     }
21248                 }
21249             }
21250
21251             return false;
21252         }
21253
21254     };
21255
21256 }();
21257
21258 // shorter alias, save a few bytes
21259 Roo.dd.DDM = Roo.dd.DragDropMgr;
21260 Roo.dd.DDM._addListeners();
21261
21262 }/*
21263  * Based on:
21264  * Ext JS Library 1.1.1
21265  * Copyright(c) 2006-2007, Ext JS, LLC.
21266  *
21267  * Originally Released Under LGPL - original licence link has changed is not relivant.
21268  *
21269  * Fork - LGPL
21270  * <script type="text/javascript">
21271  */
21272
21273 /**
21274  * @class Roo.dd.DD
21275  * A DragDrop implementation where the linked element follows the
21276  * mouse cursor during a drag.
21277  * @extends Roo.dd.DragDrop
21278  * @constructor
21279  * @param {String} id the id of the linked element
21280  * @param {String} sGroup the group of related DragDrop items
21281  * @param {object} config an object containing configurable attributes
21282  *                Valid properties for DD:
21283  *                    scroll
21284  */
21285 Roo.dd.DD = function(id, sGroup, config) {
21286     if (id) {
21287         this.init(id, sGroup, config);
21288     }
21289 };
21290
21291 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21292
21293     /**
21294      * When set to true, the utility automatically tries to scroll the browser
21295      * window wehn a drag and drop element is dragged near the viewport boundary.
21296      * Defaults to true.
21297      * @property scroll
21298      * @type boolean
21299      */
21300     scroll: true,
21301
21302     /**
21303      * Sets the pointer offset to the distance between the linked element's top
21304      * left corner and the location the element was clicked
21305      * @method autoOffset
21306      * @param {int} iPageX the X coordinate of the click
21307      * @param {int} iPageY the Y coordinate of the click
21308      */
21309     autoOffset: function(iPageX, iPageY) {
21310         var x = iPageX - this.startPageX;
21311         var y = iPageY - this.startPageY;
21312         this.setDelta(x, y);
21313     },
21314
21315     /**
21316      * Sets the pointer offset.  You can call this directly to force the
21317      * offset to be in a particular location (e.g., pass in 0,0 to set it
21318      * to the center of the object)
21319      * @method setDelta
21320      * @param {int} iDeltaX the distance from the left
21321      * @param {int} iDeltaY the distance from the top
21322      */
21323     setDelta: function(iDeltaX, iDeltaY) {
21324         this.deltaX = iDeltaX;
21325         this.deltaY = iDeltaY;
21326     },
21327
21328     /**
21329      * Sets the drag element to the location of the mousedown or click event,
21330      * maintaining the cursor location relative to the location on the element
21331      * that was clicked.  Override this if you want to place the element in a
21332      * location other than where the cursor is.
21333      * @method setDragElPos
21334      * @param {int} iPageX the X coordinate of the mousedown or drag event
21335      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21336      */
21337     setDragElPos: function(iPageX, iPageY) {
21338         // the first time we do this, we are going to check to make sure
21339         // the element has css positioning
21340
21341         var el = this.getDragEl();
21342         this.alignElWithMouse(el, iPageX, iPageY);
21343     },
21344
21345     /**
21346      * Sets the element to the location of the mousedown or click event,
21347      * maintaining the cursor location relative to the location on the element
21348      * that was clicked.  Override this if you want to place the element in a
21349      * location other than where the cursor is.
21350      * @method alignElWithMouse
21351      * @param {HTMLElement} el the element to move
21352      * @param {int} iPageX the X coordinate of the mousedown or drag event
21353      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21354      */
21355     alignElWithMouse: function(el, iPageX, iPageY) {
21356         var oCoord = this.getTargetCoord(iPageX, iPageY);
21357         var fly = el.dom ? el : Roo.fly(el);
21358         if (!this.deltaSetXY) {
21359             var aCoord = [oCoord.x, oCoord.y];
21360             fly.setXY(aCoord);
21361             var newLeft = fly.getLeft(true);
21362             var newTop  = fly.getTop(true);
21363             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21364         } else {
21365             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21366         }
21367
21368         this.cachePosition(oCoord.x, oCoord.y);
21369         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21370         return oCoord;
21371     },
21372
21373     /**
21374      * Saves the most recent position so that we can reset the constraints and
21375      * tick marks on-demand.  We need to know this so that we can calculate the
21376      * number of pixels the element is offset from its original position.
21377      * @method cachePosition
21378      * @param iPageX the current x position (optional, this just makes it so we
21379      * don't have to look it up again)
21380      * @param iPageY the current y position (optional, this just makes it so we
21381      * don't have to look it up again)
21382      */
21383     cachePosition: function(iPageX, iPageY) {
21384         if (iPageX) {
21385             this.lastPageX = iPageX;
21386             this.lastPageY = iPageY;
21387         } else {
21388             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21389             this.lastPageX = aCoord[0];
21390             this.lastPageY = aCoord[1];
21391         }
21392     },
21393
21394     /**
21395      * Auto-scroll the window if the dragged object has been moved beyond the
21396      * visible window boundary.
21397      * @method autoScroll
21398      * @param {int} x the drag element's x position
21399      * @param {int} y the drag element's y position
21400      * @param {int} h the height of the drag element
21401      * @param {int} w the width of the drag element
21402      * @private
21403      */
21404     autoScroll: function(x, y, h, w) {
21405
21406         if (this.scroll) {
21407             // The client height
21408             var clientH = Roo.lib.Dom.getViewWidth();
21409
21410             // The client width
21411             var clientW = Roo.lib.Dom.getViewHeight();
21412
21413             // The amt scrolled down
21414             var st = this.DDM.getScrollTop();
21415
21416             // The amt scrolled right
21417             var sl = this.DDM.getScrollLeft();
21418
21419             // Location of the bottom of the element
21420             var bot = h + y;
21421
21422             // Location of the right of the element
21423             var right = w + x;
21424
21425             // The distance from the cursor to the bottom of the visible area,
21426             // adjusted so that we don't scroll if the cursor is beyond the
21427             // element drag constraints
21428             var toBot = (clientH + st - y - this.deltaY);
21429
21430             // The distance from the cursor to the right of the visible area
21431             var toRight = (clientW + sl - x - this.deltaX);
21432
21433
21434             // How close to the edge the cursor must be before we scroll
21435             // var thresh = (document.all) ? 100 : 40;
21436             var thresh = 40;
21437
21438             // How many pixels to scroll per autoscroll op.  This helps to reduce
21439             // clunky scrolling. IE is more sensitive about this ... it needs this
21440             // value to be higher.
21441             var scrAmt = (document.all) ? 80 : 30;
21442
21443             // Scroll down if we are near the bottom of the visible page and the
21444             // obj extends below the crease
21445             if ( bot > clientH && toBot < thresh ) {
21446                 window.scrollTo(sl, st + scrAmt);
21447             }
21448
21449             // Scroll up if the window is scrolled down and the top of the object
21450             // goes above the top border
21451             if ( y < st && st > 0 && y - st < thresh ) {
21452                 window.scrollTo(sl, st - scrAmt);
21453             }
21454
21455             // Scroll right if the obj is beyond the right border and the cursor is
21456             // near the border.
21457             if ( right > clientW && toRight < thresh ) {
21458                 window.scrollTo(sl + scrAmt, st);
21459             }
21460
21461             // Scroll left if the window has been scrolled to the right and the obj
21462             // extends past the left border
21463             if ( x < sl && sl > 0 && x - sl < thresh ) {
21464                 window.scrollTo(sl - scrAmt, st);
21465             }
21466         }
21467     },
21468
21469     /**
21470      * Finds the location the element should be placed if we want to move
21471      * it to where the mouse location less the click offset would place us.
21472      * @method getTargetCoord
21473      * @param {int} iPageX the X coordinate of the click
21474      * @param {int} iPageY the Y coordinate of the click
21475      * @return an object that contains the coordinates (Object.x and Object.y)
21476      * @private
21477      */
21478     getTargetCoord: function(iPageX, iPageY) {
21479
21480
21481         var x = iPageX - this.deltaX;
21482         var y = iPageY - this.deltaY;
21483
21484         if (this.constrainX) {
21485             if (x < this.minX) { x = this.minX; }
21486             if (x > this.maxX) { x = this.maxX; }
21487         }
21488
21489         if (this.constrainY) {
21490             if (y < this.minY) { y = this.minY; }
21491             if (y > this.maxY) { y = this.maxY; }
21492         }
21493
21494         x = this.getTick(x, this.xTicks);
21495         y = this.getTick(y, this.yTicks);
21496
21497
21498         return {x:x, y:y};
21499     },
21500
21501     /*
21502      * Sets up config options specific to this class. Overrides
21503      * Roo.dd.DragDrop, but all versions of this method through the
21504      * inheritance chain are called
21505      */
21506     applyConfig: function() {
21507         Roo.dd.DD.superclass.applyConfig.call(this);
21508         this.scroll = (this.config.scroll !== false);
21509     },
21510
21511     /*
21512      * Event that fires prior to the onMouseDown event.  Overrides
21513      * Roo.dd.DragDrop.
21514      */
21515     b4MouseDown: function(e) {
21516         // this.resetConstraints();
21517         this.autoOffset(e.getPageX(),
21518                             e.getPageY());
21519     },
21520
21521     /*
21522      * Event that fires prior to the onDrag event.  Overrides
21523      * Roo.dd.DragDrop.
21524      */
21525     b4Drag: function(e) {
21526         this.setDragElPos(e.getPageX(),
21527                             e.getPageY());
21528     },
21529
21530     toString: function() {
21531         return ("DD " + this.id);
21532     }
21533
21534     //////////////////////////////////////////////////////////////////////////
21535     // Debugging ygDragDrop events that can be overridden
21536     //////////////////////////////////////////////////////////////////////////
21537     /*
21538     startDrag: function(x, y) {
21539     },
21540
21541     onDrag: function(e) {
21542     },
21543
21544     onDragEnter: function(e, id) {
21545     },
21546
21547     onDragOver: function(e, id) {
21548     },
21549
21550     onDragOut: function(e, id) {
21551     },
21552
21553     onDragDrop: function(e, id) {
21554     },
21555
21556     endDrag: function(e) {
21557     }
21558
21559     */
21560
21561 });/*
21562  * Based on:
21563  * Ext JS Library 1.1.1
21564  * Copyright(c) 2006-2007, Ext JS, LLC.
21565  *
21566  * Originally Released Under LGPL - original licence link has changed is not relivant.
21567  *
21568  * Fork - LGPL
21569  * <script type="text/javascript">
21570  */
21571
21572 /**
21573  * @class Roo.dd.DDProxy
21574  * A DragDrop implementation that inserts an empty, bordered div into
21575  * the document that follows the cursor during drag operations.  At the time of
21576  * the click, the frame div is resized to the dimensions of the linked html
21577  * element, and moved to the exact location of the linked element.
21578  *
21579  * References to the "frame" element refer to the single proxy element that
21580  * was created to be dragged in place of all DDProxy elements on the
21581  * page.
21582  *
21583  * @extends Roo.dd.DD
21584  * @constructor
21585  * @param {String} id the id of the linked html element
21586  * @param {String} sGroup the group of related DragDrop objects
21587  * @param {object} config an object containing configurable attributes
21588  *                Valid properties for DDProxy in addition to those in DragDrop:
21589  *                   resizeFrame, centerFrame, dragElId
21590  */
21591 Roo.dd.DDProxy = function(id, sGroup, config) {
21592     if (id) {
21593         this.init(id, sGroup, config);
21594         this.initFrame();
21595     }
21596 };
21597
21598 /**
21599  * The default drag frame div id
21600  * @property Roo.dd.DDProxy.dragElId
21601  * @type String
21602  * @static
21603  */
21604 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21605
21606 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21607
21608     /**
21609      * By default we resize the drag frame to be the same size as the element
21610      * we want to drag (this is to get the frame effect).  We can turn it off
21611      * if we want a different behavior.
21612      * @property resizeFrame
21613      * @type boolean
21614      */
21615     resizeFrame: true,
21616
21617     /**
21618      * By default the frame is positioned exactly where the drag element is, so
21619      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21620      * you do not have constraints on the obj is to have the drag frame centered
21621      * around the cursor.  Set centerFrame to true for this effect.
21622      * @property centerFrame
21623      * @type boolean
21624      */
21625     centerFrame: false,
21626
21627     /**
21628      * Creates the proxy element if it does not yet exist
21629      * @method createFrame
21630      */
21631     createFrame: function() {
21632         var self = this;
21633         var body = document.body;
21634
21635         if (!body || !body.firstChild) {
21636             setTimeout( function() { self.createFrame(); }, 50 );
21637             return;
21638         }
21639
21640         var div = this.getDragEl();
21641
21642         if (!div) {
21643             div    = document.createElement("div");
21644             div.id = this.dragElId;
21645             var s  = div.style;
21646
21647             s.position   = "absolute";
21648             s.visibility = "hidden";
21649             s.cursor     = "move";
21650             s.border     = "2px solid #aaa";
21651             s.zIndex     = 999;
21652
21653             // appendChild can blow up IE if invoked prior to the window load event
21654             // while rendering a table.  It is possible there are other scenarios
21655             // that would cause this to happen as well.
21656             body.insertBefore(div, body.firstChild);
21657         }
21658     },
21659
21660     /**
21661      * Initialization for the drag frame element.  Must be called in the
21662      * constructor of all subclasses
21663      * @method initFrame
21664      */
21665     initFrame: function() {
21666         this.createFrame();
21667     },
21668
21669     applyConfig: function() {
21670         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21671
21672         this.resizeFrame = (this.config.resizeFrame !== false);
21673         this.centerFrame = (this.config.centerFrame);
21674         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21675     },
21676
21677     /**
21678      * Resizes the drag frame to the dimensions of the clicked object, positions
21679      * it over the object, and finally displays it
21680      * @method showFrame
21681      * @param {int} iPageX X click position
21682      * @param {int} iPageY Y click position
21683      * @private
21684      */
21685     showFrame: function(iPageX, iPageY) {
21686         var el = this.getEl();
21687         var dragEl = this.getDragEl();
21688         var s = dragEl.style;
21689
21690         this._resizeProxy();
21691
21692         if (this.centerFrame) {
21693             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21694                            Math.round(parseInt(s.height, 10)/2) );
21695         }
21696
21697         this.setDragElPos(iPageX, iPageY);
21698
21699         Roo.fly(dragEl).show();
21700     },
21701
21702     /**
21703      * The proxy is automatically resized to the dimensions of the linked
21704      * element when a drag is initiated, unless resizeFrame is set to false
21705      * @method _resizeProxy
21706      * @private
21707      */
21708     _resizeProxy: function() {
21709         if (this.resizeFrame) {
21710             var el = this.getEl();
21711             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21712         }
21713     },
21714
21715     // overrides Roo.dd.DragDrop
21716     b4MouseDown: function(e) {
21717         var x = e.getPageX();
21718         var y = e.getPageY();
21719         this.autoOffset(x, y);
21720         this.setDragElPos(x, y);
21721     },
21722
21723     // overrides Roo.dd.DragDrop
21724     b4StartDrag: function(x, y) {
21725         // show the drag frame
21726         this.showFrame(x, y);
21727     },
21728
21729     // overrides Roo.dd.DragDrop
21730     b4EndDrag: function(e) {
21731         Roo.fly(this.getDragEl()).hide();
21732     },
21733
21734     // overrides Roo.dd.DragDrop
21735     // By default we try to move the element to the last location of the frame.
21736     // This is so that the default behavior mirrors that of Roo.dd.DD.
21737     endDrag: function(e) {
21738
21739         var lel = this.getEl();
21740         var del = this.getDragEl();
21741
21742         // Show the drag frame briefly so we can get its position
21743         del.style.visibility = "";
21744
21745         this.beforeMove();
21746         // Hide the linked element before the move to get around a Safari
21747         // rendering bug.
21748         lel.style.visibility = "hidden";
21749         Roo.dd.DDM.moveToEl(lel, del);
21750         del.style.visibility = "hidden";
21751         lel.style.visibility = "";
21752
21753         this.afterDrag();
21754     },
21755
21756     beforeMove : function(){
21757
21758     },
21759
21760     afterDrag : function(){
21761
21762     },
21763
21764     toString: function() {
21765         return ("DDProxy " + this.id);
21766     }
21767
21768 });
21769 /*
21770  * Based on:
21771  * Ext JS Library 1.1.1
21772  * Copyright(c) 2006-2007, Ext JS, LLC.
21773  *
21774  * Originally Released Under LGPL - original licence link has changed is not relivant.
21775  *
21776  * Fork - LGPL
21777  * <script type="text/javascript">
21778  */
21779
21780  /**
21781  * @class Roo.dd.DDTarget
21782  * A DragDrop implementation that does not move, but can be a drop
21783  * target.  You would get the same result by simply omitting implementation
21784  * for the event callbacks, but this way we reduce the processing cost of the
21785  * event listener and the callbacks.
21786  * @extends Roo.dd.DragDrop
21787  * @constructor
21788  * @param {String} id the id of the element that is a drop target
21789  * @param {String} sGroup the group of related DragDrop objects
21790  * @param {object} config an object containing configurable attributes
21791  *                 Valid properties for DDTarget in addition to those in
21792  *                 DragDrop:
21793  *                    none
21794  */
21795 Roo.dd.DDTarget = function(id, sGroup, config) {
21796     if (id) {
21797         this.initTarget(id, sGroup, config);
21798     }
21799     if (config && (config.listeners || config.events)) { 
21800         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21801             listeners : config.listeners || {}, 
21802             events : config.events || {} 
21803         });    
21804     }
21805 };
21806
21807 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21808 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21809     toString: function() {
21810         return ("DDTarget " + this.id);
21811     }
21812 });
21813 /*
21814  * Based on:
21815  * Ext JS Library 1.1.1
21816  * Copyright(c) 2006-2007, Ext JS, LLC.
21817  *
21818  * Originally Released Under LGPL - original licence link has changed is not relivant.
21819  *
21820  * Fork - LGPL
21821  * <script type="text/javascript">
21822  */
21823  
21824
21825 /**
21826  * @class Roo.dd.ScrollManager
21827  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21828  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21829  * @singleton
21830  */
21831 Roo.dd.ScrollManager = function(){
21832     var ddm = Roo.dd.DragDropMgr;
21833     var els = {};
21834     var dragEl = null;
21835     var proc = {};
21836     
21837     
21838     
21839     var onStop = function(e){
21840         dragEl = null;
21841         clearProc();
21842     };
21843     
21844     var triggerRefresh = function(){
21845         if(ddm.dragCurrent){
21846              ddm.refreshCache(ddm.dragCurrent.groups);
21847         }
21848     };
21849     
21850     var doScroll = function(){
21851         if(ddm.dragCurrent){
21852             var dds = Roo.dd.ScrollManager;
21853             if(!dds.animate){
21854                 if(proc.el.scroll(proc.dir, dds.increment)){
21855                     triggerRefresh();
21856                 }
21857             }else{
21858                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21859             }
21860         }
21861     };
21862     
21863     var clearProc = function(){
21864         if(proc.id){
21865             clearInterval(proc.id);
21866         }
21867         proc.id = 0;
21868         proc.el = null;
21869         proc.dir = "";
21870     };
21871     
21872     var startProc = function(el, dir){
21873          Roo.log('scroll startproc');
21874         clearProc();
21875         proc.el = el;
21876         proc.dir = dir;
21877         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21878     };
21879     
21880     var onFire = function(e, isDrop){
21881        
21882         if(isDrop || !ddm.dragCurrent){ return; }
21883         var dds = Roo.dd.ScrollManager;
21884         if(!dragEl || dragEl != ddm.dragCurrent){
21885             dragEl = ddm.dragCurrent;
21886             // refresh regions on drag start
21887             dds.refreshCache();
21888         }
21889         
21890         var xy = Roo.lib.Event.getXY(e);
21891         var pt = new Roo.lib.Point(xy[0], xy[1]);
21892         for(var id in els){
21893             var el = els[id], r = el._region;
21894             if(r && r.contains(pt) && el.isScrollable()){
21895                 if(r.bottom - pt.y <= dds.thresh){
21896                     if(proc.el != el){
21897                         startProc(el, "down");
21898                     }
21899                     return;
21900                 }else if(r.right - pt.x <= dds.thresh){
21901                     if(proc.el != el){
21902                         startProc(el, "left");
21903                     }
21904                     return;
21905                 }else if(pt.y - r.top <= dds.thresh){
21906                     if(proc.el != el){
21907                         startProc(el, "up");
21908                     }
21909                     return;
21910                 }else if(pt.x - r.left <= dds.thresh){
21911                     if(proc.el != el){
21912                         startProc(el, "right");
21913                     }
21914                     return;
21915                 }
21916             }
21917         }
21918         clearProc();
21919     };
21920     
21921     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21922     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21923     
21924     return {
21925         /**
21926          * Registers new overflow element(s) to auto scroll
21927          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21928          */
21929         register : function(el){
21930             if(el instanceof Array){
21931                 for(var i = 0, len = el.length; i < len; i++) {
21932                         this.register(el[i]);
21933                 }
21934             }else{
21935                 el = Roo.get(el);
21936                 els[el.id] = el;
21937             }
21938             Roo.dd.ScrollManager.els = els;
21939         },
21940         
21941         /**
21942          * Unregisters overflow element(s) so they are no longer scrolled
21943          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21944          */
21945         unregister : function(el){
21946             if(el instanceof Array){
21947                 for(var i = 0, len = el.length; i < len; i++) {
21948                         this.unregister(el[i]);
21949                 }
21950             }else{
21951                 el = Roo.get(el);
21952                 delete els[el.id];
21953             }
21954         },
21955         
21956         /**
21957          * The number of pixels from the edge of a container the pointer needs to be to 
21958          * trigger scrolling (defaults to 25)
21959          * @type Number
21960          */
21961         thresh : 25,
21962         
21963         /**
21964          * The number of pixels to scroll in each scroll increment (defaults to 50)
21965          * @type Number
21966          */
21967         increment : 100,
21968         
21969         /**
21970          * The frequency of scrolls in milliseconds (defaults to 500)
21971          * @type Number
21972          */
21973         frequency : 500,
21974         
21975         /**
21976          * True to animate the scroll (defaults to true)
21977          * @type Boolean
21978          */
21979         animate: true,
21980         
21981         /**
21982          * The animation duration in seconds - 
21983          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21984          * @type Number
21985          */
21986         animDuration: .4,
21987         
21988         /**
21989          * Manually trigger a cache refresh.
21990          */
21991         refreshCache : function(){
21992             for(var id in els){
21993                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21994                     els[id]._region = els[id].getRegion();
21995                 }
21996             }
21997         }
21998     };
21999 }();/*
22000  * Based on:
22001  * Ext JS Library 1.1.1
22002  * Copyright(c) 2006-2007, Ext JS, LLC.
22003  *
22004  * Originally Released Under LGPL - original licence link has changed is not relivant.
22005  *
22006  * Fork - LGPL
22007  * <script type="text/javascript">
22008  */
22009  
22010
22011 /**
22012  * @class Roo.dd.Registry
22013  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
22014  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
22015  * @singleton
22016  */
22017 Roo.dd.Registry = function(){
22018     var elements = {}; 
22019     var handles = {}; 
22020     var autoIdSeed = 0;
22021
22022     var getId = function(el, autogen){
22023         if(typeof el == "string"){
22024             return el;
22025         }
22026         var id = el.id;
22027         if(!id && autogen !== false){
22028             id = "roodd-" + (++autoIdSeed);
22029             el.id = id;
22030         }
22031         return id;
22032     };
22033     
22034     return {
22035     /**
22036      * Register a drag drop element
22037      * @param {String|HTMLElement} element The id or DOM node to register
22038      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
22039      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
22040      * knows how to interpret, plus there are some specific properties known to the Registry that should be
22041      * populated in the data object (if applicable):
22042      * <pre>
22043 Value      Description<br />
22044 ---------  ------------------------------------------<br />
22045 handles    Array of DOM nodes that trigger dragging<br />
22046            for the element being registered<br />
22047 isHandle   True if the element passed in triggers<br />
22048            dragging itself, else false
22049 </pre>
22050      */
22051         register : function(el, data){
22052             data = data || {};
22053             if(typeof el == "string"){
22054                 el = document.getElementById(el);
22055             }
22056             data.ddel = el;
22057             elements[getId(el)] = data;
22058             if(data.isHandle !== false){
22059                 handles[data.ddel.id] = data;
22060             }
22061             if(data.handles){
22062                 var hs = data.handles;
22063                 for(var i = 0, len = hs.length; i < len; i++){
22064                         handles[getId(hs[i])] = data;
22065                 }
22066             }
22067         },
22068
22069     /**
22070      * Unregister a drag drop element
22071      * @param {String|HTMLElement}  element The id or DOM node to unregister
22072      */
22073         unregister : function(el){
22074             var id = getId(el, false);
22075             var data = elements[id];
22076             if(data){
22077                 delete elements[id];
22078                 if(data.handles){
22079                     var hs = data.handles;
22080                     for(var i = 0, len = hs.length; i < len; i++){
22081                         delete handles[getId(hs[i], false)];
22082                     }
22083                 }
22084             }
22085         },
22086
22087     /**
22088      * Returns the handle registered for a DOM Node by id
22089      * @param {String|HTMLElement} id The DOM node or id to look up
22090      * @return {Object} handle The custom handle data
22091      */
22092         getHandle : function(id){
22093             if(typeof id != "string"){ // must be element?
22094                 id = id.id;
22095             }
22096             return handles[id];
22097         },
22098
22099     /**
22100      * Returns the handle that is registered for the DOM node that is the target of the event
22101      * @param {Event} e The event
22102      * @return {Object} handle The custom handle data
22103      */
22104         getHandleFromEvent : function(e){
22105             var t = Roo.lib.Event.getTarget(e);
22106             return t ? handles[t.id] : null;
22107         },
22108
22109     /**
22110      * Returns a custom data object that is registered for a DOM node by id
22111      * @param {String|HTMLElement} id The DOM node or id to look up
22112      * @return {Object} data The custom data
22113      */
22114         getTarget : function(id){
22115             if(typeof id != "string"){ // must be element?
22116                 id = id.id;
22117             }
22118             return elements[id];
22119         },
22120
22121     /**
22122      * Returns a custom data object that is registered for the DOM node that is the target of the event
22123      * @param {Event} e The event
22124      * @return {Object} data The custom data
22125      */
22126         getTargetFromEvent : function(e){
22127             var t = Roo.lib.Event.getTarget(e);
22128             return t ? elements[t.id] || handles[t.id] : null;
22129         }
22130     };
22131 }();/*
22132  * Based on:
22133  * Ext JS Library 1.1.1
22134  * Copyright(c) 2006-2007, Ext JS, LLC.
22135  *
22136  * Originally Released Under LGPL - original licence link has changed is not relivant.
22137  *
22138  * Fork - LGPL
22139  * <script type="text/javascript">
22140  */
22141  
22142
22143 /**
22144  * @class Roo.dd.StatusProxy
22145  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22146  * default drag proxy used by all Roo.dd components.
22147  * @constructor
22148  * @param {Object} config
22149  */
22150 Roo.dd.StatusProxy = function(config){
22151     Roo.apply(this, config);
22152     this.id = this.id || Roo.id();
22153     this.el = new Roo.Layer({
22154         dh: {
22155             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22156                 {tag: "div", cls: "x-dd-drop-icon"},
22157                 {tag: "div", cls: "x-dd-drag-ghost"}
22158             ]
22159         }, 
22160         shadow: !config || config.shadow !== false
22161     });
22162     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22163     this.dropStatus = this.dropNotAllowed;
22164 };
22165
22166 Roo.dd.StatusProxy.prototype = {
22167     /**
22168      * @cfg {String} dropAllowed
22169      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22170      */
22171     dropAllowed : "x-dd-drop-ok",
22172     /**
22173      * @cfg {String} dropNotAllowed
22174      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22175      */
22176     dropNotAllowed : "x-dd-drop-nodrop",
22177
22178     /**
22179      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22180      * over the current target element.
22181      * @param {String} cssClass The css class for the new drop status indicator image
22182      */
22183     setStatus : function(cssClass){
22184         cssClass = cssClass || this.dropNotAllowed;
22185         if(this.dropStatus != cssClass){
22186             this.el.replaceClass(this.dropStatus, cssClass);
22187             this.dropStatus = cssClass;
22188         }
22189     },
22190
22191     /**
22192      * Resets the status indicator to the default dropNotAllowed value
22193      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22194      */
22195     reset : function(clearGhost){
22196         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22197         this.dropStatus = this.dropNotAllowed;
22198         if(clearGhost){
22199             this.ghost.update("");
22200         }
22201     },
22202
22203     /**
22204      * Updates the contents of the ghost element
22205      * @param {String} html The html that will replace the current innerHTML of the ghost element
22206      */
22207     update : function(html){
22208         if(typeof html == "string"){
22209             this.ghost.update(html);
22210         }else{
22211             this.ghost.update("");
22212             html.style.margin = "0";
22213             this.ghost.dom.appendChild(html);
22214         }
22215         // ensure float = none set?? cant remember why though.
22216         var el = this.ghost.dom.firstChild;
22217                 if(el){
22218                         Roo.fly(el).setStyle('float', 'none');
22219                 }
22220     },
22221     
22222     /**
22223      * Returns the underlying proxy {@link Roo.Layer}
22224      * @return {Roo.Layer} el
22225     */
22226     getEl : function(){
22227         return this.el;
22228     },
22229
22230     /**
22231      * Returns the ghost element
22232      * @return {Roo.Element} el
22233      */
22234     getGhost : function(){
22235         return this.ghost;
22236     },
22237
22238     /**
22239      * Hides the proxy
22240      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22241      */
22242     hide : function(clear){
22243         this.el.hide();
22244         if(clear){
22245             this.reset(true);
22246         }
22247     },
22248
22249     /**
22250      * Stops the repair animation if it's currently running
22251      */
22252     stop : function(){
22253         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22254             this.anim.stop();
22255         }
22256     },
22257
22258     /**
22259      * Displays this proxy
22260      */
22261     show : function(){
22262         this.el.show();
22263     },
22264
22265     /**
22266      * Force the Layer to sync its shadow and shim positions to the element
22267      */
22268     sync : function(){
22269         this.el.sync();
22270     },
22271
22272     /**
22273      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22274      * invalid drop operation by the item being dragged.
22275      * @param {Array} xy The XY position of the element ([x, y])
22276      * @param {Function} callback The function to call after the repair is complete
22277      * @param {Object} scope The scope in which to execute the callback
22278      */
22279     repair : function(xy, callback, scope){
22280         this.callback = callback;
22281         this.scope = scope;
22282         if(xy && this.animRepair !== false){
22283             this.el.addClass("x-dd-drag-repair");
22284             this.el.hideUnders(true);
22285             this.anim = this.el.shift({
22286                 duration: this.repairDuration || .5,
22287                 easing: 'easeOut',
22288                 xy: xy,
22289                 stopFx: true,
22290                 callback: this.afterRepair,
22291                 scope: this
22292             });
22293         }else{
22294             this.afterRepair();
22295         }
22296     },
22297
22298     // private
22299     afterRepair : function(){
22300         this.hide(true);
22301         if(typeof this.callback == "function"){
22302             this.callback.call(this.scope || this);
22303         }
22304         this.callback = null;
22305         this.scope = null;
22306     }
22307 };/*
22308  * Based on:
22309  * Ext JS Library 1.1.1
22310  * Copyright(c) 2006-2007, Ext JS, LLC.
22311  *
22312  * Originally Released Under LGPL - original licence link has changed is not relivant.
22313  *
22314  * Fork - LGPL
22315  * <script type="text/javascript">
22316  */
22317
22318 /**
22319  * @class Roo.dd.DragSource
22320  * @extends Roo.dd.DDProxy
22321  * A simple class that provides the basic implementation needed to make any element draggable.
22322  * @constructor
22323  * @param {String/HTMLElement/Element} el The container element
22324  * @param {Object} config
22325  */
22326 Roo.dd.DragSource = function(el, config){
22327     this.el = Roo.get(el);
22328     this.dragData = {};
22329     
22330     Roo.apply(this, config);
22331     
22332     if(!this.proxy){
22333         this.proxy = new Roo.dd.StatusProxy();
22334     }
22335
22336     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22337           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22338     
22339     this.dragging = false;
22340 };
22341
22342 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22343     /**
22344      * @cfg {String} dropAllowed
22345      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22346      */
22347     dropAllowed : "x-dd-drop-ok",
22348     /**
22349      * @cfg {String} dropNotAllowed
22350      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22351      */
22352     dropNotAllowed : "x-dd-drop-nodrop",
22353
22354     /**
22355      * Returns the data object associated with this drag source
22356      * @return {Object} data An object containing arbitrary data
22357      */
22358     getDragData : function(e){
22359         return this.dragData;
22360     },
22361
22362     // private
22363     onDragEnter : function(e, id){
22364         var target = Roo.dd.DragDropMgr.getDDById(id);
22365         this.cachedTarget = target;
22366         if(this.beforeDragEnter(target, e, id) !== false){
22367             if(target.isNotifyTarget){
22368                 var status = target.notifyEnter(this, e, this.dragData);
22369                 this.proxy.setStatus(status);
22370             }else{
22371                 this.proxy.setStatus(this.dropAllowed);
22372             }
22373             
22374             if(this.afterDragEnter){
22375                 /**
22376                  * An empty function by default, but provided so that you can perform a custom action
22377                  * when the dragged item enters the drop target by providing an implementation.
22378                  * @param {Roo.dd.DragDrop} target The drop target
22379                  * @param {Event} e The event object
22380                  * @param {String} id The id of the dragged element
22381                  * @method afterDragEnter
22382                  */
22383                 this.afterDragEnter(target, e, id);
22384             }
22385         }
22386     },
22387
22388     /**
22389      * An empty function by default, but provided so that you can perform a custom action
22390      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22391      * @param {Roo.dd.DragDrop} target The drop target
22392      * @param {Event} e The event object
22393      * @param {String} id The id of the dragged element
22394      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22395      */
22396     beforeDragEnter : function(target, e, id){
22397         return true;
22398     },
22399
22400     // private
22401     alignElWithMouse: function() {
22402         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22403         this.proxy.sync();
22404     },
22405
22406     // private
22407     onDragOver : function(e, id){
22408         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22409         if(this.beforeDragOver(target, e, id) !== false){
22410             if(target.isNotifyTarget){
22411                 var status = target.notifyOver(this, e, this.dragData);
22412                 this.proxy.setStatus(status);
22413             }
22414
22415             if(this.afterDragOver){
22416                 /**
22417                  * An empty function by default, but provided so that you can perform a custom action
22418                  * while the dragged item is over the drop target by providing an implementation.
22419                  * @param {Roo.dd.DragDrop} target The drop target
22420                  * @param {Event} e The event object
22421                  * @param {String} id The id of the dragged element
22422                  * @method afterDragOver
22423                  */
22424                 this.afterDragOver(target, e, id);
22425             }
22426         }
22427     },
22428
22429     /**
22430      * An empty function by default, but provided so that you can perform a custom action
22431      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22432      * @param {Roo.dd.DragDrop} target The drop target
22433      * @param {Event} e The event object
22434      * @param {String} id The id of the dragged element
22435      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22436      */
22437     beforeDragOver : function(target, e, id){
22438         return true;
22439     },
22440
22441     // private
22442     onDragOut : function(e, id){
22443         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22444         if(this.beforeDragOut(target, e, id) !== false){
22445             if(target.isNotifyTarget){
22446                 target.notifyOut(this, e, this.dragData);
22447             }
22448             this.proxy.reset();
22449             if(this.afterDragOut){
22450                 /**
22451                  * An empty function by default, but provided so that you can perform a custom action
22452                  * after the dragged item is dragged out of the target without dropping.
22453                  * @param {Roo.dd.DragDrop} target The drop target
22454                  * @param {Event} e The event object
22455                  * @param {String} id The id of the dragged element
22456                  * @method afterDragOut
22457                  */
22458                 this.afterDragOut(target, e, id);
22459             }
22460         }
22461         this.cachedTarget = null;
22462     },
22463
22464     /**
22465      * An empty function by default, but provided so that you can perform a custom action before the dragged
22466      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22467      * @param {Roo.dd.DragDrop} target The drop target
22468      * @param {Event} e The event object
22469      * @param {String} id The id of the dragged element
22470      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22471      */
22472     beforeDragOut : function(target, e, id){
22473         return true;
22474     },
22475     
22476     // private
22477     onDragDrop : function(e, id){
22478         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22479         if(this.beforeDragDrop(target, e, id) !== false){
22480             if(target.isNotifyTarget){
22481                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22482                     this.onValidDrop(target, e, id);
22483                 }else{
22484                     this.onInvalidDrop(target, e, id);
22485                 }
22486             }else{
22487                 this.onValidDrop(target, e, id);
22488             }
22489             
22490             if(this.afterDragDrop){
22491                 /**
22492                  * An empty function by default, but provided so that you can perform a custom action
22493                  * after a valid drag drop has occurred by providing an implementation.
22494                  * @param {Roo.dd.DragDrop} target The drop target
22495                  * @param {Event} e The event object
22496                  * @param {String} id The id of the dropped element
22497                  * @method afterDragDrop
22498                  */
22499                 this.afterDragDrop(target, e, id);
22500             }
22501         }
22502         delete this.cachedTarget;
22503     },
22504
22505     /**
22506      * An empty function by default, but provided so that you can perform a custom action before the dragged
22507      * item is dropped onto the target and optionally cancel the onDragDrop.
22508      * @param {Roo.dd.DragDrop} target The drop target
22509      * @param {Event} e The event object
22510      * @param {String} id The id of the dragged element
22511      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22512      */
22513     beforeDragDrop : function(target, e, id){
22514         return true;
22515     },
22516
22517     // private
22518     onValidDrop : function(target, e, id){
22519         this.hideProxy();
22520         if(this.afterValidDrop){
22521             /**
22522              * An empty function by default, but provided so that you can perform a custom action
22523              * after a valid drop has occurred by providing an implementation.
22524              * @param {Object} target The target DD 
22525              * @param {Event} e The event object
22526              * @param {String} id The id of the dropped element
22527              * @method afterInvalidDrop
22528              */
22529             this.afterValidDrop(target, e, id);
22530         }
22531     },
22532
22533     // private
22534     getRepairXY : function(e, data){
22535         return this.el.getXY();  
22536     },
22537
22538     // private
22539     onInvalidDrop : function(target, e, id){
22540         this.beforeInvalidDrop(target, e, id);
22541         if(this.cachedTarget){
22542             if(this.cachedTarget.isNotifyTarget){
22543                 this.cachedTarget.notifyOut(this, e, this.dragData);
22544             }
22545             this.cacheTarget = null;
22546         }
22547         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22548
22549         if(this.afterInvalidDrop){
22550             /**
22551              * An empty function by default, but provided so that you can perform a custom action
22552              * after an invalid drop has occurred by providing an implementation.
22553              * @param {Event} e The event object
22554              * @param {String} id The id of the dropped element
22555              * @method afterInvalidDrop
22556              */
22557             this.afterInvalidDrop(e, id);
22558         }
22559     },
22560
22561     // private
22562     afterRepair : function(){
22563         if(Roo.enableFx){
22564             this.el.highlight(this.hlColor || "c3daf9");
22565         }
22566         this.dragging = false;
22567     },
22568
22569     /**
22570      * An empty function by default, but provided so that you can perform a custom action after an invalid
22571      * drop has occurred.
22572      * @param {Roo.dd.DragDrop} target The drop target
22573      * @param {Event} e The event object
22574      * @param {String} id The id of the dragged element
22575      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22576      */
22577     beforeInvalidDrop : function(target, e, id){
22578         return true;
22579     },
22580
22581     // private
22582     handleMouseDown : function(e){
22583         if(this.dragging) {
22584             return;
22585         }
22586         var data = this.getDragData(e);
22587         if(data && this.onBeforeDrag(data, e) !== false){
22588             this.dragData = data;
22589             this.proxy.stop();
22590             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22591         } 
22592     },
22593
22594     /**
22595      * An empty function by default, but provided so that you can perform a custom action before the initial
22596      * drag event begins and optionally cancel it.
22597      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22598      * @param {Event} e The event object
22599      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22600      */
22601     onBeforeDrag : function(data, e){
22602         return true;
22603     },
22604
22605     /**
22606      * An empty function by default, but provided so that you can perform a custom action once the initial
22607      * drag event has begun.  The drag cannot be canceled from this function.
22608      * @param {Number} x The x position of the click on the dragged object
22609      * @param {Number} y The y position of the click on the dragged object
22610      */
22611     onStartDrag : Roo.emptyFn,
22612
22613     // private - YUI override
22614     startDrag : function(x, y){
22615         this.proxy.reset();
22616         this.dragging = true;
22617         this.proxy.update("");
22618         this.onInitDrag(x, y);
22619         this.proxy.show();
22620     },
22621
22622     // private
22623     onInitDrag : function(x, y){
22624         var clone = this.el.dom.cloneNode(true);
22625         clone.id = Roo.id(); // prevent duplicate ids
22626         this.proxy.update(clone);
22627         this.onStartDrag(x, y);
22628         return true;
22629     },
22630
22631     /**
22632      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22633      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22634      */
22635     getProxy : function(){
22636         return this.proxy;  
22637     },
22638
22639     /**
22640      * Hides the drag source's {@link Roo.dd.StatusProxy}
22641      */
22642     hideProxy : function(){
22643         this.proxy.hide();  
22644         this.proxy.reset(true);
22645         this.dragging = false;
22646     },
22647
22648     // private
22649     triggerCacheRefresh : function(){
22650         Roo.dd.DDM.refreshCache(this.groups);
22651     },
22652
22653     // private - override to prevent hiding
22654     b4EndDrag: function(e) {
22655     },
22656
22657     // private - override to prevent moving
22658     endDrag : function(e){
22659         this.onEndDrag(this.dragData, e);
22660     },
22661
22662     // private
22663     onEndDrag : function(data, e){
22664     },
22665     
22666     // private - pin to cursor
22667     autoOffset : function(x, y) {
22668         this.setDelta(-12, -20);
22669     }    
22670 });/*
22671  * Based on:
22672  * Ext JS Library 1.1.1
22673  * Copyright(c) 2006-2007, Ext JS, LLC.
22674  *
22675  * Originally Released Under LGPL - original licence link has changed is not relivant.
22676  *
22677  * Fork - LGPL
22678  * <script type="text/javascript">
22679  */
22680
22681
22682 /**
22683  * @class Roo.dd.DropTarget
22684  * @extends Roo.dd.DDTarget
22685  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22686  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22687  * @constructor
22688  * @param {String/HTMLElement/Element} el The container element
22689  * @param {Object} config
22690  */
22691 Roo.dd.DropTarget = function(el, config){
22692     this.el = Roo.get(el);
22693     
22694     var listeners = false; ;
22695     if (config && config.listeners) {
22696         listeners= config.listeners;
22697         delete config.listeners;
22698     }
22699     Roo.apply(this, config);
22700     
22701     if(this.containerScroll){
22702         Roo.dd.ScrollManager.register(this.el);
22703     }
22704     this.addEvents( {
22705          /**
22706          * @scope Roo.dd.DropTarget
22707          */
22708          
22709          /**
22710          * @event enter
22711          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22712          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22713          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22714          * 
22715          * IMPORTANT : it should set  this.valid to true|false
22716          * 
22717          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22718          * @param {Event} e The event
22719          * @param {Object} data An object containing arbitrary data supplied by the drag source
22720          */
22721         "enter" : true,
22722         
22723          /**
22724          * @event over
22725          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22726          * This method will be called on every mouse movement while the drag source is over the drop target.
22727          * This default implementation simply returns the dropAllowed config value.
22728          * 
22729          * IMPORTANT : it should set  this.valid to true|false
22730          * 
22731          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22732          * @param {Event} e The event
22733          * @param {Object} data An object containing arbitrary data supplied by the drag source
22734          
22735          */
22736         "over" : true,
22737         /**
22738          * @event out
22739          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22740          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22741          * overClass (if any) from the drop element.
22742          * 
22743          * 
22744          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22745          * @param {Event} e The event
22746          * @param {Object} data An object containing arbitrary data supplied by the drag source
22747          */
22748          "out" : true,
22749          
22750         /**
22751          * @event drop
22752          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22753          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22754          * implementation that does something to process the drop event and returns true so that the drag source's
22755          * repair action does not run.
22756          * 
22757          * IMPORTANT : it should set this.success
22758          * 
22759          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22760          * @param {Event} e The event
22761          * @param {Object} data An object containing arbitrary data supplied by the drag source
22762         */
22763          "drop" : true
22764     });
22765             
22766      
22767     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22768         this.el.dom, 
22769         this.ddGroup || this.group,
22770         {
22771             isTarget: true,
22772             listeners : listeners || {} 
22773            
22774         
22775         }
22776     );
22777
22778 };
22779
22780 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22781     /**
22782      * @cfg {String} overClass
22783      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22784      */
22785      /**
22786      * @cfg {String} ddGroup
22787      * The drag drop group to handle drop events for
22788      */
22789      
22790     /**
22791      * @cfg {String} dropAllowed
22792      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22793      */
22794     dropAllowed : "x-dd-drop-ok",
22795     /**
22796      * @cfg {String} dropNotAllowed
22797      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22798      */
22799     dropNotAllowed : "x-dd-drop-nodrop",
22800     /**
22801      * @cfg {boolean} success
22802      * set this after drop listener.. 
22803      */
22804     success : false,
22805     /**
22806      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22807      * if the drop point is valid for over/enter..
22808      */
22809     valid : false,
22810     // private
22811     isTarget : true,
22812
22813     // private
22814     isNotifyTarget : true,
22815     
22816     /**
22817      * @hide
22818      */
22819     notifyEnter : function(dd, e, data)
22820     {
22821         this.valid = true;
22822         this.fireEvent('enter', dd, e, data);
22823         if(this.overClass){
22824             this.el.addClass(this.overClass);
22825         }
22826         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22827             this.valid ? this.dropAllowed : this.dropNotAllowed
22828         );
22829     },
22830
22831     /**
22832      * @hide
22833      */
22834     notifyOver : function(dd, e, data)
22835     {
22836         this.valid = true;
22837         this.fireEvent('over', dd, e, data);
22838         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22839             this.valid ? this.dropAllowed : this.dropNotAllowed
22840         );
22841     },
22842
22843     /**
22844      * @hide
22845      */
22846     notifyOut : function(dd, e, data)
22847     {
22848         this.fireEvent('out', dd, e, data);
22849         if(this.overClass){
22850             this.el.removeClass(this.overClass);
22851         }
22852     },
22853
22854     /**
22855      * @hide
22856      */
22857     notifyDrop : function(dd, e, data)
22858     {
22859         this.success = false;
22860         this.fireEvent('drop', dd, e, data);
22861         return this.success;
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
22875 /**
22876  * @class Roo.dd.DragZone
22877  * @extends Roo.dd.DragSource
22878  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22879  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22880  * @constructor
22881  * @param {String/HTMLElement/Element} el The container element
22882  * @param {Object} config
22883  */
22884 Roo.dd.DragZone = function(el, config){
22885     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22886     if(this.containerScroll){
22887         Roo.dd.ScrollManager.register(this.el);
22888     }
22889 };
22890
22891 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22892     /**
22893      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22894      * for auto scrolling during drag operations.
22895      */
22896     /**
22897      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22898      * method after a failed drop (defaults to "c3daf9" - light blue)
22899      */
22900
22901     /**
22902      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22903      * for a valid target to drag based on the mouse down. Override this method
22904      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22905      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22906      * @param {EventObject} e The mouse down event
22907      * @return {Object} The dragData
22908      */
22909     getDragData : function(e){
22910         return Roo.dd.Registry.getHandleFromEvent(e);
22911     },
22912     
22913     /**
22914      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22915      * this.dragData.ddel
22916      * @param {Number} x The x position of the click on the dragged object
22917      * @param {Number} y The y position of the click on the dragged object
22918      * @return {Boolean} true to continue the drag, false to cancel
22919      */
22920     onInitDrag : function(x, y){
22921         this.proxy.update(this.dragData.ddel.cloneNode(true));
22922         this.onStartDrag(x, y);
22923         return true;
22924     },
22925     
22926     /**
22927      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22928      */
22929     afterRepair : function(){
22930         if(Roo.enableFx){
22931             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22932         }
22933         this.dragging = false;
22934     },
22935
22936     /**
22937      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22938      * the XY of this.dragData.ddel
22939      * @param {EventObject} e The mouse up event
22940      * @return {Array} The xy location (e.g. [100, 200])
22941      */
22942     getRepairXY : function(e){
22943         return Roo.Element.fly(this.dragData.ddel).getXY();  
22944     }
22945 });/*
22946  * Based on:
22947  * Ext JS Library 1.1.1
22948  * Copyright(c) 2006-2007, Ext JS, LLC.
22949  *
22950  * Originally Released Under LGPL - original licence link has changed is not relivant.
22951  *
22952  * Fork - LGPL
22953  * <script type="text/javascript">
22954  */
22955 /**
22956  * @class Roo.dd.DropZone
22957  * @extends Roo.dd.DropTarget
22958  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22959  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22960  * @constructor
22961  * @param {String/HTMLElement/Element} el The container element
22962  * @param {Object} config
22963  */
22964 Roo.dd.DropZone = function(el, config){
22965     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22966 };
22967
22968 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22969     /**
22970      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22971      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22972      * provide your own custom lookup.
22973      * @param {Event} e The event
22974      * @return {Object} data The custom data
22975      */
22976     getTargetFromEvent : function(e){
22977         return Roo.dd.Registry.getTargetFromEvent(e);
22978     },
22979
22980     /**
22981      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22982      * that it has registered.  This method has no default implementation and should be overridden to provide
22983      * node-specific processing if necessary.
22984      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22985      * {@link #getTargetFromEvent} for this node)
22986      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22987      * @param {Event} e The event
22988      * @param {Object} data An object containing arbitrary data supplied by the drag source
22989      */
22990     onNodeEnter : function(n, dd, e, data){
22991         
22992     },
22993
22994     /**
22995      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22996      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22997      * overridden to provide the proper feedback.
22998      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22999      * {@link #getTargetFromEvent} for this node)
23000      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23001      * @param {Event} e The event
23002      * @param {Object} data An object containing arbitrary data supplied by the drag source
23003      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23004      * underlying {@link Roo.dd.StatusProxy} can be updated
23005      */
23006     onNodeOver : function(n, dd, e, data){
23007         return this.dropAllowed;
23008     },
23009
23010     /**
23011      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
23012      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
23013      * node-specific processing if necessary.
23014      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23015      * {@link #getTargetFromEvent} for this node)
23016      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23017      * @param {Event} e The event
23018      * @param {Object} data An object containing arbitrary data supplied by the drag source
23019      */
23020     onNodeOut : function(n, dd, e, data){
23021         
23022     },
23023
23024     /**
23025      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
23026      * the drop node.  The default implementation returns false, so it should be overridden to provide the
23027      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
23028      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23029      * {@link #getTargetFromEvent} for this node)
23030      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23031      * @param {Event} e The event
23032      * @param {Object} data An object containing arbitrary data supplied by the drag source
23033      * @return {Boolean} True if the drop was valid, else false
23034      */
23035     onNodeDrop : function(n, dd, e, data){
23036         return false;
23037     },
23038
23039     /**
23040      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
23041      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
23042      * it should be overridden to provide the proper feedback if necessary.
23043      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23044      * @param {Event} e The event
23045      * @param {Object} data An object containing arbitrary data supplied by the drag source
23046      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23047      * underlying {@link Roo.dd.StatusProxy} can be updated
23048      */
23049     onContainerOver : function(dd, e, data){
23050         return this.dropNotAllowed;
23051     },
23052
23053     /**
23054      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23055      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23056      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23057      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23058      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23059      * @param {Event} e The event
23060      * @param {Object} data An object containing arbitrary data supplied by the drag source
23061      * @return {Boolean} True if the drop was valid, else false
23062      */
23063     onContainerDrop : function(dd, e, data){
23064         return false;
23065     },
23066
23067     /**
23068      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23069      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23070      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23071      * you should override this method and provide a custom implementation.
23072      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23073      * @param {Event} e The event
23074      * @param {Object} data An object containing arbitrary data supplied by the drag source
23075      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23076      * underlying {@link Roo.dd.StatusProxy} can be updated
23077      */
23078     notifyEnter : function(dd, e, data){
23079         return this.dropNotAllowed;
23080     },
23081
23082     /**
23083      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23084      * This method will be called on every mouse movement while the drag source is over the drop zone.
23085      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23086      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23087      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23088      * registered node, it will call {@link #onContainerOver}.
23089      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23090      * @param {Event} e The event
23091      * @param {Object} data An object containing arbitrary data supplied by the drag source
23092      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23093      * underlying {@link Roo.dd.StatusProxy} can be updated
23094      */
23095     notifyOver : function(dd, e, data){
23096         var n = this.getTargetFromEvent(e);
23097         if(!n){ // not over valid drop target
23098             if(this.lastOverNode){
23099                 this.onNodeOut(this.lastOverNode, dd, e, data);
23100                 this.lastOverNode = null;
23101             }
23102             return this.onContainerOver(dd, e, data);
23103         }
23104         if(this.lastOverNode != n){
23105             if(this.lastOverNode){
23106                 this.onNodeOut(this.lastOverNode, dd, e, data);
23107             }
23108             this.onNodeEnter(n, dd, e, data);
23109             this.lastOverNode = n;
23110         }
23111         return this.onNodeOver(n, dd, e, data);
23112     },
23113
23114     /**
23115      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23116      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23117      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23118      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23119      * @param {Event} e The event
23120      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23121      */
23122     notifyOut : function(dd, e, data){
23123         if(this.lastOverNode){
23124             this.onNodeOut(this.lastOverNode, dd, e, data);
23125             this.lastOverNode = null;
23126         }
23127     },
23128
23129     /**
23130      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23131      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23132      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23133      * otherwise it will call {@link #onContainerDrop}.
23134      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23135      * @param {Event} e The event
23136      * @param {Object} data An object containing arbitrary data supplied by the drag source
23137      * @return {Boolean} True if the drop was valid, else false
23138      */
23139     notifyDrop : function(dd, e, data){
23140         if(this.lastOverNode){
23141             this.onNodeOut(this.lastOverNode, dd, e, data);
23142             this.lastOverNode = null;
23143         }
23144         var n = this.getTargetFromEvent(e);
23145         return n ?
23146             this.onNodeDrop(n, dd, e, data) :
23147             this.onContainerDrop(dd, e, data);
23148     },
23149
23150     // private
23151     triggerCacheRefresh : function(){
23152         Roo.dd.DDM.refreshCache(this.groups);
23153     }  
23154 });/*
23155  * Based on:
23156  * Ext JS Library 1.1.1
23157  * Copyright(c) 2006-2007, Ext JS, LLC.
23158  *
23159  * Originally Released Under LGPL - original licence link has changed is not relivant.
23160  *
23161  * Fork - LGPL
23162  * <script type="text/javascript">
23163  */
23164
23165
23166 /**
23167  * @class Roo.data.SortTypes
23168  * @singleton
23169  * Defines the default sorting (casting?) comparison functions used when sorting data.
23170  */
23171 Roo.data.SortTypes = {
23172     /**
23173      * Default sort that does nothing
23174      * @param {Mixed} s The value being converted
23175      * @return {Mixed} The comparison value
23176      */
23177     none : function(s){
23178         return s;
23179     },
23180     
23181     /**
23182      * The regular expression used to strip tags
23183      * @type {RegExp}
23184      * @property
23185      */
23186     stripTagsRE : /<\/?[^>]+>/gi,
23187     
23188     /**
23189      * Strips all HTML tags to sort on text only
23190      * @param {Mixed} s The value being converted
23191      * @return {String} The comparison value
23192      */
23193     asText : function(s){
23194         return String(s).replace(this.stripTagsRE, "");
23195     },
23196     
23197     /**
23198      * Strips all HTML tags to sort on text only - Case insensitive
23199      * @param {Mixed} s The value being converted
23200      * @return {String} The comparison value
23201      */
23202     asUCText : function(s){
23203         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23204     },
23205     
23206     /**
23207      * Case insensitive string
23208      * @param {Mixed} s The value being converted
23209      * @return {String} The comparison value
23210      */
23211     asUCString : function(s) {
23212         return String(s).toUpperCase();
23213     },
23214     
23215     /**
23216      * Date sorting
23217      * @param {Mixed} s The value being converted
23218      * @return {Number} The comparison value
23219      */
23220     asDate : function(s) {
23221         if(!s){
23222             return 0;
23223         }
23224         if(s instanceof Date){
23225             return s.getTime();
23226         }
23227         return Date.parse(String(s));
23228     },
23229     
23230     /**
23231      * Float sorting
23232      * @param {Mixed} s The value being converted
23233      * @return {Float} The comparison value
23234      */
23235     asFloat : function(s) {
23236         var val = parseFloat(String(s).replace(/,/g, ""));
23237         if(isNaN(val)) {
23238             val = 0;
23239         }
23240         return val;
23241     },
23242     
23243     /**
23244      * Integer sorting
23245      * @param {Mixed} s The value being converted
23246      * @return {Number} The comparison value
23247      */
23248     asInt : function(s) {
23249         var val = parseInt(String(s).replace(/,/g, ""));
23250         if(isNaN(val)) {
23251             val = 0;
23252         }
23253         return val;
23254     }
23255 };/*
23256  * Based on:
23257  * Ext JS Library 1.1.1
23258  * Copyright(c) 2006-2007, Ext JS, LLC.
23259  *
23260  * Originally Released Under LGPL - original licence link has changed is not relivant.
23261  *
23262  * Fork - LGPL
23263  * <script type="text/javascript">
23264  */
23265
23266 /**
23267 * @class Roo.data.Record
23268  * Instances of this class encapsulate both record <em>definition</em> information, and record
23269  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23270  * to access Records cached in an {@link Roo.data.Store} object.<br>
23271  * <p>
23272  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23273  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23274  * objects.<br>
23275  * <p>
23276  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23277  * @constructor
23278  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23279  * {@link #create}. The parameters are the same.
23280  * @param {Array} data An associative Array of data values keyed by the field name.
23281  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23282  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23283  * not specified an integer id is generated.
23284  */
23285 Roo.data.Record = function(data, id){
23286     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23287     this.data = data;
23288 };
23289
23290 /**
23291  * Generate a constructor for a specific record layout.
23292  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23293  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23294  * Each field definition object may contain the following properties: <ul>
23295  * <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,
23296  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23297  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23298  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23299  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23300  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23301  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23302  * this may be omitted.</p></li>
23303  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23304  * <ul><li>auto (Default, implies no conversion)</li>
23305  * <li>string</li>
23306  * <li>int</li>
23307  * <li>float</li>
23308  * <li>boolean</li>
23309  * <li>date</li></ul></p></li>
23310  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23311  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23312  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23313  * by the Reader into an object that will be stored in the Record. It is passed the
23314  * following parameters:<ul>
23315  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23316  * </ul></p></li>
23317  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23318  * </ul>
23319  * <br>usage:<br><pre><code>
23320 var TopicRecord = Roo.data.Record.create(
23321     {name: 'title', mapping: 'topic_title'},
23322     {name: 'author', mapping: 'username'},
23323     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23324     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23325     {name: 'lastPoster', mapping: 'user2'},
23326     {name: 'excerpt', mapping: 'post_text'}
23327 );
23328
23329 var myNewRecord = new TopicRecord({
23330     title: 'Do my job please',
23331     author: 'noobie',
23332     totalPosts: 1,
23333     lastPost: new Date(),
23334     lastPoster: 'Animal',
23335     excerpt: 'No way dude!'
23336 });
23337 myStore.add(myNewRecord);
23338 </code></pre>
23339  * @method create
23340  * @static
23341  */
23342 Roo.data.Record.create = function(o){
23343     var f = function(){
23344         f.superclass.constructor.apply(this, arguments);
23345     };
23346     Roo.extend(f, Roo.data.Record);
23347     var p = f.prototype;
23348     p.fields = new Roo.util.MixedCollection(false, function(field){
23349         return field.name;
23350     });
23351     for(var i = 0, len = o.length; i < len; i++){
23352         p.fields.add(new Roo.data.Field(o[i]));
23353     }
23354     f.getField = function(name){
23355         return p.fields.get(name);  
23356     };
23357     return f;
23358 };
23359
23360 Roo.data.Record.AUTO_ID = 1000;
23361 Roo.data.Record.EDIT = 'edit';
23362 Roo.data.Record.REJECT = 'reject';
23363 Roo.data.Record.COMMIT = 'commit';
23364
23365 Roo.data.Record.prototype = {
23366     /**
23367      * Readonly flag - true if this record has been modified.
23368      * @type Boolean
23369      */
23370     dirty : false,
23371     editing : false,
23372     error: null,
23373     modified: null,
23374
23375     // private
23376     join : function(store){
23377         this.store = store;
23378     },
23379
23380     /**
23381      * Set the named field to the specified value.
23382      * @param {String} name The name of the field to set.
23383      * @param {Object} value The value to set the field to.
23384      */
23385     set : function(name, value){
23386         if(this.data[name] == value){
23387             return;
23388         }
23389         this.dirty = true;
23390         if(!this.modified){
23391             this.modified = {};
23392         }
23393         if(typeof this.modified[name] == 'undefined'){
23394             this.modified[name] = this.data[name];
23395         }
23396         this.data[name] = value;
23397         if(!this.editing && this.store){
23398             this.store.afterEdit(this);
23399         }       
23400     },
23401
23402     /**
23403      * Get the value of the named field.
23404      * @param {String} name The name of the field to get the value of.
23405      * @return {Object} The value of the field.
23406      */
23407     get : function(name){
23408         return this.data[name]; 
23409     },
23410
23411     // private
23412     beginEdit : function(){
23413         this.editing = true;
23414         this.modified = {}; 
23415     },
23416
23417     // private
23418     cancelEdit : function(){
23419         this.editing = false;
23420         delete this.modified;
23421     },
23422
23423     // private
23424     endEdit : function(){
23425         this.editing = false;
23426         if(this.dirty && this.store){
23427             this.store.afterEdit(this);
23428         }
23429     },
23430
23431     /**
23432      * Usually called by the {@link Roo.data.Store} which owns the Record.
23433      * Rejects all changes made to the Record since either creation, or the last commit operation.
23434      * Modified fields are reverted to their original values.
23435      * <p>
23436      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23437      * of reject operations.
23438      */
23439     reject : function(){
23440         var m = this.modified;
23441         for(var n in m){
23442             if(typeof m[n] != "function"){
23443                 this.data[n] = m[n];
23444             }
23445         }
23446         this.dirty = false;
23447         delete this.modified;
23448         this.editing = false;
23449         if(this.store){
23450             this.store.afterReject(this);
23451         }
23452     },
23453
23454     /**
23455      * Usually called by the {@link Roo.data.Store} which owns the Record.
23456      * Commits all changes made to the Record since either creation, or the last commit operation.
23457      * <p>
23458      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23459      * of commit operations.
23460      */
23461     commit : function(){
23462         this.dirty = false;
23463         delete this.modified;
23464         this.editing = false;
23465         if(this.store){
23466             this.store.afterCommit(this);
23467         }
23468     },
23469
23470     // private
23471     hasError : function(){
23472         return this.error != null;
23473     },
23474
23475     // private
23476     clearError : function(){
23477         this.error = null;
23478     },
23479
23480     /**
23481      * Creates a copy of this record.
23482      * @param {String} id (optional) A new record id if you don't want to use this record's id
23483      * @return {Record}
23484      */
23485     copy : function(newId) {
23486         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23487     }
23488 };/*
23489  * Based on:
23490  * Ext JS Library 1.1.1
23491  * Copyright(c) 2006-2007, Ext JS, LLC.
23492  *
23493  * Originally Released Under LGPL - original licence link has changed is not relivant.
23494  *
23495  * Fork - LGPL
23496  * <script type="text/javascript">
23497  */
23498
23499
23500
23501 /**
23502  * @class Roo.data.Store
23503  * @extends Roo.util.Observable
23504  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23505  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23506  * <p>
23507  * 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
23508  * has no knowledge of the format of the data returned by the Proxy.<br>
23509  * <p>
23510  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23511  * instances from the data object. These records are cached and made available through accessor functions.
23512  * @constructor
23513  * Creates a new Store.
23514  * @param {Object} config A config object containing the objects needed for the Store to access data,
23515  * and read the data into Records.
23516  */
23517 Roo.data.Store = function(config){
23518     this.data = new Roo.util.MixedCollection(false);
23519     this.data.getKey = function(o){
23520         return o.id;
23521     };
23522     this.baseParams = {};
23523     // private
23524     this.paramNames = {
23525         "start" : "start",
23526         "limit" : "limit",
23527         "sort" : "sort",
23528         "dir" : "dir",
23529         "multisort" : "_multisort"
23530     };
23531
23532     if(config && config.data){
23533         this.inlineData = config.data;
23534         delete config.data;
23535     }
23536
23537     Roo.apply(this, config);
23538     
23539     if(this.reader){ // reader passed
23540         this.reader = Roo.factory(this.reader, Roo.data);
23541         this.reader.xmodule = this.xmodule || false;
23542         if(!this.recordType){
23543             this.recordType = this.reader.recordType;
23544         }
23545         if(this.reader.onMetaChange){
23546             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23547         }
23548     }
23549
23550     if(this.recordType){
23551         this.fields = this.recordType.prototype.fields;
23552     }
23553     this.modified = [];
23554
23555     this.addEvents({
23556         /**
23557          * @event datachanged
23558          * Fires when the data cache has changed, and a widget which is using this Store
23559          * as a Record cache should refresh its view.
23560          * @param {Store} this
23561          */
23562         datachanged : true,
23563         /**
23564          * @event metachange
23565          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23566          * @param {Store} this
23567          * @param {Object} meta The JSON metadata
23568          */
23569         metachange : true,
23570         /**
23571          * @event add
23572          * Fires when Records have been added to the Store
23573          * @param {Store} this
23574          * @param {Roo.data.Record[]} records The array of Records added
23575          * @param {Number} index The index at which the record(s) were added
23576          */
23577         add : true,
23578         /**
23579          * @event remove
23580          * Fires when a Record has been removed from the Store
23581          * @param {Store} this
23582          * @param {Roo.data.Record} record The Record that was removed
23583          * @param {Number} index The index at which the record was removed
23584          */
23585         remove : true,
23586         /**
23587          * @event update
23588          * Fires when a Record has been updated
23589          * @param {Store} this
23590          * @param {Roo.data.Record} record The Record that was updated
23591          * @param {String} operation The update operation being performed.  Value may be one of:
23592          * <pre><code>
23593  Roo.data.Record.EDIT
23594  Roo.data.Record.REJECT
23595  Roo.data.Record.COMMIT
23596          * </code></pre>
23597          */
23598         update : true,
23599         /**
23600          * @event clear
23601          * Fires when the data cache has been cleared.
23602          * @param {Store} this
23603          */
23604         clear : true,
23605         /**
23606          * @event beforeload
23607          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23608          * the load action will be canceled.
23609          * @param {Store} this
23610          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23611          */
23612         beforeload : true,
23613         /**
23614          * @event beforeloadadd
23615          * Fires after a new set of Records has been loaded.
23616          * @param {Store} this
23617          * @param {Roo.data.Record[]} records The Records that were loaded
23618          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23619          */
23620         beforeloadadd : true,
23621         /**
23622          * @event load
23623          * Fires after a new set of Records has been loaded, before they are added to the store.
23624          * @param {Store} this
23625          * @param {Roo.data.Record[]} records The Records that were loaded
23626          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23627          * @params {Object} return from reader
23628          */
23629         load : true,
23630         /**
23631          * @event loadexception
23632          * Fires if an exception occurs in the Proxy during loading.
23633          * Called with the signature of the Proxy's "loadexception" event.
23634          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23635          * 
23636          * @param {Proxy} 
23637          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23638          * @param {Object} load options 
23639          * @param {Object} jsonData from your request (normally this contains the Exception)
23640          */
23641         loadexception : true
23642     });
23643     
23644     if(this.proxy){
23645         this.proxy = Roo.factory(this.proxy, Roo.data);
23646         this.proxy.xmodule = this.xmodule || false;
23647         this.relayEvents(this.proxy,  ["loadexception"]);
23648     }
23649     this.sortToggle = {};
23650     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23651
23652     Roo.data.Store.superclass.constructor.call(this);
23653
23654     if(this.inlineData){
23655         this.loadData(this.inlineData);
23656         delete this.inlineData;
23657     }
23658 };
23659
23660 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23661      /**
23662     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23663     * without a remote query - used by combo/forms at present.
23664     */
23665     
23666     /**
23667     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
23668     */
23669     /**
23670     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23671     */
23672     /**
23673     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
23674     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23675     */
23676     /**
23677     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23678     * on any HTTP request
23679     */
23680     /**
23681     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23682     */
23683     /**
23684     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23685     */
23686     multiSort: false,
23687     /**
23688     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23689     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23690     */
23691     remoteSort : false,
23692
23693     /**
23694     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23695      * loaded or when a record is removed. (defaults to false).
23696     */
23697     pruneModifiedRecords : false,
23698
23699     // private
23700     lastOptions : null,
23701
23702     /**
23703      * Add Records to the Store and fires the add event.
23704      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23705      */
23706     add : function(records){
23707         records = [].concat(records);
23708         for(var i = 0, len = records.length; i < len; i++){
23709             records[i].join(this);
23710         }
23711         var index = this.data.length;
23712         this.data.addAll(records);
23713         this.fireEvent("add", this, records, index);
23714     },
23715
23716     /**
23717      * Remove a Record from the Store and fires the remove event.
23718      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23719      */
23720     remove : function(record){
23721         var index = this.data.indexOf(record);
23722         this.data.removeAt(index);
23723  
23724         if(this.pruneModifiedRecords){
23725             this.modified.remove(record);
23726         }
23727         this.fireEvent("remove", this, record, index);
23728     },
23729
23730     /**
23731      * Remove all Records from the Store and fires the clear event.
23732      */
23733     removeAll : function(){
23734         this.data.clear();
23735         if(this.pruneModifiedRecords){
23736             this.modified = [];
23737         }
23738         this.fireEvent("clear", this);
23739     },
23740
23741     /**
23742      * Inserts Records to the Store at the given index and fires the add event.
23743      * @param {Number} index The start index at which to insert the passed Records.
23744      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23745      */
23746     insert : function(index, records){
23747         records = [].concat(records);
23748         for(var i = 0, len = records.length; i < len; i++){
23749             this.data.insert(index, records[i]);
23750             records[i].join(this);
23751         }
23752         this.fireEvent("add", this, records, index);
23753     },
23754
23755     /**
23756      * Get the index within the cache of the passed Record.
23757      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23758      * @return {Number} The index of the passed Record. Returns -1 if not found.
23759      */
23760     indexOf : function(record){
23761         return this.data.indexOf(record);
23762     },
23763
23764     /**
23765      * Get the index within the cache of the Record with the passed id.
23766      * @param {String} id The id of the Record to find.
23767      * @return {Number} The index of the Record. Returns -1 if not found.
23768      */
23769     indexOfId : function(id){
23770         return this.data.indexOfKey(id);
23771     },
23772
23773     /**
23774      * Get the Record with the specified id.
23775      * @param {String} id The id of the Record to find.
23776      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23777      */
23778     getById : function(id){
23779         return this.data.key(id);
23780     },
23781
23782     /**
23783      * Get the Record at the specified index.
23784      * @param {Number} index The index of the Record to find.
23785      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23786      */
23787     getAt : function(index){
23788         return this.data.itemAt(index);
23789     },
23790
23791     /**
23792      * Returns a range of Records between specified indices.
23793      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23794      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23795      * @return {Roo.data.Record[]} An array of Records
23796      */
23797     getRange : function(start, end){
23798         return this.data.getRange(start, end);
23799     },
23800
23801     // private
23802     storeOptions : function(o){
23803         o = Roo.apply({}, o);
23804         delete o.callback;
23805         delete o.scope;
23806         this.lastOptions = o;
23807     },
23808
23809     /**
23810      * Loads the Record cache from the configured Proxy using the configured Reader.
23811      * <p>
23812      * If using remote paging, then the first load call must specify the <em>start</em>
23813      * and <em>limit</em> properties in the options.params property to establish the initial
23814      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23815      * <p>
23816      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23817      * and this call will return before the new data has been loaded. Perform any post-processing
23818      * in a callback function, or in a "load" event handler.</strong>
23819      * <p>
23820      * @param {Object} options An object containing properties which control loading options:<ul>
23821      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23822      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23823      * passed the following arguments:<ul>
23824      * <li>r : Roo.data.Record[]</li>
23825      * <li>options: Options object from the load call</li>
23826      * <li>success: Boolean success indicator</li></ul></li>
23827      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23828      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23829      * </ul>
23830      */
23831     load : function(options){
23832         options = options || {};
23833         if(this.fireEvent("beforeload", this, options) !== false){
23834             this.storeOptions(options);
23835             var p = Roo.apply(options.params || {}, this.baseParams);
23836             // if meta was not loaded from remote source.. try requesting it.
23837             if (!this.reader.metaFromRemote) {
23838                 p._requestMeta = 1;
23839             }
23840             if(this.sortInfo && this.remoteSort){
23841                 var pn = this.paramNames;
23842                 p[pn["sort"]] = this.sortInfo.field;
23843                 p[pn["dir"]] = this.sortInfo.direction;
23844             }
23845             if (this.multiSort) {
23846                 var pn = this.paramNames;
23847                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23848             }
23849             
23850             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23851         }
23852     },
23853
23854     /**
23855      * Reloads the Record cache from the configured Proxy using the configured Reader and
23856      * the options from the last load operation performed.
23857      * @param {Object} options (optional) An object containing properties which may override the options
23858      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23859      * the most recently used options are reused).
23860      */
23861     reload : function(options){
23862         this.load(Roo.applyIf(options||{}, this.lastOptions));
23863     },
23864
23865     // private
23866     // Called as a callback by the Reader during a load operation.
23867     loadRecords : function(o, options, success){
23868         if(!o || success === false){
23869             if(success !== false){
23870                 this.fireEvent("load", this, [], options, o);
23871             }
23872             if(options.callback){
23873                 options.callback.call(options.scope || this, [], options, false);
23874             }
23875             return;
23876         }
23877         // if data returned failure - throw an exception.
23878         if (o.success === false) {
23879             // show a message if no listener is registered.
23880             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23881                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23882             }
23883             // loadmask wil be hooked into this..
23884             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23885             return;
23886         }
23887         var r = o.records, t = o.totalRecords || r.length;
23888         
23889         this.fireEvent("beforeloadadd", this, r, options, o);
23890         
23891         if(!options || options.add !== true){
23892             if(this.pruneModifiedRecords){
23893                 this.modified = [];
23894             }
23895             for(var i = 0, len = r.length; i < len; i++){
23896                 r[i].join(this);
23897             }
23898             if(this.snapshot){
23899                 this.data = this.snapshot;
23900                 delete this.snapshot;
23901             }
23902             this.data.clear();
23903             this.data.addAll(r);
23904             this.totalLength = t;
23905             this.applySort();
23906             this.fireEvent("datachanged", this);
23907         }else{
23908             this.totalLength = Math.max(t, this.data.length+r.length);
23909             this.add(r);
23910         }
23911         
23912         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23913                 
23914             var e = new Roo.data.Record({});
23915
23916             e.set(this.parent.displayField, this.parent.emptyTitle);
23917             e.set(this.parent.valueField, '');
23918
23919             this.insert(0, e);
23920         }
23921             
23922         this.fireEvent("load", this, r, options, o);
23923         if(options.callback){
23924             options.callback.call(options.scope || this, r, options, true);
23925         }
23926     },
23927
23928
23929     /**
23930      * Loads data from a passed data block. A Reader which understands the format of the data
23931      * must have been configured in the constructor.
23932      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23933      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23934      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23935      */
23936     loadData : function(o, append){
23937         var r = this.reader.readRecords(o);
23938         this.loadRecords(r, {add: append}, true);
23939     },
23940     
23941      /**
23942      * using 'cn' the nested child reader read the child array into it's child stores.
23943      * @param {Object} rec The record with a 'children array
23944      */
23945     loadDataFromChildren : function(rec)
23946     {
23947         this.loadData(this.reader.toLoadData(rec));
23948     },
23949     
23950
23951     /**
23952      * Gets the number of cached records.
23953      * <p>
23954      * <em>If using paging, this may not be the total size of the dataset. If the data object
23955      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23956      * the data set size</em>
23957      */
23958     getCount : function(){
23959         return this.data.length || 0;
23960     },
23961
23962     /**
23963      * Gets the total number of records in the dataset as returned by the server.
23964      * <p>
23965      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23966      * the dataset size</em>
23967      */
23968     getTotalCount : function(){
23969         return this.totalLength || 0;
23970     },
23971
23972     /**
23973      * Returns the sort state of the Store as an object with two properties:
23974      * <pre><code>
23975  field {String} The name of the field by which the Records are sorted
23976  direction {String} The sort order, "ASC" or "DESC"
23977      * </code></pre>
23978      */
23979     getSortState : function(){
23980         return this.sortInfo;
23981     },
23982
23983     // private
23984     applySort : function(){
23985         if(this.sortInfo && !this.remoteSort){
23986             var s = this.sortInfo, f = s.field;
23987             var st = this.fields.get(f).sortType;
23988             var fn = function(r1, r2){
23989                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23990                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23991             };
23992             this.data.sort(s.direction, fn);
23993             if(this.snapshot && this.snapshot != this.data){
23994                 this.snapshot.sort(s.direction, fn);
23995             }
23996         }
23997     },
23998
23999     /**
24000      * Sets the default sort column and order to be used by the next load operation.
24001      * @param {String} fieldName The name of the field to sort by.
24002      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
24003      */
24004     setDefaultSort : function(field, dir){
24005         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
24006     },
24007
24008     /**
24009      * Sort the Records.
24010      * If remote sorting is used, the sort is performed on the server, and the cache is
24011      * reloaded. If local sorting is used, the cache is sorted internally.
24012      * @param {String} fieldName The name of the field to sort by.
24013      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
24014      */
24015     sort : function(fieldName, dir){
24016         var f = this.fields.get(fieldName);
24017         if(!dir){
24018             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
24019             
24020             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
24021                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
24022             }else{
24023                 dir = f.sortDir;
24024             }
24025         }
24026         this.sortToggle[f.name] = dir;
24027         this.sortInfo = {field: f.name, direction: dir};
24028         if(!this.remoteSort){
24029             this.applySort();
24030             this.fireEvent("datachanged", this);
24031         }else{
24032             this.load(this.lastOptions);
24033         }
24034     },
24035
24036     /**
24037      * Calls the specified function for each of the Records in the cache.
24038      * @param {Function} fn The function to call. The Record is passed as the first parameter.
24039      * Returning <em>false</em> aborts and exits the iteration.
24040      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
24041      */
24042     each : function(fn, scope){
24043         this.data.each(fn, scope);
24044     },
24045
24046     /**
24047      * Gets all records modified since the last commit.  Modified records are persisted across load operations
24048      * (e.g., during paging).
24049      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
24050      */
24051     getModifiedRecords : function(){
24052         return this.modified;
24053     },
24054
24055     // private
24056     createFilterFn : function(property, value, anyMatch){
24057         if(!value.exec){ // not a regex
24058             value = String(value);
24059             if(value.length == 0){
24060                 return false;
24061             }
24062             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
24063         }
24064         return function(r){
24065             return value.test(r.data[property]);
24066         };
24067     },
24068
24069     /**
24070      * Sums the value of <i>property</i> for each record between start and end and returns the result.
24071      * @param {String} property A field on your records
24072      * @param {Number} start The record index to start at (defaults to 0)
24073      * @param {Number} end The last record index to include (defaults to length - 1)
24074      * @return {Number} The sum
24075      */
24076     sum : function(property, start, end){
24077         var rs = this.data.items, v = 0;
24078         start = start || 0;
24079         end = (end || end === 0) ? end : rs.length-1;
24080
24081         for(var i = start; i <= end; i++){
24082             v += (rs[i].data[property] || 0);
24083         }
24084         return v;
24085     },
24086
24087     /**
24088      * Filter the records by a specified property.
24089      * @param {String} field A field on your records
24090      * @param {String/RegExp} value Either a string that the field
24091      * should start with or a RegExp to test against the field
24092      * @param {Boolean} anyMatch True to match any part not just the beginning
24093      */
24094     filter : function(property, value, anyMatch){
24095         var fn = this.createFilterFn(property, value, anyMatch);
24096         return fn ? this.filterBy(fn) : this.clearFilter();
24097     },
24098
24099     /**
24100      * Filter by a function. The specified function will be called with each
24101      * record in this data source. If the function returns true the record is included,
24102      * otherwise it is filtered.
24103      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24104      * @param {Object} scope (optional) The scope of the function (defaults to this)
24105      */
24106     filterBy : function(fn, scope){
24107         this.snapshot = this.snapshot || this.data;
24108         this.data = this.queryBy(fn, scope||this);
24109         this.fireEvent("datachanged", this);
24110     },
24111
24112     /**
24113      * Query the records by a specified property.
24114      * @param {String} field A field on your records
24115      * @param {String/RegExp} value Either a string that the field
24116      * should start with or a RegExp to test against the field
24117      * @param {Boolean} anyMatch True to match any part not just the beginning
24118      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24119      */
24120     query : function(property, value, anyMatch){
24121         var fn = this.createFilterFn(property, value, anyMatch);
24122         return fn ? this.queryBy(fn) : this.data.clone();
24123     },
24124
24125     /**
24126      * Query by a function. The specified function will be called with each
24127      * record in this data source. If the function returns true the record is included
24128      * in the results.
24129      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24130      * @param {Object} scope (optional) The scope of the function (defaults to this)
24131       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24132      **/
24133     queryBy : function(fn, scope){
24134         var data = this.snapshot || this.data;
24135         return data.filterBy(fn, scope||this);
24136     },
24137
24138     /**
24139      * Collects unique values for a particular dataIndex from this store.
24140      * @param {String} dataIndex The property to collect
24141      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
24142      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
24143      * @return {Array} An array of the unique values
24144      **/
24145     collect : function(dataIndex, allowNull, bypassFilter){
24146         var d = (bypassFilter === true && this.snapshot) ?
24147                 this.snapshot.items : this.data.items;
24148         var v, sv, r = [], l = {};
24149         for(var i = 0, len = d.length; i < len; i++){
24150             v = d[i].data[dataIndex];
24151             sv = String(v);
24152             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24153                 l[sv] = true;
24154                 r[r.length] = v;
24155             }
24156         }
24157         return r;
24158     },
24159
24160     /**
24161      * Revert to a view of the Record cache with no filtering applied.
24162      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24163      */
24164     clearFilter : function(suppressEvent){
24165         if(this.snapshot && this.snapshot != this.data){
24166             this.data = this.snapshot;
24167             delete this.snapshot;
24168             if(suppressEvent !== true){
24169                 this.fireEvent("datachanged", this);
24170             }
24171         }
24172     },
24173
24174     // private
24175     afterEdit : function(record){
24176         if(this.modified.indexOf(record) == -1){
24177             this.modified.push(record);
24178         }
24179         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24180     },
24181     
24182     // private
24183     afterReject : function(record){
24184         this.modified.remove(record);
24185         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24186     },
24187
24188     // private
24189     afterCommit : function(record){
24190         this.modified.remove(record);
24191         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24192     },
24193
24194     /**
24195      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24196      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24197      */
24198     commitChanges : function(){
24199         var m = this.modified.slice(0);
24200         this.modified = [];
24201         for(var i = 0, len = m.length; i < len; i++){
24202             m[i].commit();
24203         }
24204     },
24205
24206     /**
24207      * Cancel outstanding changes on all changed records.
24208      */
24209     rejectChanges : function(){
24210         var m = this.modified.slice(0);
24211         this.modified = [];
24212         for(var i = 0, len = m.length; i < len; i++){
24213             m[i].reject();
24214         }
24215     },
24216
24217     onMetaChange : function(meta, rtype, o){
24218         this.recordType = rtype;
24219         this.fields = rtype.prototype.fields;
24220         delete this.snapshot;
24221         this.sortInfo = meta.sortInfo || this.sortInfo;
24222         this.modified = [];
24223         this.fireEvent('metachange', this, this.reader.meta);
24224     },
24225     
24226     moveIndex : function(data, type)
24227     {
24228         var index = this.indexOf(data);
24229         
24230         var newIndex = index + type;
24231         
24232         this.remove(data);
24233         
24234         this.insert(newIndex, data);
24235         
24236     }
24237 });/*
24238  * Based on:
24239  * Ext JS Library 1.1.1
24240  * Copyright(c) 2006-2007, Ext JS, LLC.
24241  *
24242  * Originally Released Under LGPL - original licence link has changed is not relivant.
24243  *
24244  * Fork - LGPL
24245  * <script type="text/javascript">
24246  */
24247
24248 /**
24249  * @class Roo.data.SimpleStore
24250  * @extends Roo.data.Store
24251  * Small helper class to make creating Stores from Array data easier.
24252  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24253  * @cfg {Array} fields An array of field definition objects, or field name strings.
24254  * @cfg {Object} an existing reader (eg. copied from another store)
24255  * @cfg {Array} data The multi-dimensional array of data
24256  * @cfg {Roo.data.DataProxy} proxy [not-required]  
24257  * @cfg {Roo.data.Reader} reader  [not-required] 
24258  * @constructor
24259  * @param {Object} config
24260  */
24261 Roo.data.SimpleStore = function(config)
24262 {
24263     Roo.data.SimpleStore.superclass.constructor.call(this, {
24264         isLocal : true,
24265         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24266                 id: config.id
24267             },
24268             Roo.data.Record.create(config.fields)
24269         ),
24270         proxy : new Roo.data.MemoryProxy(config.data)
24271     });
24272     this.load();
24273 };
24274 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24275  * Based on:
24276  * Ext JS Library 1.1.1
24277  * Copyright(c) 2006-2007, Ext JS, LLC.
24278  *
24279  * Originally Released Under LGPL - original licence link has changed is not relivant.
24280  *
24281  * Fork - LGPL
24282  * <script type="text/javascript">
24283  */
24284
24285 /**
24286 /**
24287  * @extends Roo.data.Store
24288  * @class Roo.data.JsonStore
24289  * Small helper class to make creating Stores for JSON data easier. <br/>
24290 <pre><code>
24291 var store = new Roo.data.JsonStore({
24292     url: 'get-images.php',
24293     root: 'images',
24294     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24295 });
24296 </code></pre>
24297  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24298  * JsonReader and HttpProxy (unless inline data is provided).</b>
24299  * @cfg {Array} fields An array of field definition objects, or field name strings.
24300  * @constructor
24301  * @param {Object} config
24302  */
24303 Roo.data.JsonStore = function(c){
24304     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24305         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24306         reader: new Roo.data.JsonReader(c, c.fields)
24307     }));
24308 };
24309 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24310  * Based on:
24311  * Ext JS Library 1.1.1
24312  * Copyright(c) 2006-2007, Ext JS, LLC.
24313  *
24314  * Originally Released Under LGPL - original licence link has changed is not relivant.
24315  *
24316  * Fork - LGPL
24317  * <script type="text/javascript">
24318  */
24319
24320  
24321 Roo.data.Field = function(config){
24322     if(typeof config == "string"){
24323         config = {name: config};
24324     }
24325     Roo.apply(this, config);
24326     
24327     if(!this.type){
24328         this.type = "auto";
24329     }
24330     
24331     var st = Roo.data.SortTypes;
24332     // named sortTypes are supported, here we look them up
24333     if(typeof this.sortType == "string"){
24334         this.sortType = st[this.sortType];
24335     }
24336     
24337     // set default sortType for strings and dates
24338     if(!this.sortType){
24339         switch(this.type){
24340             case "string":
24341                 this.sortType = st.asUCString;
24342                 break;
24343             case "date":
24344                 this.sortType = st.asDate;
24345                 break;
24346             default:
24347                 this.sortType = st.none;
24348         }
24349     }
24350
24351     // define once
24352     var stripRe = /[\$,%]/g;
24353
24354     // prebuilt conversion function for this field, instead of
24355     // switching every time we're reading a value
24356     if(!this.convert){
24357         var cv, dateFormat = this.dateFormat;
24358         switch(this.type){
24359             case "":
24360             case "auto":
24361             case undefined:
24362                 cv = function(v){ return v; };
24363                 break;
24364             case "string":
24365                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24366                 break;
24367             case "int":
24368                 cv = function(v){
24369                     return v !== undefined && v !== null && v !== '' ?
24370                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24371                     };
24372                 break;
24373             case "float":
24374                 cv = function(v){
24375                     return v !== undefined && v !== null && v !== '' ?
24376                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24377                     };
24378                 break;
24379             case "bool":
24380             case "boolean":
24381                 cv = function(v){ return v === true || v === "true" || v == 1; };
24382                 break;
24383             case "date":
24384                 cv = function(v){
24385                     if(!v){
24386                         return '';
24387                     }
24388                     if(v instanceof Date){
24389                         return v;
24390                     }
24391                     if(dateFormat){
24392                         if(dateFormat == "timestamp"){
24393                             return new Date(v*1000);
24394                         }
24395                         return Date.parseDate(v, dateFormat);
24396                     }
24397                     var parsed = Date.parse(v);
24398                     return parsed ? new Date(parsed) : null;
24399                 };
24400              break;
24401             
24402         }
24403         this.convert = cv;
24404     }
24405 };
24406
24407 Roo.data.Field.prototype = {
24408     dateFormat: null,
24409     defaultValue: "",
24410     mapping: null,
24411     sortType : null,
24412     sortDir : "ASC"
24413 };/*
24414  * Based on:
24415  * Ext JS Library 1.1.1
24416  * Copyright(c) 2006-2007, Ext JS, LLC.
24417  *
24418  * Originally Released Under LGPL - original licence link has changed is not relivant.
24419  *
24420  * Fork - LGPL
24421  * <script type="text/javascript">
24422  */
24423  
24424 // Base class for reading structured data from a data source.  This class is intended to be
24425 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24426
24427 /**
24428  * @class Roo.data.DataReader
24429  * @abstract
24430  * Base class for reading structured data from a data source.  This class is intended to be
24431  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24432  */
24433
24434 Roo.data.DataReader = function(meta, recordType){
24435     
24436     this.meta = meta;
24437     
24438     this.recordType = recordType instanceof Array ? 
24439         Roo.data.Record.create(recordType) : recordType;
24440 };
24441
24442 Roo.data.DataReader.prototype = {
24443     
24444     
24445     readerType : 'Data',
24446      /**
24447      * Create an empty record
24448      * @param {Object} data (optional) - overlay some values
24449      * @return {Roo.data.Record} record created.
24450      */
24451     newRow :  function(d) {
24452         var da =  {};
24453         this.recordType.prototype.fields.each(function(c) {
24454             switch( c.type) {
24455                 case 'int' : da[c.name] = 0; break;
24456                 case 'date' : da[c.name] = new Date(); break;
24457                 case 'float' : da[c.name] = 0.0; break;
24458                 case 'boolean' : da[c.name] = false; break;
24459                 default : da[c.name] = ""; break;
24460             }
24461             
24462         });
24463         return new this.recordType(Roo.apply(da, d));
24464     }
24465     
24466     
24467 };/*
24468  * Based on:
24469  * Ext JS Library 1.1.1
24470  * Copyright(c) 2006-2007, Ext JS, LLC.
24471  *
24472  * Originally Released Under LGPL - original licence link has changed is not relivant.
24473  *
24474  * Fork - LGPL
24475  * <script type="text/javascript">
24476  */
24477
24478 /**
24479  * @class Roo.data.DataProxy
24480  * @extends Roo.util.Observable
24481  * @abstract
24482  * This class is an abstract base class for implementations which provide retrieval of
24483  * unformatted data objects.<br>
24484  * <p>
24485  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24486  * (of the appropriate type which knows how to parse the data object) to provide a block of
24487  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24488  * <p>
24489  * Custom implementations must implement the load method as described in
24490  * {@link Roo.data.HttpProxy#load}.
24491  */
24492 Roo.data.DataProxy = function(){
24493     this.addEvents({
24494         /**
24495          * @event beforeload
24496          * Fires before a network request is made to retrieve a data object.
24497          * @param {Object} This DataProxy object.
24498          * @param {Object} params The params parameter to the load function.
24499          */
24500         beforeload : true,
24501         /**
24502          * @event load
24503          * Fires before the load method's callback is called.
24504          * @param {Object} This DataProxy object.
24505          * @param {Object} o The data object.
24506          * @param {Object} arg The callback argument object passed to the load function.
24507          */
24508         load : true,
24509         /**
24510          * @event loadexception
24511          * Fires if an Exception occurs during data retrieval.
24512          * @param {Object} This DataProxy object.
24513          * @param {Object} o The data object.
24514          * @param {Object} arg The callback argument object passed to the load function.
24515          * @param {Object} e The Exception.
24516          */
24517         loadexception : true
24518     });
24519     Roo.data.DataProxy.superclass.constructor.call(this);
24520 };
24521
24522 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24523
24524     /**
24525      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24526      */
24527 /*
24528  * Based on:
24529  * Ext JS Library 1.1.1
24530  * Copyright(c) 2006-2007, Ext JS, LLC.
24531  *
24532  * Originally Released Under LGPL - original licence link has changed is not relivant.
24533  *
24534  * Fork - LGPL
24535  * <script type="text/javascript">
24536  */
24537 /**
24538  * @class Roo.data.MemoryProxy
24539  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24540  * to the Reader when its load method is called.
24541  * @constructor
24542  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24543  */
24544 Roo.data.MemoryProxy = function(data){
24545     if (data.data) {
24546         data = data.data;
24547     }
24548     Roo.data.MemoryProxy.superclass.constructor.call(this);
24549     this.data = data;
24550 };
24551
24552 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24553     
24554     /**
24555      * Load data from the requested source (in this case an in-memory
24556      * data object passed to the constructor), read the data object into
24557      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24558      * process that block using the passed callback.
24559      * @param {Object} params This parameter is not used by the MemoryProxy class.
24560      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24561      * object into a block of Roo.data.Records.
24562      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24563      * The function must be passed <ul>
24564      * <li>The Record block object</li>
24565      * <li>The "arg" argument from the load function</li>
24566      * <li>A boolean success indicator</li>
24567      * </ul>
24568      * @param {Object} scope The scope in which to call the callback
24569      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24570      */
24571     load : function(params, reader, callback, scope, arg){
24572         params = params || {};
24573         var result;
24574         try {
24575             result = reader.readRecords(params.data ? params.data :this.data);
24576         }catch(e){
24577             this.fireEvent("loadexception", this, arg, null, e);
24578             callback.call(scope, null, arg, false);
24579             return;
24580         }
24581         callback.call(scope, result, arg, true);
24582     },
24583     
24584     // private
24585     update : function(params, records){
24586         
24587     }
24588 });/*
24589  * Based on:
24590  * Ext JS Library 1.1.1
24591  * Copyright(c) 2006-2007, Ext JS, LLC.
24592  *
24593  * Originally Released Under LGPL - original licence link has changed is not relivant.
24594  *
24595  * Fork - LGPL
24596  * <script type="text/javascript">
24597  */
24598 /**
24599  * @class Roo.data.HttpProxy
24600  * @extends Roo.data.DataProxy
24601  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24602  * configured to reference a certain URL.<br><br>
24603  * <p>
24604  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24605  * from which the running page was served.<br><br>
24606  * <p>
24607  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24608  * <p>
24609  * Be aware that to enable the browser to parse an XML document, the server must set
24610  * the Content-Type header in the HTTP response to "text/xml".
24611  * @constructor
24612  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24613  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24614  * will be used to make the request.
24615  */
24616 Roo.data.HttpProxy = function(conn){
24617     Roo.data.HttpProxy.superclass.constructor.call(this);
24618     // is conn a conn config or a real conn?
24619     this.conn = conn;
24620     this.useAjax = !conn || !conn.events;
24621   
24622 };
24623
24624 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24625     // thse are take from connection...
24626     
24627     /**
24628      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24629      */
24630     /**
24631      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24632      * extra parameters to each request made by this object. (defaults to undefined)
24633      */
24634     /**
24635      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24636      *  to each request made by this object. (defaults to undefined)
24637      */
24638     /**
24639      * @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)
24640      */
24641     /**
24642      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24643      */
24644      /**
24645      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24646      * @type Boolean
24647      */
24648   
24649
24650     /**
24651      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24652      * @type Boolean
24653      */
24654     /**
24655      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24656      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24657      * a finer-grained basis than the DataProxy events.
24658      */
24659     getConnection : function(){
24660         return this.useAjax ? Roo.Ajax : this.conn;
24661     },
24662
24663     /**
24664      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24665      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24666      * process that block using the passed callback.
24667      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24668      * for the request to the remote server.
24669      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24670      * object into a block of Roo.data.Records.
24671      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24672      * The function must be passed <ul>
24673      * <li>The Record block object</li>
24674      * <li>The "arg" argument from the load function</li>
24675      * <li>A boolean success indicator</li>
24676      * </ul>
24677      * @param {Object} scope The scope in which to call the callback
24678      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24679      */
24680     load : function(params, reader, callback, scope, arg){
24681         if(this.fireEvent("beforeload", this, params) !== false){
24682             var  o = {
24683                 params : params || {},
24684                 request: {
24685                     callback : callback,
24686                     scope : scope,
24687                     arg : arg
24688                 },
24689                 reader: reader,
24690                 callback : this.loadResponse,
24691                 scope: this
24692             };
24693             if(this.useAjax){
24694                 Roo.applyIf(o, this.conn);
24695                 if(this.activeRequest){
24696                     Roo.Ajax.abort(this.activeRequest);
24697                 }
24698                 this.activeRequest = Roo.Ajax.request(o);
24699             }else{
24700                 this.conn.request(o);
24701             }
24702         }else{
24703             callback.call(scope||this, null, arg, false);
24704         }
24705     },
24706
24707     // private
24708     loadResponse : function(o, success, response){
24709         delete this.activeRequest;
24710         if(!success){
24711             this.fireEvent("loadexception", this, o, response);
24712             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24713             return;
24714         }
24715         var result;
24716         try {
24717             result = o.reader.read(response);
24718         }catch(e){
24719             this.fireEvent("loadexception", this, o, response, e);
24720             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24721             return;
24722         }
24723         
24724         this.fireEvent("load", this, o, o.request.arg);
24725         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24726     },
24727
24728     // private
24729     update : function(dataSet){
24730
24731     },
24732
24733     // private
24734     updateResponse : function(dataSet){
24735
24736     }
24737 });/*
24738  * Based on:
24739  * Ext JS Library 1.1.1
24740  * Copyright(c) 2006-2007, Ext JS, LLC.
24741  *
24742  * Originally Released Under LGPL - original licence link has changed is not relivant.
24743  *
24744  * Fork - LGPL
24745  * <script type="text/javascript">
24746  */
24747
24748 /**
24749  * @class Roo.data.ScriptTagProxy
24750  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24751  * other than the originating domain of the running page.<br><br>
24752  * <p>
24753  * <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
24754  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24755  * <p>
24756  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24757  * source code that is used as the source inside a &lt;script> tag.<br><br>
24758  * <p>
24759  * In order for the browser to process the returned data, the server must wrap the data object
24760  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24761  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24762  * depending on whether the callback name was passed:
24763  * <p>
24764  * <pre><code>
24765 boolean scriptTag = false;
24766 String cb = request.getParameter("callback");
24767 if (cb != null) {
24768     scriptTag = true;
24769     response.setContentType("text/javascript");
24770 } else {
24771     response.setContentType("application/x-json");
24772 }
24773 Writer out = response.getWriter();
24774 if (scriptTag) {
24775     out.write(cb + "(");
24776 }
24777 out.print(dataBlock.toJsonString());
24778 if (scriptTag) {
24779     out.write(");");
24780 }
24781 </pre></code>
24782  *
24783  * @constructor
24784  * @param {Object} config A configuration object.
24785  */
24786 Roo.data.ScriptTagProxy = function(config){
24787     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24788     Roo.apply(this, config);
24789     this.head = document.getElementsByTagName("head")[0];
24790 };
24791
24792 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24793
24794 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24795     /**
24796      * @cfg {String} url The URL from which to request the data object.
24797      */
24798     /**
24799      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24800      */
24801     timeout : 30000,
24802     /**
24803      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24804      * the server the name of the callback function set up by the load call to process the returned data object.
24805      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24806      * javascript output which calls this named function passing the data object as its only parameter.
24807      */
24808     callbackParam : "callback",
24809     /**
24810      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24811      * name to the request.
24812      */
24813     nocache : true,
24814
24815     /**
24816      * Load data from the configured URL, read the data object into
24817      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24818      * process that block using the passed callback.
24819      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24820      * for the request to the remote server.
24821      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24822      * object into a block of Roo.data.Records.
24823      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24824      * The function must be passed <ul>
24825      * <li>The Record block object</li>
24826      * <li>The "arg" argument from the load function</li>
24827      * <li>A boolean success indicator</li>
24828      * </ul>
24829      * @param {Object} scope The scope in which to call the callback
24830      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24831      */
24832     load : function(params, reader, callback, scope, arg){
24833         if(this.fireEvent("beforeload", this, params) !== false){
24834
24835             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24836
24837             var url = this.url;
24838             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24839             if(this.nocache){
24840                 url += "&_dc=" + (new Date().getTime());
24841             }
24842             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24843             var trans = {
24844                 id : transId,
24845                 cb : "stcCallback"+transId,
24846                 scriptId : "stcScript"+transId,
24847                 params : params,
24848                 arg : arg,
24849                 url : url,
24850                 callback : callback,
24851                 scope : scope,
24852                 reader : reader
24853             };
24854             var conn = this;
24855
24856             window[trans.cb] = function(o){
24857                 conn.handleResponse(o, trans);
24858             };
24859
24860             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24861
24862             if(this.autoAbort !== false){
24863                 this.abort();
24864             }
24865
24866             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24867
24868             var script = document.createElement("script");
24869             script.setAttribute("src", url);
24870             script.setAttribute("type", "text/javascript");
24871             script.setAttribute("id", trans.scriptId);
24872             this.head.appendChild(script);
24873
24874             this.trans = trans;
24875         }else{
24876             callback.call(scope||this, null, arg, false);
24877         }
24878     },
24879
24880     // private
24881     isLoading : function(){
24882         return this.trans ? true : false;
24883     },
24884
24885     /**
24886      * Abort the current server request.
24887      */
24888     abort : function(){
24889         if(this.isLoading()){
24890             this.destroyTrans(this.trans);
24891         }
24892     },
24893
24894     // private
24895     destroyTrans : function(trans, isLoaded){
24896         this.head.removeChild(document.getElementById(trans.scriptId));
24897         clearTimeout(trans.timeoutId);
24898         if(isLoaded){
24899             window[trans.cb] = undefined;
24900             try{
24901                 delete window[trans.cb];
24902             }catch(e){}
24903         }else{
24904             // if hasn't been loaded, wait for load to remove it to prevent script error
24905             window[trans.cb] = function(){
24906                 window[trans.cb] = undefined;
24907                 try{
24908                     delete window[trans.cb];
24909                 }catch(e){}
24910             };
24911         }
24912     },
24913
24914     // private
24915     handleResponse : function(o, trans){
24916         this.trans = false;
24917         this.destroyTrans(trans, true);
24918         var result;
24919         try {
24920             result = trans.reader.readRecords(o);
24921         }catch(e){
24922             this.fireEvent("loadexception", this, o, trans.arg, e);
24923             trans.callback.call(trans.scope||window, null, trans.arg, false);
24924             return;
24925         }
24926         this.fireEvent("load", this, o, trans.arg);
24927         trans.callback.call(trans.scope||window, result, trans.arg, true);
24928     },
24929
24930     // private
24931     handleFailure : function(trans){
24932         this.trans = false;
24933         this.destroyTrans(trans, false);
24934         this.fireEvent("loadexception", this, null, trans.arg);
24935         trans.callback.call(trans.scope||window, null, trans.arg, false);
24936     }
24937 });/*
24938  * Based on:
24939  * Ext JS Library 1.1.1
24940  * Copyright(c) 2006-2007, Ext JS, LLC.
24941  *
24942  * Originally Released Under LGPL - original licence link has changed is not relivant.
24943  *
24944  * Fork - LGPL
24945  * <script type="text/javascript">
24946  */
24947
24948 /**
24949  * @class Roo.data.JsonReader
24950  * @extends Roo.data.DataReader
24951  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24952  * based on mappings in a provided Roo.data.Record constructor.
24953  * 
24954  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24955  * in the reply previously. 
24956  * 
24957  * <p>
24958  * Example code:
24959  * <pre><code>
24960 var RecordDef = Roo.data.Record.create([
24961     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24962     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24963 ]);
24964 var myReader = new Roo.data.JsonReader({
24965     totalProperty: "results",    // The property which contains the total dataset size (optional)
24966     root: "rows",                // The property which contains an Array of row objects
24967     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24968 }, RecordDef);
24969 </code></pre>
24970  * <p>
24971  * This would consume a JSON file like this:
24972  * <pre><code>
24973 { 'results': 2, 'rows': [
24974     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24975     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24976 }
24977 </code></pre>
24978  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24979  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24980  * paged from the remote server.
24981  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24982  * @cfg {String} root name of the property which contains the Array of row objects.
24983  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24984  * @cfg {Array} fields Array of field definition objects
24985  * @constructor
24986  * Create a new JsonReader
24987  * @param {Object} meta Metadata configuration options
24988  * @param {Object} recordType Either an Array of field definition objects,
24989  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24990  */
24991 Roo.data.JsonReader = function(meta, recordType){
24992     
24993     meta = meta || {};
24994     // set some defaults:
24995     Roo.applyIf(meta, {
24996         totalProperty: 'total',
24997         successProperty : 'success',
24998         root : 'data',
24999         id : 'id'
25000     });
25001     
25002     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25003 };
25004 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
25005     
25006     readerType : 'Json',
25007     
25008     /**
25009      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
25010      * Used by Store query builder to append _requestMeta to params.
25011      * 
25012      */
25013     metaFromRemote : false,
25014     /**
25015      * This method is only used by a DataProxy which has retrieved data from a remote server.
25016      * @param {Object} response The XHR object which contains the JSON data in its responseText.
25017      * @return {Object} data A data block which is used by an Roo.data.Store object as
25018      * a cache of Roo.data.Records.
25019      */
25020     read : function(response){
25021         var json = response.responseText;
25022        
25023         var o = /* eval:var:o */ eval("("+json+")");
25024         if(!o) {
25025             throw {message: "JsonReader.read: Json object not found"};
25026         }
25027         
25028         if(o.metaData){
25029             
25030             delete this.ef;
25031             this.metaFromRemote = true;
25032             this.meta = o.metaData;
25033             this.recordType = Roo.data.Record.create(o.metaData.fields);
25034             this.onMetaChange(this.meta, this.recordType, o);
25035         }
25036         return this.readRecords(o);
25037     },
25038
25039     // private function a store will implement
25040     onMetaChange : function(meta, recordType, o){
25041
25042     },
25043
25044     /**
25045          * @ignore
25046          */
25047     simpleAccess: function(obj, subsc) {
25048         return obj[subsc];
25049     },
25050
25051         /**
25052          * @ignore
25053          */
25054     getJsonAccessor: function(){
25055         var re = /[\[\.]/;
25056         return function(expr) {
25057             try {
25058                 return(re.test(expr))
25059                     ? new Function("obj", "return obj." + expr)
25060                     : function(obj){
25061                         return obj[expr];
25062                     };
25063             } catch(e){}
25064             return Roo.emptyFn;
25065         };
25066     }(),
25067
25068     /**
25069      * Create a data block containing Roo.data.Records from an XML document.
25070      * @param {Object} o An object which contains an Array of row objects in the property specified
25071      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
25072      * which contains the total size of the dataset.
25073      * @return {Object} data A data block which is used by an Roo.data.Store object as
25074      * a cache of Roo.data.Records.
25075      */
25076     readRecords : function(o){
25077         /**
25078          * After any data loads, the raw JSON data is available for further custom processing.
25079          * @type Object
25080          */
25081         this.o = o;
25082         var s = this.meta, Record = this.recordType,
25083             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
25084
25085 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
25086         if (!this.ef) {
25087             if(s.totalProperty) {
25088                     this.getTotal = this.getJsonAccessor(s.totalProperty);
25089                 }
25090                 if(s.successProperty) {
25091                     this.getSuccess = this.getJsonAccessor(s.successProperty);
25092                 }
25093                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
25094                 if (s.id) {
25095                         var g = this.getJsonAccessor(s.id);
25096                         this.getId = function(rec) {
25097                                 var r = g(rec);  
25098                                 return (r === undefined || r === "") ? null : r;
25099                         };
25100                 } else {
25101                         this.getId = function(){return null;};
25102                 }
25103             this.ef = [];
25104             for(var jj = 0; jj < fl; jj++){
25105                 f = fi[jj];
25106                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
25107                 this.ef[jj] = this.getJsonAccessor(map);
25108             }
25109         }
25110
25111         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
25112         if(s.totalProperty){
25113             var vt = parseInt(this.getTotal(o), 10);
25114             if(!isNaN(vt)){
25115                 totalRecords = vt;
25116             }
25117         }
25118         if(s.successProperty){
25119             var vs = this.getSuccess(o);
25120             if(vs === false || vs === 'false'){
25121                 success = false;
25122             }
25123         }
25124         var records = [];
25125         for(var i = 0; i < c; i++){
25126                 var n = root[i];
25127             var values = {};
25128             var id = this.getId(n);
25129             for(var j = 0; j < fl; j++){
25130                 f = fi[j];
25131             var v = this.ef[j](n);
25132             if (!f.convert) {
25133                 Roo.log('missing convert for ' + f.name);
25134                 Roo.log(f);
25135                 continue;
25136             }
25137             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
25138             }
25139             var record = new Record(values, id);
25140             record.json = n;
25141             records[i] = record;
25142         }
25143         return {
25144             raw : o,
25145             success : success,
25146             records : records,
25147             totalRecords : totalRecords
25148         };
25149     },
25150     // used when loading children.. @see loadDataFromChildren
25151     toLoadData: function(rec)
25152     {
25153         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25154         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25155         return { data : data, total : data.length };
25156         
25157     }
25158 });/*
25159  * Based on:
25160  * Ext JS Library 1.1.1
25161  * Copyright(c) 2006-2007, Ext JS, LLC.
25162  *
25163  * Originally Released Under LGPL - original licence link has changed is not relivant.
25164  *
25165  * Fork - LGPL
25166  * <script type="text/javascript">
25167  */
25168
25169 /**
25170  * @class Roo.data.XmlReader
25171  * @extends Roo.data.DataReader
25172  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25173  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25174  * <p>
25175  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25176  * header in the HTTP response must be set to "text/xml".</em>
25177  * <p>
25178  * Example code:
25179  * <pre><code>
25180 var RecordDef = Roo.data.Record.create([
25181    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25182    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25183 ]);
25184 var myReader = new Roo.data.XmlReader({
25185    totalRecords: "results", // The element which contains the total dataset size (optional)
25186    record: "row",           // The repeated element which contains row information
25187    id: "id"                 // The element within the row that provides an ID for the record (optional)
25188 }, RecordDef);
25189 </code></pre>
25190  * <p>
25191  * This would consume an XML file like this:
25192  * <pre><code>
25193 &lt;?xml?>
25194 &lt;dataset>
25195  &lt;results>2&lt;/results>
25196  &lt;row>
25197    &lt;id>1&lt;/id>
25198    &lt;name>Bill&lt;/name>
25199    &lt;occupation>Gardener&lt;/occupation>
25200  &lt;/row>
25201  &lt;row>
25202    &lt;id>2&lt;/id>
25203    &lt;name>Ben&lt;/name>
25204    &lt;occupation>Horticulturalist&lt;/occupation>
25205  &lt;/row>
25206 &lt;/dataset>
25207 </code></pre>
25208  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25209  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25210  * paged from the remote server.
25211  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25212  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25213  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25214  * a record identifier value.
25215  * @constructor
25216  * Create a new XmlReader
25217  * @param {Object} meta Metadata configuration options
25218  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25219  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25220  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25221  */
25222 Roo.data.XmlReader = function(meta, recordType){
25223     meta = meta || {};
25224     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25225 };
25226 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25227     
25228     readerType : 'Xml',
25229     
25230     /**
25231      * This method is only used by a DataProxy which has retrieved data from a remote server.
25232          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25233          * to contain a method called 'responseXML' that returns an XML document object.
25234      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25235      * a cache of Roo.data.Records.
25236      */
25237     read : function(response){
25238         var doc = response.responseXML;
25239         if(!doc) {
25240             throw {message: "XmlReader.read: XML Document not available"};
25241         }
25242         return this.readRecords(doc);
25243     },
25244
25245     /**
25246      * Create a data block containing Roo.data.Records from an XML document.
25247          * @param {Object} doc A parsed XML document.
25248      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25249      * a cache of Roo.data.Records.
25250      */
25251     readRecords : function(doc){
25252         /**
25253          * After any data loads/reads, the raw XML Document is available for further custom processing.
25254          * @type XMLDocument
25255          */
25256         this.xmlData = doc;
25257         var root = doc.documentElement || doc;
25258         var q = Roo.DomQuery;
25259         var recordType = this.recordType, fields = recordType.prototype.fields;
25260         var sid = this.meta.id;
25261         var totalRecords = 0, success = true;
25262         if(this.meta.totalRecords){
25263             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25264         }
25265         
25266         if(this.meta.success){
25267             var sv = q.selectValue(this.meta.success, root, true);
25268             success = sv !== false && sv !== 'false';
25269         }
25270         var records = [];
25271         var ns = q.select(this.meta.record, root);
25272         for(var i = 0, len = ns.length; i < len; i++) {
25273                 var n = ns[i];
25274                 var values = {};
25275                 var id = sid ? q.selectValue(sid, n) : undefined;
25276                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25277                     var f = fields.items[j];
25278                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25279                     v = f.convert(v);
25280                     values[f.name] = v;
25281                 }
25282                 var record = new recordType(values, id);
25283                 record.node = n;
25284                 records[records.length] = record;
25285             }
25286
25287             return {
25288                 success : success,
25289                 records : records,
25290                 totalRecords : totalRecords || records.length
25291             };
25292     }
25293 });/*
25294  * Based on:
25295  * Ext JS Library 1.1.1
25296  * Copyright(c) 2006-2007, Ext JS, LLC.
25297  *
25298  * Originally Released Under LGPL - original licence link has changed is not relivant.
25299  *
25300  * Fork - LGPL
25301  * <script type="text/javascript">
25302  */
25303
25304 /**
25305  * @class Roo.data.ArrayReader
25306  * @extends Roo.data.DataReader
25307  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25308  * Each element of that Array represents a row of data fields. The
25309  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25310  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25311  * <p>
25312  * Example code:.
25313  * <pre><code>
25314 var RecordDef = Roo.data.Record.create([
25315     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25316     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25317 ]);
25318 var myReader = new Roo.data.ArrayReader({
25319     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25320 }, RecordDef);
25321 </code></pre>
25322  * <p>
25323  * This would consume an Array like this:
25324  * <pre><code>
25325 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25326   </code></pre>
25327  
25328  * @constructor
25329  * Create a new JsonReader
25330  * @param {Object} meta Metadata configuration options.
25331  * @param {Object|Array} recordType Either an Array of field definition objects
25332  * 
25333  * @cfg {Array} fields Array of field definition objects
25334  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25335  * as specified to {@link Roo.data.Record#create},
25336  * or an {@link Roo.data.Record} object
25337  *
25338  * 
25339  * created using {@link Roo.data.Record#create}.
25340  */
25341 Roo.data.ArrayReader = function(meta, recordType)
25342 {    
25343     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25344 };
25345
25346 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25347     
25348       /**
25349      * Create a data block containing Roo.data.Records from an XML document.
25350      * @param {Object} o An Array of row objects which represents the dataset.
25351      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25352      * a cache of Roo.data.Records.
25353      */
25354     readRecords : function(o)
25355     {
25356         var sid = this.meta ? this.meta.id : null;
25357         var recordType = this.recordType, fields = recordType.prototype.fields;
25358         var records = [];
25359         var root = o;
25360         for(var i = 0; i < root.length; i++){
25361             var n = root[i];
25362             var values = {};
25363             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25364             for(var j = 0, jlen = fields.length; j < jlen; j++){
25365                 var f = fields.items[j];
25366                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25367                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25368                 v = f.convert(v);
25369                 values[f.name] = v;
25370             }
25371             var record = new recordType(values, id);
25372             record.json = n;
25373             records[records.length] = record;
25374         }
25375         return {
25376             records : records,
25377             totalRecords : records.length
25378         };
25379     },
25380     // used when loading children.. @see loadDataFromChildren
25381     toLoadData: function(rec)
25382     {
25383         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25384         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25385         
25386     }
25387     
25388     
25389 });/*
25390  * Based on:
25391  * Ext JS Library 1.1.1
25392  * Copyright(c) 2006-2007, Ext JS, LLC.
25393  *
25394  * Originally Released Under LGPL - original licence link has changed is not relivant.
25395  *
25396  * Fork - LGPL
25397  * <script type="text/javascript">
25398  */
25399
25400
25401 /**
25402  * @class Roo.data.Tree
25403  * @extends Roo.util.Observable
25404  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25405  * in the tree have most standard DOM functionality.
25406  * @constructor
25407  * @param {Node} root (optional) The root node
25408  */
25409 Roo.data.Tree = function(root){
25410    this.nodeHash = {};
25411    /**
25412     * The root node for this tree
25413     * @type Node
25414     */
25415    this.root = null;
25416    if(root){
25417        this.setRootNode(root);
25418    }
25419    this.addEvents({
25420        /**
25421         * @event append
25422         * Fires when a new child node is appended to a node in this tree.
25423         * @param {Tree} tree The owner tree
25424         * @param {Node} parent The parent node
25425         * @param {Node} node The newly appended node
25426         * @param {Number} index The index of the newly appended node
25427         */
25428        "append" : true,
25429        /**
25430         * @event remove
25431         * Fires when a child node is removed from a node in this tree.
25432         * @param {Tree} tree The owner tree
25433         * @param {Node} parent The parent node
25434         * @param {Node} node The child node removed
25435         */
25436        "remove" : true,
25437        /**
25438         * @event move
25439         * Fires when a node is moved to a new location in the tree
25440         * @param {Tree} tree The owner tree
25441         * @param {Node} node The node moved
25442         * @param {Node} oldParent The old parent of this node
25443         * @param {Node} newParent The new parent of this node
25444         * @param {Number} index The index it was moved to
25445         */
25446        "move" : true,
25447        /**
25448         * @event insert
25449         * Fires when a new child node is inserted in a node in this tree.
25450         * @param {Tree} tree The owner tree
25451         * @param {Node} parent The parent node
25452         * @param {Node} node The child node inserted
25453         * @param {Node} refNode The child node the node was inserted before
25454         */
25455        "insert" : true,
25456        /**
25457         * @event beforeappend
25458         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25459         * @param {Tree} tree The owner tree
25460         * @param {Node} parent The parent node
25461         * @param {Node} node The child node to be appended
25462         */
25463        "beforeappend" : true,
25464        /**
25465         * @event beforeremove
25466         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25467         * @param {Tree} tree The owner tree
25468         * @param {Node} parent The parent node
25469         * @param {Node} node The child node to be removed
25470         */
25471        "beforeremove" : true,
25472        /**
25473         * @event beforemove
25474         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25475         * @param {Tree} tree The owner tree
25476         * @param {Node} node The node being moved
25477         * @param {Node} oldParent The parent of the node
25478         * @param {Node} newParent The new parent the node is moving to
25479         * @param {Number} index The index it is being moved to
25480         */
25481        "beforemove" : true,
25482        /**
25483         * @event beforeinsert
25484         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25485         * @param {Tree} tree The owner tree
25486         * @param {Node} parent The parent node
25487         * @param {Node} node The child node to be inserted
25488         * @param {Node} refNode The child node the node is being inserted before
25489         */
25490        "beforeinsert" : true
25491    });
25492
25493     Roo.data.Tree.superclass.constructor.call(this);
25494 };
25495
25496 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25497     pathSeparator: "/",
25498
25499     proxyNodeEvent : function(){
25500         return this.fireEvent.apply(this, arguments);
25501     },
25502
25503     /**
25504      * Returns the root node for this tree.
25505      * @return {Node}
25506      */
25507     getRootNode : function(){
25508         return this.root;
25509     },
25510
25511     /**
25512      * Sets the root node for this tree.
25513      * @param {Node} node
25514      * @return {Node}
25515      */
25516     setRootNode : function(node){
25517         this.root = node;
25518         node.ownerTree = this;
25519         node.isRoot = true;
25520         this.registerNode(node);
25521         return node;
25522     },
25523
25524     /**
25525      * Gets a node in this tree by its id.
25526      * @param {String} id
25527      * @return {Node}
25528      */
25529     getNodeById : function(id){
25530         return this.nodeHash[id];
25531     },
25532
25533     registerNode : function(node){
25534         this.nodeHash[node.id] = node;
25535     },
25536
25537     unregisterNode : function(node){
25538         delete this.nodeHash[node.id];
25539     },
25540
25541     toString : function(){
25542         return "[Tree"+(this.id?" "+this.id:"")+"]";
25543     }
25544 });
25545
25546 /**
25547  * @class Roo.data.Node
25548  * @extends Roo.util.Observable
25549  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25550  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25551  * @constructor
25552  * @param {Object} attributes The attributes/config for the node
25553  */
25554 Roo.data.Node = function(attributes){
25555     /**
25556      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25557      * @type {Object}
25558      */
25559     this.attributes = attributes || {};
25560     this.leaf = this.attributes.leaf;
25561     /**
25562      * The node id. @type String
25563      */
25564     this.id = this.attributes.id;
25565     if(!this.id){
25566         this.id = Roo.id(null, "ynode-");
25567         this.attributes.id = this.id;
25568     }
25569      
25570     
25571     /**
25572      * All child nodes of this node. @type Array
25573      */
25574     this.childNodes = [];
25575     if(!this.childNodes.indexOf){ // indexOf is a must
25576         this.childNodes.indexOf = function(o){
25577             for(var i = 0, len = this.length; i < len; i++){
25578                 if(this[i] == o) {
25579                     return i;
25580                 }
25581             }
25582             return -1;
25583         };
25584     }
25585     /**
25586      * The parent node for this node. @type Node
25587      */
25588     this.parentNode = null;
25589     /**
25590      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25591      */
25592     this.firstChild = null;
25593     /**
25594      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25595      */
25596     this.lastChild = null;
25597     /**
25598      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25599      */
25600     this.previousSibling = null;
25601     /**
25602      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25603      */
25604     this.nextSibling = null;
25605
25606     this.addEvents({
25607        /**
25608         * @event append
25609         * Fires when a new child node is appended
25610         * @param {Tree} tree The owner tree
25611         * @param {Node} this This node
25612         * @param {Node} node The newly appended node
25613         * @param {Number} index The index of the newly appended node
25614         */
25615        "append" : true,
25616        /**
25617         * @event remove
25618         * Fires when a child node is removed
25619         * @param {Tree} tree The owner tree
25620         * @param {Node} this This node
25621         * @param {Node} node The removed node
25622         */
25623        "remove" : true,
25624        /**
25625         * @event move
25626         * Fires when this node is moved to a new location in the tree
25627         * @param {Tree} tree The owner tree
25628         * @param {Node} this This node
25629         * @param {Node} oldParent The old parent of this node
25630         * @param {Node} newParent The new parent of this node
25631         * @param {Number} index The index it was moved to
25632         */
25633        "move" : true,
25634        /**
25635         * @event insert
25636         * Fires when a new child node is inserted.
25637         * @param {Tree} tree The owner tree
25638         * @param {Node} this This node
25639         * @param {Node} node The child node inserted
25640         * @param {Node} refNode The child node the node was inserted before
25641         */
25642        "insert" : true,
25643        /**
25644         * @event beforeappend
25645         * Fires before a new child is appended, return false to cancel the append.
25646         * @param {Tree} tree The owner tree
25647         * @param {Node} this This node
25648         * @param {Node} node The child node to be appended
25649         */
25650        "beforeappend" : true,
25651        /**
25652         * @event beforeremove
25653         * Fires before a child is removed, return false to cancel the remove.
25654         * @param {Tree} tree The owner tree
25655         * @param {Node} this This node
25656         * @param {Node} node The child node to be removed
25657         */
25658        "beforeremove" : true,
25659        /**
25660         * @event beforemove
25661         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25662         * @param {Tree} tree The owner tree
25663         * @param {Node} this This node
25664         * @param {Node} oldParent The parent of this node
25665         * @param {Node} newParent The new parent this node is moving to
25666         * @param {Number} index The index it is being moved to
25667         */
25668        "beforemove" : true,
25669        /**
25670         * @event beforeinsert
25671         * Fires before a new child is inserted, return false to cancel the insert.
25672         * @param {Tree} tree The owner tree
25673         * @param {Node} this This node
25674         * @param {Node} node The child node to be inserted
25675         * @param {Node} refNode The child node the node is being inserted before
25676         */
25677        "beforeinsert" : true
25678    });
25679     this.listeners = this.attributes.listeners;
25680     Roo.data.Node.superclass.constructor.call(this);
25681 };
25682
25683 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25684     fireEvent : function(evtName){
25685         // first do standard event for this node
25686         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25687             return false;
25688         }
25689         // then bubble it up to the tree if the event wasn't cancelled
25690         var ot = this.getOwnerTree();
25691         if(ot){
25692             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25693                 return false;
25694             }
25695         }
25696         return true;
25697     },
25698
25699     /**
25700      * Returns true if this node is a leaf
25701      * @return {Boolean}
25702      */
25703     isLeaf : function(){
25704         return this.leaf === true;
25705     },
25706
25707     // private
25708     setFirstChild : function(node){
25709         this.firstChild = node;
25710     },
25711
25712     //private
25713     setLastChild : function(node){
25714         this.lastChild = node;
25715     },
25716
25717
25718     /**
25719      * Returns true if this node is the last child of its parent
25720      * @return {Boolean}
25721      */
25722     isLast : function(){
25723        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25724     },
25725
25726     /**
25727      * Returns true if this node is the first child of its parent
25728      * @return {Boolean}
25729      */
25730     isFirst : function(){
25731        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25732     },
25733
25734     hasChildNodes : function(){
25735         return !this.isLeaf() && this.childNodes.length > 0;
25736     },
25737
25738     /**
25739      * Insert node(s) as the last child node of this node.
25740      * @param {Node/Array} node The node or Array of nodes to append
25741      * @return {Node} The appended node if single append, or null if an array was passed
25742      */
25743     appendChild : function(node){
25744         var multi = false;
25745         if(node instanceof Array){
25746             multi = node;
25747         }else if(arguments.length > 1){
25748             multi = arguments;
25749         }
25750         
25751         // if passed an array or multiple args do them one by one
25752         if(multi){
25753             for(var i = 0, len = multi.length; i < len; i++) {
25754                 this.appendChild(multi[i]);
25755             }
25756         }else{
25757             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25758                 return false;
25759             }
25760             var index = this.childNodes.length;
25761             var oldParent = node.parentNode;
25762             // it's a move, make sure we move it cleanly
25763             if(oldParent){
25764                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25765                     return false;
25766                 }
25767                 oldParent.removeChild(node);
25768             }
25769             
25770             index = this.childNodes.length;
25771             if(index == 0){
25772                 this.setFirstChild(node);
25773             }
25774             this.childNodes.push(node);
25775             node.parentNode = this;
25776             var ps = this.childNodes[index-1];
25777             if(ps){
25778                 node.previousSibling = ps;
25779                 ps.nextSibling = node;
25780             }else{
25781                 node.previousSibling = null;
25782             }
25783             node.nextSibling = null;
25784             this.setLastChild(node);
25785             node.setOwnerTree(this.getOwnerTree());
25786             this.fireEvent("append", this.ownerTree, this, node, index);
25787             if(this.ownerTree) {
25788                 this.ownerTree.fireEvent("appendnode", this, node, index);
25789             }
25790             if(oldParent){
25791                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25792             }
25793             return node;
25794         }
25795     },
25796
25797     /**
25798      * Removes a child node from this node.
25799      * @param {Node} node The node to remove
25800      * @return {Node} The removed node
25801      */
25802     removeChild : function(node){
25803         var index = this.childNodes.indexOf(node);
25804         if(index == -1){
25805             return false;
25806         }
25807         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25808             return false;
25809         }
25810
25811         // remove it from childNodes collection
25812         this.childNodes.splice(index, 1);
25813
25814         // update siblings
25815         if(node.previousSibling){
25816             node.previousSibling.nextSibling = node.nextSibling;
25817         }
25818         if(node.nextSibling){
25819             node.nextSibling.previousSibling = node.previousSibling;
25820         }
25821
25822         // update child refs
25823         if(this.firstChild == node){
25824             this.setFirstChild(node.nextSibling);
25825         }
25826         if(this.lastChild == node){
25827             this.setLastChild(node.previousSibling);
25828         }
25829
25830         node.setOwnerTree(null);
25831         // clear any references from the node
25832         node.parentNode = null;
25833         node.previousSibling = null;
25834         node.nextSibling = null;
25835         this.fireEvent("remove", this.ownerTree, this, node);
25836         return node;
25837     },
25838
25839     /**
25840      * Inserts the first node before the second node in this nodes childNodes collection.
25841      * @param {Node} node The node to insert
25842      * @param {Node} refNode The node to insert before (if null the node is appended)
25843      * @return {Node} The inserted node
25844      */
25845     insertBefore : function(node, refNode){
25846         if(!refNode){ // like standard Dom, refNode can be null for append
25847             return this.appendChild(node);
25848         }
25849         // nothing to do
25850         if(node == refNode){
25851             return false;
25852         }
25853
25854         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25855             return false;
25856         }
25857         var index = this.childNodes.indexOf(refNode);
25858         var oldParent = node.parentNode;
25859         var refIndex = index;
25860
25861         // when moving internally, indexes will change after remove
25862         if(oldParent == this && this.childNodes.indexOf(node) < index){
25863             refIndex--;
25864         }
25865
25866         // it's a move, make sure we move it cleanly
25867         if(oldParent){
25868             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25869                 return false;
25870             }
25871             oldParent.removeChild(node);
25872         }
25873         if(refIndex == 0){
25874             this.setFirstChild(node);
25875         }
25876         this.childNodes.splice(refIndex, 0, node);
25877         node.parentNode = this;
25878         var ps = this.childNodes[refIndex-1];
25879         if(ps){
25880             node.previousSibling = ps;
25881             ps.nextSibling = node;
25882         }else{
25883             node.previousSibling = null;
25884         }
25885         node.nextSibling = refNode;
25886         refNode.previousSibling = node;
25887         node.setOwnerTree(this.getOwnerTree());
25888         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25889         if(oldParent){
25890             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25891         }
25892         return node;
25893     },
25894
25895     /**
25896      * Returns the child node at the specified index.
25897      * @param {Number} index
25898      * @return {Node}
25899      */
25900     item : function(index){
25901         return this.childNodes[index];
25902     },
25903
25904     /**
25905      * Replaces one child node in this node with another.
25906      * @param {Node} newChild The replacement node
25907      * @param {Node} oldChild The node to replace
25908      * @return {Node} The replaced node
25909      */
25910     replaceChild : function(newChild, oldChild){
25911         this.insertBefore(newChild, oldChild);
25912         this.removeChild(oldChild);
25913         return oldChild;
25914     },
25915
25916     /**
25917      * Returns the index of a child node
25918      * @param {Node} node
25919      * @return {Number} The index of the node or -1 if it was not found
25920      */
25921     indexOf : function(child){
25922         return this.childNodes.indexOf(child);
25923     },
25924
25925     /**
25926      * Returns the tree this node is in.
25927      * @return {Tree}
25928      */
25929     getOwnerTree : function(){
25930         // if it doesn't have one, look for one
25931         if(!this.ownerTree){
25932             var p = this;
25933             while(p){
25934                 if(p.ownerTree){
25935                     this.ownerTree = p.ownerTree;
25936                     break;
25937                 }
25938                 p = p.parentNode;
25939             }
25940         }
25941         return this.ownerTree;
25942     },
25943
25944     /**
25945      * Returns depth of this node (the root node has a depth of 0)
25946      * @return {Number}
25947      */
25948     getDepth : function(){
25949         var depth = 0;
25950         var p = this;
25951         while(p.parentNode){
25952             ++depth;
25953             p = p.parentNode;
25954         }
25955         return depth;
25956     },
25957
25958     // private
25959     setOwnerTree : function(tree){
25960         // if it's move, we need to update everyone
25961         if(tree != this.ownerTree){
25962             if(this.ownerTree){
25963                 this.ownerTree.unregisterNode(this);
25964             }
25965             this.ownerTree = tree;
25966             var cs = this.childNodes;
25967             for(var i = 0, len = cs.length; i < len; i++) {
25968                 cs[i].setOwnerTree(tree);
25969             }
25970             if(tree){
25971                 tree.registerNode(this);
25972             }
25973         }
25974     },
25975
25976     /**
25977      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25978      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25979      * @return {String} The path
25980      */
25981     getPath : function(attr){
25982         attr = attr || "id";
25983         var p = this.parentNode;
25984         var b = [this.attributes[attr]];
25985         while(p){
25986             b.unshift(p.attributes[attr]);
25987             p = p.parentNode;
25988         }
25989         var sep = this.getOwnerTree().pathSeparator;
25990         return sep + b.join(sep);
25991     },
25992
25993     /**
25994      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25995      * function call will be the scope provided or the current node. The arguments to the function
25996      * will be the args provided or the current node. If the function returns false at any point,
25997      * the bubble is stopped.
25998      * @param {Function} fn The function to call
25999      * @param {Object} scope (optional) The scope of the function (defaults to current node)
26000      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
26001      */
26002     bubble : function(fn, scope, args){
26003         var p = this;
26004         while(p){
26005             if(fn.call(scope || p, args || p) === false){
26006                 break;
26007             }
26008             p = p.parentNode;
26009         }
26010     },
26011
26012     /**
26013      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
26014      * function call will be the scope provided or the current node. The arguments to the function
26015      * will be the args provided or the current node. If the function returns false at any point,
26016      * the cascade is stopped on that branch.
26017      * @param {Function} fn The function to call
26018      * @param {Object} scope (optional) The scope of the function (defaults to current node)
26019      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
26020      */
26021     cascade : function(fn, scope, args){
26022         if(fn.call(scope || this, args || this) !== false){
26023             var cs = this.childNodes;
26024             for(var i = 0, len = cs.length; i < len; i++) {
26025                 cs[i].cascade(fn, scope, args);
26026             }
26027         }
26028     },
26029
26030     /**
26031      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
26032      * function call will be the scope provided or the current node. The arguments to the function
26033      * will be the args provided or the current node. If the function returns false at any point,
26034      * the iteration stops.
26035      * @param {Function} fn The function to call
26036      * @param {Object} scope (optional) The scope of the function (defaults to current node)
26037      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
26038      */
26039     eachChild : function(fn, scope, args){
26040         var cs = this.childNodes;
26041         for(var i = 0, len = cs.length; i < len; i++) {
26042                 if(fn.call(scope || this, args || cs[i]) === false){
26043                     break;
26044                 }
26045         }
26046     },
26047
26048     /**
26049      * Finds the first child that has the attribute with the specified value.
26050      * @param {String} attribute The attribute name
26051      * @param {Mixed} value The value to search for
26052      * @return {Node} The found child or null if none was found
26053      */
26054     findChild : function(attribute, value){
26055         var cs = this.childNodes;
26056         for(var i = 0, len = cs.length; i < len; i++) {
26057                 if(cs[i].attributes[attribute] == value){
26058                     return cs[i];
26059                 }
26060         }
26061         return null;
26062     },
26063
26064     /**
26065      * Finds the first child by a custom function. The child matches if the function passed
26066      * returns true.
26067      * @param {Function} fn
26068      * @param {Object} scope (optional)
26069      * @return {Node} The found child or null if none was found
26070      */
26071     findChildBy : function(fn, scope){
26072         var cs = this.childNodes;
26073         for(var i = 0, len = cs.length; i < len; i++) {
26074                 if(fn.call(scope||cs[i], cs[i]) === true){
26075                     return cs[i];
26076                 }
26077         }
26078         return null;
26079     },
26080
26081     /**
26082      * Sorts this nodes children using the supplied sort function
26083      * @param {Function} fn
26084      * @param {Object} scope (optional)
26085      */
26086     sort : function(fn, scope){
26087         var cs = this.childNodes;
26088         var len = cs.length;
26089         if(len > 0){
26090             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
26091             cs.sort(sortFn);
26092             for(var i = 0; i < len; i++){
26093                 var n = cs[i];
26094                 n.previousSibling = cs[i-1];
26095                 n.nextSibling = cs[i+1];
26096                 if(i == 0){
26097                     this.setFirstChild(n);
26098                 }
26099                 if(i == len-1){
26100                     this.setLastChild(n);
26101                 }
26102             }
26103         }
26104     },
26105
26106     /**
26107      * Returns true if this node is an ancestor (at any point) of the passed node.
26108      * @param {Node} node
26109      * @return {Boolean}
26110      */
26111     contains : function(node){
26112         return node.isAncestor(this);
26113     },
26114
26115     /**
26116      * Returns true if the passed node is an ancestor (at any point) of this node.
26117      * @param {Node} node
26118      * @return {Boolean}
26119      */
26120     isAncestor : function(node){
26121         var p = this.parentNode;
26122         while(p){
26123             if(p == node){
26124                 return true;
26125             }
26126             p = p.parentNode;
26127         }
26128         return false;
26129     },
26130
26131     toString : function(){
26132         return "[Node"+(this.id?" "+this.id:"")+"]";
26133     }
26134 });/*
26135  * Based on:
26136  * Ext JS Library 1.1.1
26137  * Copyright(c) 2006-2007, Ext JS, LLC.
26138  *
26139  * Originally Released Under LGPL - original licence link has changed is not relivant.
26140  *
26141  * Fork - LGPL
26142  * <script type="text/javascript">
26143  */
26144
26145
26146 /**
26147  * @class Roo.Shadow
26148  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26149  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26150  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26151  * @constructor
26152  * Create a new Shadow
26153  * @param {Object} config The config object
26154  */
26155 Roo.Shadow = function(config){
26156     Roo.apply(this, config);
26157     if(typeof this.mode != "string"){
26158         this.mode = this.defaultMode;
26159     }
26160     var o = this.offset, a = {h: 0};
26161     var rad = Math.floor(this.offset/2);
26162     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26163         case "drop":
26164             a.w = 0;
26165             a.l = a.t = o;
26166             a.t -= 1;
26167             if(Roo.isIE){
26168                 a.l -= this.offset + rad;
26169                 a.t -= this.offset + rad;
26170                 a.w -= rad;
26171                 a.h -= rad;
26172                 a.t += 1;
26173             }
26174         break;
26175         case "sides":
26176             a.w = (o*2);
26177             a.l = -o;
26178             a.t = o-1;
26179             if(Roo.isIE){
26180                 a.l -= (this.offset - rad);
26181                 a.t -= this.offset + rad;
26182                 a.l += 1;
26183                 a.w -= (this.offset - rad)*2;
26184                 a.w -= rad + 1;
26185                 a.h -= 1;
26186             }
26187         break;
26188         case "frame":
26189             a.w = a.h = (o*2);
26190             a.l = a.t = -o;
26191             a.t += 1;
26192             a.h -= 2;
26193             if(Roo.isIE){
26194                 a.l -= (this.offset - rad);
26195                 a.t -= (this.offset - rad);
26196                 a.l += 1;
26197                 a.w -= (this.offset + rad + 1);
26198                 a.h -= (this.offset + rad);
26199                 a.h += 1;
26200             }
26201         break;
26202     };
26203
26204     this.adjusts = a;
26205 };
26206
26207 Roo.Shadow.prototype = {
26208     /**
26209      * @cfg {String} mode
26210      * The shadow display mode.  Supports the following options:<br />
26211      * sides: Shadow displays on both sides and bottom only<br />
26212      * frame: Shadow displays equally on all four sides<br />
26213      * drop: Traditional bottom-right drop shadow (default)
26214      */
26215     mode: false,
26216     /**
26217      * @cfg {String} offset
26218      * The number of pixels to offset the shadow from the element (defaults to 4)
26219      */
26220     offset: 4,
26221
26222     // private
26223     defaultMode: "drop",
26224
26225     /**
26226      * Displays the shadow under the target element
26227      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26228      */
26229     show : function(target){
26230         target = Roo.get(target);
26231         if(!this.el){
26232             this.el = Roo.Shadow.Pool.pull();
26233             if(this.el.dom.nextSibling != target.dom){
26234                 this.el.insertBefore(target);
26235             }
26236         }
26237         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26238         if(Roo.isIE){
26239             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26240         }
26241         this.realign(
26242             target.getLeft(true),
26243             target.getTop(true),
26244             target.getWidth(),
26245             target.getHeight()
26246         );
26247         this.el.dom.style.display = "block";
26248     },
26249
26250     /**
26251      * Returns true if the shadow is visible, else false
26252      */
26253     isVisible : function(){
26254         return this.el ? true : false;  
26255     },
26256
26257     /**
26258      * Direct alignment when values are already available. Show must be called at least once before
26259      * calling this method to ensure it is initialized.
26260      * @param {Number} left The target element left position
26261      * @param {Number} top The target element top position
26262      * @param {Number} width The target element width
26263      * @param {Number} height The target element height
26264      */
26265     realign : function(l, t, w, h){
26266         if(!this.el){
26267             return;
26268         }
26269         var a = this.adjusts, d = this.el.dom, s = d.style;
26270         var iea = 0;
26271         s.left = (l+a.l)+"px";
26272         s.top = (t+a.t)+"px";
26273         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26274  
26275         if(s.width != sws || s.height != shs){
26276             s.width = sws;
26277             s.height = shs;
26278             if(!Roo.isIE){
26279                 var cn = d.childNodes;
26280                 var sww = Math.max(0, (sw-12))+"px";
26281                 cn[0].childNodes[1].style.width = sww;
26282                 cn[1].childNodes[1].style.width = sww;
26283                 cn[2].childNodes[1].style.width = sww;
26284                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26285             }
26286         }
26287     },
26288
26289     /**
26290      * Hides this shadow
26291      */
26292     hide : function(){
26293         if(this.el){
26294             this.el.dom.style.display = "none";
26295             Roo.Shadow.Pool.push(this.el);
26296             delete this.el;
26297         }
26298     },
26299
26300     /**
26301      * Adjust the z-index of this shadow
26302      * @param {Number} zindex The new z-index
26303      */
26304     setZIndex : function(z){
26305         this.zIndex = z;
26306         if(this.el){
26307             this.el.setStyle("z-index", z);
26308         }
26309     }
26310 };
26311
26312 // Private utility class that manages the internal Shadow cache
26313 Roo.Shadow.Pool = function(){
26314     var p = [];
26315     var markup = Roo.isIE ?
26316                  '<div class="x-ie-shadow"></div>' :
26317                  '<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>';
26318     return {
26319         pull : function(){
26320             var sh = p.shift();
26321             if(!sh){
26322                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26323                 sh.autoBoxAdjust = false;
26324             }
26325             return sh;
26326         },
26327
26328         push : function(sh){
26329             p.push(sh);
26330         }
26331     };
26332 }();/*
26333  * Based on:
26334  * Ext JS Library 1.1.1
26335  * Copyright(c) 2006-2007, Ext JS, LLC.
26336  *
26337  * Originally Released Under LGPL - original licence link has changed is not relivant.
26338  *
26339  * Fork - LGPL
26340  * <script type="text/javascript">
26341  */
26342
26343
26344 /**
26345  * @class Roo.SplitBar
26346  * @extends Roo.util.Observable
26347  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26348  * <br><br>
26349  * Usage:
26350  * <pre><code>
26351 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26352                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26353 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26354 split.minSize = 100;
26355 split.maxSize = 600;
26356 split.animate = true;
26357 split.on('moved', splitterMoved);
26358 </code></pre>
26359  * @constructor
26360  * Create a new SplitBar
26361  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26362  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26363  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26364  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26365                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26366                         position of the SplitBar).
26367  */
26368 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26369     
26370     /** @private */
26371     this.el = Roo.get(dragElement, true);
26372     this.el.dom.unselectable = "on";
26373     /** @private */
26374     this.resizingEl = Roo.get(resizingElement, true);
26375
26376     /**
26377      * @private
26378      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26379      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26380      * @type Number
26381      */
26382     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26383     
26384     /**
26385      * The minimum size of the resizing element. (Defaults to 0)
26386      * @type Number
26387      */
26388     this.minSize = 0;
26389     
26390     /**
26391      * The maximum size of the resizing element. (Defaults to 2000)
26392      * @type Number
26393      */
26394     this.maxSize = 2000;
26395     
26396     /**
26397      * Whether to animate the transition to the new size
26398      * @type Boolean
26399      */
26400     this.animate = false;
26401     
26402     /**
26403      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26404      * @type Boolean
26405      */
26406     this.useShim = false;
26407     
26408     /** @private */
26409     this.shim = null;
26410     
26411     if(!existingProxy){
26412         /** @private */
26413         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26414     }else{
26415         this.proxy = Roo.get(existingProxy).dom;
26416     }
26417     /** @private */
26418     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26419     
26420     /** @private */
26421     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26422     
26423     /** @private */
26424     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26425     
26426     /** @private */
26427     this.dragSpecs = {};
26428     
26429     /**
26430      * @private The adapter to use to positon and resize elements
26431      */
26432     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26433     this.adapter.init(this);
26434     
26435     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26436         /** @private */
26437         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26438         this.el.addClass("x-splitbar-h");
26439     }else{
26440         /** @private */
26441         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26442         this.el.addClass("x-splitbar-v");
26443     }
26444     
26445     this.addEvents({
26446         /**
26447          * @event resize
26448          * Fires when the splitter is moved (alias for {@link #event-moved})
26449          * @param {Roo.SplitBar} this
26450          * @param {Number} newSize the new width or height
26451          */
26452         "resize" : true,
26453         /**
26454          * @event moved
26455          * Fires when the splitter is moved
26456          * @param {Roo.SplitBar} this
26457          * @param {Number} newSize the new width or height
26458          */
26459         "moved" : true,
26460         /**
26461          * @event beforeresize
26462          * Fires before the splitter is dragged
26463          * @param {Roo.SplitBar} this
26464          */
26465         "beforeresize" : true,
26466
26467         "beforeapply" : true
26468     });
26469
26470     Roo.util.Observable.call(this);
26471 };
26472
26473 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26474     onStartProxyDrag : function(x, y){
26475         this.fireEvent("beforeresize", this);
26476         if(!this.overlay){
26477             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26478             o.unselectable();
26479             o.enableDisplayMode("block");
26480             // all splitbars share the same overlay
26481             Roo.SplitBar.prototype.overlay = o;
26482         }
26483         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26484         this.overlay.show();
26485         Roo.get(this.proxy).setDisplayed("block");
26486         var size = this.adapter.getElementSize(this);
26487         this.activeMinSize = this.getMinimumSize();;
26488         this.activeMaxSize = this.getMaximumSize();;
26489         var c1 = size - this.activeMinSize;
26490         var c2 = Math.max(this.activeMaxSize - size, 0);
26491         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26492             this.dd.resetConstraints();
26493             this.dd.setXConstraint(
26494                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26495                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26496             );
26497             this.dd.setYConstraint(0, 0);
26498         }else{
26499             this.dd.resetConstraints();
26500             this.dd.setXConstraint(0, 0);
26501             this.dd.setYConstraint(
26502                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26503                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26504             );
26505          }
26506         this.dragSpecs.startSize = size;
26507         this.dragSpecs.startPoint = [x, y];
26508         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26509     },
26510     
26511     /** 
26512      * @private Called after the drag operation by the DDProxy
26513      */
26514     onEndProxyDrag : function(e){
26515         Roo.get(this.proxy).setDisplayed(false);
26516         var endPoint = Roo.lib.Event.getXY(e);
26517         if(this.overlay){
26518             this.overlay.hide();
26519         }
26520         var newSize;
26521         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26522             newSize = this.dragSpecs.startSize + 
26523                 (this.placement == Roo.SplitBar.LEFT ?
26524                     endPoint[0] - this.dragSpecs.startPoint[0] :
26525                     this.dragSpecs.startPoint[0] - endPoint[0]
26526                 );
26527         }else{
26528             newSize = this.dragSpecs.startSize + 
26529                 (this.placement == Roo.SplitBar.TOP ?
26530                     endPoint[1] - this.dragSpecs.startPoint[1] :
26531                     this.dragSpecs.startPoint[1] - endPoint[1]
26532                 );
26533         }
26534         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26535         if(newSize != this.dragSpecs.startSize){
26536             if(this.fireEvent('beforeapply', this, newSize) !== false){
26537                 this.adapter.setElementSize(this, newSize);
26538                 this.fireEvent("moved", this, newSize);
26539                 this.fireEvent("resize", this, newSize);
26540             }
26541         }
26542     },
26543     
26544     /**
26545      * Get the adapter this SplitBar uses
26546      * @return The adapter object
26547      */
26548     getAdapter : function(){
26549         return this.adapter;
26550     },
26551     
26552     /**
26553      * Set the adapter this SplitBar uses
26554      * @param {Object} adapter A SplitBar adapter object
26555      */
26556     setAdapter : function(adapter){
26557         this.adapter = adapter;
26558         this.adapter.init(this);
26559     },
26560     
26561     /**
26562      * Gets the minimum size for the resizing element
26563      * @return {Number} The minimum size
26564      */
26565     getMinimumSize : function(){
26566         return this.minSize;
26567     },
26568     
26569     /**
26570      * Sets the minimum size for the resizing element
26571      * @param {Number} minSize The minimum size
26572      */
26573     setMinimumSize : function(minSize){
26574         this.minSize = minSize;
26575     },
26576     
26577     /**
26578      * Gets the maximum size for the resizing element
26579      * @return {Number} The maximum size
26580      */
26581     getMaximumSize : function(){
26582         return this.maxSize;
26583     },
26584     
26585     /**
26586      * Sets the maximum size for the resizing element
26587      * @param {Number} maxSize The maximum size
26588      */
26589     setMaximumSize : function(maxSize){
26590         this.maxSize = maxSize;
26591     },
26592     
26593     /**
26594      * Sets the initialize size for the resizing element
26595      * @param {Number} size The initial size
26596      */
26597     setCurrentSize : function(size){
26598         var oldAnimate = this.animate;
26599         this.animate = false;
26600         this.adapter.setElementSize(this, size);
26601         this.animate = oldAnimate;
26602     },
26603     
26604     /**
26605      * Destroy this splitbar. 
26606      * @param {Boolean} removeEl True to remove the element
26607      */
26608     destroy : function(removeEl){
26609         if(this.shim){
26610             this.shim.remove();
26611         }
26612         this.dd.unreg();
26613         this.proxy.parentNode.removeChild(this.proxy);
26614         if(removeEl){
26615             this.el.remove();
26616         }
26617     }
26618 });
26619
26620 /**
26621  * @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.
26622  */
26623 Roo.SplitBar.createProxy = function(dir){
26624     var proxy = new Roo.Element(document.createElement("div"));
26625     proxy.unselectable();
26626     var cls = 'x-splitbar-proxy';
26627     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26628     document.body.appendChild(proxy.dom);
26629     return proxy.dom;
26630 };
26631
26632 /** 
26633  * @class Roo.SplitBar.BasicLayoutAdapter
26634  * Default Adapter. It assumes the splitter and resizing element are not positioned
26635  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26636  */
26637 Roo.SplitBar.BasicLayoutAdapter = function(){
26638 };
26639
26640 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26641     // do nothing for now
26642     init : function(s){
26643     
26644     },
26645     /**
26646      * Called before drag operations to get the current size of the resizing element. 
26647      * @param {Roo.SplitBar} s The SplitBar using this adapter
26648      */
26649      getElementSize : function(s){
26650         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26651             return s.resizingEl.getWidth();
26652         }else{
26653             return s.resizingEl.getHeight();
26654         }
26655     },
26656     
26657     /**
26658      * Called after drag operations to set the size of the resizing element.
26659      * @param {Roo.SplitBar} s The SplitBar using this adapter
26660      * @param {Number} newSize The new size to set
26661      * @param {Function} onComplete A function to be invoked when resizing is complete
26662      */
26663     setElementSize : function(s, newSize, onComplete){
26664         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26665             if(!s.animate){
26666                 s.resizingEl.setWidth(newSize);
26667                 if(onComplete){
26668                     onComplete(s, newSize);
26669                 }
26670             }else{
26671                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26672             }
26673         }else{
26674             
26675             if(!s.animate){
26676                 s.resizingEl.setHeight(newSize);
26677                 if(onComplete){
26678                     onComplete(s, newSize);
26679                 }
26680             }else{
26681                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26682             }
26683         }
26684     }
26685 };
26686
26687 /** 
26688  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26689  * @extends Roo.SplitBar.BasicLayoutAdapter
26690  * Adapter that  moves the splitter element to align with the resized sizing element. 
26691  * Used with an absolute positioned SplitBar.
26692  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26693  * document.body, make sure you assign an id to the body element.
26694  */
26695 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26696     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26697     this.container = Roo.get(container);
26698 };
26699
26700 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26701     init : function(s){
26702         this.basic.init(s);
26703     },
26704     
26705     getElementSize : function(s){
26706         return this.basic.getElementSize(s);
26707     },
26708     
26709     setElementSize : function(s, newSize, onComplete){
26710         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26711     },
26712     
26713     moveSplitter : function(s){
26714         var yes = Roo.SplitBar;
26715         switch(s.placement){
26716             case yes.LEFT:
26717                 s.el.setX(s.resizingEl.getRight());
26718                 break;
26719             case yes.RIGHT:
26720                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26721                 break;
26722             case yes.TOP:
26723                 s.el.setY(s.resizingEl.getBottom());
26724                 break;
26725             case yes.BOTTOM:
26726                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26727                 break;
26728         }
26729     }
26730 };
26731
26732 /**
26733  * Orientation constant - Create a vertical SplitBar
26734  * @static
26735  * @type Number
26736  */
26737 Roo.SplitBar.VERTICAL = 1;
26738
26739 /**
26740  * Orientation constant - Create a horizontal SplitBar
26741  * @static
26742  * @type Number
26743  */
26744 Roo.SplitBar.HORIZONTAL = 2;
26745
26746 /**
26747  * Placement constant - The resizing element is to the left of the splitter element
26748  * @static
26749  * @type Number
26750  */
26751 Roo.SplitBar.LEFT = 1;
26752
26753 /**
26754  * Placement constant - The resizing element is to the right of the splitter element
26755  * @static
26756  * @type Number
26757  */
26758 Roo.SplitBar.RIGHT = 2;
26759
26760 /**
26761  * Placement constant - The resizing element is positioned above the splitter element
26762  * @static
26763  * @type Number
26764  */
26765 Roo.SplitBar.TOP = 3;
26766
26767 /**
26768  * Placement constant - The resizing element is positioned under splitter element
26769  * @static
26770  * @type Number
26771  */
26772 Roo.SplitBar.BOTTOM = 4;
26773 /*
26774  * Based on:
26775  * Ext JS Library 1.1.1
26776  * Copyright(c) 2006-2007, Ext JS, LLC.
26777  *
26778  * Originally Released Under LGPL - original licence link has changed is not relivant.
26779  *
26780  * Fork - LGPL
26781  * <script type="text/javascript">
26782  */
26783
26784 /**
26785  * @class Roo.View
26786  * @extends Roo.util.Observable
26787  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26788  * This class also supports single and multi selection modes. <br>
26789  * Create a data model bound view:
26790  <pre><code>
26791  var store = new Roo.data.Store(...);
26792
26793  var view = new Roo.View({
26794     el : "my-element",
26795     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26796  
26797     singleSelect: true,
26798     selectedClass: "ydataview-selected",
26799     store: store
26800  });
26801
26802  // listen for node click?
26803  view.on("click", function(vw, index, node, e){
26804  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26805  });
26806
26807  // load XML data
26808  dataModel.load("foobar.xml");
26809  </code></pre>
26810  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26811  * <br><br>
26812  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26813  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26814  * 
26815  * Note: old style constructor is still suported (container, template, config)
26816  * 
26817  * @constructor
26818  * Create a new View
26819  * @param {Object} config The config object
26820  * 
26821  */
26822 Roo.View = function(config, depreciated_tpl, depreciated_config){
26823     
26824     this.parent = false;
26825     
26826     if (typeof(depreciated_tpl) == 'undefined') {
26827         // new way.. - universal constructor.
26828         Roo.apply(this, config);
26829         this.el  = Roo.get(this.el);
26830     } else {
26831         // old format..
26832         this.el  = Roo.get(config);
26833         this.tpl = depreciated_tpl;
26834         Roo.apply(this, depreciated_config);
26835     }
26836     this.wrapEl  = this.el.wrap().wrap();
26837     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26838     
26839     
26840     if(typeof(this.tpl) == "string"){
26841         this.tpl = new Roo.Template(this.tpl);
26842     } else {
26843         // support xtype ctors..
26844         this.tpl = new Roo.factory(this.tpl, Roo);
26845     }
26846     
26847     
26848     this.tpl.compile();
26849     
26850     /** @private */
26851     this.addEvents({
26852         /**
26853          * @event beforeclick
26854          * Fires before a click is processed. Returns false to cancel the default action.
26855          * @param {Roo.View} this
26856          * @param {Number} index The index of the target node
26857          * @param {HTMLElement} node The target node
26858          * @param {Roo.EventObject} e The raw event object
26859          */
26860             "beforeclick" : true,
26861         /**
26862          * @event click
26863          * Fires when a template node is clicked.
26864          * @param {Roo.View} this
26865          * @param {Number} index The index of the target node
26866          * @param {HTMLElement} node The target node
26867          * @param {Roo.EventObject} e The raw event object
26868          */
26869             "click" : true,
26870         /**
26871          * @event dblclick
26872          * Fires when a template node is double clicked.
26873          * @param {Roo.View} this
26874          * @param {Number} index The index of the target node
26875          * @param {HTMLElement} node The target node
26876          * @param {Roo.EventObject} e The raw event object
26877          */
26878             "dblclick" : true,
26879         /**
26880          * @event contextmenu
26881          * Fires when a template node is right clicked.
26882          * @param {Roo.View} this
26883          * @param {Number} index The index of the target node
26884          * @param {HTMLElement} node The target node
26885          * @param {Roo.EventObject} e The raw event object
26886          */
26887             "contextmenu" : true,
26888         /**
26889          * @event selectionchange
26890          * Fires when the selected nodes change.
26891          * @param {Roo.View} this
26892          * @param {Array} selections Array of the selected nodes
26893          */
26894             "selectionchange" : true,
26895     
26896         /**
26897          * @event beforeselect
26898          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26899          * @param {Roo.View} this
26900          * @param {HTMLElement} node The node to be selected
26901          * @param {Array} selections Array of currently selected nodes
26902          */
26903             "beforeselect" : true,
26904         /**
26905          * @event preparedata
26906          * Fires on every row to render, to allow you to change the data.
26907          * @param {Roo.View} this
26908          * @param {Object} data to be rendered (change this)
26909          */
26910           "preparedata" : true
26911           
26912           
26913         });
26914
26915
26916
26917     this.el.on({
26918         "click": this.onClick,
26919         "dblclick": this.onDblClick,
26920         "contextmenu": this.onContextMenu,
26921         scope:this
26922     });
26923
26924     this.selections = [];
26925     this.nodes = [];
26926     this.cmp = new Roo.CompositeElementLite([]);
26927     if(this.store){
26928         this.store = Roo.factory(this.store, Roo.data);
26929         this.setStore(this.store, true);
26930     }
26931     
26932     if ( this.footer && this.footer.xtype) {
26933            
26934          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26935         
26936         this.footer.dataSource = this.store;
26937         this.footer.container = fctr;
26938         this.footer = Roo.factory(this.footer, Roo);
26939         fctr.insertFirst(this.el);
26940         
26941         // this is a bit insane - as the paging toolbar seems to detach the el..
26942 //        dom.parentNode.parentNode.parentNode
26943          // they get detached?
26944     }
26945     
26946     
26947     Roo.View.superclass.constructor.call(this);
26948     
26949     
26950 };
26951
26952 Roo.extend(Roo.View, Roo.util.Observable, {
26953     
26954      /**
26955      * @cfg {Roo.data.Store} store Data store to load data from.
26956      */
26957     store : false,
26958     
26959     /**
26960      * @cfg {String|Roo.Element} el The container element.
26961      */
26962     el : '',
26963     
26964     /**
26965      * @cfg {String|Roo.Template} tpl The template used by this View 
26966      */
26967     tpl : false,
26968     /**
26969      * @cfg {String} dataName the named area of the template to use as the data area
26970      *                          Works with domtemplates roo-name="name"
26971      */
26972     dataName: false,
26973     /**
26974      * @cfg {String} selectedClass The css class to add to selected nodes
26975      */
26976     selectedClass : "x-view-selected",
26977      /**
26978      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26979      */
26980     emptyText : "",
26981     
26982     /**
26983      * @cfg {String} text to display on mask (default Loading)
26984      */
26985     mask : false,
26986     /**
26987      * @cfg {Boolean} multiSelect Allow multiple selection
26988      */
26989     multiSelect : false,
26990     /**
26991      * @cfg {Boolean} singleSelect Allow single selection
26992      */
26993     singleSelect:  false,
26994     
26995     /**
26996      * @cfg {Boolean} toggleSelect - selecting 
26997      */
26998     toggleSelect : false,
26999     
27000     /**
27001      * @cfg {Boolean} tickable - selecting 
27002      */
27003     tickable : false,
27004     
27005     /**
27006      * Returns the element this view is bound to.
27007      * @return {Roo.Element}
27008      */
27009     getEl : function(){
27010         return this.wrapEl;
27011     },
27012     
27013     
27014
27015     /**
27016      * Refreshes the view. - called by datachanged on the store. - do not call directly.
27017      */
27018     refresh : function(){
27019         //Roo.log('refresh');
27020         var t = this.tpl;
27021         
27022         // if we are using something like 'domtemplate', then
27023         // the what gets used is:
27024         // t.applySubtemplate(NAME, data, wrapping data..)
27025         // the outer template then get' applied with
27026         //     the store 'extra data'
27027         // and the body get's added to the
27028         //      roo-name="data" node?
27029         //      <span class='roo-tpl-{name}'></span> ?????
27030         
27031         
27032         
27033         this.clearSelections();
27034         this.el.update("");
27035         var html = [];
27036         var records = this.store.getRange();
27037         if(records.length < 1) {
27038             
27039             // is this valid??  = should it render a template??
27040             
27041             this.el.update(this.emptyText);
27042             return;
27043         }
27044         var el = this.el;
27045         if (this.dataName) {
27046             this.el.update(t.apply(this.store.meta)); //????
27047             el = this.el.child('.roo-tpl-' + this.dataName);
27048         }
27049         
27050         for(var i = 0, len = records.length; i < len; i++){
27051             var data = this.prepareData(records[i].data, i, records[i]);
27052             this.fireEvent("preparedata", this, data, i, records[i]);
27053             
27054             var d = Roo.apply({}, data);
27055             
27056             if(this.tickable){
27057                 Roo.apply(d, {'roo-id' : Roo.id()});
27058                 
27059                 var _this = this;
27060             
27061                 Roo.each(this.parent.item, function(item){
27062                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
27063                         return;
27064                     }
27065                     Roo.apply(d, {'roo-data-checked' : 'checked'});
27066                 });
27067             }
27068             
27069             html[html.length] = Roo.util.Format.trim(
27070                 this.dataName ?
27071                     t.applySubtemplate(this.dataName, d, this.store.meta) :
27072                     t.apply(d)
27073             );
27074         }
27075         
27076         
27077         
27078         el.update(html.join(""));
27079         this.nodes = el.dom.childNodes;
27080         this.updateIndexes(0);
27081     },
27082     
27083
27084     /**
27085      * Function to override to reformat the data that is sent to
27086      * the template for each node.
27087      * DEPRICATED - use the preparedata event handler.
27088      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
27089      * a JSON object for an UpdateManager bound view).
27090      */
27091     prepareData : function(data, index, record)
27092     {
27093         this.fireEvent("preparedata", this, data, index, record);
27094         return data;
27095     },
27096
27097     onUpdate : function(ds, record){
27098         // Roo.log('on update');   
27099         this.clearSelections();
27100         var index = this.store.indexOf(record);
27101         var n = this.nodes[index];
27102         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
27103         n.parentNode.removeChild(n);
27104         this.updateIndexes(index, index);
27105     },
27106
27107     
27108     
27109 // --------- FIXME     
27110     onAdd : function(ds, records, index)
27111     {
27112         //Roo.log(['on Add', ds, records, index] );        
27113         this.clearSelections();
27114         if(this.nodes.length == 0){
27115             this.refresh();
27116             return;
27117         }
27118         var n = this.nodes[index];
27119         for(var i = 0, len = records.length; i < len; i++){
27120             var d = this.prepareData(records[i].data, i, records[i]);
27121             if(n){
27122                 this.tpl.insertBefore(n, d);
27123             }else{
27124                 
27125                 this.tpl.append(this.el, d);
27126             }
27127         }
27128         this.updateIndexes(index);
27129     },
27130
27131     onRemove : function(ds, record, index){
27132        // Roo.log('onRemove');
27133         this.clearSelections();
27134         var el = this.dataName  ?
27135             this.el.child('.roo-tpl-' + this.dataName) :
27136             this.el; 
27137         
27138         el.dom.removeChild(this.nodes[index]);
27139         this.updateIndexes(index);
27140     },
27141
27142     /**
27143      * Refresh an individual node.
27144      * @param {Number} index
27145      */
27146     refreshNode : function(index){
27147         this.onUpdate(this.store, this.store.getAt(index));
27148     },
27149
27150     updateIndexes : function(startIndex, endIndex){
27151         var ns = this.nodes;
27152         startIndex = startIndex || 0;
27153         endIndex = endIndex || ns.length - 1;
27154         for(var i = startIndex; i <= endIndex; i++){
27155             ns[i].nodeIndex = i;
27156         }
27157     },
27158
27159     /**
27160      * Changes the data store this view uses and refresh the view.
27161      * @param {Store} store
27162      */
27163     setStore : function(store, initial){
27164         if(!initial && this.store){
27165             this.store.un("datachanged", this.refresh);
27166             this.store.un("add", this.onAdd);
27167             this.store.un("remove", this.onRemove);
27168             this.store.un("update", this.onUpdate);
27169             this.store.un("clear", this.refresh);
27170             this.store.un("beforeload", this.onBeforeLoad);
27171             this.store.un("load", this.onLoad);
27172             this.store.un("loadexception", this.onLoad);
27173         }
27174         if(store){
27175           
27176             store.on("datachanged", this.refresh, this);
27177             store.on("add", this.onAdd, this);
27178             store.on("remove", this.onRemove, this);
27179             store.on("update", this.onUpdate, this);
27180             store.on("clear", this.refresh, this);
27181             store.on("beforeload", this.onBeforeLoad, this);
27182             store.on("load", this.onLoad, this);
27183             store.on("loadexception", this.onLoad, this);
27184         }
27185         
27186         if(store){
27187             this.refresh();
27188         }
27189     },
27190     /**
27191      * onbeforeLoad - masks the loading area.
27192      *
27193      */
27194     onBeforeLoad : function(store,opts)
27195     {
27196          //Roo.log('onBeforeLoad');   
27197         if (!opts.add) {
27198             this.el.update("");
27199         }
27200         this.el.mask(this.mask ? this.mask : "Loading" ); 
27201     },
27202     onLoad : function ()
27203     {
27204         this.el.unmask();
27205     },
27206     
27207
27208     /**
27209      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27210      * @param {HTMLElement} node
27211      * @return {HTMLElement} The template node
27212      */
27213     findItemFromChild : function(node){
27214         var el = this.dataName  ?
27215             this.el.child('.roo-tpl-' + this.dataName,true) :
27216             this.el.dom; 
27217         
27218         if(!node || node.parentNode == el){
27219                     return node;
27220             }
27221             var p = node.parentNode;
27222             while(p && p != el){
27223             if(p.parentNode == el){
27224                 return p;
27225             }
27226             p = p.parentNode;
27227         }
27228             return null;
27229     },
27230
27231     /** @ignore */
27232     onClick : function(e){
27233         var item = this.findItemFromChild(e.getTarget());
27234         if(item){
27235             var index = this.indexOf(item);
27236             if(this.onItemClick(item, index, e) !== false){
27237                 this.fireEvent("click", this, index, item, e);
27238             }
27239         }else{
27240             this.clearSelections();
27241         }
27242     },
27243
27244     /** @ignore */
27245     onContextMenu : function(e){
27246         var item = this.findItemFromChild(e.getTarget());
27247         if(item){
27248             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27249         }
27250     },
27251
27252     /** @ignore */
27253     onDblClick : function(e){
27254         var item = this.findItemFromChild(e.getTarget());
27255         if(item){
27256             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27257         }
27258     },
27259
27260     onItemClick : function(item, index, e)
27261     {
27262         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27263             return false;
27264         }
27265         if (this.toggleSelect) {
27266             var m = this.isSelected(item) ? 'unselect' : 'select';
27267             //Roo.log(m);
27268             var _t = this;
27269             _t[m](item, true, false);
27270             return true;
27271         }
27272         if(this.multiSelect || this.singleSelect){
27273             if(this.multiSelect && e.shiftKey && this.lastSelection){
27274                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27275             }else{
27276                 this.select(item, this.multiSelect && e.ctrlKey);
27277                 this.lastSelection = item;
27278             }
27279             
27280             if(!this.tickable){
27281                 e.preventDefault();
27282             }
27283             
27284         }
27285         return true;
27286     },
27287
27288     /**
27289      * Get the number of selected nodes.
27290      * @return {Number}
27291      */
27292     getSelectionCount : function(){
27293         return this.selections.length;
27294     },
27295
27296     /**
27297      * Get the currently selected nodes.
27298      * @return {Array} An array of HTMLElements
27299      */
27300     getSelectedNodes : function(){
27301         return this.selections;
27302     },
27303
27304     /**
27305      * Get the indexes of the selected nodes.
27306      * @return {Array}
27307      */
27308     getSelectedIndexes : function(){
27309         var indexes = [], s = this.selections;
27310         for(var i = 0, len = s.length; i < len; i++){
27311             indexes.push(s[i].nodeIndex);
27312         }
27313         return indexes;
27314     },
27315
27316     /**
27317      * Clear all selections
27318      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27319      */
27320     clearSelections : function(suppressEvent){
27321         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27322             this.cmp.elements = this.selections;
27323             this.cmp.removeClass(this.selectedClass);
27324             this.selections = [];
27325             if(!suppressEvent){
27326                 this.fireEvent("selectionchange", this, this.selections);
27327             }
27328         }
27329     },
27330
27331     /**
27332      * Returns true if the passed node is selected
27333      * @param {HTMLElement/Number} node The node or node index
27334      * @return {Boolean}
27335      */
27336     isSelected : function(node){
27337         var s = this.selections;
27338         if(s.length < 1){
27339             return false;
27340         }
27341         node = this.getNode(node);
27342         return s.indexOf(node) !== -1;
27343     },
27344
27345     /**
27346      * Selects nodes.
27347      * @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
27348      * @param {Boolean} keepExisting (optional) true to keep existing selections
27349      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27350      */
27351     select : function(nodeInfo, keepExisting, suppressEvent){
27352         if(nodeInfo instanceof Array){
27353             if(!keepExisting){
27354                 this.clearSelections(true);
27355             }
27356             for(var i = 0, len = nodeInfo.length; i < len; i++){
27357                 this.select(nodeInfo[i], true, true);
27358             }
27359             return;
27360         } 
27361         var node = this.getNode(nodeInfo);
27362         if(!node || this.isSelected(node)){
27363             return; // already selected.
27364         }
27365         if(!keepExisting){
27366             this.clearSelections(true);
27367         }
27368         
27369         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27370             Roo.fly(node).addClass(this.selectedClass);
27371             this.selections.push(node);
27372             if(!suppressEvent){
27373                 this.fireEvent("selectionchange", this, this.selections);
27374             }
27375         }
27376         
27377         
27378     },
27379       /**
27380      * Unselects nodes.
27381      * @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
27382      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27383      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27384      */
27385     unselect : function(nodeInfo, keepExisting, suppressEvent)
27386     {
27387         if(nodeInfo instanceof Array){
27388             Roo.each(this.selections, function(s) {
27389                 this.unselect(s, nodeInfo);
27390             }, this);
27391             return;
27392         }
27393         var node = this.getNode(nodeInfo);
27394         if(!node || !this.isSelected(node)){
27395             //Roo.log("not selected");
27396             return; // not selected.
27397         }
27398         // fireevent???
27399         var ns = [];
27400         Roo.each(this.selections, function(s) {
27401             if (s == node ) {
27402                 Roo.fly(node).removeClass(this.selectedClass);
27403
27404                 return;
27405             }
27406             ns.push(s);
27407         },this);
27408         
27409         this.selections= ns;
27410         this.fireEvent("selectionchange", this, this.selections);
27411     },
27412
27413     /**
27414      * Gets a template node.
27415      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27416      * @return {HTMLElement} The node or null if it wasn't found
27417      */
27418     getNode : function(nodeInfo){
27419         if(typeof nodeInfo == "string"){
27420             return document.getElementById(nodeInfo);
27421         }else if(typeof nodeInfo == "number"){
27422             return this.nodes[nodeInfo];
27423         }
27424         return nodeInfo;
27425     },
27426
27427     /**
27428      * Gets a range template nodes.
27429      * @param {Number} startIndex
27430      * @param {Number} endIndex
27431      * @return {Array} An array of nodes
27432      */
27433     getNodes : function(start, end){
27434         var ns = this.nodes;
27435         start = start || 0;
27436         end = typeof end == "undefined" ? ns.length - 1 : end;
27437         var nodes = [];
27438         if(start <= end){
27439             for(var i = start; i <= end; i++){
27440                 nodes.push(ns[i]);
27441             }
27442         } else{
27443             for(var i = start; i >= end; i--){
27444                 nodes.push(ns[i]);
27445             }
27446         }
27447         return nodes;
27448     },
27449
27450     /**
27451      * Finds the index of the passed node
27452      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27453      * @return {Number} The index of the node or -1
27454      */
27455     indexOf : function(node){
27456         node = this.getNode(node);
27457         if(typeof node.nodeIndex == "number"){
27458             return node.nodeIndex;
27459         }
27460         var ns = this.nodes;
27461         for(var i = 0, len = ns.length; i < len; i++){
27462             if(ns[i] == node){
27463                 return i;
27464             }
27465         }
27466         return -1;
27467     }
27468 });
27469 /*
27470  * Based on:
27471  * Ext JS Library 1.1.1
27472  * Copyright(c) 2006-2007, Ext JS, LLC.
27473  *
27474  * Originally Released Under LGPL - original licence link has changed is not relivant.
27475  *
27476  * Fork - LGPL
27477  * <script type="text/javascript">
27478  */
27479
27480 /**
27481  * @class Roo.JsonView
27482  * @extends Roo.View
27483  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27484 <pre><code>
27485 var view = new Roo.JsonView({
27486     container: "my-element",
27487     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27488     multiSelect: true, 
27489     jsonRoot: "data" 
27490 });
27491
27492 // listen for node click?
27493 view.on("click", function(vw, index, node, e){
27494     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27495 });
27496
27497 // direct load of JSON data
27498 view.load("foobar.php");
27499
27500 // Example from my blog list
27501 var tpl = new Roo.Template(
27502     '&lt;div class="entry"&gt;' +
27503     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27504     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27505     "&lt;/div&gt;&lt;hr /&gt;"
27506 );
27507
27508 var moreView = new Roo.JsonView({
27509     container :  "entry-list", 
27510     template : tpl,
27511     jsonRoot: "posts"
27512 });
27513 moreView.on("beforerender", this.sortEntries, this);
27514 moreView.load({
27515     url: "/blog/get-posts.php",
27516     params: "allposts=true",
27517     text: "Loading Blog Entries..."
27518 });
27519 </code></pre>
27520
27521 * Note: old code is supported with arguments : (container, template, config)
27522
27523
27524  * @constructor
27525  * Create a new JsonView
27526  * 
27527  * @param {Object} config The config object
27528  * 
27529  */
27530 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27531     
27532     
27533     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27534
27535     var um = this.el.getUpdateManager();
27536     um.setRenderer(this);
27537     um.on("update", this.onLoad, this);
27538     um.on("failure", this.onLoadException, this);
27539
27540     /**
27541      * @event beforerender
27542      * Fires before rendering of the downloaded JSON data.
27543      * @param {Roo.JsonView} this
27544      * @param {Object} data The JSON data loaded
27545      */
27546     /**
27547      * @event load
27548      * Fires when data is loaded.
27549      * @param {Roo.JsonView} this
27550      * @param {Object} data The JSON data loaded
27551      * @param {Object} response The raw Connect response object
27552      */
27553     /**
27554      * @event loadexception
27555      * Fires when loading fails.
27556      * @param {Roo.JsonView} this
27557      * @param {Object} response The raw Connect response object
27558      */
27559     this.addEvents({
27560         'beforerender' : true,
27561         'load' : true,
27562         'loadexception' : true
27563     });
27564 };
27565 Roo.extend(Roo.JsonView, Roo.View, {
27566     /**
27567      * @type {String} The root property in the loaded JSON object that contains the data
27568      */
27569     jsonRoot : "",
27570
27571     /**
27572      * Refreshes the view.
27573      */
27574     refresh : function(){
27575         this.clearSelections();
27576         this.el.update("");
27577         var html = [];
27578         var o = this.jsonData;
27579         if(o && o.length > 0){
27580             for(var i = 0, len = o.length; i < len; i++){
27581                 var data = this.prepareData(o[i], i, o);
27582                 html[html.length] = this.tpl.apply(data);
27583             }
27584         }else{
27585             html.push(this.emptyText);
27586         }
27587         this.el.update(html.join(""));
27588         this.nodes = this.el.dom.childNodes;
27589         this.updateIndexes(0);
27590     },
27591
27592     /**
27593      * 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.
27594      * @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:
27595      <pre><code>
27596      view.load({
27597          url: "your-url.php",
27598          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27599          callback: yourFunction,
27600          scope: yourObject, //(optional scope)
27601          discardUrl: false,
27602          nocache: false,
27603          text: "Loading...",
27604          timeout: 30,
27605          scripts: false
27606      });
27607      </code></pre>
27608      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27609      * 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.
27610      * @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}
27611      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27612      * @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.
27613      */
27614     load : function(){
27615         var um = this.el.getUpdateManager();
27616         um.update.apply(um, arguments);
27617     },
27618
27619     // note - render is a standard framework call...
27620     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27621     render : function(el, response){
27622         
27623         this.clearSelections();
27624         this.el.update("");
27625         var o;
27626         try{
27627             if (response != '') {
27628                 o = Roo.util.JSON.decode(response.responseText);
27629                 if(this.jsonRoot){
27630                     
27631                     o = o[this.jsonRoot];
27632                 }
27633             }
27634         } catch(e){
27635         }
27636         /**
27637          * The current JSON data or null
27638          */
27639         this.jsonData = o;
27640         this.beforeRender();
27641         this.refresh();
27642     },
27643
27644 /**
27645  * Get the number of records in the current JSON dataset
27646  * @return {Number}
27647  */
27648     getCount : function(){
27649         return this.jsonData ? this.jsonData.length : 0;
27650     },
27651
27652 /**
27653  * Returns the JSON object for the specified node(s)
27654  * @param {HTMLElement/Array} node The node or an array of nodes
27655  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27656  * you get the JSON object for the node
27657  */
27658     getNodeData : function(node){
27659         if(node instanceof Array){
27660             var data = [];
27661             for(var i = 0, len = node.length; i < len; i++){
27662                 data.push(this.getNodeData(node[i]));
27663             }
27664             return data;
27665         }
27666         return this.jsonData[this.indexOf(node)] || null;
27667     },
27668
27669     beforeRender : function(){
27670         this.snapshot = this.jsonData;
27671         if(this.sortInfo){
27672             this.sort.apply(this, this.sortInfo);
27673         }
27674         this.fireEvent("beforerender", this, this.jsonData);
27675     },
27676
27677     onLoad : function(el, o){
27678         this.fireEvent("load", this, this.jsonData, o);
27679     },
27680
27681     onLoadException : function(el, o){
27682         this.fireEvent("loadexception", this, o);
27683     },
27684
27685 /**
27686  * Filter the data by a specific property.
27687  * @param {String} property A property on your JSON objects
27688  * @param {String/RegExp} value Either string that the property values
27689  * should start with, or a RegExp to test against the property
27690  */
27691     filter : function(property, value){
27692         if(this.jsonData){
27693             var data = [];
27694             var ss = this.snapshot;
27695             if(typeof value == "string"){
27696                 var vlen = value.length;
27697                 if(vlen == 0){
27698                     this.clearFilter();
27699                     return;
27700                 }
27701                 value = value.toLowerCase();
27702                 for(var i = 0, len = ss.length; i < len; i++){
27703                     var o = ss[i];
27704                     if(o[property].substr(0, vlen).toLowerCase() == value){
27705                         data.push(o);
27706                     }
27707                 }
27708             } else if(value.exec){ // regex?
27709                 for(var i = 0, len = ss.length; i < len; i++){
27710                     var o = ss[i];
27711                     if(value.test(o[property])){
27712                         data.push(o);
27713                     }
27714                 }
27715             } else{
27716                 return;
27717             }
27718             this.jsonData = data;
27719             this.refresh();
27720         }
27721     },
27722
27723 /**
27724  * Filter by a function. The passed function will be called with each
27725  * object in the current dataset. If the function returns true the value is kept,
27726  * otherwise it is filtered.
27727  * @param {Function} fn
27728  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27729  */
27730     filterBy : function(fn, scope){
27731         if(this.jsonData){
27732             var data = [];
27733             var ss = this.snapshot;
27734             for(var i = 0, len = ss.length; i < len; i++){
27735                 var o = ss[i];
27736                 if(fn.call(scope || this, o)){
27737                     data.push(o);
27738                 }
27739             }
27740             this.jsonData = data;
27741             this.refresh();
27742         }
27743     },
27744
27745 /**
27746  * Clears the current filter.
27747  */
27748     clearFilter : function(){
27749         if(this.snapshot && this.jsonData != this.snapshot){
27750             this.jsonData = this.snapshot;
27751             this.refresh();
27752         }
27753     },
27754
27755
27756 /**
27757  * Sorts the data for this view and refreshes it.
27758  * @param {String} property A property on your JSON objects to sort on
27759  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27760  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27761  */
27762     sort : function(property, dir, sortType){
27763         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27764         if(this.jsonData){
27765             var p = property;
27766             var dsc = dir && dir.toLowerCase() == "desc";
27767             var f = function(o1, o2){
27768                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27769                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27770                 ;
27771                 if(v1 < v2){
27772                     return dsc ? +1 : -1;
27773                 } else if(v1 > v2){
27774                     return dsc ? -1 : +1;
27775                 } else{
27776                     return 0;
27777                 }
27778             };
27779             this.jsonData.sort(f);
27780             this.refresh();
27781             if(this.jsonData != this.snapshot){
27782                 this.snapshot.sort(f);
27783             }
27784         }
27785     }
27786 });/*
27787  * Based on:
27788  * Ext JS Library 1.1.1
27789  * Copyright(c) 2006-2007, Ext JS, LLC.
27790  *
27791  * Originally Released Under LGPL - original licence link has changed is not relivant.
27792  *
27793  * Fork - LGPL
27794  * <script type="text/javascript">
27795  */
27796  
27797
27798 /**
27799  * @class Roo.ColorPalette
27800  * @extends Roo.Component
27801  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27802  * Here's an example of typical usage:
27803  * <pre><code>
27804 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27805 cp.render('my-div');
27806
27807 cp.on('select', function(palette, selColor){
27808     // do something with selColor
27809 });
27810 </code></pre>
27811  * @constructor
27812  * Create a new ColorPalette
27813  * @param {Object} config The config object
27814  */
27815 Roo.ColorPalette = function(config){
27816     Roo.ColorPalette.superclass.constructor.call(this, config);
27817     this.addEvents({
27818         /**
27819              * @event select
27820              * Fires when a color is selected
27821              * @param {ColorPalette} this
27822              * @param {String} color The 6-digit color hex code (without the # symbol)
27823              */
27824         select: true
27825     });
27826
27827     if(this.handler){
27828         this.on("select", this.handler, this.scope, true);
27829     }
27830 };
27831 Roo.extend(Roo.ColorPalette, Roo.Component, {
27832     /**
27833      * @cfg {String} itemCls
27834      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27835      */
27836     itemCls : "x-color-palette",
27837     /**
27838      * @cfg {String} value
27839      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27840      * the hex codes are case-sensitive.
27841      */
27842     value : null,
27843     clickEvent:'click',
27844     // private
27845     ctype: "Roo.ColorPalette",
27846
27847     /**
27848      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27849      */
27850     allowReselect : false,
27851
27852     /**
27853      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27854      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27855      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27856      * of colors with the width setting until the box is symmetrical.</p>
27857      * <p>You can override individual colors if needed:</p>
27858      * <pre><code>
27859 var cp = new Roo.ColorPalette();
27860 cp.colors[0] = "FF0000";  // change the first box to red
27861 </code></pre>
27862
27863 Or you can provide a custom array of your own for complete control:
27864 <pre><code>
27865 var cp = new Roo.ColorPalette();
27866 cp.colors = ["000000", "993300", "333300"];
27867 </code></pre>
27868      * @type Array
27869      */
27870     colors : [
27871         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27872         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27873         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27874         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27875         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27876     ],
27877
27878     // private
27879     onRender : function(container, position){
27880         var t = new Roo.MasterTemplate(
27881             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27882         );
27883         var c = this.colors;
27884         for(var i = 0, len = c.length; i < len; i++){
27885             t.add([c[i]]);
27886         }
27887         var el = document.createElement("div");
27888         el.className = this.itemCls;
27889         t.overwrite(el);
27890         container.dom.insertBefore(el, position);
27891         this.el = Roo.get(el);
27892         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27893         if(this.clickEvent != 'click'){
27894             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27895         }
27896     },
27897
27898     // private
27899     afterRender : function(){
27900         Roo.ColorPalette.superclass.afterRender.call(this);
27901         if(this.value){
27902             var s = this.value;
27903             this.value = null;
27904             this.select(s);
27905         }
27906     },
27907
27908     // private
27909     handleClick : function(e, t){
27910         e.preventDefault();
27911         if(!this.disabled){
27912             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27913             this.select(c.toUpperCase());
27914         }
27915     },
27916
27917     /**
27918      * Selects the specified color in the palette (fires the select event)
27919      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27920      */
27921     select : function(color){
27922         color = color.replace("#", "");
27923         if(color != this.value || this.allowReselect){
27924             var el = this.el;
27925             if(this.value){
27926                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27927             }
27928             el.child("a.color-"+color).addClass("x-color-palette-sel");
27929             this.value = color;
27930             this.fireEvent("select", this, color);
27931         }
27932     }
27933 });/*
27934  * Based on:
27935  * Ext JS Library 1.1.1
27936  * Copyright(c) 2006-2007, Ext JS, LLC.
27937  *
27938  * Originally Released Under LGPL - original licence link has changed is not relivant.
27939  *
27940  * Fork - LGPL
27941  * <script type="text/javascript">
27942  */
27943  
27944 /**
27945  * @class Roo.DatePicker
27946  * @extends Roo.Component
27947  * Simple date picker class.
27948  * @constructor
27949  * Create a new DatePicker
27950  * @param {Object} config The config object
27951  */
27952 Roo.DatePicker = function(config){
27953     Roo.DatePicker.superclass.constructor.call(this, config);
27954
27955     this.value = config && config.value ?
27956                  config.value.clearTime() : new Date().clearTime();
27957
27958     this.addEvents({
27959         /**
27960              * @event select
27961              * Fires when a date is selected
27962              * @param {DatePicker} this
27963              * @param {Date} date The selected date
27964              */
27965         'select': true,
27966         /**
27967              * @event monthchange
27968              * Fires when the displayed month changes 
27969              * @param {DatePicker} this
27970              * @param {Date} date The selected month
27971              */
27972         'monthchange': true
27973     });
27974
27975     if(this.handler){
27976         this.on("select", this.handler,  this.scope || this);
27977     }
27978     // build the disabledDatesRE
27979     if(!this.disabledDatesRE && this.disabledDates){
27980         var dd = this.disabledDates;
27981         var re = "(?:";
27982         for(var i = 0; i < dd.length; i++){
27983             re += dd[i];
27984             if(i != dd.length-1) {
27985                 re += "|";
27986             }
27987         }
27988         this.disabledDatesRE = new RegExp(re + ")");
27989     }
27990 };
27991
27992 Roo.extend(Roo.DatePicker, Roo.Component, {
27993     /**
27994      * @cfg {String} todayText
27995      * The text to display on the button that selects the current date (defaults to "Today")
27996      */
27997     todayText : "Today",
27998     /**
27999      * @cfg {String} okText
28000      * The text to display on the ok button
28001      */
28002     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
28003     /**
28004      * @cfg {String} cancelText
28005      * The text to display on the cancel button
28006      */
28007     cancelText : "Cancel",
28008     /**
28009      * @cfg {String} todayTip
28010      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
28011      */
28012     todayTip : "{0} (Spacebar)",
28013     /**
28014      * @cfg {Date} minDate
28015      * Minimum allowable date (JavaScript date object, defaults to null)
28016      */
28017     minDate : null,
28018     /**
28019      * @cfg {Date} maxDate
28020      * Maximum allowable date (JavaScript date object, defaults to null)
28021      */
28022     maxDate : null,
28023     /**
28024      * @cfg {String} minText
28025      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
28026      */
28027     minText : "This date is before the minimum date",
28028     /**
28029      * @cfg {String} maxText
28030      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
28031      */
28032     maxText : "This date is after the maximum date",
28033     /**
28034      * @cfg {String} format
28035      * The default date format string which can be overriden for localization support.  The format must be
28036      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
28037      */
28038     format : "m/d/y",
28039     /**
28040      * @cfg {Array} disabledDays
28041      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
28042      */
28043     disabledDays : null,
28044     /**
28045      * @cfg {String} disabledDaysText
28046      * The tooltip to display when the date falls on a disabled day (defaults to "")
28047      */
28048     disabledDaysText : "",
28049     /**
28050      * @cfg {RegExp} disabledDatesRE
28051      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
28052      */
28053     disabledDatesRE : null,
28054     /**
28055      * @cfg {String} disabledDatesText
28056      * The tooltip text to display when the date falls on a disabled date (defaults to "")
28057      */
28058     disabledDatesText : "",
28059     /**
28060      * @cfg {Boolean} constrainToViewport
28061      * True to constrain the date picker to the viewport (defaults to true)
28062      */
28063     constrainToViewport : true,
28064     /**
28065      * @cfg {Array} monthNames
28066      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
28067      */
28068     monthNames : Date.monthNames,
28069     /**
28070      * @cfg {Array} dayNames
28071      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
28072      */
28073     dayNames : Date.dayNames,
28074     /**
28075      * @cfg {String} nextText
28076      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
28077      */
28078     nextText: 'Next Month (Control+Right)',
28079     /**
28080      * @cfg {String} prevText
28081      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
28082      */
28083     prevText: 'Previous Month (Control+Left)',
28084     /**
28085      * @cfg {String} monthYearText
28086      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
28087      */
28088     monthYearText: 'Choose a month (Control+Up/Down to move years)',
28089     /**
28090      * @cfg {Number} startDay
28091      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
28092      */
28093     startDay : 0,
28094     /**
28095      * @cfg {Bool} showClear
28096      * Show a clear button (usefull for date form elements that can be blank.)
28097      */
28098     
28099     showClear: false,
28100     
28101     /**
28102      * Sets the value of the date field
28103      * @param {Date} value The date to set
28104      */
28105     setValue : function(value){
28106         var old = this.value;
28107         
28108         if (typeof(value) == 'string') {
28109          
28110             value = Date.parseDate(value, this.format);
28111         }
28112         if (!value) {
28113             value = new Date();
28114         }
28115         
28116         this.value = value.clearTime(true);
28117         if(this.el){
28118             this.update(this.value);
28119         }
28120     },
28121
28122     /**
28123      * Gets the current selected value of the date field
28124      * @return {Date} The selected date
28125      */
28126     getValue : function(){
28127         return this.value;
28128     },
28129
28130     // private
28131     focus : function(){
28132         if(this.el){
28133             this.update(this.activeDate);
28134         }
28135     },
28136
28137     // privateval
28138     onRender : function(container, position){
28139         
28140         var m = [
28141              '<table cellspacing="0">',
28142                 '<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>',
28143                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
28144         var dn = this.dayNames;
28145         for(var i = 0; i < 7; i++){
28146             var d = this.startDay+i;
28147             if(d > 6){
28148                 d = d-7;
28149             }
28150             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28151         }
28152         m[m.length] = "</tr></thead><tbody><tr>";
28153         for(var i = 0; i < 42; i++) {
28154             if(i % 7 == 0 && i != 0){
28155                 m[m.length] = "</tr><tr>";
28156             }
28157             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28158         }
28159         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28160             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28161
28162         var el = document.createElement("div");
28163         el.className = "x-date-picker";
28164         el.innerHTML = m.join("");
28165
28166         container.dom.insertBefore(el, position);
28167
28168         this.el = Roo.get(el);
28169         this.eventEl = Roo.get(el.firstChild);
28170
28171         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28172             handler: this.showPrevMonth,
28173             scope: this,
28174             preventDefault:true,
28175             stopDefault:true
28176         });
28177
28178         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28179             handler: this.showNextMonth,
28180             scope: this,
28181             preventDefault:true,
28182             stopDefault:true
28183         });
28184
28185         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28186
28187         this.monthPicker = this.el.down('div.x-date-mp');
28188         this.monthPicker.enableDisplayMode('block');
28189         
28190         var kn = new Roo.KeyNav(this.eventEl, {
28191             "left" : function(e){
28192                 e.ctrlKey ?
28193                     this.showPrevMonth() :
28194                     this.update(this.activeDate.add("d", -1));
28195             },
28196
28197             "right" : function(e){
28198                 e.ctrlKey ?
28199                     this.showNextMonth() :
28200                     this.update(this.activeDate.add("d", 1));
28201             },
28202
28203             "up" : function(e){
28204                 e.ctrlKey ?
28205                     this.showNextYear() :
28206                     this.update(this.activeDate.add("d", -7));
28207             },
28208
28209             "down" : function(e){
28210                 e.ctrlKey ?
28211                     this.showPrevYear() :
28212                     this.update(this.activeDate.add("d", 7));
28213             },
28214
28215             "pageUp" : function(e){
28216                 this.showNextMonth();
28217             },
28218
28219             "pageDown" : function(e){
28220                 this.showPrevMonth();
28221             },
28222
28223             "enter" : function(e){
28224                 e.stopPropagation();
28225                 return true;
28226             },
28227
28228             scope : this
28229         });
28230
28231         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28232
28233         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28234
28235         this.el.unselectable();
28236         
28237         this.cells = this.el.select("table.x-date-inner tbody td");
28238         this.textNodes = this.el.query("table.x-date-inner tbody span");
28239
28240         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28241             text: "&#160;",
28242             tooltip: this.monthYearText
28243         });
28244
28245         this.mbtn.on('click', this.showMonthPicker, this);
28246         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28247
28248
28249         var today = (new Date()).dateFormat(this.format);
28250         
28251         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28252         if (this.showClear) {
28253             baseTb.add( new Roo.Toolbar.Fill());
28254         }
28255         baseTb.add({
28256             text: String.format(this.todayText, today),
28257             tooltip: String.format(this.todayTip, today),
28258             handler: this.selectToday,
28259             scope: this
28260         });
28261         
28262         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28263             
28264         //});
28265         if (this.showClear) {
28266             
28267             baseTb.add( new Roo.Toolbar.Fill());
28268             baseTb.add({
28269                 text: '&#160;',
28270                 cls: 'x-btn-icon x-btn-clear',
28271                 handler: function() {
28272                     //this.value = '';
28273                     this.fireEvent("select", this, '');
28274                 },
28275                 scope: this
28276             });
28277         }
28278         
28279         
28280         if(Roo.isIE){
28281             this.el.repaint();
28282         }
28283         this.update(this.value);
28284     },
28285
28286     createMonthPicker : function(){
28287         if(!this.monthPicker.dom.firstChild){
28288             var buf = ['<table border="0" cellspacing="0">'];
28289             for(var i = 0; i < 6; i++){
28290                 buf.push(
28291                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28292                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28293                     i == 0 ?
28294                     '<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>' :
28295                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28296                 );
28297             }
28298             buf.push(
28299                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28300                     this.okText,
28301                     '</button><button type="button" class="x-date-mp-cancel">',
28302                     this.cancelText,
28303                     '</button></td></tr>',
28304                 '</table>'
28305             );
28306             this.monthPicker.update(buf.join(''));
28307             this.monthPicker.on('click', this.onMonthClick, this);
28308             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28309
28310             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28311             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28312
28313             this.mpMonths.each(function(m, a, i){
28314                 i += 1;
28315                 if((i%2) == 0){
28316                     m.dom.xmonth = 5 + Math.round(i * .5);
28317                 }else{
28318                     m.dom.xmonth = Math.round((i-1) * .5);
28319                 }
28320             });
28321         }
28322     },
28323
28324     showMonthPicker : function(){
28325         this.createMonthPicker();
28326         var size = this.el.getSize();
28327         this.monthPicker.setSize(size);
28328         this.monthPicker.child('table').setSize(size);
28329
28330         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28331         this.updateMPMonth(this.mpSelMonth);
28332         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28333         this.updateMPYear(this.mpSelYear);
28334
28335         this.monthPicker.slideIn('t', {duration:.2});
28336     },
28337
28338     updateMPYear : function(y){
28339         this.mpyear = y;
28340         var ys = this.mpYears.elements;
28341         for(var i = 1; i <= 10; i++){
28342             var td = ys[i-1], y2;
28343             if((i%2) == 0){
28344                 y2 = y + Math.round(i * .5);
28345                 td.firstChild.innerHTML = y2;
28346                 td.xyear = y2;
28347             }else{
28348                 y2 = y - (5-Math.round(i * .5));
28349                 td.firstChild.innerHTML = y2;
28350                 td.xyear = y2;
28351             }
28352             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28353         }
28354     },
28355
28356     updateMPMonth : function(sm){
28357         this.mpMonths.each(function(m, a, i){
28358             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28359         });
28360     },
28361
28362     selectMPMonth: function(m){
28363         
28364     },
28365
28366     onMonthClick : function(e, t){
28367         e.stopEvent();
28368         var el = new Roo.Element(t), pn;
28369         if(el.is('button.x-date-mp-cancel')){
28370             this.hideMonthPicker();
28371         }
28372         else if(el.is('button.x-date-mp-ok')){
28373             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28374             this.hideMonthPicker();
28375         }
28376         else if(pn = el.up('td.x-date-mp-month', 2)){
28377             this.mpMonths.removeClass('x-date-mp-sel');
28378             pn.addClass('x-date-mp-sel');
28379             this.mpSelMonth = pn.dom.xmonth;
28380         }
28381         else if(pn = el.up('td.x-date-mp-year', 2)){
28382             this.mpYears.removeClass('x-date-mp-sel');
28383             pn.addClass('x-date-mp-sel');
28384             this.mpSelYear = pn.dom.xyear;
28385         }
28386         else if(el.is('a.x-date-mp-prev')){
28387             this.updateMPYear(this.mpyear-10);
28388         }
28389         else if(el.is('a.x-date-mp-next')){
28390             this.updateMPYear(this.mpyear+10);
28391         }
28392     },
28393
28394     onMonthDblClick : function(e, t){
28395         e.stopEvent();
28396         var el = new Roo.Element(t), pn;
28397         if(pn = el.up('td.x-date-mp-month', 2)){
28398             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28399             this.hideMonthPicker();
28400         }
28401         else if(pn = el.up('td.x-date-mp-year', 2)){
28402             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28403             this.hideMonthPicker();
28404         }
28405     },
28406
28407     hideMonthPicker : function(disableAnim){
28408         if(this.monthPicker){
28409             if(disableAnim === true){
28410                 this.monthPicker.hide();
28411             }else{
28412                 this.monthPicker.slideOut('t', {duration:.2});
28413             }
28414         }
28415     },
28416
28417     // private
28418     showPrevMonth : function(e){
28419         this.update(this.activeDate.add("mo", -1));
28420     },
28421
28422     // private
28423     showNextMonth : function(e){
28424         this.update(this.activeDate.add("mo", 1));
28425     },
28426
28427     // private
28428     showPrevYear : function(){
28429         this.update(this.activeDate.add("y", -1));
28430     },
28431
28432     // private
28433     showNextYear : function(){
28434         this.update(this.activeDate.add("y", 1));
28435     },
28436
28437     // private
28438     handleMouseWheel : function(e){
28439         var delta = e.getWheelDelta();
28440         if(delta > 0){
28441             this.showPrevMonth();
28442             e.stopEvent();
28443         } else if(delta < 0){
28444             this.showNextMonth();
28445             e.stopEvent();
28446         }
28447     },
28448
28449     // private
28450     handleDateClick : function(e, t){
28451         e.stopEvent();
28452         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28453             this.setValue(new Date(t.dateValue));
28454             this.fireEvent("select", this, this.value);
28455         }
28456     },
28457
28458     // private
28459     selectToday : function(){
28460         this.setValue(new Date().clearTime());
28461         this.fireEvent("select", this, this.value);
28462     },
28463
28464     // private
28465     update : function(date)
28466     {
28467         var vd = this.activeDate;
28468         this.activeDate = date;
28469         if(vd && this.el){
28470             var t = date.getTime();
28471             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28472                 this.cells.removeClass("x-date-selected");
28473                 this.cells.each(function(c){
28474                    if(c.dom.firstChild.dateValue == t){
28475                        c.addClass("x-date-selected");
28476                        setTimeout(function(){
28477                             try{c.dom.firstChild.focus();}catch(e){}
28478                        }, 50);
28479                        return false;
28480                    }
28481                 });
28482                 return;
28483             }
28484         }
28485         
28486         var days = date.getDaysInMonth();
28487         var firstOfMonth = date.getFirstDateOfMonth();
28488         var startingPos = firstOfMonth.getDay()-this.startDay;
28489
28490         if(startingPos <= this.startDay){
28491             startingPos += 7;
28492         }
28493
28494         var pm = date.add("mo", -1);
28495         var prevStart = pm.getDaysInMonth()-startingPos;
28496
28497         var cells = this.cells.elements;
28498         var textEls = this.textNodes;
28499         days += startingPos;
28500
28501         // convert everything to numbers so it's fast
28502         var day = 86400000;
28503         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28504         var today = new Date().clearTime().getTime();
28505         var sel = date.clearTime().getTime();
28506         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28507         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28508         var ddMatch = this.disabledDatesRE;
28509         var ddText = this.disabledDatesText;
28510         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28511         var ddaysText = this.disabledDaysText;
28512         var format = this.format;
28513
28514         var setCellClass = function(cal, cell){
28515             cell.title = "";
28516             var t = d.getTime();
28517             cell.firstChild.dateValue = t;
28518             if(t == today){
28519                 cell.className += " x-date-today";
28520                 cell.title = cal.todayText;
28521             }
28522             if(t == sel){
28523                 cell.className += " x-date-selected";
28524                 setTimeout(function(){
28525                     try{cell.firstChild.focus();}catch(e){}
28526                 }, 50);
28527             }
28528             // disabling
28529             if(t < min) {
28530                 cell.className = " x-date-disabled";
28531                 cell.title = cal.minText;
28532                 return;
28533             }
28534             if(t > max) {
28535                 cell.className = " x-date-disabled";
28536                 cell.title = cal.maxText;
28537                 return;
28538             }
28539             if(ddays){
28540                 if(ddays.indexOf(d.getDay()) != -1){
28541                     cell.title = ddaysText;
28542                     cell.className = " x-date-disabled";
28543                 }
28544             }
28545             if(ddMatch && format){
28546                 var fvalue = d.dateFormat(format);
28547                 if(ddMatch.test(fvalue)){
28548                     cell.title = ddText.replace("%0", fvalue);
28549                     cell.className = " x-date-disabled";
28550                 }
28551             }
28552         };
28553
28554         var i = 0;
28555         for(; i < startingPos; i++) {
28556             textEls[i].innerHTML = (++prevStart);
28557             d.setDate(d.getDate()+1);
28558             cells[i].className = "x-date-prevday";
28559             setCellClass(this, cells[i]);
28560         }
28561         for(; i < days; i++){
28562             intDay = i - startingPos + 1;
28563             textEls[i].innerHTML = (intDay);
28564             d.setDate(d.getDate()+1);
28565             cells[i].className = "x-date-active";
28566             setCellClass(this, cells[i]);
28567         }
28568         var extraDays = 0;
28569         for(; i < 42; i++) {
28570              textEls[i].innerHTML = (++extraDays);
28571              d.setDate(d.getDate()+1);
28572              cells[i].className = "x-date-nextday";
28573              setCellClass(this, cells[i]);
28574         }
28575
28576         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28577         this.fireEvent('monthchange', this, date);
28578         
28579         if(!this.internalRender){
28580             var main = this.el.dom.firstChild;
28581             var w = main.offsetWidth;
28582             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28583             Roo.fly(main).setWidth(w);
28584             this.internalRender = true;
28585             // opera does not respect the auto grow header center column
28586             // then, after it gets a width opera refuses to recalculate
28587             // without a second pass
28588             if(Roo.isOpera && !this.secondPass){
28589                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28590                 this.secondPass = true;
28591                 this.update.defer(10, this, [date]);
28592             }
28593         }
28594         
28595         
28596     }
28597 });        /*
28598  * Based on:
28599  * Ext JS Library 1.1.1
28600  * Copyright(c) 2006-2007, Ext JS, LLC.
28601  *
28602  * Originally Released Under LGPL - original licence link has changed is not relivant.
28603  *
28604  * Fork - LGPL
28605  * <script type="text/javascript">
28606  */
28607 /**
28608  * @class Roo.TabPanel
28609  * @extends Roo.util.Observable
28610  * A lightweight tab container.
28611  * <br><br>
28612  * Usage:
28613  * <pre><code>
28614 // basic tabs 1, built from existing content
28615 var tabs = new Roo.TabPanel("tabs1");
28616 tabs.addTab("script", "View Script");
28617 tabs.addTab("markup", "View Markup");
28618 tabs.activate("script");
28619
28620 // more advanced tabs, built from javascript
28621 var jtabs = new Roo.TabPanel("jtabs");
28622 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28623
28624 // set up the UpdateManager
28625 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28626 var updater = tab2.getUpdateManager();
28627 updater.setDefaultUrl("ajax1.htm");
28628 tab2.on('activate', updater.refresh, updater, true);
28629
28630 // Use setUrl for Ajax loading
28631 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28632 tab3.setUrl("ajax2.htm", null, true);
28633
28634 // Disabled tab
28635 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28636 tab4.disable();
28637
28638 jtabs.activate("jtabs-1");
28639  * </code></pre>
28640  * @constructor
28641  * Create a new TabPanel.
28642  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28643  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28644  */
28645 Roo.TabPanel = function(container, config){
28646     /**
28647     * The container element for this TabPanel.
28648     * @type Roo.Element
28649     */
28650     this.el = Roo.get(container, true);
28651     if(config){
28652         if(typeof config == "boolean"){
28653             this.tabPosition = config ? "bottom" : "top";
28654         }else{
28655             Roo.apply(this, config);
28656         }
28657     }
28658     if(this.tabPosition == "bottom"){
28659         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28660         this.el.addClass("x-tabs-bottom");
28661     }
28662     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28663     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28664     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28665     if(Roo.isIE){
28666         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28667     }
28668     if(this.tabPosition != "bottom"){
28669         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28670          * @type Roo.Element
28671          */
28672         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28673         this.el.addClass("x-tabs-top");
28674     }
28675     this.items = [];
28676
28677     this.bodyEl.setStyle("position", "relative");
28678
28679     this.active = null;
28680     this.activateDelegate = this.activate.createDelegate(this);
28681
28682     this.addEvents({
28683         /**
28684          * @event tabchange
28685          * Fires when the active tab changes
28686          * @param {Roo.TabPanel} this
28687          * @param {Roo.TabPanelItem} activePanel The new active tab
28688          */
28689         "tabchange": true,
28690         /**
28691          * @event beforetabchange
28692          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28693          * @param {Roo.TabPanel} this
28694          * @param {Object} e Set cancel to true on this object to cancel the tab change
28695          * @param {Roo.TabPanelItem} tab The tab being changed to
28696          */
28697         "beforetabchange" : true
28698     });
28699
28700     Roo.EventManager.onWindowResize(this.onResize, this);
28701     this.cpad = this.el.getPadding("lr");
28702     this.hiddenCount = 0;
28703
28704
28705     // toolbar on the tabbar support...
28706     if (this.toolbar) {
28707         var tcfg = this.toolbar;
28708         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28709         this.toolbar = new Roo.Toolbar(tcfg);
28710         if (Roo.isSafari) {
28711             var tbl = tcfg.container.child('table', true);
28712             tbl.setAttribute('width', '100%');
28713         }
28714         
28715     }
28716    
28717
28718
28719     Roo.TabPanel.superclass.constructor.call(this);
28720 };
28721
28722 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28723     /*
28724      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28725      */
28726     tabPosition : "top",
28727     /*
28728      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28729      */
28730     currentTabWidth : 0,
28731     /*
28732      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28733      */
28734     minTabWidth : 40,
28735     /*
28736      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28737      */
28738     maxTabWidth : 250,
28739     /*
28740      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28741      */
28742     preferredTabWidth : 175,
28743     /*
28744      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28745      */
28746     resizeTabs : false,
28747     /*
28748      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28749      */
28750     monitorResize : true,
28751     /*
28752      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28753      */
28754     toolbar : false,
28755
28756     /**
28757      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28758      * @param {String} id The id of the div to use <b>or create</b>
28759      * @param {String} text The text for the tab
28760      * @param {String} content (optional) Content to put in the TabPanelItem body
28761      * @param {Boolean} closable (optional) True to create a close icon on the tab
28762      * @return {Roo.TabPanelItem} The created TabPanelItem
28763      */
28764     addTab : function(id, text, content, closable){
28765         var item = new Roo.TabPanelItem(this, id, text, closable);
28766         this.addTabItem(item);
28767         if(content){
28768             item.setContent(content);
28769         }
28770         return item;
28771     },
28772
28773     /**
28774      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28775      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28776      * @return {Roo.TabPanelItem}
28777      */
28778     getTab : function(id){
28779         return this.items[id];
28780     },
28781
28782     /**
28783      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28784      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28785      */
28786     hideTab : function(id){
28787         var t = this.items[id];
28788         if(!t.isHidden()){
28789            t.setHidden(true);
28790            this.hiddenCount++;
28791            this.autoSizeTabs();
28792         }
28793     },
28794
28795     /**
28796      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28797      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28798      */
28799     unhideTab : function(id){
28800         var t = this.items[id];
28801         if(t.isHidden()){
28802            t.setHidden(false);
28803            this.hiddenCount--;
28804            this.autoSizeTabs();
28805         }
28806     },
28807
28808     /**
28809      * Adds an existing {@link Roo.TabPanelItem}.
28810      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28811      */
28812     addTabItem : function(item){
28813         this.items[item.id] = item;
28814         this.items.push(item);
28815         if(this.resizeTabs){
28816            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28817            this.autoSizeTabs();
28818         }else{
28819             item.autoSize();
28820         }
28821     },
28822
28823     /**
28824      * Removes a {@link Roo.TabPanelItem}.
28825      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28826      */
28827     removeTab : function(id){
28828         var items = this.items;
28829         var tab = items[id];
28830         if(!tab) { return; }
28831         var index = items.indexOf(tab);
28832         if(this.active == tab && items.length > 1){
28833             var newTab = this.getNextAvailable(index);
28834             if(newTab) {
28835                 newTab.activate();
28836             }
28837         }
28838         this.stripEl.dom.removeChild(tab.pnode.dom);
28839         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28840             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28841         }
28842         items.splice(index, 1);
28843         delete this.items[tab.id];
28844         tab.fireEvent("close", tab);
28845         tab.purgeListeners();
28846         this.autoSizeTabs();
28847     },
28848
28849     getNextAvailable : function(start){
28850         var items = this.items;
28851         var index = start;
28852         // look for a next tab that will slide over to
28853         // replace the one being removed
28854         while(index < items.length){
28855             var item = items[++index];
28856             if(item && !item.isHidden()){
28857                 return item;
28858             }
28859         }
28860         // if one isn't found select the previous tab (on the left)
28861         index = start;
28862         while(index >= 0){
28863             var item = items[--index];
28864             if(item && !item.isHidden()){
28865                 return item;
28866             }
28867         }
28868         return null;
28869     },
28870
28871     /**
28872      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28873      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28874      */
28875     disableTab : function(id){
28876         var tab = this.items[id];
28877         if(tab && this.active != tab){
28878             tab.disable();
28879         }
28880     },
28881
28882     /**
28883      * Enables a {@link Roo.TabPanelItem} that is disabled.
28884      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28885      */
28886     enableTab : function(id){
28887         var tab = this.items[id];
28888         tab.enable();
28889     },
28890
28891     /**
28892      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28893      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28894      * @return {Roo.TabPanelItem} The TabPanelItem.
28895      */
28896     activate : function(id){
28897         var tab = this.items[id];
28898         if(!tab){
28899             return null;
28900         }
28901         if(tab == this.active || tab.disabled){
28902             return tab;
28903         }
28904         var e = {};
28905         this.fireEvent("beforetabchange", this, e, tab);
28906         if(e.cancel !== true && !tab.disabled){
28907             if(this.active){
28908                 this.active.hide();
28909             }
28910             this.active = this.items[id];
28911             this.active.show();
28912             this.fireEvent("tabchange", this, this.active);
28913         }
28914         return tab;
28915     },
28916
28917     /**
28918      * Gets the active {@link Roo.TabPanelItem}.
28919      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28920      */
28921     getActiveTab : function(){
28922         return this.active;
28923     },
28924
28925     /**
28926      * Updates the tab body element to fit the height of the container element
28927      * for overflow scrolling
28928      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28929      */
28930     syncHeight : function(targetHeight){
28931         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28932         var bm = this.bodyEl.getMargins();
28933         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28934         this.bodyEl.setHeight(newHeight);
28935         return newHeight;
28936     },
28937
28938     onResize : function(){
28939         if(this.monitorResize){
28940             this.autoSizeTabs();
28941         }
28942     },
28943
28944     /**
28945      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28946      */
28947     beginUpdate : function(){
28948         this.updating = true;
28949     },
28950
28951     /**
28952      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28953      */
28954     endUpdate : function(){
28955         this.updating = false;
28956         this.autoSizeTabs();
28957     },
28958
28959     /**
28960      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28961      */
28962     autoSizeTabs : function(){
28963         var count = this.items.length;
28964         var vcount = count - this.hiddenCount;
28965         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28966             return;
28967         }
28968         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28969         var availWidth = Math.floor(w / vcount);
28970         var b = this.stripBody;
28971         if(b.getWidth() > w){
28972             var tabs = this.items;
28973             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28974             if(availWidth < this.minTabWidth){
28975                 /*if(!this.sleft){    // incomplete scrolling code
28976                     this.createScrollButtons();
28977                 }
28978                 this.showScroll();
28979                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28980             }
28981         }else{
28982             if(this.currentTabWidth < this.preferredTabWidth){
28983                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28984             }
28985         }
28986     },
28987
28988     /**
28989      * Returns the number of tabs in this TabPanel.
28990      * @return {Number}
28991      */
28992      getCount : function(){
28993          return this.items.length;
28994      },
28995
28996     /**
28997      * Resizes all the tabs to the passed width
28998      * @param {Number} The new width
28999      */
29000     setTabWidth : function(width){
29001         this.currentTabWidth = width;
29002         for(var i = 0, len = this.items.length; i < len; i++) {
29003                 if(!this.items[i].isHidden()) {
29004                 this.items[i].setWidth(width);
29005             }
29006         }
29007     },
29008
29009     /**
29010      * Destroys this TabPanel
29011      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
29012      */
29013     destroy : function(removeEl){
29014         Roo.EventManager.removeResizeListener(this.onResize, this);
29015         for(var i = 0, len = this.items.length; i < len; i++){
29016             this.items[i].purgeListeners();
29017         }
29018         if(removeEl === true){
29019             this.el.update("");
29020             this.el.remove();
29021         }
29022     }
29023 });
29024
29025 /**
29026  * @class Roo.TabPanelItem
29027  * @extends Roo.util.Observable
29028  * Represents an individual item (tab plus body) in a TabPanel.
29029  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
29030  * @param {String} id The id of this TabPanelItem
29031  * @param {String} text The text for the tab of this TabPanelItem
29032  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
29033  */
29034 Roo.TabPanelItem = function(tabPanel, id, text, closable){
29035     /**
29036      * The {@link Roo.TabPanel} this TabPanelItem belongs to
29037      * @type Roo.TabPanel
29038      */
29039     this.tabPanel = tabPanel;
29040     /**
29041      * The id for this TabPanelItem
29042      * @type String
29043      */
29044     this.id = id;
29045     /** @private */
29046     this.disabled = false;
29047     /** @private */
29048     this.text = text;
29049     /** @private */
29050     this.loaded = false;
29051     this.closable = closable;
29052
29053     /**
29054      * The body element for this TabPanelItem.
29055      * @type Roo.Element
29056      */
29057     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
29058     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
29059     this.bodyEl.setStyle("display", "block");
29060     this.bodyEl.setStyle("zoom", "1");
29061     this.hideAction();
29062
29063     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
29064     /** @private */
29065     this.el = Roo.get(els.el, true);
29066     this.inner = Roo.get(els.inner, true);
29067     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
29068     this.pnode = Roo.get(els.el.parentNode, true);
29069     this.el.on("mousedown", this.onTabMouseDown, this);
29070     this.el.on("click", this.onTabClick, this);
29071     /** @private */
29072     if(closable){
29073         var c = Roo.get(els.close, true);
29074         c.dom.title = this.closeText;
29075         c.addClassOnOver("close-over");
29076         c.on("click", this.closeClick, this);
29077      }
29078
29079     this.addEvents({
29080          /**
29081          * @event activate
29082          * Fires when this tab becomes the active tab.
29083          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29084          * @param {Roo.TabPanelItem} this
29085          */
29086         "activate": true,
29087         /**
29088          * @event beforeclose
29089          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
29090          * @param {Roo.TabPanelItem} this
29091          * @param {Object} e Set cancel to true on this object to cancel the close.
29092          */
29093         "beforeclose": true,
29094         /**
29095          * @event close
29096          * Fires when this tab is closed.
29097          * @param {Roo.TabPanelItem} this
29098          */
29099          "close": true,
29100         /**
29101          * @event deactivate
29102          * Fires when this tab is no longer the active tab.
29103          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29104          * @param {Roo.TabPanelItem} this
29105          */
29106          "deactivate" : true
29107     });
29108     this.hidden = false;
29109
29110     Roo.TabPanelItem.superclass.constructor.call(this);
29111 };
29112
29113 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
29114     purgeListeners : function(){
29115        Roo.util.Observable.prototype.purgeListeners.call(this);
29116        this.el.removeAllListeners();
29117     },
29118     /**
29119      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
29120      */
29121     show : function(){
29122         this.pnode.addClass("on");
29123         this.showAction();
29124         if(Roo.isOpera){
29125             this.tabPanel.stripWrap.repaint();
29126         }
29127         this.fireEvent("activate", this.tabPanel, this);
29128     },
29129
29130     /**
29131      * Returns true if this tab is the active tab.
29132      * @return {Boolean}
29133      */
29134     isActive : function(){
29135         return this.tabPanel.getActiveTab() == this;
29136     },
29137
29138     /**
29139      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
29140      */
29141     hide : function(){
29142         this.pnode.removeClass("on");
29143         this.hideAction();
29144         this.fireEvent("deactivate", this.tabPanel, this);
29145     },
29146
29147     hideAction : function(){
29148         this.bodyEl.hide();
29149         this.bodyEl.setStyle("position", "absolute");
29150         this.bodyEl.setLeft("-20000px");
29151         this.bodyEl.setTop("-20000px");
29152     },
29153
29154     showAction : function(){
29155         this.bodyEl.setStyle("position", "relative");
29156         this.bodyEl.setTop("");
29157         this.bodyEl.setLeft("");
29158         this.bodyEl.show();
29159     },
29160
29161     /**
29162      * Set the tooltip for the tab.
29163      * @param {String} tooltip The tab's tooltip
29164      */
29165     setTooltip : function(text){
29166         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29167             this.textEl.dom.qtip = text;
29168             this.textEl.dom.removeAttribute('title');
29169         }else{
29170             this.textEl.dom.title = text;
29171         }
29172     },
29173
29174     onTabClick : function(e){
29175         e.preventDefault();
29176         this.tabPanel.activate(this.id);
29177     },
29178
29179     onTabMouseDown : function(e){
29180         e.preventDefault();
29181         this.tabPanel.activate(this.id);
29182     },
29183
29184     getWidth : function(){
29185         return this.inner.getWidth();
29186     },
29187
29188     setWidth : function(width){
29189         var iwidth = width - this.pnode.getPadding("lr");
29190         this.inner.setWidth(iwidth);
29191         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29192         this.pnode.setWidth(width);
29193     },
29194
29195     /**
29196      * Show or hide the tab
29197      * @param {Boolean} hidden True to hide or false to show.
29198      */
29199     setHidden : function(hidden){
29200         this.hidden = hidden;
29201         this.pnode.setStyle("display", hidden ? "none" : "");
29202     },
29203
29204     /**
29205      * Returns true if this tab is "hidden"
29206      * @return {Boolean}
29207      */
29208     isHidden : function(){
29209         return this.hidden;
29210     },
29211
29212     /**
29213      * Returns the text for this tab
29214      * @return {String}
29215      */
29216     getText : function(){
29217         return this.text;
29218     },
29219
29220     autoSize : function(){
29221         //this.el.beginMeasure();
29222         this.textEl.setWidth(1);
29223         /*
29224          *  #2804 [new] Tabs in Roojs
29225          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29226          */
29227         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29228         //this.el.endMeasure();
29229     },
29230
29231     /**
29232      * Sets the text for the tab (Note: this also sets the tooltip text)
29233      * @param {String} text The tab's text and tooltip
29234      */
29235     setText : function(text){
29236         this.text = text;
29237         this.textEl.update(text);
29238         this.setTooltip(text);
29239         if(!this.tabPanel.resizeTabs){
29240             this.autoSize();
29241         }
29242     },
29243     /**
29244      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29245      */
29246     activate : function(){
29247         this.tabPanel.activate(this.id);
29248     },
29249
29250     /**
29251      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29252      */
29253     disable : function(){
29254         if(this.tabPanel.active != this){
29255             this.disabled = true;
29256             this.pnode.addClass("disabled");
29257         }
29258     },
29259
29260     /**
29261      * Enables this TabPanelItem if it was previously disabled.
29262      */
29263     enable : function(){
29264         this.disabled = false;
29265         this.pnode.removeClass("disabled");
29266     },
29267
29268     /**
29269      * Sets the content for this TabPanelItem.
29270      * @param {String} content The content
29271      * @param {Boolean} loadScripts true to look for and load scripts
29272      */
29273     setContent : function(content, loadScripts){
29274         this.bodyEl.update(content, loadScripts);
29275     },
29276
29277     /**
29278      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29279      * @return {Roo.UpdateManager} The UpdateManager
29280      */
29281     getUpdateManager : function(){
29282         return this.bodyEl.getUpdateManager();
29283     },
29284
29285     /**
29286      * Set a URL to be used to load the content for this TabPanelItem.
29287      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29288      * @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)
29289      * @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)
29290      * @return {Roo.UpdateManager} The UpdateManager
29291      */
29292     setUrl : function(url, params, loadOnce){
29293         if(this.refreshDelegate){
29294             this.un('activate', this.refreshDelegate);
29295         }
29296         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29297         this.on("activate", this.refreshDelegate);
29298         return this.bodyEl.getUpdateManager();
29299     },
29300
29301     /** @private */
29302     _handleRefresh : function(url, params, loadOnce){
29303         if(!loadOnce || !this.loaded){
29304             var updater = this.bodyEl.getUpdateManager();
29305             updater.update(url, params, this._setLoaded.createDelegate(this));
29306         }
29307     },
29308
29309     /**
29310      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29311      *   Will fail silently if the setUrl method has not been called.
29312      *   This does not activate the panel, just updates its content.
29313      */
29314     refresh : function(){
29315         if(this.refreshDelegate){
29316            this.loaded = false;
29317            this.refreshDelegate();
29318         }
29319     },
29320
29321     /** @private */
29322     _setLoaded : function(){
29323         this.loaded = true;
29324     },
29325
29326     /** @private */
29327     closeClick : function(e){
29328         var o = {};
29329         e.stopEvent();
29330         this.fireEvent("beforeclose", this, o);
29331         if(o.cancel !== true){
29332             this.tabPanel.removeTab(this.id);
29333         }
29334     },
29335     /**
29336      * The text displayed in the tooltip for the close icon.
29337      * @type String
29338      */
29339     closeText : "Close this tab"
29340 });
29341
29342 /** @private */
29343 Roo.TabPanel.prototype.createStrip = function(container){
29344     var strip = document.createElement("div");
29345     strip.className = "x-tabs-wrap";
29346     container.appendChild(strip);
29347     return strip;
29348 };
29349 /** @private */
29350 Roo.TabPanel.prototype.createStripList = function(strip){
29351     // div wrapper for retard IE
29352     // returns the "tr" element.
29353     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29354         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29355         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29356     return strip.firstChild.firstChild.firstChild.firstChild;
29357 };
29358 /** @private */
29359 Roo.TabPanel.prototype.createBody = function(container){
29360     var body = document.createElement("div");
29361     Roo.id(body, "tab-body");
29362     Roo.fly(body).addClass("x-tabs-body");
29363     container.appendChild(body);
29364     return body;
29365 };
29366 /** @private */
29367 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29368     var body = Roo.getDom(id);
29369     if(!body){
29370         body = document.createElement("div");
29371         body.id = id;
29372     }
29373     Roo.fly(body).addClass("x-tabs-item-body");
29374     bodyEl.insertBefore(body, bodyEl.firstChild);
29375     return body;
29376 };
29377 /** @private */
29378 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29379     var td = document.createElement("td");
29380     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29381     //stripEl.appendChild(td);
29382     if(closable){
29383         td.className = "x-tabs-closable";
29384         if(!this.closeTpl){
29385             this.closeTpl = new Roo.Template(
29386                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29387                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29388                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29389             );
29390         }
29391         var el = this.closeTpl.overwrite(td, {"text": text});
29392         var close = el.getElementsByTagName("div")[0];
29393         var inner = el.getElementsByTagName("em")[0];
29394         return {"el": el, "close": close, "inner": inner};
29395     } else {
29396         if(!this.tabTpl){
29397             this.tabTpl = new Roo.Template(
29398                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29399                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29400             );
29401         }
29402         var el = this.tabTpl.overwrite(td, {"text": text});
29403         var inner = el.getElementsByTagName("em")[0];
29404         return {"el": el, "inner": inner};
29405     }
29406 };/*
29407  * Based on:
29408  * Ext JS Library 1.1.1
29409  * Copyright(c) 2006-2007, Ext JS, LLC.
29410  *
29411  * Originally Released Under LGPL - original licence link has changed is not relivant.
29412  *
29413  * Fork - LGPL
29414  * <script type="text/javascript">
29415  */
29416
29417 /**
29418  * @class Roo.Button
29419  * @extends Roo.util.Observable
29420  * Simple Button class
29421  * @cfg {String} text The button text
29422  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29423  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29424  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29425  * @cfg {Object} scope The scope of the handler
29426  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29427  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29428  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29429  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29430  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29431  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29432    applies if enableToggle = true)
29433  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29434  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29435   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29436  * @constructor
29437  * Create a new button
29438  * @param {Object} config The config object
29439  */
29440 Roo.Button = function(renderTo, config)
29441 {
29442     if (!config) {
29443         config = renderTo;
29444         renderTo = config.renderTo || false;
29445     }
29446     
29447     Roo.apply(this, config);
29448     this.addEvents({
29449         /**
29450              * @event click
29451              * Fires when this button is clicked
29452              * @param {Button} this
29453              * @param {EventObject} e The click event
29454              */
29455             "click" : true,
29456         /**
29457              * @event toggle
29458              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29459              * @param {Button} this
29460              * @param {Boolean} pressed
29461              */
29462             "toggle" : true,
29463         /**
29464              * @event mouseover
29465              * Fires when the mouse hovers over the button
29466              * @param {Button} this
29467              * @param {Event} e The event object
29468              */
29469         'mouseover' : true,
29470         /**
29471              * @event mouseout
29472              * Fires when the mouse exits the button
29473              * @param {Button} this
29474              * @param {Event} e The event object
29475              */
29476         'mouseout': true,
29477          /**
29478              * @event render
29479              * Fires when the button is rendered
29480              * @param {Button} this
29481              */
29482         'render': true
29483     });
29484     if(this.menu){
29485         this.menu = Roo.menu.MenuMgr.get(this.menu);
29486     }
29487     // register listeners first!!  - so render can be captured..
29488     Roo.util.Observable.call(this);
29489     if(renderTo){
29490         this.render(renderTo);
29491     }
29492     
29493   
29494 };
29495
29496 Roo.extend(Roo.Button, Roo.util.Observable, {
29497     /**
29498      * 
29499      */
29500     
29501     /**
29502      * Read-only. True if this button is hidden
29503      * @type Boolean
29504      */
29505     hidden : false,
29506     /**
29507      * Read-only. True if this button is disabled
29508      * @type Boolean
29509      */
29510     disabled : false,
29511     /**
29512      * Read-only. True if this button is pressed (only if enableToggle = true)
29513      * @type Boolean
29514      */
29515     pressed : false,
29516
29517     /**
29518      * @cfg {Number} tabIndex 
29519      * The DOM tabIndex for this button (defaults to undefined)
29520      */
29521     tabIndex : undefined,
29522
29523     /**
29524      * @cfg {Boolean} enableToggle
29525      * True to enable pressed/not pressed toggling (defaults to false)
29526      */
29527     enableToggle: false,
29528     /**
29529      * @cfg {Roo.menu.Menu} menu
29530      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29531      */
29532     menu : undefined,
29533     /**
29534      * @cfg {String} menuAlign
29535      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29536      */
29537     menuAlign : "tl-bl?",
29538
29539     /**
29540      * @cfg {String} iconCls
29541      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29542      */
29543     iconCls : undefined,
29544     /**
29545      * @cfg {String} type
29546      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29547      */
29548     type : 'button',
29549
29550     // private
29551     menuClassTarget: 'tr',
29552
29553     /**
29554      * @cfg {String} clickEvent
29555      * The type of event to map to the button's event handler (defaults to 'click')
29556      */
29557     clickEvent : 'click',
29558
29559     /**
29560      * @cfg {Boolean} handleMouseEvents
29561      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29562      */
29563     handleMouseEvents : true,
29564
29565     /**
29566      * @cfg {String} tooltipType
29567      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29568      */
29569     tooltipType : 'qtip',
29570
29571     /**
29572      * @cfg {String} cls
29573      * A CSS class to apply to the button's main element.
29574      */
29575     
29576     /**
29577      * @cfg {Roo.Template} template (Optional)
29578      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29579      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29580      * require code modifications if required elements (e.g. a button) aren't present.
29581      */
29582
29583     // private
29584     render : function(renderTo){
29585         var btn;
29586         if(this.hideParent){
29587             this.parentEl = Roo.get(renderTo);
29588         }
29589         if(!this.dhconfig){
29590             if(!this.template){
29591                 if(!Roo.Button.buttonTemplate){
29592                     // hideous table template
29593                     Roo.Button.buttonTemplate = new Roo.Template(
29594                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29595                         '<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>',
29596                         "</tr></tbody></table>");
29597                 }
29598                 this.template = Roo.Button.buttonTemplate;
29599             }
29600             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29601             var btnEl = btn.child("button:first");
29602             btnEl.on('focus', this.onFocus, this);
29603             btnEl.on('blur', this.onBlur, this);
29604             if(this.cls){
29605                 btn.addClass(this.cls);
29606             }
29607             if(this.icon){
29608                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29609             }
29610             if(this.iconCls){
29611                 btnEl.addClass(this.iconCls);
29612                 if(!this.cls){
29613                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29614                 }
29615             }
29616             if(this.tabIndex !== undefined){
29617                 btnEl.dom.tabIndex = this.tabIndex;
29618             }
29619             if(this.tooltip){
29620                 if(typeof this.tooltip == 'object'){
29621                     Roo.QuickTips.tips(Roo.apply({
29622                           target: btnEl.id
29623                     }, this.tooltip));
29624                 } else {
29625                     btnEl.dom[this.tooltipType] = this.tooltip;
29626                 }
29627             }
29628         }else{
29629             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29630         }
29631         this.el = btn;
29632         if(this.id){
29633             this.el.dom.id = this.el.id = this.id;
29634         }
29635         if(this.menu){
29636             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29637             this.menu.on("show", this.onMenuShow, this);
29638             this.menu.on("hide", this.onMenuHide, this);
29639         }
29640         btn.addClass("x-btn");
29641         if(Roo.isIE && !Roo.isIE7){
29642             this.autoWidth.defer(1, this);
29643         }else{
29644             this.autoWidth();
29645         }
29646         if(this.handleMouseEvents){
29647             btn.on("mouseover", this.onMouseOver, this);
29648             btn.on("mouseout", this.onMouseOut, this);
29649             btn.on("mousedown", this.onMouseDown, this);
29650         }
29651         btn.on(this.clickEvent, this.onClick, this);
29652         //btn.on("mouseup", this.onMouseUp, this);
29653         if(this.hidden){
29654             this.hide();
29655         }
29656         if(this.disabled){
29657             this.disable();
29658         }
29659         Roo.ButtonToggleMgr.register(this);
29660         if(this.pressed){
29661             this.el.addClass("x-btn-pressed");
29662         }
29663         if(this.repeat){
29664             var repeater = new Roo.util.ClickRepeater(btn,
29665                 typeof this.repeat == "object" ? this.repeat : {}
29666             );
29667             repeater.on("click", this.onClick,  this);
29668         }
29669         
29670         this.fireEvent('render', this);
29671         
29672     },
29673     /**
29674      * Returns the button's underlying element
29675      * @return {Roo.Element} The element
29676      */
29677     getEl : function(){
29678         return this.el;  
29679     },
29680     
29681     /**
29682      * Destroys this Button and removes any listeners.
29683      */
29684     destroy : function(){
29685         Roo.ButtonToggleMgr.unregister(this);
29686         this.el.removeAllListeners();
29687         this.purgeListeners();
29688         this.el.remove();
29689     },
29690
29691     // private
29692     autoWidth : function(){
29693         if(this.el){
29694             this.el.setWidth("auto");
29695             if(Roo.isIE7 && Roo.isStrict){
29696                 var ib = this.el.child('button');
29697                 if(ib && ib.getWidth() > 20){
29698                     ib.clip();
29699                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29700                 }
29701             }
29702             if(this.minWidth){
29703                 if(this.hidden){
29704                     this.el.beginMeasure();
29705                 }
29706                 if(this.el.getWidth() < this.minWidth){
29707                     this.el.setWidth(this.minWidth);
29708                 }
29709                 if(this.hidden){
29710                     this.el.endMeasure();
29711                 }
29712             }
29713         }
29714     },
29715
29716     /**
29717      * Assigns this button's click handler
29718      * @param {Function} handler The function to call when the button is clicked
29719      * @param {Object} scope (optional) Scope for the function passed in
29720      */
29721     setHandler : function(handler, scope){
29722         this.handler = handler;
29723         this.scope = scope;  
29724     },
29725     
29726     /**
29727      * Sets this button's text
29728      * @param {String} text The button text
29729      */
29730     setText : function(text){
29731         this.text = text;
29732         if(this.el){
29733             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29734         }
29735         this.autoWidth();
29736     },
29737     
29738     /**
29739      * Gets the text for this button
29740      * @return {String} The button text
29741      */
29742     getText : function(){
29743         return this.text;  
29744     },
29745     
29746     /**
29747      * Show this button
29748      */
29749     show: function(){
29750         this.hidden = false;
29751         if(this.el){
29752             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29753         }
29754     },
29755     
29756     /**
29757      * Hide this button
29758      */
29759     hide: function(){
29760         this.hidden = true;
29761         if(this.el){
29762             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29763         }
29764     },
29765     
29766     /**
29767      * Convenience function for boolean show/hide
29768      * @param {Boolean} visible True to show, false to hide
29769      */
29770     setVisible: function(visible){
29771         if(visible) {
29772             this.show();
29773         }else{
29774             this.hide();
29775         }
29776     },
29777     
29778     /**
29779      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29780      * @param {Boolean} state (optional) Force a particular state
29781      */
29782     toggle : function(state){
29783         state = state === undefined ? !this.pressed : state;
29784         if(state != this.pressed){
29785             if(state){
29786                 this.el.addClass("x-btn-pressed");
29787                 this.pressed = true;
29788                 this.fireEvent("toggle", this, true);
29789             }else{
29790                 this.el.removeClass("x-btn-pressed");
29791                 this.pressed = false;
29792                 this.fireEvent("toggle", this, false);
29793             }
29794             if(this.toggleHandler){
29795                 this.toggleHandler.call(this.scope || this, this, state);
29796             }
29797         }
29798     },
29799     
29800     /**
29801      * Focus the button
29802      */
29803     focus : function(){
29804         this.el.child('button:first').focus();
29805     },
29806     
29807     /**
29808      * Disable this button
29809      */
29810     disable : function(){
29811         if(this.el){
29812             this.el.addClass("x-btn-disabled");
29813         }
29814         this.disabled = true;
29815     },
29816     
29817     /**
29818      * Enable this button
29819      */
29820     enable : function(){
29821         if(this.el){
29822             this.el.removeClass("x-btn-disabled");
29823         }
29824         this.disabled = false;
29825     },
29826
29827     /**
29828      * Convenience function for boolean enable/disable
29829      * @param {Boolean} enabled True to enable, false to disable
29830      */
29831     setDisabled : function(v){
29832         this[v !== true ? "enable" : "disable"]();
29833     },
29834
29835     // private
29836     onClick : function(e)
29837     {
29838         if(e){
29839             e.preventDefault();
29840         }
29841         if(e.button != 0){
29842             return;
29843         }
29844         if(!this.disabled){
29845             if(this.enableToggle){
29846                 this.toggle();
29847             }
29848             if(this.menu && !this.menu.isVisible()){
29849                 this.menu.show(this.el, this.menuAlign);
29850             }
29851             this.fireEvent("click", this, e);
29852             if(this.handler){
29853                 this.el.removeClass("x-btn-over");
29854                 this.handler.call(this.scope || this, this, e);
29855             }
29856         }
29857     },
29858     // private
29859     onMouseOver : function(e){
29860         if(!this.disabled){
29861             this.el.addClass("x-btn-over");
29862             this.fireEvent('mouseover', this, e);
29863         }
29864     },
29865     // private
29866     onMouseOut : function(e){
29867         if(!e.within(this.el,  true)){
29868             this.el.removeClass("x-btn-over");
29869             this.fireEvent('mouseout', this, e);
29870         }
29871     },
29872     // private
29873     onFocus : function(e){
29874         if(!this.disabled){
29875             this.el.addClass("x-btn-focus");
29876         }
29877     },
29878     // private
29879     onBlur : function(e){
29880         this.el.removeClass("x-btn-focus");
29881     },
29882     // private
29883     onMouseDown : function(e){
29884         if(!this.disabled && e.button == 0){
29885             this.el.addClass("x-btn-click");
29886             Roo.get(document).on('mouseup', this.onMouseUp, this);
29887         }
29888     },
29889     // private
29890     onMouseUp : function(e){
29891         if(e.button == 0){
29892             this.el.removeClass("x-btn-click");
29893             Roo.get(document).un('mouseup', this.onMouseUp, this);
29894         }
29895     },
29896     // private
29897     onMenuShow : function(e){
29898         this.el.addClass("x-btn-menu-active");
29899     },
29900     // private
29901     onMenuHide : function(e){
29902         this.el.removeClass("x-btn-menu-active");
29903     }   
29904 });
29905
29906 // Private utility class used by Button
29907 Roo.ButtonToggleMgr = function(){
29908    var groups = {};
29909    
29910    function toggleGroup(btn, state){
29911        if(state){
29912            var g = groups[btn.toggleGroup];
29913            for(var i = 0, l = g.length; i < l; i++){
29914                if(g[i] != btn){
29915                    g[i].toggle(false);
29916                }
29917            }
29918        }
29919    }
29920    
29921    return {
29922        register : function(btn){
29923            if(!btn.toggleGroup){
29924                return;
29925            }
29926            var g = groups[btn.toggleGroup];
29927            if(!g){
29928                g = groups[btn.toggleGroup] = [];
29929            }
29930            g.push(btn);
29931            btn.on("toggle", toggleGroup);
29932        },
29933        
29934        unregister : function(btn){
29935            if(!btn.toggleGroup){
29936                return;
29937            }
29938            var g = groups[btn.toggleGroup];
29939            if(g){
29940                g.remove(btn);
29941                btn.un("toggle", toggleGroup);
29942            }
29943        }
29944    };
29945 }();/*
29946  * Based on:
29947  * Ext JS Library 1.1.1
29948  * Copyright(c) 2006-2007, Ext JS, LLC.
29949  *
29950  * Originally Released Under LGPL - original licence link has changed is not relivant.
29951  *
29952  * Fork - LGPL
29953  * <script type="text/javascript">
29954  */
29955  
29956 /**
29957  * @class Roo.SplitButton
29958  * @extends Roo.Button
29959  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29960  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29961  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29962  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29963  * @cfg {String} arrowTooltip The title attribute of the arrow
29964  * @constructor
29965  * Create a new menu button
29966  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29967  * @param {Object} config The config object
29968  */
29969 Roo.SplitButton = function(renderTo, config){
29970     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29971     /**
29972      * @event arrowclick
29973      * Fires when this button's arrow is clicked
29974      * @param {SplitButton} this
29975      * @param {EventObject} e The click event
29976      */
29977     this.addEvents({"arrowclick":true});
29978 };
29979
29980 Roo.extend(Roo.SplitButton, Roo.Button, {
29981     render : function(renderTo){
29982         // this is one sweet looking template!
29983         var tpl = new Roo.Template(
29984             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29985             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29986             '<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>',
29987             "</tbody></table></td><td>",
29988             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29989             '<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>',
29990             "</tbody></table></td></tr></table>"
29991         );
29992         var btn = tpl.append(renderTo, [this.text, this.type], true);
29993         var btnEl = btn.child("button");
29994         if(this.cls){
29995             btn.addClass(this.cls);
29996         }
29997         if(this.icon){
29998             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29999         }
30000         if(this.iconCls){
30001             btnEl.addClass(this.iconCls);
30002             if(!this.cls){
30003                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
30004             }
30005         }
30006         this.el = btn;
30007         if(this.handleMouseEvents){
30008             btn.on("mouseover", this.onMouseOver, this);
30009             btn.on("mouseout", this.onMouseOut, this);
30010             btn.on("mousedown", this.onMouseDown, this);
30011             btn.on("mouseup", this.onMouseUp, this);
30012         }
30013         btn.on(this.clickEvent, this.onClick, this);
30014         if(this.tooltip){
30015             if(typeof this.tooltip == 'object'){
30016                 Roo.QuickTips.tips(Roo.apply({
30017                       target: btnEl.id
30018                 }, this.tooltip));
30019             } else {
30020                 btnEl.dom[this.tooltipType] = this.tooltip;
30021             }
30022         }
30023         if(this.arrowTooltip){
30024             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
30025         }
30026         if(this.hidden){
30027             this.hide();
30028         }
30029         if(this.disabled){
30030             this.disable();
30031         }
30032         if(this.pressed){
30033             this.el.addClass("x-btn-pressed");
30034         }
30035         if(Roo.isIE && !Roo.isIE7){
30036             this.autoWidth.defer(1, this);
30037         }else{
30038             this.autoWidth();
30039         }
30040         if(this.menu){
30041             this.menu.on("show", this.onMenuShow, this);
30042             this.menu.on("hide", this.onMenuHide, this);
30043         }
30044         this.fireEvent('render', this);
30045     },
30046
30047     // private
30048     autoWidth : function(){
30049         if(this.el){
30050             var tbl = this.el.child("table:first");
30051             var tbl2 = this.el.child("table:last");
30052             this.el.setWidth("auto");
30053             tbl.setWidth("auto");
30054             if(Roo.isIE7 && Roo.isStrict){
30055                 var ib = this.el.child('button:first');
30056                 if(ib && ib.getWidth() > 20){
30057                     ib.clip();
30058                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
30059                 }
30060             }
30061             if(this.minWidth){
30062                 if(this.hidden){
30063                     this.el.beginMeasure();
30064                 }
30065                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
30066                     tbl.setWidth(this.minWidth-tbl2.getWidth());
30067                 }
30068                 if(this.hidden){
30069                     this.el.endMeasure();
30070                 }
30071             }
30072             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
30073         } 
30074     },
30075     /**
30076      * Sets this button's click handler
30077      * @param {Function} handler The function to call when the button is clicked
30078      * @param {Object} scope (optional) Scope for the function passed above
30079      */
30080     setHandler : function(handler, scope){
30081         this.handler = handler;
30082         this.scope = scope;  
30083     },
30084     
30085     /**
30086      * Sets this button's arrow click handler
30087      * @param {Function} handler The function to call when the arrow is clicked
30088      * @param {Object} scope (optional) Scope for the function passed above
30089      */
30090     setArrowHandler : function(handler, scope){
30091         this.arrowHandler = handler;
30092         this.scope = scope;  
30093     },
30094     
30095     /**
30096      * Focus the button
30097      */
30098     focus : function(){
30099         if(this.el){
30100             this.el.child("button:first").focus();
30101         }
30102     },
30103
30104     // private
30105     onClick : function(e){
30106         e.preventDefault();
30107         if(!this.disabled){
30108             if(e.getTarget(".x-btn-menu-arrow-wrap")){
30109                 if(this.menu && !this.menu.isVisible()){
30110                     this.menu.show(this.el, this.menuAlign);
30111                 }
30112                 this.fireEvent("arrowclick", this, e);
30113                 if(this.arrowHandler){
30114                     this.arrowHandler.call(this.scope || this, this, e);
30115                 }
30116             }else{
30117                 this.fireEvent("click", this, e);
30118                 if(this.handler){
30119                     this.handler.call(this.scope || this, this, e);
30120                 }
30121             }
30122         }
30123     },
30124     // private
30125     onMouseDown : function(e){
30126         if(!this.disabled){
30127             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
30128         }
30129     },
30130     // private
30131     onMouseUp : function(e){
30132         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
30133     }   
30134 });
30135
30136
30137 // backwards compat
30138 Roo.MenuButton = Roo.SplitButton;/*
30139  * Based on:
30140  * Ext JS Library 1.1.1
30141  * Copyright(c) 2006-2007, Ext JS, LLC.
30142  *
30143  * Originally Released Under LGPL - original licence link has changed is not relivant.
30144  *
30145  * Fork - LGPL
30146  * <script type="text/javascript">
30147  */
30148
30149 /**
30150  * @class Roo.Toolbar
30151  * @children   Roo.Toolbar.Item Roo.form.Field
30152  * Basic Toolbar class.
30153  * @constructor
30154  * Creates a new Toolbar
30155  * @param {Object} container The config object
30156  */ 
30157 Roo.Toolbar = function(container, buttons, config)
30158 {
30159     /// old consturctor format still supported..
30160     if(container instanceof Array){ // omit the container for later rendering
30161         buttons = container;
30162         config = buttons;
30163         container = null;
30164     }
30165     if (typeof(container) == 'object' && container.xtype) {
30166         config = container;
30167         container = config.container;
30168         buttons = config.buttons || []; // not really - use items!!
30169     }
30170     var xitems = [];
30171     if (config && config.items) {
30172         xitems = config.items;
30173         delete config.items;
30174     }
30175     Roo.apply(this, config);
30176     this.buttons = buttons;
30177     
30178     if(container){
30179         this.render(container);
30180     }
30181     this.xitems = xitems;
30182     Roo.each(xitems, function(b) {
30183         this.add(b);
30184     }, this);
30185     
30186 };
30187
30188 Roo.Toolbar.prototype = {
30189     /**
30190      * @cfg {Array} items
30191      * array of button configs or elements to add (will be converted to a MixedCollection)
30192      */
30193     items: false,
30194     /**
30195      * @cfg {String/HTMLElement/Element} container
30196      * The id or element that will contain the toolbar
30197      */
30198     // private
30199     render : function(ct){
30200         this.el = Roo.get(ct);
30201         if(this.cls){
30202             this.el.addClass(this.cls);
30203         }
30204         // using a table allows for vertical alignment
30205         // 100% width is needed by Safari...
30206         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30207         this.tr = this.el.child("tr", true);
30208         var autoId = 0;
30209         this.items = new Roo.util.MixedCollection(false, function(o){
30210             return o.id || ("item" + (++autoId));
30211         });
30212         if(this.buttons){
30213             this.add.apply(this, this.buttons);
30214             delete this.buttons;
30215         }
30216     },
30217
30218     /**
30219      * Adds element(s) to the toolbar -- this function takes a variable number of 
30220      * arguments of mixed type and adds them to the toolbar.
30221      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30222      * <ul>
30223      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30224      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30225      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30226      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30227      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30228      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30229      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30230      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30231      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30232      * </ul>
30233      * @param {Mixed} arg2
30234      * @param {Mixed} etc.
30235      */
30236     add : function(){
30237         var a = arguments, l = a.length;
30238         for(var i = 0; i < l; i++){
30239             this._add(a[i]);
30240         }
30241     },
30242     // private..
30243     _add : function(el) {
30244         
30245         if (el.xtype) {
30246             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30247         }
30248         
30249         if (el.applyTo){ // some kind of form field
30250             return this.addField(el);
30251         } 
30252         if (el.render){ // some kind of Toolbar.Item
30253             return this.addItem(el);
30254         }
30255         if (typeof el == "string"){ // string
30256             if(el == "separator" || el == "-"){
30257                 return this.addSeparator();
30258             }
30259             if (el == " "){
30260                 return this.addSpacer();
30261             }
30262             if(el == "->"){
30263                 return this.addFill();
30264             }
30265             return this.addText(el);
30266             
30267         }
30268         if(el.tagName){ // element
30269             return this.addElement(el);
30270         }
30271         if(typeof el == "object"){ // must be button config?
30272             return this.addButton(el);
30273         }
30274         // and now what?!?!
30275         return false;
30276         
30277     },
30278     
30279     /**
30280      * Add an Xtype element
30281      * @param {Object} xtype Xtype Object
30282      * @return {Object} created Object
30283      */
30284     addxtype : function(e){
30285         return this.add(e);  
30286     },
30287     
30288     /**
30289      * Returns the Element for this toolbar.
30290      * @return {Roo.Element}
30291      */
30292     getEl : function(){
30293         return this.el;  
30294     },
30295     
30296     /**
30297      * Adds a separator
30298      * @return {Roo.Toolbar.Item} The separator item
30299      */
30300     addSeparator : function(){
30301         return this.addItem(new Roo.Toolbar.Separator());
30302     },
30303
30304     /**
30305      * Adds a spacer element
30306      * @return {Roo.Toolbar.Spacer} The spacer item
30307      */
30308     addSpacer : function(){
30309         return this.addItem(new Roo.Toolbar.Spacer());
30310     },
30311
30312     /**
30313      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30314      * @return {Roo.Toolbar.Fill} The fill item
30315      */
30316     addFill : function(){
30317         return this.addItem(new Roo.Toolbar.Fill());
30318     },
30319
30320     /**
30321      * Adds any standard HTML element to the toolbar
30322      * @param {String/HTMLElement/Element} el The element or id of the element to add
30323      * @return {Roo.Toolbar.Item} The element's item
30324      */
30325     addElement : function(el){
30326         return this.addItem(new Roo.Toolbar.Item(el));
30327     },
30328     /**
30329      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30330      * @type Roo.util.MixedCollection  
30331      */
30332     items : false,
30333      
30334     /**
30335      * Adds any Toolbar.Item or subclass
30336      * @param {Roo.Toolbar.Item} item
30337      * @return {Roo.Toolbar.Item} The item
30338      */
30339     addItem : function(item){
30340         var td = this.nextBlock();
30341         item.render(td);
30342         this.items.add(item);
30343         return item;
30344     },
30345     
30346     /**
30347      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30348      * @param {Object/Array} config A button config or array of configs
30349      * @return {Roo.Toolbar.Button/Array}
30350      */
30351     addButton : function(config){
30352         if(config instanceof Array){
30353             var buttons = [];
30354             for(var i = 0, len = config.length; i < len; i++) {
30355                 buttons.push(this.addButton(config[i]));
30356             }
30357             return buttons;
30358         }
30359         var b = config;
30360         if(!(config instanceof Roo.Toolbar.Button)){
30361             b = config.split ?
30362                 new Roo.Toolbar.SplitButton(config) :
30363                 new Roo.Toolbar.Button(config);
30364         }
30365         var td = this.nextBlock();
30366         b.render(td);
30367         this.items.add(b);
30368         return b;
30369     },
30370     
30371     /**
30372      * Adds text to the toolbar
30373      * @param {String} text The text to add
30374      * @return {Roo.Toolbar.Item} The element's item
30375      */
30376     addText : function(text){
30377         return this.addItem(new Roo.Toolbar.TextItem(text));
30378     },
30379     
30380     /**
30381      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30382      * @param {Number} index The index where the item is to be inserted
30383      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30384      * @return {Roo.Toolbar.Button/Item}
30385      */
30386     insertButton : function(index, item){
30387         if(item instanceof Array){
30388             var buttons = [];
30389             for(var i = 0, len = item.length; i < len; i++) {
30390                buttons.push(this.insertButton(index + i, item[i]));
30391             }
30392             return buttons;
30393         }
30394         if (!(item instanceof Roo.Toolbar.Button)){
30395            item = new Roo.Toolbar.Button(item);
30396         }
30397         var td = document.createElement("td");
30398         this.tr.insertBefore(td, this.tr.childNodes[index]);
30399         item.render(td);
30400         this.items.insert(index, item);
30401         return item;
30402     },
30403     
30404     /**
30405      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30406      * @param {Object} config
30407      * @return {Roo.Toolbar.Item} The element's item
30408      */
30409     addDom : function(config, returnEl){
30410         var td = this.nextBlock();
30411         Roo.DomHelper.overwrite(td, config);
30412         var ti = new Roo.Toolbar.Item(td.firstChild);
30413         ti.render(td);
30414         this.items.add(ti);
30415         return ti;
30416     },
30417
30418     /**
30419      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30420      * @type Roo.util.MixedCollection  
30421      */
30422     fields : false,
30423     
30424     /**
30425      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30426      * Note: the field should not have been rendered yet. For a field that has already been
30427      * rendered, use {@link #addElement}.
30428      * @param {Roo.form.Field} field
30429      * @return {Roo.ToolbarItem}
30430      */
30431      
30432       
30433     addField : function(field) {
30434         if (!this.fields) {
30435             var autoId = 0;
30436             this.fields = new Roo.util.MixedCollection(false, function(o){
30437                 return o.id || ("item" + (++autoId));
30438             });
30439
30440         }
30441         
30442         var td = this.nextBlock();
30443         field.render(td);
30444         var ti = new Roo.Toolbar.Item(td.firstChild);
30445         ti.render(td);
30446         this.items.add(ti);
30447         this.fields.add(field);
30448         return ti;
30449     },
30450     /**
30451      * Hide the toolbar
30452      * @method hide
30453      */
30454      
30455       
30456     hide : function()
30457     {
30458         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30459         this.el.child('div').hide();
30460     },
30461     /**
30462      * Show the toolbar
30463      * @method show
30464      */
30465     show : function()
30466     {
30467         this.el.child('div').show();
30468     },
30469       
30470     // private
30471     nextBlock : function(){
30472         var td = document.createElement("td");
30473         this.tr.appendChild(td);
30474         return td;
30475     },
30476
30477     // private
30478     destroy : function(){
30479         if(this.items){ // rendered?
30480             Roo.destroy.apply(Roo, this.items.items);
30481         }
30482         if(this.fields){ // rendered?
30483             Roo.destroy.apply(Roo, this.fields.items);
30484         }
30485         Roo.Element.uncache(this.el, this.tr);
30486     }
30487 };
30488
30489 /**
30490  * @class Roo.Toolbar.Item
30491  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30492  * @constructor
30493  * Creates a new Item
30494  * @param {HTMLElement} el 
30495  */
30496 Roo.Toolbar.Item = function(el){
30497     var cfg = {};
30498     if (typeof (el.xtype) != 'undefined') {
30499         cfg = el;
30500         el = cfg.el;
30501     }
30502     
30503     this.el = Roo.getDom(el);
30504     this.id = Roo.id(this.el);
30505     this.hidden = false;
30506     
30507     this.addEvents({
30508          /**
30509              * @event render
30510              * Fires when the button is rendered
30511              * @param {Button} this
30512              */
30513         'render': true
30514     });
30515     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30516 };
30517 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30518 //Roo.Toolbar.Item.prototype = {
30519     
30520     /**
30521      * Get this item's HTML Element
30522      * @return {HTMLElement}
30523      */
30524     getEl : function(){
30525        return this.el;  
30526     },
30527
30528     // private
30529     render : function(td){
30530         
30531          this.td = td;
30532         td.appendChild(this.el);
30533         
30534         this.fireEvent('render', this);
30535     },
30536     
30537     /**
30538      * Removes and destroys this item.
30539      */
30540     destroy : function(){
30541         this.td.parentNode.removeChild(this.td);
30542     },
30543     
30544     /**
30545      * Shows this item.
30546      */
30547     show: function(){
30548         this.hidden = false;
30549         this.td.style.display = "";
30550     },
30551     
30552     /**
30553      * Hides this item.
30554      */
30555     hide: function(){
30556         this.hidden = true;
30557         this.td.style.display = "none";
30558     },
30559     
30560     /**
30561      * Convenience function for boolean show/hide.
30562      * @param {Boolean} visible true to show/false to hide
30563      */
30564     setVisible: function(visible){
30565         if(visible) {
30566             this.show();
30567         }else{
30568             this.hide();
30569         }
30570     },
30571     
30572     /**
30573      * Try to focus this item.
30574      */
30575     focus : function(){
30576         Roo.fly(this.el).focus();
30577     },
30578     
30579     /**
30580      * Disables this item.
30581      */
30582     disable : function(){
30583         Roo.fly(this.td).addClass("x-item-disabled");
30584         this.disabled = true;
30585         this.el.disabled = true;
30586     },
30587     
30588     /**
30589      * Enables this item.
30590      */
30591     enable : function(){
30592         Roo.fly(this.td).removeClass("x-item-disabled");
30593         this.disabled = false;
30594         this.el.disabled = false;
30595     }
30596 });
30597
30598
30599 /**
30600  * @class Roo.Toolbar.Separator
30601  * @extends Roo.Toolbar.Item
30602  * A simple toolbar separator class
30603  * @constructor
30604  * Creates a new Separator
30605  */
30606 Roo.Toolbar.Separator = function(cfg){
30607     
30608     var s = document.createElement("span");
30609     s.className = "ytb-sep";
30610     if (cfg) {
30611         cfg.el = s;
30612     }
30613     
30614     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30615 };
30616 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30617     enable:Roo.emptyFn,
30618     disable:Roo.emptyFn,
30619     focus:Roo.emptyFn
30620 });
30621
30622 /**
30623  * @class Roo.Toolbar.Spacer
30624  * @extends Roo.Toolbar.Item
30625  * A simple element that adds extra horizontal space to a toolbar.
30626  * @constructor
30627  * Creates a new Spacer
30628  */
30629 Roo.Toolbar.Spacer = function(cfg){
30630     var s = document.createElement("div");
30631     s.className = "ytb-spacer";
30632     if (cfg) {
30633         cfg.el = s;
30634     }
30635     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30636 };
30637 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30638     enable:Roo.emptyFn,
30639     disable:Roo.emptyFn,
30640     focus:Roo.emptyFn
30641 });
30642
30643 /**
30644  * @class Roo.Toolbar.Fill
30645  * @extends Roo.Toolbar.Spacer
30646  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30647  * @constructor
30648  * Creates a new Spacer
30649  */
30650 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30651     // private
30652     render : function(td){
30653         td.style.width = '100%';
30654         Roo.Toolbar.Fill.superclass.render.call(this, td);
30655     }
30656 });
30657
30658 /**
30659  * @class Roo.Toolbar.TextItem
30660  * @extends Roo.Toolbar.Item
30661  * A simple class that renders text directly into a toolbar.
30662  * @constructor
30663  * Creates a new TextItem
30664  * @cfg {string} text 
30665  */
30666 Roo.Toolbar.TextItem = function(cfg){
30667     var  text = cfg || "";
30668     if (typeof(cfg) == 'object') {
30669         text = cfg.text || "";
30670     }  else {
30671         cfg = null;
30672     }
30673     var s = document.createElement("span");
30674     s.className = "ytb-text";
30675     s.innerHTML = text;
30676     if (cfg) {
30677         cfg.el  = s;
30678     }
30679     
30680     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30681 };
30682 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30683     
30684      
30685     enable:Roo.emptyFn,
30686     disable:Roo.emptyFn,
30687     focus:Roo.emptyFn
30688 });
30689
30690 /**
30691  * @class Roo.Toolbar.Button
30692  * @extends Roo.Button
30693  * A button that renders into a toolbar.
30694  * @constructor
30695  * Creates a new Button
30696  * @param {Object} config A standard {@link Roo.Button} config object
30697  */
30698 Roo.Toolbar.Button = function(config){
30699     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30700 };
30701 Roo.extend(Roo.Toolbar.Button, Roo.Button,
30702 {
30703     
30704     
30705     render : function(td){
30706         this.td = td;
30707         Roo.Toolbar.Button.superclass.render.call(this, td);
30708     },
30709     
30710     /**
30711      * Removes and destroys this button
30712      */
30713     destroy : function(){
30714         Roo.Toolbar.Button.superclass.destroy.call(this);
30715         this.td.parentNode.removeChild(this.td);
30716     },
30717     
30718     /**
30719      * Shows this button
30720      */
30721     show: function(){
30722         this.hidden = false;
30723         this.td.style.display = "";
30724     },
30725     
30726     /**
30727      * Hides this button
30728      */
30729     hide: function(){
30730         this.hidden = true;
30731         this.td.style.display = "none";
30732     },
30733
30734     /**
30735      * Disables this item
30736      */
30737     disable : function(){
30738         Roo.fly(this.td).addClass("x-item-disabled");
30739         this.disabled = true;
30740     },
30741
30742     /**
30743      * Enables this item
30744      */
30745     enable : function(){
30746         Roo.fly(this.td).removeClass("x-item-disabled");
30747         this.disabled = false;
30748     }
30749 });
30750 // backwards compat
30751 Roo.ToolbarButton = Roo.Toolbar.Button;
30752
30753 /**
30754  * @class Roo.Toolbar.SplitButton
30755  * @extends Roo.SplitButton
30756  * A menu button that renders into a toolbar.
30757  * @constructor
30758  * Creates a new SplitButton
30759  * @param {Object} config A standard {@link Roo.SplitButton} config object
30760  */
30761 Roo.Toolbar.SplitButton = function(config){
30762     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30763 };
30764 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30765     render : function(td){
30766         this.td = td;
30767         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30768     },
30769     
30770     /**
30771      * Removes and destroys this button
30772      */
30773     destroy : function(){
30774         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30775         this.td.parentNode.removeChild(this.td);
30776     },
30777     
30778     /**
30779      * Shows this button
30780      */
30781     show: function(){
30782         this.hidden = false;
30783         this.td.style.display = "";
30784     },
30785     
30786     /**
30787      * Hides this button
30788      */
30789     hide: function(){
30790         this.hidden = true;
30791         this.td.style.display = "none";
30792     }
30793 });
30794
30795 // backwards compat
30796 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30797  * Based on:
30798  * Ext JS Library 1.1.1
30799  * Copyright(c) 2006-2007, Ext JS, LLC.
30800  *
30801  * Originally Released Under LGPL - original licence link has changed is not relivant.
30802  *
30803  * Fork - LGPL
30804  * <script type="text/javascript">
30805  */
30806  
30807 /**
30808  * @class Roo.PagingToolbar
30809  * @extends Roo.Toolbar
30810  * @children   Roo.Toolbar.Item Roo.form.Field
30811  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30812  * @constructor
30813  * Create a new PagingToolbar
30814  * @param {Object} config The config object
30815  */
30816 Roo.PagingToolbar = function(el, ds, config)
30817 {
30818     // old args format still supported... - xtype is prefered..
30819     if (typeof(el) == 'object' && el.xtype) {
30820         // created from xtype...
30821         config = el;
30822         ds = el.dataSource;
30823         el = config.container;
30824     }
30825     var items = [];
30826     if (config.items) {
30827         items = config.items;
30828         config.items = [];
30829     }
30830     
30831     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30832     this.ds = ds;
30833     this.cursor = 0;
30834     this.renderButtons(this.el);
30835     this.bind(ds);
30836     
30837     // supprot items array.
30838    
30839     Roo.each(items, function(e) {
30840         this.add(Roo.factory(e));
30841     },this);
30842     
30843 };
30844
30845 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30846    
30847     /**
30848      * @cfg {String/HTMLElement/Element} container
30849      * container The id or element that will contain the toolbar
30850      */
30851     /**
30852      * @cfg {Boolean} displayInfo
30853      * True to display the displayMsg (defaults to false)
30854      */
30855     
30856     
30857     /**
30858      * @cfg {Number} pageSize
30859      * The number of records to display per page (defaults to 20)
30860      */
30861     pageSize: 20,
30862     /**
30863      * @cfg {String} displayMsg
30864      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30865      */
30866     displayMsg : 'Displaying {0} - {1} of {2}',
30867     /**
30868      * @cfg {String} emptyMsg
30869      * The message to display when no records are found (defaults to "No data to display")
30870      */
30871     emptyMsg : 'No data to display',
30872     /**
30873      * Customizable piece of the default paging text (defaults to "Page")
30874      * @type String
30875      */
30876     beforePageText : "Page",
30877     /**
30878      * Customizable piece of the default paging text (defaults to "of %0")
30879      * @type String
30880      */
30881     afterPageText : "of {0}",
30882     /**
30883      * Customizable piece of the default paging text (defaults to "First Page")
30884      * @type String
30885      */
30886     firstText : "First Page",
30887     /**
30888      * Customizable piece of the default paging text (defaults to "Previous Page")
30889      * @type String
30890      */
30891     prevText : "Previous Page",
30892     /**
30893      * Customizable piece of the default paging text (defaults to "Next Page")
30894      * @type String
30895      */
30896     nextText : "Next Page",
30897     /**
30898      * Customizable piece of the default paging text (defaults to "Last Page")
30899      * @type String
30900      */
30901     lastText : "Last Page",
30902     /**
30903      * Customizable piece of the default paging text (defaults to "Refresh")
30904      * @type String
30905      */
30906     refreshText : "Refresh",
30907
30908     // private
30909     renderButtons : function(el){
30910         Roo.PagingToolbar.superclass.render.call(this, el);
30911         this.first = this.addButton({
30912             tooltip: this.firstText,
30913             cls: "x-btn-icon x-grid-page-first",
30914             disabled: true,
30915             handler: this.onClick.createDelegate(this, ["first"])
30916         });
30917         this.prev = this.addButton({
30918             tooltip: this.prevText,
30919             cls: "x-btn-icon x-grid-page-prev",
30920             disabled: true,
30921             handler: this.onClick.createDelegate(this, ["prev"])
30922         });
30923         //this.addSeparator();
30924         this.add(this.beforePageText);
30925         this.field = Roo.get(this.addDom({
30926            tag: "input",
30927            type: "text",
30928            size: "3",
30929            value: "1",
30930            cls: "x-grid-page-number"
30931         }).el);
30932         this.field.on("keydown", this.onPagingKeydown, this);
30933         this.field.on("focus", function(){this.dom.select();});
30934         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30935         this.field.setHeight(18);
30936         //this.addSeparator();
30937         this.next = this.addButton({
30938             tooltip: this.nextText,
30939             cls: "x-btn-icon x-grid-page-next",
30940             disabled: true,
30941             handler: this.onClick.createDelegate(this, ["next"])
30942         });
30943         this.last = this.addButton({
30944             tooltip: this.lastText,
30945             cls: "x-btn-icon x-grid-page-last",
30946             disabled: true,
30947             handler: this.onClick.createDelegate(this, ["last"])
30948         });
30949         //this.addSeparator();
30950         this.loading = this.addButton({
30951             tooltip: this.refreshText,
30952             cls: "x-btn-icon x-grid-loading",
30953             handler: this.onClick.createDelegate(this, ["refresh"])
30954         });
30955
30956         if(this.displayInfo){
30957             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30958         }
30959     },
30960
30961     // private
30962     updateInfo : function(){
30963         if(this.displayEl){
30964             var count = this.ds.getCount();
30965             var msg = count == 0 ?
30966                 this.emptyMsg :
30967                 String.format(
30968                     this.displayMsg,
30969                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30970                 );
30971             this.displayEl.update(msg);
30972         }
30973     },
30974
30975     // private
30976     onLoad : function(ds, r, o){
30977        this.cursor = o.params ? o.params.start : 0;
30978        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30979
30980        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30981        this.field.dom.value = ap;
30982        this.first.setDisabled(ap == 1);
30983        this.prev.setDisabled(ap == 1);
30984        this.next.setDisabled(ap == ps);
30985        this.last.setDisabled(ap == ps);
30986        this.loading.enable();
30987        this.updateInfo();
30988     },
30989
30990     // private
30991     getPageData : function(){
30992         var total = this.ds.getTotalCount();
30993         return {
30994             total : total,
30995             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30996             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30997         };
30998     },
30999
31000     // private
31001     onLoadError : function(){
31002         this.loading.enable();
31003     },
31004
31005     // private
31006     onPagingKeydown : function(e){
31007         var k = e.getKey();
31008         var d = this.getPageData();
31009         if(k == e.RETURN){
31010             var v = this.field.dom.value, pageNum;
31011             if(!v || isNaN(pageNum = parseInt(v, 10))){
31012                 this.field.dom.value = d.activePage;
31013                 return;
31014             }
31015             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
31016             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
31017             e.stopEvent();
31018         }
31019         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))
31020         {
31021           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
31022           this.field.dom.value = pageNum;
31023           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
31024           e.stopEvent();
31025         }
31026         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
31027         {
31028           var v = this.field.dom.value, pageNum; 
31029           var increment = (e.shiftKey) ? 10 : 1;
31030           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
31031             increment *= -1;
31032           }
31033           if(!v || isNaN(pageNum = parseInt(v, 10))) {
31034             this.field.dom.value = d.activePage;
31035             return;
31036           }
31037           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
31038           {
31039             this.field.dom.value = parseInt(v, 10) + increment;
31040             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
31041             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
31042           }
31043           e.stopEvent();
31044         }
31045     },
31046
31047     // private
31048     beforeLoad : function(){
31049         if(this.loading){
31050             this.loading.disable();
31051         }
31052     },
31053
31054     // private
31055     onClick : function(which){
31056         var ds = this.ds;
31057         switch(which){
31058             case "first":
31059                 ds.load({params:{start: 0, limit: this.pageSize}});
31060             break;
31061             case "prev":
31062                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
31063             break;
31064             case "next":
31065                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
31066             break;
31067             case "last":
31068                 var total = ds.getTotalCount();
31069                 var extra = total % this.pageSize;
31070                 var lastStart = extra ? (total - extra) : total-this.pageSize;
31071                 ds.load({params:{start: lastStart, limit: this.pageSize}});
31072             break;
31073             case "refresh":
31074                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
31075             break;
31076         }
31077     },
31078
31079     /**
31080      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
31081      * @param {Roo.data.Store} store The data store to unbind
31082      */
31083     unbind : function(ds){
31084         ds.un("beforeload", this.beforeLoad, this);
31085         ds.un("load", this.onLoad, this);
31086         ds.un("loadexception", this.onLoadError, this);
31087         ds.un("remove", this.updateInfo, this);
31088         ds.un("add", this.updateInfo, this);
31089         this.ds = undefined;
31090     },
31091
31092     /**
31093      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31094      * @param {Roo.data.Store} store The data store to bind
31095      */
31096     bind : function(ds){
31097         ds.on("beforeload", this.beforeLoad, this);
31098         ds.on("load", this.onLoad, this);
31099         ds.on("loadexception", this.onLoadError, this);
31100         ds.on("remove", this.updateInfo, this);
31101         ds.on("add", this.updateInfo, this);
31102         this.ds = ds;
31103     }
31104 });/*
31105  * Based on:
31106  * Ext JS Library 1.1.1
31107  * Copyright(c) 2006-2007, Ext JS, LLC.
31108  *
31109  * Originally Released Under LGPL - original licence link has changed is not relivant.
31110  *
31111  * Fork - LGPL
31112  * <script type="text/javascript">
31113  */
31114
31115 /**
31116  * @class Roo.Resizable
31117  * @extends Roo.util.Observable
31118  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
31119  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
31120  * 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
31121  * the element will be wrapped for you automatically.</p>
31122  * <p>Here is the list of valid resize handles:</p>
31123  * <pre>
31124 Value   Description
31125 ------  -------------------
31126  'n'     north
31127  's'     south
31128  'e'     east
31129  'w'     west
31130  'nw'    northwest
31131  'sw'    southwest
31132  'se'    southeast
31133  'ne'    northeast
31134  'hd'    horizontal drag
31135  'all'   all
31136 </pre>
31137  * <p>Here's an example showing the creation of a typical Resizable:</p>
31138  * <pre><code>
31139 var resizer = new Roo.Resizable("element-id", {
31140     handles: 'all',
31141     minWidth: 200,
31142     minHeight: 100,
31143     maxWidth: 500,
31144     maxHeight: 400,
31145     pinned: true
31146 });
31147 resizer.on("resize", myHandler);
31148 </code></pre>
31149  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
31150  * resizer.east.setDisplayed(false);</p>
31151  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
31152  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
31153  * resize operation's new size (defaults to [0, 0])
31154  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31155  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31156  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31157  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31158  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31159  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31160  * @cfg {Number} width The width of the element in pixels (defaults to null)
31161  * @cfg {Number} height The height of the element in pixels (defaults to null)
31162  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31163  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31164  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31165  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31166  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31167  * in favor of the handles config option (defaults to false)
31168  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31169  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31170  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31171  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31172  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31173  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31174  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31175  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31176  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31177  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31178  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31179  * @constructor
31180  * Create a new resizable component
31181  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31182  * @param {Object} config configuration options
31183   */
31184 Roo.Resizable = function(el, config)
31185 {
31186     this.el = Roo.get(el);
31187
31188     if(config && config.wrap){
31189         config.resizeChild = this.el;
31190         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31191         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31192         this.el.setStyle("overflow", "hidden");
31193         this.el.setPositioning(config.resizeChild.getPositioning());
31194         config.resizeChild.clearPositioning();
31195         if(!config.width || !config.height){
31196             var csize = config.resizeChild.getSize();
31197             this.el.setSize(csize.width, csize.height);
31198         }
31199         if(config.pinned && !config.adjustments){
31200             config.adjustments = "auto";
31201         }
31202     }
31203
31204     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31205     this.proxy.unselectable();
31206     this.proxy.enableDisplayMode('block');
31207
31208     Roo.apply(this, config);
31209
31210     if(this.pinned){
31211         this.disableTrackOver = true;
31212         this.el.addClass("x-resizable-pinned");
31213     }
31214     // if the element isn't positioned, make it relative
31215     var position = this.el.getStyle("position");
31216     if(position != "absolute" && position != "fixed"){
31217         this.el.setStyle("position", "relative");
31218     }
31219     if(!this.handles){ // no handles passed, must be legacy style
31220         this.handles = 's,e,se';
31221         if(this.multiDirectional){
31222             this.handles += ',n,w';
31223         }
31224     }
31225     if(this.handles == "all"){
31226         this.handles = "n s e w ne nw se sw";
31227     }
31228     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31229     var ps = Roo.Resizable.positions;
31230     for(var i = 0, len = hs.length; i < len; i++){
31231         if(hs[i] && ps[hs[i]]){
31232             var pos = ps[hs[i]];
31233             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31234         }
31235     }
31236     // legacy
31237     this.corner = this.southeast;
31238     
31239     // updateBox = the box can move..
31240     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31241         this.updateBox = true;
31242     }
31243
31244     this.activeHandle = null;
31245
31246     if(this.resizeChild){
31247         if(typeof this.resizeChild == "boolean"){
31248             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31249         }else{
31250             this.resizeChild = Roo.get(this.resizeChild, true);
31251         }
31252     }
31253     
31254     if(this.adjustments == "auto"){
31255         var rc = this.resizeChild;
31256         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31257         if(rc && (hw || hn)){
31258             rc.position("relative");
31259             rc.setLeft(hw ? hw.el.getWidth() : 0);
31260             rc.setTop(hn ? hn.el.getHeight() : 0);
31261         }
31262         this.adjustments = [
31263             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31264             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31265         ];
31266     }
31267
31268     if(this.draggable){
31269         this.dd = this.dynamic ?
31270             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31271         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31272     }
31273
31274     // public events
31275     this.addEvents({
31276         /**
31277          * @event beforeresize
31278          * Fired before resize is allowed. Set enabled to false to cancel resize.
31279          * @param {Roo.Resizable} this
31280          * @param {Roo.EventObject} e The mousedown event
31281          */
31282         "beforeresize" : true,
31283         /**
31284          * @event resizing
31285          * Fired a resizing.
31286          * @param {Roo.Resizable} this
31287          * @param {Number} x The new x position
31288          * @param {Number} y The new y position
31289          * @param {Number} w The new w width
31290          * @param {Number} h The new h hight
31291          * @param {Roo.EventObject} e The mouseup event
31292          */
31293         "resizing" : true,
31294         /**
31295          * @event resize
31296          * Fired after a resize.
31297          * @param {Roo.Resizable} this
31298          * @param {Number} width The new width
31299          * @param {Number} height The new height
31300          * @param {Roo.EventObject} e The mouseup event
31301          */
31302         "resize" : true
31303     });
31304
31305     if(this.width !== null && this.height !== null){
31306         this.resizeTo(this.width, this.height);
31307     }else{
31308         this.updateChildSize();
31309     }
31310     if(Roo.isIE){
31311         this.el.dom.style.zoom = 1;
31312     }
31313     Roo.Resizable.superclass.constructor.call(this);
31314 };
31315
31316 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31317         resizeChild : false,
31318         adjustments : [0, 0],
31319         minWidth : 5,
31320         minHeight : 5,
31321         maxWidth : 10000,
31322         maxHeight : 10000,
31323         enabled : true,
31324         animate : false,
31325         duration : .35,
31326         dynamic : false,
31327         handles : false,
31328         multiDirectional : false,
31329         disableTrackOver : false,
31330         easing : 'easeOutStrong',
31331         widthIncrement : 0,
31332         heightIncrement : 0,
31333         pinned : false,
31334         width : null,
31335         height : null,
31336         preserveRatio : false,
31337         transparent: false,
31338         minX: 0,
31339         minY: 0,
31340         draggable: false,
31341
31342         /**
31343          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31344          */
31345         constrainTo: undefined,
31346         /**
31347          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31348          */
31349         resizeRegion: undefined,
31350
31351
31352     /**
31353      * Perform a manual resize
31354      * @param {Number} width
31355      * @param {Number} height
31356      */
31357     resizeTo : function(width, height){
31358         this.el.setSize(width, height);
31359         this.updateChildSize();
31360         this.fireEvent("resize", this, width, height, null);
31361     },
31362
31363     // private
31364     startSizing : function(e, handle){
31365         this.fireEvent("beforeresize", this, e);
31366         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31367
31368             if(!this.overlay){
31369                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31370                 this.overlay.unselectable();
31371                 this.overlay.enableDisplayMode("block");
31372                 this.overlay.on("mousemove", this.onMouseMove, this);
31373                 this.overlay.on("mouseup", this.onMouseUp, this);
31374             }
31375             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31376
31377             this.resizing = true;
31378             this.startBox = this.el.getBox();
31379             this.startPoint = e.getXY();
31380             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31381                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31382
31383             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31384             this.overlay.show();
31385
31386             if(this.constrainTo) {
31387                 var ct = Roo.get(this.constrainTo);
31388                 this.resizeRegion = ct.getRegion().adjust(
31389                     ct.getFrameWidth('t'),
31390                     ct.getFrameWidth('l'),
31391                     -ct.getFrameWidth('b'),
31392                     -ct.getFrameWidth('r')
31393                 );
31394             }
31395
31396             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31397             this.proxy.show();
31398             this.proxy.setBox(this.startBox);
31399             if(!this.dynamic){
31400                 this.proxy.setStyle('visibility', 'visible');
31401             }
31402         }
31403     },
31404
31405     // private
31406     onMouseDown : function(handle, e){
31407         if(this.enabled){
31408             e.stopEvent();
31409             this.activeHandle = handle;
31410             this.startSizing(e, handle);
31411         }
31412     },
31413
31414     // private
31415     onMouseUp : function(e){
31416         var size = this.resizeElement();
31417         this.resizing = false;
31418         this.handleOut();
31419         this.overlay.hide();
31420         this.proxy.hide();
31421         this.fireEvent("resize", this, size.width, size.height, e);
31422     },
31423
31424     // private
31425     updateChildSize : function(){
31426         
31427         if(this.resizeChild){
31428             var el = this.el;
31429             var child = this.resizeChild;
31430             var adj = this.adjustments;
31431             if(el.dom.offsetWidth){
31432                 var b = el.getSize(true);
31433                 child.setSize(b.width+adj[0], b.height+adj[1]);
31434             }
31435             // Second call here for IE
31436             // The first call enables instant resizing and
31437             // the second call corrects scroll bars if they
31438             // exist
31439             if(Roo.isIE){
31440                 setTimeout(function(){
31441                     if(el.dom.offsetWidth){
31442                         var b = el.getSize(true);
31443                         child.setSize(b.width+adj[0], b.height+adj[1]);
31444                     }
31445                 }, 10);
31446             }
31447         }
31448     },
31449
31450     // private
31451     snap : function(value, inc, min){
31452         if(!inc || !value) {
31453             return value;
31454         }
31455         var newValue = value;
31456         var m = value % inc;
31457         if(m > 0){
31458             if(m > (inc/2)){
31459                 newValue = value + (inc-m);
31460             }else{
31461                 newValue = value - m;
31462             }
31463         }
31464         return Math.max(min, newValue);
31465     },
31466
31467     // private
31468     resizeElement : function(){
31469         var box = this.proxy.getBox();
31470         if(this.updateBox){
31471             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31472         }else{
31473             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31474         }
31475         this.updateChildSize();
31476         if(!this.dynamic){
31477             this.proxy.hide();
31478         }
31479         return box;
31480     },
31481
31482     // private
31483     constrain : function(v, diff, m, mx){
31484         if(v - diff < m){
31485             diff = v - m;
31486         }else if(v - diff > mx){
31487             diff = mx - v;
31488         }
31489         return diff;
31490     },
31491
31492     // private
31493     onMouseMove : function(e){
31494         
31495         if(this.enabled){
31496             try{// try catch so if something goes wrong the user doesn't get hung
31497
31498             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31499                 return;
31500             }
31501
31502             //var curXY = this.startPoint;
31503             var curSize = this.curSize || this.startBox;
31504             var x = this.startBox.x, y = this.startBox.y;
31505             var ox = x, oy = y;
31506             var w = curSize.width, h = curSize.height;
31507             var ow = w, oh = h;
31508             var mw = this.minWidth, mh = this.minHeight;
31509             var mxw = this.maxWidth, mxh = this.maxHeight;
31510             var wi = this.widthIncrement;
31511             var hi = this.heightIncrement;
31512
31513             var eventXY = e.getXY();
31514             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31515             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31516
31517             var pos = this.activeHandle.position;
31518
31519             switch(pos){
31520                 case "east":
31521                     w += diffX;
31522                     w = Math.min(Math.max(mw, w), mxw);
31523                     break;
31524              
31525                 case "south":
31526                     h += diffY;
31527                     h = Math.min(Math.max(mh, h), mxh);
31528                     break;
31529                 case "southeast":
31530                     w += diffX;
31531                     h += diffY;
31532                     w = Math.min(Math.max(mw, w), mxw);
31533                     h = Math.min(Math.max(mh, h), mxh);
31534                     break;
31535                 case "north":
31536                     diffY = this.constrain(h, diffY, mh, mxh);
31537                     y += diffY;
31538                     h -= diffY;
31539                     break;
31540                 case "hdrag":
31541                     
31542                     if (wi) {
31543                         var adiffX = Math.abs(diffX);
31544                         var sub = (adiffX % wi); // how much 
31545                         if (sub > (wi/2)) { // far enough to snap
31546                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31547                         } else {
31548                             // remove difference.. 
31549                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31550                         }
31551                     }
31552                     x += diffX;
31553                     x = Math.max(this.minX, x);
31554                     break;
31555                 case "west":
31556                     diffX = this.constrain(w, diffX, mw, mxw);
31557                     x += diffX;
31558                     w -= diffX;
31559                     break;
31560                 case "northeast":
31561                     w += diffX;
31562                     w = Math.min(Math.max(mw, w), mxw);
31563                     diffY = this.constrain(h, diffY, mh, mxh);
31564                     y += diffY;
31565                     h -= diffY;
31566                     break;
31567                 case "northwest":
31568                     diffX = this.constrain(w, diffX, mw, mxw);
31569                     diffY = this.constrain(h, diffY, mh, mxh);
31570                     y += diffY;
31571                     h -= diffY;
31572                     x += diffX;
31573                     w -= diffX;
31574                     break;
31575                case "southwest":
31576                     diffX = this.constrain(w, diffX, mw, mxw);
31577                     h += diffY;
31578                     h = Math.min(Math.max(mh, h), mxh);
31579                     x += diffX;
31580                     w -= diffX;
31581                     break;
31582             }
31583
31584             var sw = this.snap(w, wi, mw);
31585             var sh = this.snap(h, hi, mh);
31586             if(sw != w || sh != h){
31587                 switch(pos){
31588                     case "northeast":
31589                         y -= sh - h;
31590                     break;
31591                     case "north":
31592                         y -= sh - h;
31593                         break;
31594                     case "southwest":
31595                         x -= sw - w;
31596                     break;
31597                     case "west":
31598                         x -= sw - w;
31599                         break;
31600                     case "northwest":
31601                         x -= sw - w;
31602                         y -= sh - h;
31603                     break;
31604                 }
31605                 w = sw;
31606                 h = sh;
31607             }
31608
31609             if(this.preserveRatio){
31610                 switch(pos){
31611                     case "southeast":
31612                     case "east":
31613                         h = oh * (w/ow);
31614                         h = Math.min(Math.max(mh, h), mxh);
31615                         w = ow * (h/oh);
31616                        break;
31617                     case "south":
31618                         w = ow * (h/oh);
31619                         w = Math.min(Math.max(mw, w), mxw);
31620                         h = oh * (w/ow);
31621                         break;
31622                     case "northeast":
31623                         w = ow * (h/oh);
31624                         w = Math.min(Math.max(mw, w), mxw);
31625                         h = oh * (w/ow);
31626                     break;
31627                     case "north":
31628                         var tw = w;
31629                         w = ow * (h/oh);
31630                         w = Math.min(Math.max(mw, w), mxw);
31631                         h = oh * (w/ow);
31632                         x += (tw - w) / 2;
31633                         break;
31634                     case "southwest":
31635                         h = oh * (w/ow);
31636                         h = Math.min(Math.max(mh, h), mxh);
31637                         var tw = w;
31638                         w = ow * (h/oh);
31639                         x += tw - w;
31640                         break;
31641                     case "west":
31642                         var th = h;
31643                         h = oh * (w/ow);
31644                         h = Math.min(Math.max(mh, h), mxh);
31645                         y += (th - h) / 2;
31646                         var tw = w;
31647                         w = ow * (h/oh);
31648                         x += tw - w;
31649                        break;
31650                     case "northwest":
31651                         var tw = w;
31652                         var th = h;
31653                         h = oh * (w/ow);
31654                         h = Math.min(Math.max(mh, h), mxh);
31655                         w = ow * (h/oh);
31656                         y += th - h;
31657                         x += tw - w;
31658                        break;
31659
31660                 }
31661             }
31662             if (pos == 'hdrag') {
31663                 w = ow;
31664             }
31665             this.proxy.setBounds(x, y, w, h);
31666             if(this.dynamic){
31667                 this.resizeElement();
31668             }
31669             }catch(e){}
31670         }
31671         this.fireEvent("resizing", this, x, y, w, h, e);
31672     },
31673
31674     // private
31675     handleOver : function(){
31676         if(this.enabled){
31677             this.el.addClass("x-resizable-over");
31678         }
31679     },
31680
31681     // private
31682     handleOut : function(){
31683         if(!this.resizing){
31684             this.el.removeClass("x-resizable-over");
31685         }
31686     },
31687
31688     /**
31689      * Returns the element this component is bound to.
31690      * @return {Roo.Element}
31691      */
31692     getEl : function(){
31693         return this.el;
31694     },
31695
31696     /**
31697      * Returns the resizeChild element (or null).
31698      * @return {Roo.Element}
31699      */
31700     getResizeChild : function(){
31701         return this.resizeChild;
31702     },
31703     groupHandler : function()
31704     {
31705         
31706     },
31707     /**
31708      * Destroys this resizable. If the element was wrapped and
31709      * removeEl is not true then the element remains.
31710      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31711      */
31712     destroy : function(removeEl){
31713         this.proxy.remove();
31714         if(this.overlay){
31715             this.overlay.removeAllListeners();
31716             this.overlay.remove();
31717         }
31718         var ps = Roo.Resizable.positions;
31719         for(var k in ps){
31720             if(typeof ps[k] != "function" && this[ps[k]]){
31721                 var h = this[ps[k]];
31722                 h.el.removeAllListeners();
31723                 h.el.remove();
31724             }
31725         }
31726         if(removeEl){
31727             this.el.update("");
31728             this.el.remove();
31729         }
31730     }
31731 });
31732
31733 // private
31734 // hash to map config positions to true positions
31735 Roo.Resizable.positions = {
31736     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31737     hd: "hdrag"
31738 };
31739
31740 // private
31741 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31742     if(!this.tpl){
31743         // only initialize the template if resizable is used
31744         var tpl = Roo.DomHelper.createTemplate(
31745             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31746         );
31747         tpl.compile();
31748         Roo.Resizable.Handle.prototype.tpl = tpl;
31749     }
31750     this.position = pos;
31751     this.rz = rz;
31752     // show north drag fro topdra
31753     var handlepos = pos == 'hdrag' ? 'north' : pos;
31754     
31755     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31756     if (pos == 'hdrag') {
31757         this.el.setStyle('cursor', 'pointer');
31758     }
31759     this.el.unselectable();
31760     if(transparent){
31761         this.el.setOpacity(0);
31762     }
31763     this.el.on("mousedown", this.onMouseDown, this);
31764     if(!disableTrackOver){
31765         this.el.on("mouseover", this.onMouseOver, this);
31766         this.el.on("mouseout", this.onMouseOut, this);
31767     }
31768 };
31769
31770 // private
31771 Roo.Resizable.Handle.prototype = {
31772     afterResize : function(rz){
31773         Roo.log('after?');
31774         // do nothing
31775     },
31776     // private
31777     onMouseDown : function(e){
31778         this.rz.onMouseDown(this, e);
31779     },
31780     // private
31781     onMouseOver : function(e){
31782         this.rz.handleOver(this, e);
31783     },
31784     // private
31785     onMouseOut : function(e){
31786         this.rz.handleOut(this, e);
31787     }
31788 };/*
31789  * Based on:
31790  * Ext JS Library 1.1.1
31791  * Copyright(c) 2006-2007, Ext JS, LLC.
31792  *
31793  * Originally Released Under LGPL - original licence link has changed is not relivant.
31794  *
31795  * Fork - LGPL
31796  * <script type="text/javascript">
31797  */
31798
31799 /**
31800  * @class Roo.Editor
31801  * @extends Roo.Component
31802  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31803  * @constructor
31804  * Create a new Editor
31805  * @param {Roo.form.Field} field The Field object (or descendant)
31806  * @param {Object} config The config object
31807  */
31808 Roo.Editor = function(field, config){
31809     Roo.Editor.superclass.constructor.call(this, config);
31810     this.field = field;
31811     this.addEvents({
31812         /**
31813              * @event beforestartedit
31814              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31815              * false from the handler of this event.
31816              * @param {Editor} this
31817              * @param {Roo.Element} boundEl The underlying element bound to this editor
31818              * @param {Mixed} value The field value being set
31819              */
31820         "beforestartedit" : true,
31821         /**
31822              * @event startedit
31823              * Fires when this editor is displayed
31824              * @param {Roo.Element} boundEl The underlying element bound to this editor
31825              * @param {Mixed} value The starting field value
31826              */
31827         "startedit" : true,
31828         /**
31829              * @event beforecomplete
31830              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31831              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31832              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31833              * event will not fire since no edit actually occurred.
31834              * @param {Editor} this
31835              * @param {Mixed} value The current field value
31836              * @param {Mixed} startValue The original field value
31837              */
31838         "beforecomplete" : true,
31839         /**
31840              * @event complete
31841              * Fires after editing is complete and any changed value has been written to the underlying field.
31842              * @param {Editor} this
31843              * @param {Mixed} value The current field value
31844              * @param {Mixed} startValue The original field value
31845              */
31846         "complete" : true,
31847         /**
31848          * @event specialkey
31849          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31850          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31851          * @param {Roo.form.Field} this
31852          * @param {Roo.EventObject} e The event object
31853          */
31854         "specialkey" : true
31855     });
31856 };
31857
31858 Roo.extend(Roo.Editor, Roo.Component, {
31859     /**
31860      * @cfg {Boolean/String} autosize
31861      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31862      * or "height" to adopt the height only (defaults to false)
31863      */
31864     /**
31865      * @cfg {Boolean} revertInvalid
31866      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31867      * validation fails (defaults to true)
31868      */
31869     /**
31870      * @cfg {Boolean} ignoreNoChange
31871      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31872      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31873      * will never be ignored.
31874      */
31875     /**
31876      * @cfg {Boolean} hideEl
31877      * False to keep the bound element visible while the editor is displayed (defaults to true)
31878      */
31879     /**
31880      * @cfg {Mixed} value
31881      * The data value of the underlying field (defaults to "")
31882      */
31883     value : "",
31884     /**
31885      * @cfg {String} alignment
31886      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31887      */
31888     alignment: "c-c?",
31889     /**
31890      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31891      * for bottom-right shadow (defaults to "frame")
31892      */
31893     shadow : "frame",
31894     /**
31895      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31896      */
31897     constrain : false,
31898     /**
31899      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31900      */
31901     completeOnEnter : false,
31902     /**
31903      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31904      */
31905     cancelOnEsc : false,
31906     /**
31907      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31908      */
31909     updateEl : false,
31910
31911     // private
31912     onRender : function(ct, position){
31913         this.el = new Roo.Layer({
31914             shadow: this.shadow,
31915             cls: "x-editor",
31916             parentEl : ct,
31917             shim : this.shim,
31918             shadowOffset:4,
31919             id: this.id,
31920             constrain: this.constrain
31921         });
31922         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31923         if(this.field.msgTarget != 'title'){
31924             this.field.msgTarget = 'qtip';
31925         }
31926         this.field.render(this.el);
31927         if(Roo.isGecko){
31928             this.field.el.dom.setAttribute('autocomplete', 'off');
31929         }
31930         this.field.on("specialkey", this.onSpecialKey, this);
31931         if(this.swallowKeys){
31932             this.field.el.swallowEvent(['keydown','keypress']);
31933         }
31934         this.field.show();
31935         this.field.on("blur", this.onBlur, this);
31936         if(this.field.grow){
31937             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31938         }
31939     },
31940
31941     onSpecialKey : function(field, e)
31942     {
31943         //Roo.log('editor onSpecialKey');
31944         if(this.completeOnEnter && e.getKey() == e.ENTER){
31945             e.stopEvent();
31946             this.completeEdit();
31947             return;
31948         }
31949         // do not fire special key otherwise it might hide close the editor...
31950         if(e.getKey() == e.ENTER){    
31951             return;
31952         }
31953         if(this.cancelOnEsc && e.getKey() == e.ESC){
31954             this.cancelEdit();
31955             return;
31956         } 
31957         this.fireEvent('specialkey', field, e);
31958     
31959     },
31960
31961     /**
31962      * Starts the editing process and shows the editor.
31963      * @param {String/HTMLElement/Element} el The element to edit
31964      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31965       * to the innerHTML of el.
31966      */
31967     startEdit : function(el, value){
31968         if(this.editing){
31969             this.completeEdit();
31970         }
31971         this.boundEl = Roo.get(el);
31972         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31973         if(!this.rendered){
31974             this.render(this.parentEl || document.body);
31975         }
31976         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31977             return;
31978         }
31979         this.startValue = v;
31980         this.field.setValue(v);
31981         if(this.autoSize){
31982             var sz = this.boundEl.getSize();
31983             switch(this.autoSize){
31984                 case "width":
31985                 this.setSize(sz.width,  "");
31986                 break;
31987                 case "height":
31988                 this.setSize("",  sz.height);
31989                 break;
31990                 default:
31991                 this.setSize(sz.width,  sz.height);
31992             }
31993         }
31994         this.el.alignTo(this.boundEl, this.alignment);
31995         this.editing = true;
31996         if(Roo.QuickTips){
31997             Roo.QuickTips.disable();
31998         }
31999         this.show();
32000     },
32001
32002     /**
32003      * Sets the height and width of this editor.
32004      * @param {Number} width The new width
32005      * @param {Number} height The new height
32006      */
32007     setSize : function(w, h){
32008         this.field.setSize(w, h);
32009         if(this.el){
32010             this.el.sync();
32011         }
32012     },
32013
32014     /**
32015      * Realigns the editor to the bound field based on the current alignment config value.
32016      */
32017     realign : function(){
32018         this.el.alignTo(this.boundEl, this.alignment);
32019     },
32020
32021     /**
32022      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
32023      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
32024      */
32025     completeEdit : function(remainVisible){
32026         if(!this.editing){
32027             return;
32028         }
32029         var v = this.getValue();
32030         if(this.revertInvalid !== false && !this.field.isValid()){
32031             v = this.startValue;
32032             this.cancelEdit(true);
32033         }
32034         if(String(v) === String(this.startValue) && this.ignoreNoChange){
32035             this.editing = false;
32036             this.hide();
32037             return;
32038         }
32039         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
32040             this.editing = false;
32041             if(this.updateEl && this.boundEl){
32042                 this.boundEl.update(v);
32043             }
32044             if(remainVisible !== true){
32045                 this.hide();
32046             }
32047             this.fireEvent("complete", this, v, this.startValue);
32048         }
32049     },
32050
32051     // private
32052     onShow : function(){
32053         this.el.show();
32054         if(this.hideEl !== false){
32055             this.boundEl.hide();
32056         }
32057         this.field.show();
32058         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
32059             this.fixIEFocus = true;
32060             this.deferredFocus.defer(50, this);
32061         }else{
32062             this.field.focus();
32063         }
32064         this.fireEvent("startedit", this.boundEl, this.startValue);
32065     },
32066
32067     deferredFocus : function(){
32068         if(this.editing){
32069             this.field.focus();
32070         }
32071     },
32072
32073     /**
32074      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
32075      * reverted to the original starting value.
32076      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
32077      * cancel (defaults to false)
32078      */
32079     cancelEdit : function(remainVisible){
32080         if(this.editing){
32081             this.setValue(this.startValue);
32082             if(remainVisible !== true){
32083                 this.hide();
32084             }
32085         }
32086     },
32087
32088     // private
32089     onBlur : function(){
32090         if(this.allowBlur !== true && this.editing){
32091             this.completeEdit();
32092         }
32093     },
32094
32095     // private
32096     onHide : function(){
32097         if(this.editing){
32098             this.completeEdit();
32099             return;
32100         }
32101         this.field.blur();
32102         if(this.field.collapse){
32103             this.field.collapse();
32104         }
32105         this.el.hide();
32106         if(this.hideEl !== false){
32107             this.boundEl.show();
32108         }
32109         if(Roo.QuickTips){
32110             Roo.QuickTips.enable();
32111         }
32112     },
32113
32114     /**
32115      * Sets the data value of the editor
32116      * @param {Mixed} value Any valid value supported by the underlying field
32117      */
32118     setValue : function(v){
32119         this.field.setValue(v);
32120     },
32121
32122     /**
32123      * Gets the data value of the editor
32124      * @return {Mixed} The data value
32125      */
32126     getValue : function(){
32127         return this.field.getValue();
32128     }
32129 });/*
32130  * Based on:
32131  * Ext JS Library 1.1.1
32132  * Copyright(c) 2006-2007, Ext JS, LLC.
32133  *
32134  * Originally Released Under LGPL - original licence link has changed is not relivant.
32135  *
32136  * Fork - LGPL
32137  * <script type="text/javascript">
32138  */
32139  
32140 /**
32141  * @class Roo.BasicDialog
32142  * @extends Roo.util.Observable
32143  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
32144  * <pre><code>
32145 var dlg = new Roo.BasicDialog("my-dlg", {
32146     height: 200,
32147     width: 300,
32148     minHeight: 100,
32149     minWidth: 150,
32150     modal: true,
32151     proxyDrag: true,
32152     shadow: true
32153 });
32154 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32155 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32156 dlg.addButton('Cancel', dlg.hide, dlg);
32157 dlg.show();
32158 </code></pre>
32159   <b>A Dialog should always be a direct child of the body element.</b>
32160  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32161  * @cfg {String} title Default text to display in the title bar (defaults to null)
32162  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32163  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32164  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32165  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32166  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32167  * (defaults to null with no animation)
32168  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32169  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32170  * property for valid values (defaults to 'all')
32171  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32172  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32173  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32174  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32175  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32176  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32177  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32178  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32179  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32180  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32181  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32182  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32183  * draggable = true (defaults to false)
32184  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32185  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32186  * shadow (defaults to false)
32187  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32188  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32189  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32190  * @cfg {Array} buttons Array of buttons
32191  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32192  * @constructor
32193  * Create a new BasicDialog.
32194  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32195  * @param {Object} config Configuration options
32196  */
32197 Roo.BasicDialog = function(el, config){
32198     this.el = Roo.get(el);
32199     var dh = Roo.DomHelper;
32200     if(!this.el && config && config.autoCreate){
32201         if(typeof config.autoCreate == "object"){
32202             if(!config.autoCreate.id){
32203                 config.autoCreate.id = el;
32204             }
32205             this.el = dh.append(document.body,
32206                         config.autoCreate, true);
32207         }else{
32208             this.el = dh.append(document.body,
32209                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32210         }
32211     }
32212     el = this.el;
32213     el.setDisplayed(true);
32214     el.hide = this.hideAction;
32215     this.id = el.id;
32216     el.addClass("x-dlg");
32217
32218     Roo.apply(this, config);
32219
32220     this.proxy = el.createProxy("x-dlg-proxy");
32221     this.proxy.hide = this.hideAction;
32222     this.proxy.setOpacity(.5);
32223     this.proxy.hide();
32224
32225     if(config.width){
32226         el.setWidth(config.width);
32227     }
32228     if(config.height){
32229         el.setHeight(config.height);
32230     }
32231     this.size = el.getSize();
32232     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32233         this.xy = [config.x,config.y];
32234     }else{
32235         this.xy = el.getCenterXY(true);
32236     }
32237     /** The header element @type Roo.Element */
32238     this.header = el.child("> .x-dlg-hd");
32239     /** The body element @type Roo.Element */
32240     this.body = el.child("> .x-dlg-bd");
32241     /** The footer element @type Roo.Element */
32242     this.footer = el.child("> .x-dlg-ft");
32243
32244     if(!this.header){
32245         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32246     }
32247     if(!this.body){
32248         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32249     }
32250
32251     this.header.unselectable();
32252     if(this.title){
32253         this.header.update(this.title);
32254     }
32255     // this element allows the dialog to be focused for keyboard event
32256     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32257     this.focusEl.swallowEvent("click", true);
32258
32259     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32260
32261     // wrap the body and footer for special rendering
32262     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32263     if(this.footer){
32264         this.bwrap.dom.appendChild(this.footer.dom);
32265     }
32266
32267     this.bg = this.el.createChild({
32268         tag: "div", cls:"x-dlg-bg",
32269         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32270     });
32271     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32272
32273
32274     if(this.autoScroll !== false && !this.autoTabs){
32275         this.body.setStyle("overflow", "auto");
32276     }
32277
32278     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32279
32280     if(this.closable !== false){
32281         this.el.addClass("x-dlg-closable");
32282         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32283         this.close.on("click", this.closeClick, this);
32284         this.close.addClassOnOver("x-dlg-close-over");
32285     }
32286     if(this.collapsible !== false){
32287         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32288         this.collapseBtn.on("click", this.collapseClick, this);
32289         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32290         this.header.on("dblclick", this.collapseClick, this);
32291     }
32292     if(this.resizable !== false){
32293         this.el.addClass("x-dlg-resizable");
32294         this.resizer = new Roo.Resizable(el, {
32295             minWidth: this.minWidth || 80,
32296             minHeight:this.minHeight || 80,
32297             handles: this.resizeHandles || "all",
32298             pinned: true
32299         });
32300         this.resizer.on("beforeresize", this.beforeResize, this);
32301         this.resizer.on("resize", this.onResize, this);
32302     }
32303     if(this.draggable !== false){
32304         el.addClass("x-dlg-draggable");
32305         if (!this.proxyDrag) {
32306             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32307         }
32308         else {
32309             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32310         }
32311         dd.setHandleElId(this.header.id);
32312         dd.endDrag = this.endMove.createDelegate(this);
32313         dd.startDrag = this.startMove.createDelegate(this);
32314         dd.onDrag = this.onDrag.createDelegate(this);
32315         dd.scroll = false;
32316         this.dd = dd;
32317     }
32318     if(this.modal){
32319         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32320         this.mask.enableDisplayMode("block");
32321         this.mask.hide();
32322         this.el.addClass("x-dlg-modal");
32323     }
32324     if(this.shadow){
32325         this.shadow = new Roo.Shadow({
32326             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32327             offset : this.shadowOffset
32328         });
32329     }else{
32330         this.shadowOffset = 0;
32331     }
32332     if(Roo.useShims && this.shim !== false){
32333         this.shim = this.el.createShim();
32334         this.shim.hide = this.hideAction;
32335         this.shim.hide();
32336     }else{
32337         this.shim = false;
32338     }
32339     if(this.autoTabs){
32340         this.initTabs();
32341     }
32342     if (this.buttons) { 
32343         var bts= this.buttons;
32344         this.buttons = [];
32345         Roo.each(bts, function(b) {
32346             this.addButton(b);
32347         }, this);
32348     }
32349     
32350     
32351     this.addEvents({
32352         /**
32353          * @event keydown
32354          * Fires when a key is pressed
32355          * @param {Roo.BasicDialog} this
32356          * @param {Roo.EventObject} e
32357          */
32358         "keydown" : true,
32359         /**
32360          * @event move
32361          * Fires when this dialog is moved by the user.
32362          * @param {Roo.BasicDialog} this
32363          * @param {Number} x The new page X
32364          * @param {Number} y The new page Y
32365          */
32366         "move" : true,
32367         /**
32368          * @event resize
32369          * Fires when this dialog is resized by the user.
32370          * @param {Roo.BasicDialog} this
32371          * @param {Number} width The new width
32372          * @param {Number} height The new height
32373          */
32374         "resize" : true,
32375         /**
32376          * @event beforehide
32377          * Fires before this dialog is hidden.
32378          * @param {Roo.BasicDialog} this
32379          */
32380         "beforehide" : true,
32381         /**
32382          * @event hide
32383          * Fires when this dialog is hidden.
32384          * @param {Roo.BasicDialog} this
32385          */
32386         "hide" : true,
32387         /**
32388          * @event beforeshow
32389          * Fires before this dialog is shown.
32390          * @param {Roo.BasicDialog} this
32391          */
32392         "beforeshow" : true,
32393         /**
32394          * @event show
32395          * Fires when this dialog is shown.
32396          * @param {Roo.BasicDialog} this
32397          */
32398         "show" : true
32399     });
32400     el.on("keydown", this.onKeyDown, this);
32401     el.on("mousedown", this.toFront, this);
32402     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32403     this.el.hide();
32404     Roo.DialogManager.register(this);
32405     Roo.BasicDialog.superclass.constructor.call(this);
32406 };
32407
32408 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32409     shadowOffset: Roo.isIE ? 6 : 5,
32410     minHeight: 80,
32411     minWidth: 200,
32412     minButtonWidth: 75,
32413     defaultButton: null,
32414     buttonAlign: "right",
32415     tabTag: 'div',
32416     firstShow: true,
32417
32418     /**
32419      * Sets the dialog title text
32420      * @param {String} text The title text to display
32421      * @return {Roo.BasicDialog} this
32422      */
32423     setTitle : function(text){
32424         this.header.update(text);
32425         return this;
32426     },
32427
32428     // private
32429     closeClick : function(){
32430         this.hide();
32431     },
32432
32433     // private
32434     collapseClick : function(){
32435         this[this.collapsed ? "expand" : "collapse"]();
32436     },
32437
32438     /**
32439      * Collapses the dialog to its minimized state (only the title bar is visible).
32440      * Equivalent to the user clicking the collapse dialog button.
32441      */
32442     collapse : function(){
32443         if(!this.collapsed){
32444             this.collapsed = true;
32445             this.el.addClass("x-dlg-collapsed");
32446             this.restoreHeight = this.el.getHeight();
32447             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32448         }
32449     },
32450
32451     /**
32452      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32453      * clicking the expand dialog button.
32454      */
32455     expand : function(){
32456         if(this.collapsed){
32457             this.collapsed = false;
32458             this.el.removeClass("x-dlg-collapsed");
32459             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32460         }
32461     },
32462
32463     /**
32464      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32465      * @return {Roo.TabPanel} The tabs component
32466      */
32467     initTabs : function(){
32468         var tabs = this.getTabs();
32469         while(tabs.getTab(0)){
32470             tabs.removeTab(0);
32471         }
32472         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32473             var dom = el.dom;
32474             tabs.addTab(Roo.id(dom), dom.title);
32475             dom.title = "";
32476         });
32477         tabs.activate(0);
32478         return tabs;
32479     },
32480
32481     // private
32482     beforeResize : function(){
32483         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32484     },
32485
32486     // private
32487     onResize : function(){
32488         this.refreshSize();
32489         this.syncBodyHeight();
32490         this.adjustAssets();
32491         this.focus();
32492         this.fireEvent("resize", this, this.size.width, this.size.height);
32493     },
32494
32495     // private
32496     onKeyDown : function(e){
32497         if(this.isVisible()){
32498             this.fireEvent("keydown", this, e);
32499         }
32500     },
32501
32502     /**
32503      * Resizes the dialog.
32504      * @param {Number} width
32505      * @param {Number} height
32506      * @return {Roo.BasicDialog} this
32507      */
32508     resizeTo : function(width, height){
32509         this.el.setSize(width, height);
32510         this.size = {width: width, height: height};
32511         this.syncBodyHeight();
32512         if(this.fixedcenter){
32513             this.center();
32514         }
32515         if(this.isVisible()){
32516             this.constrainXY();
32517             this.adjustAssets();
32518         }
32519         this.fireEvent("resize", this, width, height);
32520         return this;
32521     },
32522
32523
32524     /**
32525      * Resizes the dialog to fit the specified content size.
32526      * @param {Number} width
32527      * @param {Number} height
32528      * @return {Roo.BasicDialog} this
32529      */
32530     setContentSize : function(w, h){
32531         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32532         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32533         //if(!this.el.isBorderBox()){
32534             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32535             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32536         //}
32537         if(this.tabs){
32538             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32539             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32540         }
32541         this.resizeTo(w, h);
32542         return this;
32543     },
32544
32545     /**
32546      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32547      * executed in response to a particular key being pressed while the dialog is active.
32548      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32549      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32550      * @param {Function} fn The function to call
32551      * @param {Object} scope (optional) The scope of the function
32552      * @return {Roo.BasicDialog} this
32553      */
32554     addKeyListener : function(key, fn, scope){
32555         var keyCode, shift, ctrl, alt;
32556         if(typeof key == "object" && !(key instanceof Array)){
32557             keyCode = key["key"];
32558             shift = key["shift"];
32559             ctrl = key["ctrl"];
32560             alt = key["alt"];
32561         }else{
32562             keyCode = key;
32563         }
32564         var handler = function(dlg, e){
32565             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32566                 var k = e.getKey();
32567                 if(keyCode instanceof Array){
32568                     for(var i = 0, len = keyCode.length; i < len; i++){
32569                         if(keyCode[i] == k){
32570                           fn.call(scope || window, dlg, k, e);
32571                           return;
32572                         }
32573                     }
32574                 }else{
32575                     if(k == keyCode){
32576                         fn.call(scope || window, dlg, k, e);
32577                     }
32578                 }
32579             }
32580         };
32581         this.on("keydown", handler);
32582         return this;
32583     },
32584
32585     /**
32586      * Returns the TabPanel component (creates it if it doesn't exist).
32587      * Note: If you wish to simply check for the existence of tabs without creating them,
32588      * check for a null 'tabs' property.
32589      * @return {Roo.TabPanel} The tabs component
32590      */
32591     getTabs : function(){
32592         if(!this.tabs){
32593             this.el.addClass("x-dlg-auto-tabs");
32594             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32595             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32596         }
32597         return this.tabs;
32598     },
32599
32600     /**
32601      * Adds a button to the footer section of the dialog.
32602      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32603      * object or a valid Roo.DomHelper element config
32604      * @param {Function} handler The function called when the button is clicked
32605      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32606      * @return {Roo.Button} The new button
32607      */
32608     addButton : function(config, handler, scope){
32609         var dh = Roo.DomHelper;
32610         if(!this.footer){
32611             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32612         }
32613         if(!this.btnContainer){
32614             var tb = this.footer.createChild({
32615
32616                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32617                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32618             }, null, true);
32619             this.btnContainer = tb.firstChild.firstChild.firstChild;
32620         }
32621         var bconfig = {
32622             handler: handler,
32623             scope: scope,
32624             minWidth: this.minButtonWidth,
32625             hideParent:true
32626         };
32627         if(typeof config == "string"){
32628             bconfig.text = config;
32629         }else{
32630             if(config.tag){
32631                 bconfig.dhconfig = config;
32632             }else{
32633                 Roo.apply(bconfig, config);
32634             }
32635         }
32636         var fc = false;
32637         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32638             bconfig.position = Math.max(0, bconfig.position);
32639             fc = this.btnContainer.childNodes[bconfig.position];
32640         }
32641          
32642         var btn = new Roo.Button(
32643             fc ? 
32644                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32645                 : this.btnContainer.appendChild(document.createElement("td")),
32646             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32647             bconfig
32648         );
32649         this.syncBodyHeight();
32650         if(!this.buttons){
32651             /**
32652              * Array of all the buttons that have been added to this dialog via addButton
32653              * @type Array
32654              */
32655             this.buttons = [];
32656         }
32657         this.buttons.push(btn);
32658         return btn;
32659     },
32660
32661     /**
32662      * Sets the default button to be focused when the dialog is displayed.
32663      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32664      * @return {Roo.BasicDialog} this
32665      */
32666     setDefaultButton : function(btn){
32667         this.defaultButton = btn;
32668         return this;
32669     },
32670
32671     // private
32672     getHeaderFooterHeight : function(safe){
32673         var height = 0;
32674         if(this.header){
32675            height += this.header.getHeight();
32676         }
32677         if(this.footer){
32678            var fm = this.footer.getMargins();
32679             height += (this.footer.getHeight()+fm.top+fm.bottom);
32680         }
32681         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32682         height += this.centerBg.getPadding("tb");
32683         return height;
32684     },
32685
32686     // private
32687     syncBodyHeight : function()
32688     {
32689         var bd = this.body, // the text
32690             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32691             bw = this.bwrap;
32692         var height = this.size.height - this.getHeaderFooterHeight(false);
32693         bd.setHeight(height-bd.getMargins("tb"));
32694         var hh = this.header.getHeight();
32695         var h = this.size.height-hh;
32696         cb.setHeight(h);
32697         
32698         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32699         bw.setHeight(h-cb.getPadding("tb"));
32700         
32701         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32702         bd.setWidth(bw.getWidth(true));
32703         if(this.tabs){
32704             this.tabs.syncHeight();
32705             if(Roo.isIE){
32706                 this.tabs.el.repaint();
32707             }
32708         }
32709     },
32710
32711     /**
32712      * Restores the previous state of the dialog if Roo.state is configured.
32713      * @return {Roo.BasicDialog} this
32714      */
32715     restoreState : function(){
32716         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32717         if(box && box.width){
32718             this.xy = [box.x, box.y];
32719             this.resizeTo(box.width, box.height);
32720         }
32721         return this;
32722     },
32723
32724     // private
32725     beforeShow : function(){
32726         this.expand();
32727         if(this.fixedcenter){
32728             this.xy = this.el.getCenterXY(true);
32729         }
32730         if(this.modal){
32731             Roo.get(document.body).addClass("x-body-masked");
32732             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32733             this.mask.show();
32734         }
32735         this.constrainXY();
32736     },
32737
32738     // private
32739     animShow : function(){
32740         var b = Roo.get(this.animateTarget).getBox();
32741         this.proxy.setSize(b.width, b.height);
32742         this.proxy.setLocation(b.x, b.y);
32743         this.proxy.show();
32744         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32745                     true, .35, this.showEl.createDelegate(this));
32746     },
32747
32748     /**
32749      * Shows the dialog.
32750      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32751      * @return {Roo.BasicDialog} this
32752      */
32753     show : function(animateTarget){
32754         if (this.fireEvent("beforeshow", this) === false){
32755             return;
32756         }
32757         if(this.syncHeightBeforeShow){
32758             this.syncBodyHeight();
32759         }else if(this.firstShow){
32760             this.firstShow = false;
32761             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32762         }
32763         this.animateTarget = animateTarget || this.animateTarget;
32764         if(!this.el.isVisible()){
32765             this.beforeShow();
32766             if(this.animateTarget && Roo.get(this.animateTarget)){
32767                 this.animShow();
32768             }else{
32769                 this.showEl();
32770             }
32771         }
32772         return this;
32773     },
32774
32775     // private
32776     showEl : function(){
32777         this.proxy.hide();
32778         this.el.setXY(this.xy);
32779         this.el.show();
32780         this.adjustAssets(true);
32781         this.toFront();
32782         this.focus();
32783         // IE peekaboo bug - fix found by Dave Fenwick
32784         if(Roo.isIE){
32785             this.el.repaint();
32786         }
32787         this.fireEvent("show", this);
32788     },
32789
32790     /**
32791      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32792      * dialog itself will receive focus.
32793      */
32794     focus : function(){
32795         if(this.defaultButton){
32796             this.defaultButton.focus();
32797         }else{
32798             this.focusEl.focus();
32799         }
32800     },
32801
32802     // private
32803     constrainXY : function(){
32804         if(this.constraintoviewport !== false){
32805             if(!this.viewSize){
32806                 if(this.container){
32807                     var s = this.container.getSize();
32808                     this.viewSize = [s.width, s.height];
32809                 }else{
32810                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32811                 }
32812             }
32813             var s = Roo.get(this.container||document).getScroll();
32814
32815             var x = this.xy[0], y = this.xy[1];
32816             var w = this.size.width, h = this.size.height;
32817             var vw = this.viewSize[0], vh = this.viewSize[1];
32818             // only move it if it needs it
32819             var moved = false;
32820             // first validate right/bottom
32821             if(x + w > vw+s.left){
32822                 x = vw - w;
32823                 moved = true;
32824             }
32825             if(y + h > vh+s.top){
32826                 y = vh - h;
32827                 moved = true;
32828             }
32829             // then make sure top/left isn't negative
32830             if(x < s.left){
32831                 x = s.left;
32832                 moved = true;
32833             }
32834             if(y < s.top){
32835                 y = s.top;
32836                 moved = true;
32837             }
32838             if(moved){
32839                 // cache xy
32840                 this.xy = [x, y];
32841                 if(this.isVisible()){
32842                     this.el.setLocation(x, y);
32843                     this.adjustAssets();
32844                 }
32845             }
32846         }
32847     },
32848
32849     // private
32850     onDrag : function(){
32851         if(!this.proxyDrag){
32852             this.xy = this.el.getXY();
32853             this.adjustAssets();
32854         }
32855     },
32856
32857     // private
32858     adjustAssets : function(doShow){
32859         var x = this.xy[0], y = this.xy[1];
32860         var w = this.size.width, h = this.size.height;
32861         if(doShow === true){
32862             if(this.shadow){
32863                 this.shadow.show(this.el);
32864             }
32865             if(this.shim){
32866                 this.shim.show();
32867             }
32868         }
32869         if(this.shadow && this.shadow.isVisible()){
32870             this.shadow.show(this.el);
32871         }
32872         if(this.shim && this.shim.isVisible()){
32873             this.shim.setBounds(x, y, w, h);
32874         }
32875     },
32876
32877     // private
32878     adjustViewport : function(w, h){
32879         if(!w || !h){
32880             w = Roo.lib.Dom.getViewWidth();
32881             h = Roo.lib.Dom.getViewHeight();
32882         }
32883         // cache the size
32884         this.viewSize = [w, h];
32885         if(this.modal && this.mask.isVisible()){
32886             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32887             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32888         }
32889         if(this.isVisible()){
32890             this.constrainXY();
32891         }
32892     },
32893
32894     /**
32895      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32896      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32897      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32898      */
32899     destroy : function(removeEl){
32900         if(this.isVisible()){
32901             this.animateTarget = null;
32902             this.hide();
32903         }
32904         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32905         if(this.tabs){
32906             this.tabs.destroy(removeEl);
32907         }
32908         Roo.destroy(
32909              this.shim,
32910              this.proxy,
32911              this.resizer,
32912              this.close,
32913              this.mask
32914         );
32915         if(this.dd){
32916             this.dd.unreg();
32917         }
32918         if(this.buttons){
32919            for(var i = 0, len = this.buttons.length; i < len; i++){
32920                this.buttons[i].destroy();
32921            }
32922         }
32923         this.el.removeAllListeners();
32924         if(removeEl === true){
32925             this.el.update("");
32926             this.el.remove();
32927         }
32928         Roo.DialogManager.unregister(this);
32929     },
32930
32931     // private
32932     startMove : function(){
32933         if(this.proxyDrag){
32934             this.proxy.show();
32935         }
32936         if(this.constraintoviewport !== false){
32937             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32938         }
32939     },
32940
32941     // private
32942     endMove : function(){
32943         if(!this.proxyDrag){
32944             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32945         }else{
32946             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32947             this.proxy.hide();
32948         }
32949         this.refreshSize();
32950         this.adjustAssets();
32951         this.focus();
32952         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32953     },
32954
32955     /**
32956      * Brings this dialog to the front of any other visible dialogs
32957      * @return {Roo.BasicDialog} this
32958      */
32959     toFront : function(){
32960         Roo.DialogManager.bringToFront(this);
32961         return this;
32962     },
32963
32964     /**
32965      * Sends this dialog to the back (under) of any other visible dialogs
32966      * @return {Roo.BasicDialog} this
32967      */
32968     toBack : function(){
32969         Roo.DialogManager.sendToBack(this);
32970         return this;
32971     },
32972
32973     /**
32974      * Centers this dialog in the viewport
32975      * @return {Roo.BasicDialog} this
32976      */
32977     center : function(){
32978         var xy = this.el.getCenterXY(true);
32979         this.moveTo(xy[0], xy[1]);
32980         return this;
32981     },
32982
32983     /**
32984      * Moves the dialog's top-left corner to the specified point
32985      * @param {Number} x
32986      * @param {Number} y
32987      * @return {Roo.BasicDialog} this
32988      */
32989     moveTo : function(x, y){
32990         this.xy = [x,y];
32991         if(this.isVisible()){
32992             this.el.setXY(this.xy);
32993             this.adjustAssets();
32994         }
32995         return this;
32996     },
32997
32998     /**
32999      * Aligns the dialog to the specified element
33000      * @param {String/HTMLElement/Roo.Element} element The element to align to.
33001      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
33002      * @param {Array} offsets (optional) Offset the positioning by [x, y]
33003      * @return {Roo.BasicDialog} this
33004      */
33005     alignTo : function(element, position, offsets){
33006         this.xy = this.el.getAlignToXY(element, position, offsets);
33007         if(this.isVisible()){
33008             this.el.setXY(this.xy);
33009             this.adjustAssets();
33010         }
33011         return this;
33012     },
33013
33014     /**
33015      * Anchors an element to another element and realigns it when the window is resized.
33016      * @param {String/HTMLElement/Roo.Element} element The element to align to.
33017      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
33018      * @param {Array} offsets (optional) Offset the positioning by [x, y]
33019      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
33020      * is a number, it is used as the buffer delay (defaults to 50ms).
33021      * @return {Roo.BasicDialog} this
33022      */
33023     anchorTo : function(el, alignment, offsets, monitorScroll){
33024         var action = function(){
33025             this.alignTo(el, alignment, offsets);
33026         };
33027         Roo.EventManager.onWindowResize(action, this);
33028         var tm = typeof monitorScroll;
33029         if(tm != 'undefined'){
33030             Roo.EventManager.on(window, 'scroll', action, this,
33031                 {buffer: tm == 'number' ? monitorScroll : 50});
33032         }
33033         action.call(this);
33034         return this;
33035     },
33036
33037     /**
33038      * Returns true if the dialog is visible
33039      * @return {Boolean}
33040      */
33041     isVisible : function(){
33042         return this.el.isVisible();
33043     },
33044
33045     // private
33046     animHide : function(callback){
33047         var b = Roo.get(this.animateTarget).getBox();
33048         this.proxy.show();
33049         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
33050         this.el.hide();
33051         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
33052                     this.hideEl.createDelegate(this, [callback]));
33053     },
33054
33055     /**
33056      * Hides the dialog.
33057      * @param {Function} callback (optional) Function to call when the dialog is hidden
33058      * @return {Roo.BasicDialog} this
33059      */
33060     hide : function(callback){
33061         if (this.fireEvent("beforehide", this) === false){
33062             return;
33063         }
33064         if(this.shadow){
33065             this.shadow.hide();
33066         }
33067         if(this.shim) {
33068           this.shim.hide();
33069         }
33070         // sometimes animateTarget seems to get set.. causing problems...
33071         // this just double checks..
33072         if(this.animateTarget && Roo.get(this.animateTarget)) {
33073            this.animHide(callback);
33074         }else{
33075             this.el.hide();
33076             this.hideEl(callback);
33077         }
33078         return this;
33079     },
33080
33081     // private
33082     hideEl : function(callback){
33083         this.proxy.hide();
33084         if(this.modal){
33085             this.mask.hide();
33086             Roo.get(document.body).removeClass("x-body-masked");
33087         }
33088         this.fireEvent("hide", this);
33089         if(typeof callback == "function"){
33090             callback();
33091         }
33092     },
33093
33094     // private
33095     hideAction : function(){
33096         this.setLeft("-10000px");
33097         this.setTop("-10000px");
33098         this.setStyle("visibility", "hidden");
33099     },
33100
33101     // private
33102     refreshSize : function(){
33103         this.size = this.el.getSize();
33104         this.xy = this.el.getXY();
33105         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
33106     },
33107
33108     // private
33109     // z-index is managed by the DialogManager and may be overwritten at any time
33110     setZIndex : function(index){
33111         if(this.modal){
33112             this.mask.setStyle("z-index", index);
33113         }
33114         if(this.shim){
33115             this.shim.setStyle("z-index", ++index);
33116         }
33117         if(this.shadow){
33118             this.shadow.setZIndex(++index);
33119         }
33120         this.el.setStyle("z-index", ++index);
33121         if(this.proxy){
33122             this.proxy.setStyle("z-index", ++index);
33123         }
33124         if(this.resizer){
33125             this.resizer.proxy.setStyle("z-index", ++index);
33126         }
33127
33128         this.lastZIndex = index;
33129     },
33130
33131     /**
33132      * Returns the element for this dialog
33133      * @return {Roo.Element} The underlying dialog Element
33134      */
33135     getEl : function(){
33136         return this.el;
33137     }
33138 });
33139
33140 /**
33141  * @class Roo.DialogManager
33142  * Provides global access to BasicDialogs that have been created and
33143  * support for z-indexing (layering) multiple open dialogs.
33144  */
33145 Roo.DialogManager = function(){
33146     var list = {};
33147     var accessList = [];
33148     var front = null;
33149
33150     // private
33151     var sortDialogs = function(d1, d2){
33152         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
33153     };
33154
33155     // private
33156     var orderDialogs = function(){
33157         accessList.sort(sortDialogs);
33158         var seed = Roo.DialogManager.zseed;
33159         for(var i = 0, len = accessList.length; i < len; i++){
33160             var dlg = accessList[i];
33161             if(dlg){
33162                 dlg.setZIndex(seed + (i*10));
33163             }
33164         }
33165     };
33166
33167     return {
33168         /**
33169          * The starting z-index for BasicDialogs (defaults to 9000)
33170          * @type Number The z-index value
33171          */
33172         zseed : 9000,
33173
33174         // private
33175         register : function(dlg){
33176             list[dlg.id] = dlg;
33177             accessList.push(dlg);
33178         },
33179
33180         // private
33181         unregister : function(dlg){
33182             delete list[dlg.id];
33183             var i=0;
33184             var len=0;
33185             if(!accessList.indexOf){
33186                 for(  i = 0, len = accessList.length; i < len; i++){
33187                     if(accessList[i] == dlg){
33188                         accessList.splice(i, 1);
33189                         return;
33190                     }
33191                 }
33192             }else{
33193                  i = accessList.indexOf(dlg);
33194                 if(i != -1){
33195                     accessList.splice(i, 1);
33196                 }
33197             }
33198         },
33199
33200         /**
33201          * Gets a registered dialog by id
33202          * @param {String/Object} id The id of the dialog or a dialog
33203          * @return {Roo.BasicDialog} this
33204          */
33205         get : function(id){
33206             return typeof id == "object" ? id : list[id];
33207         },
33208
33209         /**
33210          * Brings the specified dialog to the front
33211          * @param {String/Object} dlg The id of the dialog or a dialog
33212          * @return {Roo.BasicDialog} this
33213          */
33214         bringToFront : function(dlg){
33215             dlg = this.get(dlg);
33216             if(dlg != front){
33217                 front = dlg;
33218                 dlg._lastAccess = new Date().getTime();
33219                 orderDialogs();
33220             }
33221             return dlg;
33222         },
33223
33224         /**
33225          * Sends the specified dialog to the back
33226          * @param {String/Object} dlg The id of the dialog or a dialog
33227          * @return {Roo.BasicDialog} this
33228          */
33229         sendToBack : function(dlg){
33230             dlg = this.get(dlg);
33231             dlg._lastAccess = -(new Date().getTime());
33232             orderDialogs();
33233             return dlg;
33234         },
33235
33236         /**
33237          * Hides all dialogs
33238          */
33239         hideAll : function(){
33240             for(var id in list){
33241                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33242                     list[id].hide();
33243                 }
33244             }
33245         }
33246     };
33247 }();
33248
33249 /**
33250  * @class Roo.LayoutDialog
33251  * @extends Roo.BasicDialog
33252  * @children Roo.ContentPanel
33253  * @builder-top
33254  * Dialog which provides adjustments for working with a layout in a Dialog.
33255  * Add your necessary layout config options to the dialog's config.<br>
33256  * Example usage (including a nested layout):
33257  * <pre><code>
33258 if(!dialog){
33259     dialog = new Roo.LayoutDialog("download-dlg", {
33260         modal: true,
33261         width:600,
33262         height:450,
33263         shadow:true,
33264         minWidth:500,
33265         minHeight:350,
33266         autoTabs:true,
33267         proxyDrag:true,
33268         // layout config merges with the dialog config
33269         center:{
33270             tabPosition: "top",
33271             alwaysShowTabs: true
33272         }
33273     });
33274     dialog.addKeyListener(27, dialog.hide, dialog);
33275     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33276     dialog.addButton("Build It!", this.getDownload, this);
33277
33278     // we can even add nested layouts
33279     var innerLayout = new Roo.BorderLayout("dl-inner", {
33280         east: {
33281             initialSize: 200,
33282             autoScroll:true,
33283             split:true
33284         },
33285         center: {
33286             autoScroll:true
33287         }
33288     });
33289     innerLayout.beginUpdate();
33290     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33291     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33292     innerLayout.endUpdate(true);
33293
33294     var layout = dialog.getLayout();
33295     layout.beginUpdate();
33296     layout.add("center", new Roo.ContentPanel("standard-panel",
33297                         {title: "Download the Source", fitToFrame:true}));
33298     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33299                {title: "Build your own roo.js"}));
33300     layout.getRegion("center").showPanel(sp);
33301     layout.endUpdate();
33302 }
33303 </code></pre>
33304     * @constructor
33305     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33306     * @param {Object} config configuration options
33307   */
33308 Roo.LayoutDialog = function(el, cfg){
33309     
33310     var config=  cfg;
33311     if (typeof(cfg) == 'undefined') {
33312         config = Roo.apply({}, el);
33313         // not sure why we use documentElement here.. - it should always be body.
33314         // IE7 borks horribly if we use documentElement.
33315         // webkit also does not like documentElement - it creates a body element...
33316         el = Roo.get( document.body || document.documentElement ).createChild();
33317         //config.autoCreate = true;
33318     }
33319     
33320     
33321     config.autoTabs = false;
33322     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33323     this.body.setStyle({overflow:"hidden", position:"relative"});
33324     this.layout = new Roo.BorderLayout(this.body.dom, config);
33325     this.layout.monitorWindowResize = false;
33326     this.el.addClass("x-dlg-auto-layout");
33327     // fix case when center region overwrites center function
33328     this.center = Roo.BasicDialog.prototype.center;
33329     this.on("show", this.layout.layout, this.layout, true);
33330     if (config.items) {
33331         var xitems = config.items;
33332         delete config.items;
33333         Roo.each(xitems, this.addxtype, this);
33334     }
33335     
33336     
33337 };
33338 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33339     
33340     
33341     /**
33342      * @cfg {Roo.LayoutRegion} east  
33343      */
33344     /**
33345      * @cfg {Roo.LayoutRegion} west
33346      */
33347     /**
33348      * @cfg {Roo.LayoutRegion} south
33349      */
33350     /**
33351      * @cfg {Roo.LayoutRegion} north
33352      */
33353     /**
33354      * @cfg {Roo.LayoutRegion} center
33355      */
33356     /**
33357      * @cfg {Roo.Button} buttons[]  Bottom buttons..
33358      */
33359     
33360     
33361     /**
33362      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33363      * @deprecated
33364      */
33365     endUpdate : function(){
33366         this.layout.endUpdate();
33367     },
33368
33369     /**
33370      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33371      *  @deprecated
33372      */
33373     beginUpdate : function(){
33374         this.layout.beginUpdate();
33375     },
33376
33377     /**
33378      * Get the BorderLayout for this dialog
33379      * @return {Roo.BorderLayout}
33380      */
33381     getLayout : function(){
33382         return this.layout;
33383     },
33384
33385     showEl : function(){
33386         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33387         if(Roo.isIE7){
33388             this.layout.layout();
33389         }
33390     },
33391
33392     // private
33393     // Use the syncHeightBeforeShow config option to control this automatically
33394     syncBodyHeight : function(){
33395         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33396         if(this.layout){this.layout.layout();}
33397     },
33398     
33399       /**
33400      * Add an xtype element (actually adds to the layout.)
33401      * @return {Object} xdata xtype object data.
33402      */
33403     
33404     addxtype : function(c) {
33405         return this.layout.addxtype(c);
33406     }
33407 });/*
33408  * Based on:
33409  * Ext JS Library 1.1.1
33410  * Copyright(c) 2006-2007, Ext JS, LLC.
33411  *
33412  * Originally Released Under LGPL - original licence link has changed is not relivant.
33413  *
33414  * Fork - LGPL
33415  * <script type="text/javascript">
33416  */
33417  
33418 /**
33419  * @class Roo.MessageBox
33420  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33421  * Example usage:
33422  *<pre><code>
33423 // Basic alert:
33424 Roo.Msg.alert('Status', 'Changes saved successfully.');
33425
33426 // Prompt for user data:
33427 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33428     if (btn == 'ok'){
33429         // process text value...
33430     }
33431 });
33432
33433 // Show a dialog using config options:
33434 Roo.Msg.show({
33435    title:'Save Changes?',
33436    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33437    buttons: Roo.Msg.YESNOCANCEL,
33438    fn: processResult,
33439    animEl: 'elId'
33440 });
33441 </code></pre>
33442  * @singleton
33443  */
33444 Roo.MessageBox = function(){
33445     var dlg, opt, mask, waitTimer;
33446     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33447     var buttons, activeTextEl, bwidth;
33448
33449     // private
33450     var handleButton = function(button){
33451         dlg.hide();
33452         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33453     };
33454
33455     // private
33456     var handleHide = function(){
33457         if(opt && opt.cls){
33458             dlg.el.removeClass(opt.cls);
33459         }
33460         if(waitTimer){
33461             Roo.TaskMgr.stop(waitTimer);
33462             waitTimer = null;
33463         }
33464     };
33465
33466     // private
33467     var updateButtons = function(b){
33468         var width = 0;
33469         if(!b){
33470             buttons["ok"].hide();
33471             buttons["cancel"].hide();
33472             buttons["yes"].hide();
33473             buttons["no"].hide();
33474             dlg.footer.dom.style.display = 'none';
33475             return width;
33476         }
33477         dlg.footer.dom.style.display = '';
33478         for(var k in buttons){
33479             if(typeof buttons[k] != "function"){
33480                 if(b[k]){
33481                     buttons[k].show();
33482                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33483                     width += buttons[k].el.getWidth()+15;
33484                 }else{
33485                     buttons[k].hide();
33486                 }
33487             }
33488         }
33489         return width;
33490     };
33491
33492     // private
33493     var handleEsc = function(d, k, e){
33494         if(opt && opt.closable !== false){
33495             dlg.hide();
33496         }
33497         if(e){
33498             e.stopEvent();
33499         }
33500     };
33501
33502     return {
33503         /**
33504          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33505          * @return {Roo.BasicDialog} The BasicDialog element
33506          */
33507         getDialog : function(){
33508            if(!dlg){
33509                 dlg = new Roo.BasicDialog("x-msg-box", {
33510                     autoCreate : true,
33511                     shadow: true,
33512                     draggable: true,
33513                     resizable:false,
33514                     constraintoviewport:false,
33515                     fixedcenter:true,
33516                     collapsible : false,
33517                     shim:true,
33518                     modal: true,
33519                     width:400, height:100,
33520                     buttonAlign:"center",
33521                     closeClick : function(){
33522                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33523                             handleButton("no");
33524                         }else{
33525                             handleButton("cancel");
33526                         }
33527                     }
33528                 });
33529                 dlg.on("hide", handleHide);
33530                 mask = dlg.mask;
33531                 dlg.addKeyListener(27, handleEsc);
33532                 buttons = {};
33533                 var bt = this.buttonText;
33534                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33535                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33536                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33537                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33538                 bodyEl = dlg.body.createChild({
33539
33540                     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>'
33541                 });
33542                 msgEl = bodyEl.dom.firstChild;
33543                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33544                 textboxEl.enableDisplayMode();
33545                 textboxEl.addKeyListener([10,13], function(){
33546                     if(dlg.isVisible() && opt && opt.buttons){
33547                         if(opt.buttons.ok){
33548                             handleButton("ok");
33549                         }else if(opt.buttons.yes){
33550                             handleButton("yes");
33551                         }
33552                     }
33553                 });
33554                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33555                 textareaEl.enableDisplayMode();
33556                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33557                 progressEl.enableDisplayMode();
33558                 var pf = progressEl.dom.firstChild;
33559                 if (pf) {
33560                     pp = Roo.get(pf.firstChild);
33561                     pp.setHeight(pf.offsetHeight);
33562                 }
33563                 
33564             }
33565             return dlg;
33566         },
33567
33568         /**
33569          * Updates the message box body text
33570          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33571          * the XHTML-compliant non-breaking space character '&amp;#160;')
33572          * @return {Roo.MessageBox} This message box
33573          */
33574         updateText : function(text){
33575             if(!dlg.isVisible() && !opt.width){
33576                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33577             }
33578             msgEl.innerHTML = text || '&#160;';
33579       
33580             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33581             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33582             var w = Math.max(
33583                     Math.min(opt.width || cw , this.maxWidth), 
33584                     Math.max(opt.minWidth || this.minWidth, bwidth)
33585             );
33586             if(opt.prompt){
33587                 activeTextEl.setWidth(w);
33588             }
33589             if(dlg.isVisible()){
33590                 dlg.fixedcenter = false;
33591             }
33592             // to big, make it scroll. = But as usual stupid IE does not support
33593             // !important..
33594             
33595             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33596                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33597                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33598             } else {
33599                 bodyEl.dom.style.height = '';
33600                 bodyEl.dom.style.overflowY = '';
33601             }
33602             if (cw > w) {
33603                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33604             } else {
33605                 bodyEl.dom.style.overflowX = '';
33606             }
33607             
33608             dlg.setContentSize(w, bodyEl.getHeight());
33609             if(dlg.isVisible()){
33610                 dlg.fixedcenter = true;
33611             }
33612             return this;
33613         },
33614
33615         /**
33616          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33617          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33618          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33619          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33620          * @return {Roo.MessageBox} This message box
33621          */
33622         updateProgress : function(value, text){
33623             if(text){
33624                 this.updateText(text);
33625             }
33626             if (pp) { // weird bug on my firefox - for some reason this is not defined
33627                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33628             }
33629             return this;
33630         },        
33631
33632         /**
33633          * Returns true if the message box is currently displayed
33634          * @return {Boolean} True if the message box is visible, else false
33635          */
33636         isVisible : function(){
33637             return dlg && dlg.isVisible();  
33638         },
33639
33640         /**
33641          * Hides the message box if it is displayed
33642          */
33643         hide : function(){
33644             if(this.isVisible()){
33645                 dlg.hide();
33646             }  
33647         },
33648
33649         /**
33650          * Displays a new message box, or reinitializes an existing message box, based on the config options
33651          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33652          * The following config object properties are supported:
33653          * <pre>
33654 Property    Type             Description
33655 ----------  ---------------  ------------------------------------------------------------------------------------
33656 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33657                                    closes (defaults to undefined)
33658 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33659                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33660 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33661                                    progress and wait dialogs will ignore this property and always hide the
33662                                    close button as they can only be closed programmatically.
33663 cls               String           A custom CSS class to apply to the message box element
33664 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33665                                    displayed (defaults to 75)
33666 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33667                                    function will be btn (the name of the button that was clicked, if applicable,
33668                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33669                                    Progress and wait dialogs will ignore this option since they do not respond to
33670                                    user actions and can only be closed programmatically, so any required function
33671                                    should be called by the same code after it closes the dialog.
33672 icon              String           A CSS class that provides a background image to be used as an icon for
33673                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33674 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33675 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33676 modal             Boolean          False to allow user interaction with the page while the message box is
33677                                    displayed (defaults to true)
33678 msg               String           A string that will replace the existing message box body text (defaults
33679                                    to the XHTML-compliant non-breaking space character '&#160;')
33680 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33681 progress          Boolean          True to display a progress bar (defaults to false)
33682 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33683 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33684 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33685 title             String           The title text
33686 value             String           The string value to set into the active textbox element if displayed
33687 wait              Boolean          True to display a progress bar (defaults to false)
33688 width             Number           The width of the dialog in pixels
33689 </pre>
33690          *
33691          * Example usage:
33692          * <pre><code>
33693 Roo.Msg.show({
33694    title: 'Address',
33695    msg: 'Please enter your address:',
33696    width: 300,
33697    buttons: Roo.MessageBox.OKCANCEL,
33698    multiline: true,
33699    fn: saveAddress,
33700    animEl: 'addAddressBtn'
33701 });
33702 </code></pre>
33703          * @param {Object} config Configuration options
33704          * @return {Roo.MessageBox} This message box
33705          */
33706         show : function(options)
33707         {
33708             
33709             // this causes nightmares if you show one dialog after another
33710             // especially on callbacks..
33711              
33712             if(this.isVisible()){
33713                 
33714                 this.hide();
33715                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33716                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33717                 Roo.log("New Dialog Message:" +  options.msg )
33718                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33719                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33720                 
33721             }
33722             var d = this.getDialog();
33723             opt = options;
33724             d.setTitle(opt.title || "&#160;");
33725             d.close.setDisplayed(opt.closable !== false);
33726             activeTextEl = textboxEl;
33727             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33728             if(opt.prompt){
33729                 if(opt.multiline){
33730                     textboxEl.hide();
33731                     textareaEl.show();
33732                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33733                         opt.multiline : this.defaultTextHeight);
33734                     activeTextEl = textareaEl;
33735                 }else{
33736                     textboxEl.show();
33737                     textareaEl.hide();
33738                 }
33739             }else{
33740                 textboxEl.hide();
33741                 textareaEl.hide();
33742             }
33743             progressEl.setDisplayed(opt.progress === true);
33744             this.updateProgress(0);
33745             activeTextEl.dom.value = opt.value || "";
33746             if(opt.prompt){
33747                 dlg.setDefaultButton(activeTextEl);
33748             }else{
33749                 var bs = opt.buttons;
33750                 var db = null;
33751                 if(bs && bs.ok){
33752                     db = buttons["ok"];
33753                 }else if(bs && bs.yes){
33754                     db = buttons["yes"];
33755                 }
33756                 dlg.setDefaultButton(db);
33757             }
33758             bwidth = updateButtons(opt.buttons);
33759             this.updateText(opt.msg);
33760             if(opt.cls){
33761                 d.el.addClass(opt.cls);
33762             }
33763             d.proxyDrag = opt.proxyDrag === true;
33764             d.modal = opt.modal !== false;
33765             d.mask = opt.modal !== false ? mask : false;
33766             if(!d.isVisible()){
33767                 // force it to the end of the z-index stack so it gets a cursor in FF
33768                 document.body.appendChild(dlg.el.dom);
33769                 d.animateTarget = null;
33770                 d.show(options.animEl);
33771             }
33772             return this;
33773         },
33774
33775         /**
33776          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33777          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33778          * and closing the message box when the process is complete.
33779          * @param {String} title The title bar text
33780          * @param {String} msg The message box body text
33781          * @return {Roo.MessageBox} This message box
33782          */
33783         progress : function(title, msg){
33784             this.show({
33785                 title : title,
33786                 msg : msg,
33787                 buttons: false,
33788                 progress:true,
33789                 closable:false,
33790                 minWidth: this.minProgressWidth,
33791                 modal : true
33792             });
33793             return this;
33794         },
33795
33796         /**
33797          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33798          * If a callback function is passed it will be called after the user clicks the button, and the
33799          * id of the button that was clicked will be passed as the only parameter to the callback
33800          * (could also be the top-right close button).
33801          * @param {String} title The title bar text
33802          * @param {String} msg The message box body text
33803          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33804          * @param {Object} scope (optional) The scope of the callback function
33805          * @return {Roo.MessageBox} This message box
33806          */
33807         alert : function(title, msg, fn, scope){
33808             this.show({
33809                 title : title,
33810                 msg : msg,
33811                 buttons: this.OK,
33812                 fn: fn,
33813                 scope : scope,
33814                 modal : true
33815             });
33816             return this;
33817         },
33818
33819         /**
33820          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33821          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33822          * You are responsible for closing the message box when the process is complete.
33823          * @param {String} msg The message box body text
33824          * @param {String} title (optional) The title bar text
33825          * @return {Roo.MessageBox} This message box
33826          */
33827         wait : function(msg, title){
33828             this.show({
33829                 title : title,
33830                 msg : msg,
33831                 buttons: false,
33832                 closable:false,
33833                 progress:true,
33834                 modal:true,
33835                 width:300,
33836                 wait:true
33837             });
33838             waitTimer = Roo.TaskMgr.start({
33839                 run: function(i){
33840                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33841                 },
33842                 interval: 1000
33843             });
33844             return this;
33845         },
33846
33847         /**
33848          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33849          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33850          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33851          * @param {String} title The title bar text
33852          * @param {String} msg The message box body text
33853          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33854          * @param {Object} scope (optional) The scope of the callback function
33855          * @return {Roo.MessageBox} This message box
33856          */
33857         confirm : function(title, msg, fn, scope){
33858             this.show({
33859                 title : title,
33860                 msg : msg,
33861                 buttons: this.YESNO,
33862                 fn: fn,
33863                 scope : scope,
33864                 modal : true
33865             });
33866             return this;
33867         },
33868
33869         /**
33870          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33871          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33872          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33873          * (could also be the top-right close button) and the text that was entered will be passed as the two
33874          * parameters to the callback.
33875          * @param {String} title The title bar text
33876          * @param {String} msg The message box body text
33877          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33878          * @param {Object} scope (optional) The scope of the callback function
33879          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33880          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33881          * @return {Roo.MessageBox} This message box
33882          */
33883         prompt : function(title, msg, fn, scope, multiline){
33884             this.show({
33885                 title : title,
33886                 msg : msg,
33887                 buttons: this.OKCANCEL,
33888                 fn: fn,
33889                 minWidth:250,
33890                 scope : scope,
33891                 prompt:true,
33892                 multiline: multiline,
33893                 modal : true
33894             });
33895             return this;
33896         },
33897
33898         /**
33899          * Button config that displays a single OK button
33900          * @type Object
33901          */
33902         OK : {ok:true},
33903         /**
33904          * Button config that displays Yes and No buttons
33905          * @type Object
33906          */
33907         YESNO : {yes:true, no:true},
33908         /**
33909          * Button config that displays OK and Cancel buttons
33910          * @type Object
33911          */
33912         OKCANCEL : {ok:true, cancel:true},
33913         /**
33914          * Button config that displays Yes, No and Cancel buttons
33915          * @type Object
33916          */
33917         YESNOCANCEL : {yes:true, no:true, cancel:true},
33918
33919         /**
33920          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33921          * @type Number
33922          */
33923         defaultTextHeight : 75,
33924         /**
33925          * The maximum width in pixels of the message box (defaults to 600)
33926          * @type Number
33927          */
33928         maxWidth : 600,
33929         /**
33930          * The minimum width in pixels of the message box (defaults to 100)
33931          * @type Number
33932          */
33933         minWidth : 100,
33934         /**
33935          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33936          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33937          * @type Number
33938          */
33939         minProgressWidth : 250,
33940         /**
33941          * An object containing the default button text strings that can be overriden for localized language support.
33942          * Supported properties are: ok, cancel, yes and no.
33943          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33944          * @type Object
33945          */
33946         buttonText : {
33947             ok : "OK",
33948             cancel : "Cancel",
33949             yes : "Yes",
33950             no : "No"
33951         }
33952     };
33953 }();
33954
33955 /**
33956  * Shorthand for {@link Roo.MessageBox}
33957  */
33958 Roo.Msg = Roo.MessageBox;/*
33959  * Based on:
33960  * Ext JS Library 1.1.1
33961  * Copyright(c) 2006-2007, Ext JS, LLC.
33962  *
33963  * Originally Released Under LGPL - original licence link has changed is not relivant.
33964  *
33965  * Fork - LGPL
33966  * <script type="text/javascript">
33967  */
33968 /**
33969  * @class Roo.QuickTips
33970  * Provides attractive and customizable tooltips for any element.
33971  * @singleton
33972  */
33973 Roo.QuickTips = function(){
33974     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33975     var ce, bd, xy, dd;
33976     var visible = false, disabled = true, inited = false;
33977     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33978     
33979     var onOver = function(e){
33980         if(disabled){
33981             return;
33982         }
33983         var t = e.getTarget();
33984         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33985             return;
33986         }
33987         if(ce && t == ce.el){
33988             clearTimeout(hideProc);
33989             return;
33990         }
33991         if(t && tagEls[t.id]){
33992             tagEls[t.id].el = t;
33993             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33994             return;
33995         }
33996         var ttp, et = Roo.fly(t);
33997         var ns = cfg.namespace;
33998         if(tm.interceptTitles && t.title){
33999             ttp = t.title;
34000             t.qtip = ttp;
34001             t.removeAttribute("title");
34002             e.preventDefault();
34003         }else{
34004             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
34005         }
34006         if(ttp){
34007             showProc = show.defer(tm.showDelay, tm, [{
34008                 el: t, 
34009                 text: ttp.replace(/\\n/g,'<br/>'),
34010                 width: et.getAttributeNS(ns, cfg.width),
34011                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
34012                 title: et.getAttributeNS(ns, cfg.title),
34013                     cls: et.getAttributeNS(ns, cfg.cls)
34014             }]);
34015         }
34016     };
34017     
34018     var onOut = function(e){
34019         clearTimeout(showProc);
34020         var t = e.getTarget();
34021         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
34022             hideProc = setTimeout(hide, tm.hideDelay);
34023         }
34024     };
34025     
34026     var onMove = function(e){
34027         if(disabled){
34028             return;
34029         }
34030         xy = e.getXY();
34031         xy[1] += 18;
34032         if(tm.trackMouse && ce){
34033             el.setXY(xy);
34034         }
34035     };
34036     
34037     var onDown = function(e){
34038         clearTimeout(showProc);
34039         clearTimeout(hideProc);
34040         if(!e.within(el)){
34041             if(tm.hideOnClick){
34042                 hide();
34043                 tm.disable();
34044                 tm.enable.defer(100, tm);
34045             }
34046         }
34047     };
34048     
34049     var getPad = function(){
34050         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
34051     };
34052
34053     var show = function(o){
34054         if(disabled){
34055             return;
34056         }
34057         clearTimeout(dismissProc);
34058         ce = o;
34059         if(removeCls){ // in case manually hidden
34060             el.removeClass(removeCls);
34061             removeCls = null;
34062         }
34063         if(ce.cls){
34064             el.addClass(ce.cls);
34065             removeCls = ce.cls;
34066         }
34067         if(ce.title){
34068             tipTitle.update(ce.title);
34069             tipTitle.show();
34070         }else{
34071             tipTitle.update('');
34072             tipTitle.hide();
34073         }
34074         el.dom.style.width  = tm.maxWidth+'px';
34075         //tipBody.dom.style.width = '';
34076         tipBodyText.update(o.text);
34077         var p = getPad(), w = ce.width;
34078         if(!w){
34079             var td = tipBodyText.dom;
34080             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
34081             if(aw > tm.maxWidth){
34082                 w = tm.maxWidth;
34083             }else if(aw < tm.minWidth){
34084                 w = tm.minWidth;
34085             }else{
34086                 w = aw;
34087             }
34088         }
34089         //tipBody.setWidth(w);
34090         el.setWidth(parseInt(w, 10) + p);
34091         if(ce.autoHide === false){
34092             close.setDisplayed(true);
34093             if(dd){
34094                 dd.unlock();
34095             }
34096         }else{
34097             close.setDisplayed(false);
34098             if(dd){
34099                 dd.lock();
34100             }
34101         }
34102         if(xy){
34103             el.avoidY = xy[1]-18;
34104             el.setXY(xy);
34105         }
34106         if(tm.animate){
34107             el.setOpacity(.1);
34108             el.setStyle("visibility", "visible");
34109             el.fadeIn({callback: afterShow});
34110         }else{
34111             afterShow();
34112         }
34113     };
34114     
34115     var afterShow = function(){
34116         if(ce){
34117             el.show();
34118             esc.enable();
34119             if(tm.autoDismiss && ce.autoHide !== false){
34120                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
34121             }
34122         }
34123     };
34124     
34125     var hide = function(noanim){
34126         clearTimeout(dismissProc);
34127         clearTimeout(hideProc);
34128         ce = null;
34129         if(el.isVisible()){
34130             esc.disable();
34131             if(noanim !== true && tm.animate){
34132                 el.fadeOut({callback: afterHide});
34133             }else{
34134                 afterHide();
34135             } 
34136         }
34137     };
34138     
34139     var afterHide = function(){
34140         el.hide();
34141         if(removeCls){
34142             el.removeClass(removeCls);
34143             removeCls = null;
34144         }
34145     };
34146     
34147     return {
34148         /**
34149         * @cfg {Number} minWidth
34150         * The minimum width of the quick tip (defaults to 40)
34151         */
34152        minWidth : 40,
34153         /**
34154         * @cfg {Number} maxWidth
34155         * The maximum width of the quick tip (defaults to 300)
34156         */
34157        maxWidth : 300,
34158         /**
34159         * @cfg {Boolean} interceptTitles
34160         * True to automatically use the element's DOM title value if available (defaults to false)
34161         */
34162        interceptTitles : false,
34163         /**
34164         * @cfg {Boolean} trackMouse
34165         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
34166         */
34167        trackMouse : false,
34168         /**
34169         * @cfg {Boolean} hideOnClick
34170         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
34171         */
34172        hideOnClick : true,
34173         /**
34174         * @cfg {Number} showDelay
34175         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
34176         */
34177        showDelay : 500,
34178         /**
34179         * @cfg {Number} hideDelay
34180         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34181         */
34182        hideDelay : 200,
34183         /**
34184         * @cfg {Boolean} autoHide
34185         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34186         * Used in conjunction with hideDelay.
34187         */
34188        autoHide : true,
34189         /**
34190         * @cfg {Boolean}
34191         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34192         * (defaults to true).  Used in conjunction with autoDismissDelay.
34193         */
34194        autoDismiss : true,
34195         /**
34196         * @cfg {Number}
34197         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34198         */
34199        autoDismissDelay : 5000,
34200        /**
34201         * @cfg {Boolean} animate
34202         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34203         */
34204        animate : false,
34205
34206        /**
34207         * @cfg {String} title
34208         * Title text to display (defaults to '').  This can be any valid HTML markup.
34209         */
34210         title: '',
34211        /**
34212         * @cfg {String} text
34213         * Body text to display (defaults to '').  This can be any valid HTML markup.
34214         */
34215         text : '',
34216        /**
34217         * @cfg {String} cls
34218         * A CSS class to apply to the base quick tip element (defaults to '').
34219         */
34220         cls : '',
34221        /**
34222         * @cfg {Number} width
34223         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34224         * minWidth or maxWidth.
34225         */
34226         width : null,
34227
34228     /**
34229      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34230      * or display QuickTips in a page.
34231      */
34232        init : function(){
34233           tm = Roo.QuickTips;
34234           cfg = tm.tagConfig;
34235           if(!inited){
34236               if(!Roo.isReady){ // allow calling of init() before onReady
34237                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34238                   return;
34239               }
34240               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34241               el.fxDefaults = {stopFx: true};
34242               // maximum custom styling
34243               //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>');
34244               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>');              
34245               tipTitle = el.child('h3');
34246               tipTitle.enableDisplayMode("block");
34247               tipBody = el.child('div.x-tip-bd');
34248               tipBodyText = el.child('div.x-tip-bd-inner');
34249               //bdLeft = el.child('div.x-tip-bd-left');
34250               //bdRight = el.child('div.x-tip-bd-right');
34251               close = el.child('div.x-tip-close');
34252               close.enableDisplayMode("block");
34253               close.on("click", hide);
34254               var d = Roo.get(document);
34255               d.on("mousedown", onDown);
34256               d.on("mouseover", onOver);
34257               d.on("mouseout", onOut);
34258               d.on("mousemove", onMove);
34259               esc = d.addKeyListener(27, hide);
34260               esc.disable();
34261               if(Roo.dd.DD){
34262                   dd = el.initDD("default", null, {
34263                       onDrag : function(){
34264                           el.sync();  
34265                       }
34266                   });
34267                   dd.setHandleElId(tipTitle.id);
34268                   dd.lock();
34269               }
34270               inited = true;
34271           }
34272           this.enable(); 
34273        },
34274
34275     /**
34276      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34277      * are supported:
34278      * <pre>
34279 Property    Type                   Description
34280 ----------  ---------------------  ------------------------------------------------------------------------
34281 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34282      * </ul>
34283      * @param {Object} config The config object
34284      */
34285        register : function(config){
34286            var cs = config instanceof Array ? config : arguments;
34287            for(var i = 0, len = cs.length; i < len; i++) {
34288                var c = cs[i];
34289                var target = c.target;
34290                if(target){
34291                    if(target instanceof Array){
34292                        for(var j = 0, jlen = target.length; j < jlen; j++){
34293                            tagEls[target[j]] = c;
34294                        }
34295                    }else{
34296                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34297                    }
34298                }
34299            }
34300        },
34301
34302     /**
34303      * Removes this quick tip from its element and destroys it.
34304      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34305      */
34306        unregister : function(el){
34307            delete tagEls[Roo.id(el)];
34308        },
34309
34310     /**
34311      * Enable this quick tip.
34312      */
34313        enable : function(){
34314            if(inited && disabled){
34315                locks.pop();
34316                if(locks.length < 1){
34317                    disabled = false;
34318                }
34319            }
34320        },
34321
34322     /**
34323      * Disable this quick tip.
34324      */
34325        disable : function(){
34326           disabled = true;
34327           clearTimeout(showProc);
34328           clearTimeout(hideProc);
34329           clearTimeout(dismissProc);
34330           if(ce){
34331               hide(true);
34332           }
34333           locks.push(1);
34334        },
34335
34336     /**
34337      * Returns true if the quick tip is enabled, else false.
34338      */
34339        isEnabled : function(){
34340             return !disabled;
34341        },
34342
34343         // private
34344        tagConfig : {
34345            namespace : "roo", // was ext?? this may break..
34346            alt_namespace : "ext",
34347            attribute : "qtip",
34348            width : "width",
34349            target : "target",
34350            title : "qtitle",
34351            hide : "hide",
34352            cls : "qclass"
34353        }
34354    };
34355 }();
34356
34357 // backwards compat
34358 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34359  * Based on:
34360  * Ext JS Library 1.1.1
34361  * Copyright(c) 2006-2007, Ext JS, LLC.
34362  *
34363  * Originally Released Under LGPL - original licence link has changed is not relivant.
34364  *
34365  * Fork - LGPL
34366  * <script type="text/javascript">
34367  */
34368  
34369
34370 /**
34371  * @class Roo.tree.TreePanel
34372  * @extends Roo.data.Tree
34373  * @cfg {Roo.tree.TreeNode} root The root node
34374  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34375  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34376  * @cfg {Boolean} enableDD true to enable drag and drop
34377  * @cfg {Boolean} enableDrag true to enable just drag
34378  * @cfg {Boolean} enableDrop true to enable just drop
34379  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34380  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34381  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34382  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34383  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34384  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34385  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34386  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34387  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34388  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34389  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34390  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
34391  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
34392  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34393  * @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>
34394  * @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>
34395  * 
34396  * @constructor
34397  * @param {String/HTMLElement/Element} el The container element
34398  * @param {Object} config
34399  */
34400 Roo.tree.TreePanel = function(el, config){
34401     var root = false;
34402     var loader = false;
34403     if (config.root) {
34404         root = config.root;
34405         delete config.root;
34406     }
34407     if (config.loader) {
34408         loader = config.loader;
34409         delete config.loader;
34410     }
34411     
34412     Roo.apply(this, config);
34413     Roo.tree.TreePanel.superclass.constructor.call(this);
34414     this.el = Roo.get(el);
34415     this.el.addClass('x-tree');
34416     //console.log(root);
34417     if (root) {
34418         this.setRootNode( Roo.factory(root, Roo.tree));
34419     }
34420     if (loader) {
34421         this.loader = Roo.factory(loader, Roo.tree);
34422     }
34423    /**
34424     * Read-only. The id of the container element becomes this TreePanel's id.
34425     */
34426     this.id = this.el.id;
34427     this.addEvents({
34428         /**
34429         * @event beforeload
34430         * Fires before a node is loaded, return false to cancel
34431         * @param {Node} node The node being loaded
34432         */
34433         "beforeload" : true,
34434         /**
34435         * @event load
34436         * Fires when a node is loaded
34437         * @param {Node} node The node that was loaded
34438         */
34439         "load" : true,
34440         /**
34441         * @event textchange
34442         * Fires when the text for a node is changed
34443         * @param {Node} node The node
34444         * @param {String} text The new text
34445         * @param {String} oldText The old text
34446         */
34447         "textchange" : true,
34448         /**
34449         * @event beforeexpand
34450         * Fires before a node is expanded, return false to cancel.
34451         * @param {Node} node The node
34452         * @param {Boolean} deep
34453         * @param {Boolean} anim
34454         */
34455         "beforeexpand" : true,
34456         /**
34457         * @event beforecollapse
34458         * Fires before a node is collapsed, return false to cancel.
34459         * @param {Node} node The node
34460         * @param {Boolean} deep
34461         * @param {Boolean} anim
34462         */
34463         "beforecollapse" : true,
34464         /**
34465         * @event expand
34466         * Fires when a node is expanded
34467         * @param {Node} node The node
34468         */
34469         "expand" : true,
34470         /**
34471         * @event disabledchange
34472         * Fires when the disabled status of a node changes
34473         * @param {Node} node The node
34474         * @param {Boolean} disabled
34475         */
34476         "disabledchange" : true,
34477         /**
34478         * @event collapse
34479         * Fires when a node is collapsed
34480         * @param {Node} node The node
34481         */
34482         "collapse" : true,
34483         /**
34484         * @event beforeclick
34485         * Fires before click processing on a node. Return false to cancel the default action.
34486         * @param {Node} node The node
34487         * @param {Roo.EventObject} e The event object
34488         */
34489         "beforeclick":true,
34490         /**
34491         * @event checkchange
34492         * Fires when a node with a checkbox's checked property changes
34493         * @param {Node} this This node
34494         * @param {Boolean} checked
34495         */
34496         "checkchange":true,
34497         /**
34498         * @event click
34499         * Fires when a node is clicked
34500         * @param {Node} node The node
34501         * @param {Roo.EventObject} e The event object
34502         */
34503         "click":true,
34504         /**
34505         * @event dblclick
34506         * Fires when a node is double clicked
34507         * @param {Node} node The node
34508         * @param {Roo.EventObject} e The event object
34509         */
34510         "dblclick":true,
34511         /**
34512         * @event contextmenu
34513         * Fires when a node is right clicked
34514         * @param {Node} node The node
34515         * @param {Roo.EventObject} e The event object
34516         */
34517         "contextmenu":true,
34518         /**
34519         * @event beforechildrenrendered
34520         * Fires right before the child nodes for a node are rendered
34521         * @param {Node} node The node
34522         */
34523         "beforechildrenrendered":true,
34524         /**
34525         * @event startdrag
34526         * Fires when a node starts being dragged
34527         * @param {Roo.tree.TreePanel} this
34528         * @param {Roo.tree.TreeNode} node
34529         * @param {event} e The raw browser event
34530         */ 
34531        "startdrag" : true,
34532        /**
34533         * @event enddrag
34534         * Fires when a drag operation is complete
34535         * @param {Roo.tree.TreePanel} this
34536         * @param {Roo.tree.TreeNode} node
34537         * @param {event} e The raw browser event
34538         */
34539        "enddrag" : true,
34540        /**
34541         * @event dragdrop
34542         * Fires when a dragged node is dropped on a valid DD target
34543         * @param {Roo.tree.TreePanel} this
34544         * @param {Roo.tree.TreeNode} node
34545         * @param {DD} dd The dd it was dropped on
34546         * @param {event} e The raw browser event
34547         */
34548        "dragdrop" : true,
34549        /**
34550         * @event beforenodedrop
34551         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34552         * passed to handlers has the following properties:<br />
34553         * <ul style="padding:5px;padding-left:16px;">
34554         * <li>tree - The TreePanel</li>
34555         * <li>target - The node being targeted for the drop</li>
34556         * <li>data - The drag data from the drag source</li>
34557         * <li>point - The point of the drop - append, above or below</li>
34558         * <li>source - The drag source</li>
34559         * <li>rawEvent - Raw mouse event</li>
34560         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34561         * to be inserted by setting them on this object.</li>
34562         * <li>cancel - Set this to true to cancel the drop.</li>
34563         * </ul>
34564         * @param {Object} dropEvent
34565         */
34566        "beforenodedrop" : true,
34567        /**
34568         * @event nodedrop
34569         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34570         * passed to handlers has the following properties:<br />
34571         * <ul style="padding:5px;padding-left:16px;">
34572         * <li>tree - The TreePanel</li>
34573         * <li>target - The node being targeted for the drop</li>
34574         * <li>data - The drag data from the drag source</li>
34575         * <li>point - The point of the drop - append, above or below</li>
34576         * <li>source - The drag source</li>
34577         * <li>rawEvent - Raw mouse event</li>
34578         * <li>dropNode - Dropped node(s).</li>
34579         * </ul>
34580         * @param {Object} dropEvent
34581         */
34582        "nodedrop" : true,
34583         /**
34584         * @event nodedragover
34585         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34586         * passed to handlers has the following properties:<br />
34587         * <ul style="padding:5px;padding-left:16px;">
34588         * <li>tree - The TreePanel</li>
34589         * <li>target - The node being targeted for the drop</li>
34590         * <li>data - The drag data from the drag source</li>
34591         * <li>point - The point of the drop - append, above or below</li>
34592         * <li>source - The drag source</li>
34593         * <li>rawEvent - Raw mouse event</li>
34594         * <li>dropNode - Drop node(s) provided by the source.</li>
34595         * <li>cancel - Set this to true to signal drop not allowed.</li>
34596         * </ul>
34597         * @param {Object} dragOverEvent
34598         */
34599        "nodedragover" : true,
34600        /**
34601         * @event appendnode
34602         * Fires when append node to the tree
34603         * @param {Roo.tree.TreePanel} this
34604         * @param {Roo.tree.TreeNode} node
34605         * @param {Number} index The index of the newly appended node
34606         */
34607        "appendnode" : true
34608         
34609     });
34610     if(this.singleExpand){
34611        this.on("beforeexpand", this.restrictExpand, this);
34612     }
34613     if (this.editor) {
34614         this.editor.tree = this;
34615         this.editor = Roo.factory(this.editor, Roo.tree);
34616     }
34617     
34618     if (this.selModel) {
34619         this.selModel = Roo.factory(this.selModel, Roo.tree);
34620     }
34621    
34622 };
34623 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34624     rootVisible : true,
34625     animate: Roo.enableFx,
34626     lines : true,
34627     enableDD : false,
34628     hlDrop : Roo.enableFx,
34629   
34630     renderer: false,
34631     
34632     rendererTip: false,
34633     // private
34634     restrictExpand : function(node){
34635         var p = node.parentNode;
34636         if(p){
34637             if(p.expandedChild && p.expandedChild.parentNode == p){
34638                 p.expandedChild.collapse();
34639             }
34640             p.expandedChild = node;
34641         }
34642     },
34643
34644     // private override
34645     setRootNode : function(node){
34646         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34647         if(!this.rootVisible){
34648             node.ui = new Roo.tree.RootTreeNodeUI(node);
34649         }
34650         return node;
34651     },
34652
34653     /**
34654      * Returns the container element for this TreePanel
34655      */
34656     getEl : function(){
34657         return this.el;
34658     },
34659
34660     /**
34661      * Returns the default TreeLoader for this TreePanel
34662      */
34663     getLoader : function(){
34664         return this.loader;
34665     },
34666
34667     /**
34668      * Expand all nodes
34669      */
34670     expandAll : function(){
34671         this.root.expand(true);
34672     },
34673
34674     /**
34675      * Collapse all nodes
34676      */
34677     collapseAll : function(){
34678         this.root.collapse(true);
34679     },
34680
34681     /**
34682      * Returns the selection model used by this TreePanel
34683      */
34684     getSelectionModel : function(){
34685         if(!this.selModel){
34686             this.selModel = new Roo.tree.DefaultSelectionModel();
34687         }
34688         return this.selModel;
34689     },
34690
34691     /**
34692      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34693      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34694      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34695      * @return {Array}
34696      */
34697     getChecked : function(a, startNode){
34698         startNode = startNode || this.root;
34699         var r = [];
34700         var f = function(){
34701             if(this.attributes.checked){
34702                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34703             }
34704         }
34705         startNode.cascade(f);
34706         return r;
34707     },
34708
34709     /**
34710      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34711      * @param {String} path
34712      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34713      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34714      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34715      */
34716     expandPath : function(path, attr, callback){
34717         attr = attr || "id";
34718         var keys = path.split(this.pathSeparator);
34719         var curNode = this.root;
34720         if(curNode.attributes[attr] != keys[1]){ // invalid root
34721             if(callback){
34722                 callback(false, null);
34723             }
34724             return;
34725         }
34726         var index = 1;
34727         var f = function(){
34728             if(++index == keys.length){
34729                 if(callback){
34730                     callback(true, curNode);
34731                 }
34732                 return;
34733             }
34734             var c = curNode.findChild(attr, keys[index]);
34735             if(!c){
34736                 if(callback){
34737                     callback(false, curNode);
34738                 }
34739                 return;
34740             }
34741             curNode = c;
34742             c.expand(false, false, f);
34743         };
34744         curNode.expand(false, false, f);
34745     },
34746
34747     /**
34748      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34749      * @param {String} path
34750      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34751      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34752      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34753      */
34754     selectPath : function(path, attr, callback){
34755         attr = attr || "id";
34756         var keys = path.split(this.pathSeparator);
34757         var v = keys.pop();
34758         if(keys.length > 0){
34759             var f = function(success, node){
34760                 if(success && node){
34761                     var n = node.findChild(attr, v);
34762                     if(n){
34763                         n.select();
34764                         if(callback){
34765                             callback(true, n);
34766                         }
34767                     }else if(callback){
34768                         callback(false, n);
34769                     }
34770                 }else{
34771                     if(callback){
34772                         callback(false, n);
34773                     }
34774                 }
34775             };
34776             this.expandPath(keys.join(this.pathSeparator), attr, f);
34777         }else{
34778             this.root.select();
34779             if(callback){
34780                 callback(true, this.root);
34781             }
34782         }
34783     },
34784
34785     getTreeEl : function(){
34786         return this.el;
34787     },
34788
34789     /**
34790      * Trigger rendering of this TreePanel
34791      */
34792     render : function(){
34793         if (this.innerCt) {
34794             return this; // stop it rendering more than once!!
34795         }
34796         
34797         this.innerCt = this.el.createChild({tag:"ul",
34798                cls:"x-tree-root-ct " +
34799                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34800
34801         if(this.containerScroll){
34802             Roo.dd.ScrollManager.register(this.el);
34803         }
34804         if((this.enableDD || this.enableDrop) && !this.dropZone){
34805            /**
34806             * The dropZone used by this tree if drop is enabled
34807             * @type Roo.tree.TreeDropZone
34808             */
34809              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34810                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34811            });
34812         }
34813         if((this.enableDD || this.enableDrag) && !this.dragZone){
34814            /**
34815             * The dragZone used by this tree if drag is enabled
34816             * @type Roo.tree.TreeDragZone
34817             */
34818             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34819                ddGroup: this.ddGroup || "TreeDD",
34820                scroll: this.ddScroll
34821            });
34822         }
34823         this.getSelectionModel().init(this);
34824         if (!this.root) {
34825             Roo.log("ROOT not set in tree");
34826             return this;
34827         }
34828         this.root.render();
34829         if(!this.rootVisible){
34830             this.root.renderChildren();
34831         }
34832         return this;
34833     }
34834 });/*
34835  * Based on:
34836  * Ext JS Library 1.1.1
34837  * Copyright(c) 2006-2007, Ext JS, LLC.
34838  *
34839  * Originally Released Under LGPL - original licence link has changed is not relivant.
34840  *
34841  * Fork - LGPL
34842  * <script type="text/javascript">
34843  */
34844  
34845
34846 /**
34847  * @class Roo.tree.DefaultSelectionModel
34848  * @extends Roo.util.Observable
34849  * The default single selection for a TreePanel.
34850  * @param {Object} cfg Configuration
34851  */
34852 Roo.tree.DefaultSelectionModel = function(cfg){
34853    this.selNode = null;
34854    
34855    
34856    
34857    this.addEvents({
34858        /**
34859         * @event selectionchange
34860         * Fires when the selected node changes
34861         * @param {DefaultSelectionModel} this
34862         * @param {TreeNode} node the new selection
34863         */
34864        "selectionchange" : true,
34865
34866        /**
34867         * @event beforeselect
34868         * Fires before the selected node changes, return false to cancel the change
34869         * @param {DefaultSelectionModel} this
34870         * @param {TreeNode} node the new selection
34871         * @param {TreeNode} node the old selection
34872         */
34873        "beforeselect" : true
34874    });
34875    
34876     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34877 };
34878
34879 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34880     init : function(tree){
34881         this.tree = tree;
34882         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34883         tree.on("click", this.onNodeClick, this);
34884     },
34885     
34886     onNodeClick : function(node, e){
34887         if (e.ctrlKey && this.selNode == node)  {
34888             this.unselect(node);
34889             return;
34890         }
34891         this.select(node);
34892     },
34893     
34894     /**
34895      * Select a node.
34896      * @param {TreeNode} node The node to select
34897      * @return {TreeNode} The selected node
34898      */
34899     select : function(node){
34900         var last = this.selNode;
34901         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34902             if(last){
34903                 last.ui.onSelectedChange(false);
34904             }
34905             this.selNode = node;
34906             node.ui.onSelectedChange(true);
34907             this.fireEvent("selectionchange", this, node, last);
34908         }
34909         return node;
34910     },
34911     
34912     /**
34913      * Deselect a node.
34914      * @param {TreeNode} node The node to unselect
34915      */
34916     unselect : function(node){
34917         if(this.selNode == node){
34918             this.clearSelections();
34919         }    
34920     },
34921     
34922     /**
34923      * Clear all selections
34924      */
34925     clearSelections : function(){
34926         var n = this.selNode;
34927         if(n){
34928             n.ui.onSelectedChange(false);
34929             this.selNode = null;
34930             this.fireEvent("selectionchange", this, null);
34931         }
34932         return n;
34933     },
34934     
34935     /**
34936      * Get the selected node
34937      * @return {TreeNode} The selected node
34938      */
34939     getSelectedNode : function(){
34940         return this.selNode;    
34941     },
34942     
34943     /**
34944      * Returns true if the node is selected
34945      * @param {TreeNode} node The node to check
34946      * @return {Boolean}
34947      */
34948     isSelected : function(node){
34949         return this.selNode == node;  
34950     },
34951
34952     /**
34953      * Selects the node above the selected node in the tree, intelligently walking the nodes
34954      * @return TreeNode The new selection
34955      */
34956     selectPrevious : function(){
34957         var s = this.selNode || this.lastSelNode;
34958         if(!s){
34959             return null;
34960         }
34961         var ps = s.previousSibling;
34962         if(ps){
34963             if(!ps.isExpanded() || ps.childNodes.length < 1){
34964                 return this.select(ps);
34965             } else{
34966                 var lc = ps.lastChild;
34967                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34968                     lc = lc.lastChild;
34969                 }
34970                 return this.select(lc);
34971             }
34972         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34973             return this.select(s.parentNode);
34974         }
34975         return null;
34976     },
34977
34978     /**
34979      * Selects the node above the selected node in the tree, intelligently walking the nodes
34980      * @return TreeNode The new selection
34981      */
34982     selectNext : function(){
34983         var s = this.selNode || this.lastSelNode;
34984         if(!s){
34985             return null;
34986         }
34987         if(s.firstChild && s.isExpanded()){
34988              return this.select(s.firstChild);
34989          }else if(s.nextSibling){
34990              return this.select(s.nextSibling);
34991          }else if(s.parentNode){
34992             var newS = null;
34993             s.parentNode.bubble(function(){
34994                 if(this.nextSibling){
34995                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34996                     return false;
34997                 }
34998             });
34999             return newS;
35000          }
35001         return null;
35002     },
35003
35004     onKeyDown : function(e){
35005         var s = this.selNode || this.lastSelNode;
35006         // undesirable, but required
35007         var sm = this;
35008         if(!s){
35009             return;
35010         }
35011         var k = e.getKey();
35012         switch(k){
35013              case e.DOWN:
35014                  e.stopEvent();
35015                  this.selectNext();
35016              break;
35017              case e.UP:
35018                  e.stopEvent();
35019                  this.selectPrevious();
35020              break;
35021              case e.RIGHT:
35022                  e.preventDefault();
35023                  if(s.hasChildNodes()){
35024                      if(!s.isExpanded()){
35025                          s.expand();
35026                      }else if(s.firstChild){
35027                          this.select(s.firstChild, e);
35028                      }
35029                  }
35030              break;
35031              case e.LEFT:
35032                  e.preventDefault();
35033                  if(s.hasChildNodes() && s.isExpanded()){
35034                      s.collapse();
35035                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
35036                      this.select(s.parentNode, e);
35037                  }
35038              break;
35039         };
35040     }
35041 });
35042
35043 /**
35044  * @class Roo.tree.MultiSelectionModel
35045  * @extends Roo.util.Observable
35046  * Multi selection for a TreePanel.
35047  * @param {Object} cfg Configuration
35048  */
35049 Roo.tree.MultiSelectionModel = function(){
35050    this.selNodes = [];
35051    this.selMap = {};
35052    this.addEvents({
35053        /**
35054         * @event selectionchange
35055         * Fires when the selected nodes change
35056         * @param {MultiSelectionModel} this
35057         * @param {Array} nodes Array of the selected nodes
35058         */
35059        "selectionchange" : true
35060    });
35061    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
35062    
35063 };
35064
35065 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
35066     init : function(tree){
35067         this.tree = tree;
35068         tree.getTreeEl().on("keydown", this.onKeyDown, this);
35069         tree.on("click", this.onNodeClick, this);
35070     },
35071     
35072     onNodeClick : function(node, e){
35073         this.select(node, e, e.ctrlKey);
35074     },
35075     
35076     /**
35077      * Select a node.
35078      * @param {TreeNode} node The node to select
35079      * @param {EventObject} e (optional) An event associated with the selection
35080      * @param {Boolean} keepExisting True to retain existing selections
35081      * @return {TreeNode} The selected node
35082      */
35083     select : function(node, e, keepExisting){
35084         if(keepExisting !== true){
35085             this.clearSelections(true);
35086         }
35087         if(this.isSelected(node)){
35088             this.lastSelNode = node;
35089             return node;
35090         }
35091         this.selNodes.push(node);
35092         this.selMap[node.id] = node;
35093         this.lastSelNode = node;
35094         node.ui.onSelectedChange(true);
35095         this.fireEvent("selectionchange", this, this.selNodes);
35096         return node;
35097     },
35098     
35099     /**
35100      * Deselect a node.
35101      * @param {TreeNode} node The node to unselect
35102      */
35103     unselect : function(node){
35104         if(this.selMap[node.id]){
35105             node.ui.onSelectedChange(false);
35106             var sn = this.selNodes;
35107             var index = -1;
35108             if(sn.indexOf){
35109                 index = sn.indexOf(node);
35110             }else{
35111                 for(var i = 0, len = sn.length; i < len; i++){
35112                     if(sn[i] == node){
35113                         index = i;
35114                         break;
35115                     }
35116                 }
35117             }
35118             if(index != -1){
35119                 this.selNodes.splice(index, 1);
35120             }
35121             delete this.selMap[node.id];
35122             this.fireEvent("selectionchange", this, this.selNodes);
35123         }
35124     },
35125     
35126     /**
35127      * Clear all selections
35128      */
35129     clearSelections : function(suppressEvent){
35130         var sn = this.selNodes;
35131         if(sn.length > 0){
35132             for(var i = 0, len = sn.length; i < len; i++){
35133                 sn[i].ui.onSelectedChange(false);
35134             }
35135             this.selNodes = [];
35136             this.selMap = {};
35137             if(suppressEvent !== true){
35138                 this.fireEvent("selectionchange", this, this.selNodes);
35139             }
35140         }
35141     },
35142     
35143     /**
35144      * Returns true if the node is selected
35145      * @param {TreeNode} node The node to check
35146      * @return {Boolean}
35147      */
35148     isSelected : function(node){
35149         return this.selMap[node.id] ? true : false;  
35150     },
35151     
35152     /**
35153      * Returns an array of the selected nodes
35154      * @return {Array}
35155      */
35156     getSelectedNodes : function(){
35157         return this.selNodes;    
35158     },
35159
35160     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
35161
35162     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
35163
35164     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
35165 });/*
35166  * Based on:
35167  * Ext JS Library 1.1.1
35168  * Copyright(c) 2006-2007, Ext JS, LLC.
35169  *
35170  * Originally Released Under LGPL - original licence link has changed is not relivant.
35171  *
35172  * Fork - LGPL
35173  * <script type="text/javascript">
35174  */
35175  
35176 /**
35177  * @class Roo.tree.TreeNode
35178  * @extends Roo.data.Node
35179  * @cfg {String} text The text for this node
35180  * @cfg {Boolean} expanded true to start the node expanded
35181  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35182  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35183  * @cfg {Boolean} disabled true to start the node disabled
35184  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35185  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35186  * @cfg {String} cls A css class to be added to the node
35187  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35188  * @cfg {String} href URL of the link used for the node (defaults to #)
35189  * @cfg {String} hrefTarget target frame for the link
35190  * @cfg {String} qtip An Ext QuickTip for the node
35191  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35192  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35193  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35194  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35195  * (defaults to undefined with no checkbox rendered)
35196  * @constructor
35197  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35198  */
35199 Roo.tree.TreeNode = function(attributes){
35200     attributes = attributes || {};
35201     if(typeof attributes == "string"){
35202         attributes = {text: attributes};
35203     }
35204     this.childrenRendered = false;
35205     this.rendered = false;
35206     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35207     this.expanded = attributes.expanded === true;
35208     this.isTarget = attributes.isTarget !== false;
35209     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35210     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35211
35212     /**
35213      * Read-only. The text for this node. To change it use setText().
35214      * @type String
35215      */
35216     this.text = attributes.text;
35217     /**
35218      * True if this node is disabled.
35219      * @type Boolean
35220      */
35221     this.disabled = attributes.disabled === true;
35222
35223     this.addEvents({
35224         /**
35225         * @event textchange
35226         * Fires when the text for this node is changed
35227         * @param {Node} this This node
35228         * @param {String} text The new text
35229         * @param {String} oldText The old text
35230         */
35231         "textchange" : true,
35232         /**
35233         * @event beforeexpand
35234         * Fires before this node is expanded, return false to cancel.
35235         * @param {Node} this This node
35236         * @param {Boolean} deep
35237         * @param {Boolean} anim
35238         */
35239         "beforeexpand" : true,
35240         /**
35241         * @event beforecollapse
35242         * Fires before this node is collapsed, return false to cancel.
35243         * @param {Node} this This node
35244         * @param {Boolean} deep
35245         * @param {Boolean} anim
35246         */
35247         "beforecollapse" : true,
35248         /**
35249         * @event expand
35250         * Fires when this node is expanded
35251         * @param {Node} this This node
35252         */
35253         "expand" : true,
35254         /**
35255         * @event disabledchange
35256         * Fires when the disabled status of this node changes
35257         * @param {Node} this This node
35258         * @param {Boolean} disabled
35259         */
35260         "disabledchange" : true,
35261         /**
35262         * @event collapse
35263         * Fires when this node is collapsed
35264         * @param {Node} this This node
35265         */
35266         "collapse" : true,
35267         /**
35268         * @event beforeclick
35269         * Fires before click processing. Return false to cancel the default action.
35270         * @param {Node} this This node
35271         * @param {Roo.EventObject} e The event object
35272         */
35273         "beforeclick":true,
35274         /**
35275         * @event checkchange
35276         * Fires when a node with a checkbox's checked property changes
35277         * @param {Node} this This node
35278         * @param {Boolean} checked
35279         */
35280         "checkchange":true,
35281         /**
35282         * @event click
35283         * Fires when this node is clicked
35284         * @param {Node} this This node
35285         * @param {Roo.EventObject} e The event object
35286         */
35287         "click":true,
35288         /**
35289         * @event dblclick
35290         * Fires when this node is double clicked
35291         * @param {Node} this This node
35292         * @param {Roo.EventObject} e The event object
35293         */
35294         "dblclick":true,
35295         /**
35296         * @event contextmenu
35297         * Fires when this node is right clicked
35298         * @param {Node} this This node
35299         * @param {Roo.EventObject} e The event object
35300         */
35301         "contextmenu":true,
35302         /**
35303         * @event beforechildrenrendered
35304         * Fires right before the child nodes for this node are rendered
35305         * @param {Node} this This node
35306         */
35307         "beforechildrenrendered":true
35308     });
35309
35310     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35311
35312     /**
35313      * Read-only. The UI for this node
35314      * @type TreeNodeUI
35315      */
35316     this.ui = new uiClass(this);
35317     
35318     // finally support items[]
35319     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35320         return;
35321     }
35322     
35323     
35324     Roo.each(this.attributes.items, function(c) {
35325         this.appendChild(Roo.factory(c,Roo.Tree));
35326     }, this);
35327     delete this.attributes.items;
35328     
35329     
35330     
35331 };
35332 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35333     preventHScroll: true,
35334     /**
35335      * Returns true if this node is expanded
35336      * @return {Boolean}
35337      */
35338     isExpanded : function(){
35339         return this.expanded;
35340     },
35341
35342     /**
35343      * Returns the UI object for this node
35344      * @return {TreeNodeUI}
35345      */
35346     getUI : function(){
35347         return this.ui;
35348     },
35349
35350     // private override
35351     setFirstChild : function(node){
35352         var of = this.firstChild;
35353         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35354         if(this.childrenRendered && of && node != of){
35355             of.renderIndent(true, true);
35356         }
35357         if(this.rendered){
35358             this.renderIndent(true, true);
35359         }
35360     },
35361
35362     // private override
35363     setLastChild : function(node){
35364         var ol = this.lastChild;
35365         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35366         if(this.childrenRendered && ol && node != ol){
35367             ol.renderIndent(true, true);
35368         }
35369         if(this.rendered){
35370             this.renderIndent(true, true);
35371         }
35372     },
35373
35374     // these methods are overridden to provide lazy rendering support
35375     // private override
35376     appendChild : function()
35377     {
35378         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35379         if(node && this.childrenRendered){
35380             node.render();
35381         }
35382         this.ui.updateExpandIcon();
35383         return node;
35384     },
35385
35386     // private override
35387     removeChild : function(node){
35388         this.ownerTree.getSelectionModel().unselect(node);
35389         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35390         // if it's been rendered remove dom node
35391         if(this.childrenRendered){
35392             node.ui.remove();
35393         }
35394         if(this.childNodes.length < 1){
35395             this.collapse(false, false);
35396         }else{
35397             this.ui.updateExpandIcon();
35398         }
35399         if(!this.firstChild) {
35400             this.childrenRendered = false;
35401         }
35402         return node;
35403     },
35404
35405     // private override
35406     insertBefore : function(node, refNode){
35407         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35408         if(newNode && refNode && this.childrenRendered){
35409             node.render();
35410         }
35411         this.ui.updateExpandIcon();
35412         return newNode;
35413     },
35414
35415     /**
35416      * Sets the text for this node
35417      * @param {String} text
35418      */
35419     setText : function(text){
35420         var oldText = this.text;
35421         this.text = text;
35422         this.attributes.text = text;
35423         if(this.rendered){ // event without subscribing
35424             this.ui.onTextChange(this, text, oldText);
35425         }
35426         this.fireEvent("textchange", this, text, oldText);
35427     },
35428
35429     /**
35430      * Triggers selection of this node
35431      */
35432     select : function(){
35433         this.getOwnerTree().getSelectionModel().select(this);
35434     },
35435
35436     /**
35437      * Triggers deselection of this node
35438      */
35439     unselect : function(){
35440         this.getOwnerTree().getSelectionModel().unselect(this);
35441     },
35442
35443     /**
35444      * Returns true if this node is selected
35445      * @return {Boolean}
35446      */
35447     isSelected : function(){
35448         return this.getOwnerTree().getSelectionModel().isSelected(this);
35449     },
35450
35451     /**
35452      * Expand this node.
35453      * @param {Boolean} deep (optional) True to expand all children as well
35454      * @param {Boolean} anim (optional) false to cancel the default animation
35455      * @param {Function} callback (optional) A callback to be called when
35456      * expanding this node completes (does not wait for deep expand to complete).
35457      * Called with 1 parameter, this node.
35458      */
35459     expand : function(deep, anim, callback){
35460         if(!this.expanded){
35461             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35462                 return;
35463             }
35464             if(!this.childrenRendered){
35465                 this.renderChildren();
35466             }
35467             this.expanded = true;
35468             
35469             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35470                 this.ui.animExpand(function(){
35471                     this.fireEvent("expand", this);
35472                     if(typeof callback == "function"){
35473                         callback(this);
35474                     }
35475                     if(deep === true){
35476                         this.expandChildNodes(true);
35477                     }
35478                 }.createDelegate(this));
35479                 return;
35480             }else{
35481                 this.ui.expand();
35482                 this.fireEvent("expand", this);
35483                 if(typeof callback == "function"){
35484                     callback(this);
35485                 }
35486             }
35487         }else{
35488            if(typeof callback == "function"){
35489                callback(this);
35490            }
35491         }
35492         if(deep === true){
35493             this.expandChildNodes(true);
35494         }
35495     },
35496
35497     isHiddenRoot : function(){
35498         return this.isRoot && !this.getOwnerTree().rootVisible;
35499     },
35500
35501     /**
35502      * Collapse this node.
35503      * @param {Boolean} deep (optional) True to collapse all children as well
35504      * @param {Boolean} anim (optional) false to cancel the default animation
35505      */
35506     collapse : function(deep, anim){
35507         if(this.expanded && !this.isHiddenRoot()){
35508             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35509                 return;
35510             }
35511             this.expanded = false;
35512             if((this.getOwnerTree().animate && anim !== false) || anim){
35513                 this.ui.animCollapse(function(){
35514                     this.fireEvent("collapse", this);
35515                     if(deep === true){
35516                         this.collapseChildNodes(true);
35517                     }
35518                 }.createDelegate(this));
35519                 return;
35520             }else{
35521                 this.ui.collapse();
35522                 this.fireEvent("collapse", this);
35523             }
35524         }
35525         if(deep === true){
35526             var cs = this.childNodes;
35527             for(var i = 0, len = cs.length; i < len; i++) {
35528                 cs[i].collapse(true, false);
35529             }
35530         }
35531     },
35532
35533     // private
35534     delayedExpand : function(delay){
35535         if(!this.expandProcId){
35536             this.expandProcId = this.expand.defer(delay, this);
35537         }
35538     },
35539
35540     // private
35541     cancelExpand : function(){
35542         if(this.expandProcId){
35543             clearTimeout(this.expandProcId);
35544         }
35545         this.expandProcId = false;
35546     },
35547
35548     /**
35549      * Toggles expanded/collapsed state of the node
35550      */
35551     toggle : function(){
35552         if(this.expanded){
35553             this.collapse();
35554         }else{
35555             this.expand();
35556         }
35557     },
35558
35559     /**
35560      * Ensures all parent nodes are expanded
35561      */
35562     ensureVisible : function(callback){
35563         var tree = this.getOwnerTree();
35564         tree.expandPath(this.parentNode.getPath(), false, function(){
35565             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35566             Roo.callback(callback);
35567         }.createDelegate(this));
35568     },
35569
35570     /**
35571      * Expand all child nodes
35572      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35573      */
35574     expandChildNodes : function(deep){
35575         var cs = this.childNodes;
35576         for(var i = 0, len = cs.length; i < len; i++) {
35577                 cs[i].expand(deep);
35578         }
35579     },
35580
35581     /**
35582      * Collapse all child nodes
35583      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35584      */
35585     collapseChildNodes : function(deep){
35586         var cs = this.childNodes;
35587         for(var i = 0, len = cs.length; i < len; i++) {
35588                 cs[i].collapse(deep);
35589         }
35590     },
35591
35592     /**
35593      * Disables this node
35594      */
35595     disable : function(){
35596         this.disabled = true;
35597         this.unselect();
35598         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35599             this.ui.onDisableChange(this, true);
35600         }
35601         this.fireEvent("disabledchange", this, true);
35602     },
35603
35604     /**
35605      * Enables this node
35606      */
35607     enable : function(){
35608         this.disabled = false;
35609         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35610             this.ui.onDisableChange(this, false);
35611         }
35612         this.fireEvent("disabledchange", this, false);
35613     },
35614
35615     // private
35616     renderChildren : function(suppressEvent){
35617         if(suppressEvent !== false){
35618             this.fireEvent("beforechildrenrendered", this);
35619         }
35620         var cs = this.childNodes;
35621         for(var i = 0, len = cs.length; i < len; i++){
35622             cs[i].render(true);
35623         }
35624         this.childrenRendered = true;
35625     },
35626
35627     // private
35628     sort : function(fn, scope){
35629         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35630         if(this.childrenRendered){
35631             var cs = this.childNodes;
35632             for(var i = 0, len = cs.length; i < len; i++){
35633                 cs[i].render(true);
35634             }
35635         }
35636     },
35637
35638     // private
35639     render : function(bulkRender){
35640         this.ui.render(bulkRender);
35641         if(!this.rendered){
35642             this.rendered = true;
35643             if(this.expanded){
35644                 this.expanded = false;
35645                 this.expand(false, false);
35646             }
35647         }
35648     },
35649
35650     // private
35651     renderIndent : function(deep, refresh){
35652         if(refresh){
35653             this.ui.childIndent = null;
35654         }
35655         this.ui.renderIndent();
35656         if(deep === true && this.childrenRendered){
35657             var cs = this.childNodes;
35658             for(var i = 0, len = cs.length; i < len; i++){
35659                 cs[i].renderIndent(true, refresh);
35660             }
35661         }
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.AsyncTreeNode
35676  * @extends Roo.tree.TreeNode
35677  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35678  * @constructor
35679  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35680  */
35681  Roo.tree.AsyncTreeNode = function(config){
35682     this.loaded = false;
35683     this.loading = false;
35684     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35685     /**
35686     * @event beforeload
35687     * Fires before this node is loaded, return false to cancel
35688     * @param {Node} this This node
35689     */
35690     this.addEvents({'beforeload':true, 'load': true});
35691     /**
35692     * @event load
35693     * Fires when this node is loaded
35694     * @param {Node} this This node
35695     */
35696     /**
35697      * The loader used by this node (defaults to using the tree's defined loader)
35698      * @type TreeLoader
35699      * @property loader
35700      */
35701 };
35702 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35703     expand : function(deep, anim, callback){
35704         if(this.loading){ // if an async load is already running, waiting til it's done
35705             var timer;
35706             var f = function(){
35707                 if(!this.loading){ // done loading
35708                     clearInterval(timer);
35709                     this.expand(deep, anim, callback);
35710                 }
35711             }.createDelegate(this);
35712             timer = setInterval(f, 200);
35713             return;
35714         }
35715         if(!this.loaded){
35716             if(this.fireEvent("beforeload", this) === false){
35717                 return;
35718             }
35719             this.loading = true;
35720             this.ui.beforeLoad(this);
35721             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35722             if(loader){
35723                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35724                 return;
35725             }
35726         }
35727         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35728     },
35729     
35730     /**
35731      * Returns true if this node is currently loading
35732      * @return {Boolean}
35733      */
35734     isLoading : function(){
35735         return this.loading;  
35736     },
35737     
35738     loadComplete : function(deep, anim, callback){
35739         this.loading = false;
35740         this.loaded = true;
35741         this.ui.afterLoad(this);
35742         this.fireEvent("load", this);
35743         this.expand(deep, anim, callback);
35744     },
35745     
35746     /**
35747      * Returns true if this node has been loaded
35748      * @return {Boolean}
35749      */
35750     isLoaded : function(){
35751         return this.loaded;
35752     },
35753     
35754     hasChildNodes : function(){
35755         if(!this.isLeaf() && !this.loaded){
35756             return true;
35757         }else{
35758             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35759         }
35760     },
35761
35762     /**
35763      * Trigger a reload for this node
35764      * @param {Function} callback
35765      */
35766     reload : function(callback){
35767         this.collapse(false, false);
35768         while(this.firstChild){
35769             this.removeChild(this.firstChild);
35770         }
35771         this.childrenRendered = false;
35772         this.loaded = false;
35773         if(this.isHiddenRoot()){
35774             this.expanded = false;
35775         }
35776         this.expand(false, false, callback);
35777     }
35778 });/*
35779  * Based on:
35780  * Ext JS Library 1.1.1
35781  * Copyright(c) 2006-2007, Ext JS, LLC.
35782  *
35783  * Originally Released Under LGPL - original licence link has changed is not relivant.
35784  *
35785  * Fork - LGPL
35786  * <script type="text/javascript">
35787  */
35788  
35789 /**
35790  * @class Roo.tree.TreeNodeUI
35791  * @constructor
35792  * @param {Object} node The node to render
35793  * The TreeNode UI implementation is separate from the
35794  * tree implementation. Unless you are customizing the tree UI,
35795  * you should never have to use this directly.
35796  */
35797 Roo.tree.TreeNodeUI = function(node){
35798     this.node = node;
35799     this.rendered = false;
35800     this.animating = false;
35801     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35802 };
35803
35804 Roo.tree.TreeNodeUI.prototype = {
35805     removeChild : function(node){
35806         if(this.rendered){
35807             this.ctNode.removeChild(node.ui.getEl());
35808         }
35809     },
35810
35811     beforeLoad : function(){
35812          this.addClass("x-tree-node-loading");
35813     },
35814
35815     afterLoad : function(){
35816          this.removeClass("x-tree-node-loading");
35817     },
35818
35819     onTextChange : function(node, text, oldText){
35820         if(this.rendered){
35821             this.textNode.innerHTML = text;
35822         }
35823     },
35824
35825     onDisableChange : function(node, state){
35826         this.disabled = state;
35827         if(state){
35828             this.addClass("x-tree-node-disabled");
35829         }else{
35830             this.removeClass("x-tree-node-disabled");
35831         }
35832     },
35833
35834     onSelectedChange : function(state){
35835         if(state){
35836             this.focus();
35837             this.addClass("x-tree-selected");
35838         }else{
35839             //this.blur();
35840             this.removeClass("x-tree-selected");
35841         }
35842     },
35843
35844     onMove : function(tree, node, oldParent, newParent, index, refNode){
35845         this.childIndent = null;
35846         if(this.rendered){
35847             var targetNode = newParent.ui.getContainer();
35848             if(!targetNode){//target not rendered
35849                 this.holder = document.createElement("div");
35850                 this.holder.appendChild(this.wrap);
35851                 return;
35852             }
35853             var insertBefore = refNode ? refNode.ui.getEl() : null;
35854             if(insertBefore){
35855                 targetNode.insertBefore(this.wrap, insertBefore);
35856             }else{
35857                 targetNode.appendChild(this.wrap);
35858             }
35859             this.node.renderIndent(true);
35860         }
35861     },
35862
35863     addClass : function(cls){
35864         if(this.elNode){
35865             Roo.fly(this.elNode).addClass(cls);
35866         }
35867     },
35868
35869     removeClass : function(cls){
35870         if(this.elNode){
35871             Roo.fly(this.elNode).removeClass(cls);
35872         }
35873     },
35874
35875     remove : function(){
35876         if(this.rendered){
35877             this.holder = document.createElement("div");
35878             this.holder.appendChild(this.wrap);
35879         }
35880     },
35881
35882     fireEvent : function(){
35883         return this.node.fireEvent.apply(this.node, arguments);
35884     },
35885
35886     initEvents : function(){
35887         this.node.on("move", this.onMove, this);
35888         var E = Roo.EventManager;
35889         var a = this.anchor;
35890
35891         var el = Roo.fly(a, '_treeui');
35892
35893         if(Roo.isOpera){ // opera render bug ignores the CSS
35894             el.setStyle("text-decoration", "none");
35895         }
35896
35897         el.on("click", this.onClick, this);
35898         el.on("dblclick", this.onDblClick, this);
35899
35900         if(this.checkbox){
35901             Roo.EventManager.on(this.checkbox,
35902                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35903         }
35904
35905         el.on("contextmenu", this.onContextMenu, this);
35906
35907         var icon = Roo.fly(this.iconNode);
35908         icon.on("click", this.onClick, this);
35909         icon.on("dblclick", this.onDblClick, this);
35910         icon.on("contextmenu", this.onContextMenu, this);
35911         E.on(this.ecNode, "click", this.ecClick, this, true);
35912
35913         if(this.node.disabled){
35914             this.addClass("x-tree-node-disabled");
35915         }
35916         if(this.node.hidden){
35917             this.addClass("x-tree-node-disabled");
35918         }
35919         var ot = this.node.getOwnerTree();
35920         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35921         if(dd && (!this.node.isRoot || ot.rootVisible)){
35922             Roo.dd.Registry.register(this.elNode, {
35923                 node: this.node,
35924                 handles: this.getDDHandles(),
35925                 isHandle: false
35926             });
35927         }
35928     },
35929
35930     getDDHandles : function(){
35931         return [this.iconNode, this.textNode];
35932     },
35933
35934     hide : function(){
35935         if(this.rendered){
35936             this.wrap.style.display = "none";
35937         }
35938     },
35939
35940     show : function(){
35941         if(this.rendered){
35942             this.wrap.style.display = "";
35943         }
35944     },
35945
35946     onContextMenu : function(e){
35947         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35948             e.preventDefault();
35949             this.focus();
35950             this.fireEvent("contextmenu", this.node, e);
35951         }
35952     },
35953
35954     onClick : function(e){
35955         if(this.dropping){
35956             e.stopEvent();
35957             return;
35958         }
35959         if(this.fireEvent("beforeclick", this.node, e) !== false){
35960             if(!this.disabled && this.node.attributes.href){
35961                 this.fireEvent("click", this.node, e);
35962                 return;
35963             }
35964             e.preventDefault();
35965             if(this.disabled){
35966                 return;
35967             }
35968
35969             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35970                 this.node.toggle();
35971             }
35972
35973             this.fireEvent("click", this.node, e);
35974         }else{
35975             e.stopEvent();
35976         }
35977     },
35978
35979     onDblClick : function(e){
35980         e.preventDefault();
35981         if(this.disabled){
35982             return;
35983         }
35984         if(this.checkbox){
35985             this.toggleCheck();
35986         }
35987         if(!this.animating && this.node.hasChildNodes()){
35988             this.node.toggle();
35989         }
35990         this.fireEvent("dblclick", this.node, e);
35991     },
35992
35993     onCheckChange : function(){
35994         var checked = this.checkbox.checked;
35995         this.node.attributes.checked = checked;
35996         this.fireEvent('checkchange', this.node, checked);
35997     },
35998
35999     ecClick : function(e){
36000         if(!this.animating && this.node.hasChildNodes()){
36001             this.node.toggle();
36002         }
36003     },
36004
36005     startDrop : function(){
36006         this.dropping = true;
36007     },
36008
36009     // delayed drop so the click event doesn't get fired on a drop
36010     endDrop : function(){
36011        setTimeout(function(){
36012            this.dropping = false;
36013        }.createDelegate(this), 50);
36014     },
36015
36016     expand : function(){
36017         this.updateExpandIcon();
36018         this.ctNode.style.display = "";
36019     },
36020
36021     focus : function(){
36022         if(!this.node.preventHScroll){
36023             try{this.anchor.focus();
36024             }catch(e){}
36025         }else if(!Roo.isIE){
36026             try{
36027                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
36028                 var l = noscroll.scrollLeft;
36029                 this.anchor.focus();
36030                 noscroll.scrollLeft = l;
36031             }catch(e){}
36032         }
36033     },
36034
36035     toggleCheck : function(value){
36036         var cb = this.checkbox;
36037         if(cb){
36038             cb.checked = (value === undefined ? !cb.checked : value);
36039         }
36040     },
36041
36042     blur : function(){
36043         try{
36044             this.anchor.blur();
36045         }catch(e){}
36046     },
36047
36048     animExpand : function(callback){
36049         var ct = Roo.get(this.ctNode);
36050         ct.stopFx();
36051         if(!this.node.hasChildNodes()){
36052             this.updateExpandIcon();
36053             this.ctNode.style.display = "";
36054             Roo.callback(callback);
36055             return;
36056         }
36057         this.animating = true;
36058         this.updateExpandIcon();
36059
36060         ct.slideIn('t', {
36061            callback : function(){
36062                this.animating = false;
36063                Roo.callback(callback);
36064             },
36065             scope: this,
36066             duration: this.node.ownerTree.duration || .25
36067         });
36068     },
36069
36070     highlight : function(){
36071         var tree = this.node.getOwnerTree();
36072         Roo.fly(this.wrap).highlight(
36073             tree.hlColor || "C3DAF9",
36074             {endColor: tree.hlBaseColor}
36075         );
36076     },
36077
36078     collapse : function(){
36079         this.updateExpandIcon();
36080         this.ctNode.style.display = "none";
36081     },
36082
36083     animCollapse : function(callback){
36084         var ct = Roo.get(this.ctNode);
36085         ct.enableDisplayMode('block');
36086         ct.stopFx();
36087
36088         this.animating = true;
36089         this.updateExpandIcon();
36090
36091         ct.slideOut('t', {
36092             callback : function(){
36093                this.animating = false;
36094                Roo.callback(callback);
36095             },
36096             scope: this,
36097             duration: this.node.ownerTree.duration || .25
36098         });
36099     },
36100
36101     getContainer : function(){
36102         return this.ctNode;
36103     },
36104
36105     getEl : function(){
36106         return this.wrap;
36107     },
36108
36109     appendDDGhost : function(ghostNode){
36110         ghostNode.appendChild(this.elNode.cloneNode(true));
36111     },
36112
36113     getDDRepairXY : function(){
36114         return Roo.lib.Dom.getXY(this.iconNode);
36115     },
36116
36117     onRender : function(){
36118         this.render();
36119     },
36120
36121     render : function(bulkRender){
36122         var n = this.node, a = n.attributes;
36123         var targetNode = n.parentNode ?
36124               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
36125
36126         if(!this.rendered){
36127             this.rendered = true;
36128
36129             this.renderElements(n, a, targetNode, bulkRender);
36130
36131             if(a.qtip){
36132                if(this.textNode.setAttributeNS){
36133                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
36134                    if(a.qtipTitle){
36135                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
36136                    }
36137                }else{
36138                    this.textNode.setAttribute("ext:qtip", a.qtip);
36139                    if(a.qtipTitle){
36140                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
36141                    }
36142                }
36143             }else if(a.qtipCfg){
36144                 a.qtipCfg.target = Roo.id(this.textNode);
36145                 Roo.QuickTips.register(a.qtipCfg);
36146             }
36147             this.initEvents();
36148             if(!this.node.expanded){
36149                 this.updateExpandIcon();
36150             }
36151         }else{
36152             if(bulkRender === true) {
36153                 targetNode.appendChild(this.wrap);
36154             }
36155         }
36156     },
36157
36158     renderElements : function(n, a, targetNode, bulkRender)
36159     {
36160         // add some indent caching, this helps performance when rendering a large tree
36161         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36162         var t = n.getOwnerTree();
36163         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
36164         if (typeof(n.attributes.html) != 'undefined') {
36165             txt = n.attributes.html;
36166         }
36167         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
36168         var cb = typeof a.checked == 'boolean';
36169         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36170         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
36171             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
36172             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
36173             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
36174             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
36175             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
36176              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
36177                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36178             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36179             "</li>"];
36180
36181         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36182             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36183                                 n.nextSibling.ui.getEl(), buf.join(""));
36184         }else{
36185             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36186         }
36187
36188         this.elNode = this.wrap.childNodes[0];
36189         this.ctNode = this.wrap.childNodes[1];
36190         var cs = this.elNode.childNodes;
36191         this.indentNode = cs[0];
36192         this.ecNode = cs[1];
36193         this.iconNode = cs[2];
36194         var index = 3;
36195         if(cb){
36196             this.checkbox = cs[3];
36197             index++;
36198         }
36199         this.anchor = cs[index];
36200         this.textNode = cs[index].firstChild;
36201     },
36202
36203     getAnchor : function(){
36204         return this.anchor;
36205     },
36206
36207     getTextEl : function(){
36208         return this.textNode;
36209     },
36210
36211     getIconEl : function(){
36212         return this.iconNode;
36213     },
36214
36215     isChecked : function(){
36216         return this.checkbox ? this.checkbox.checked : false;
36217     },
36218
36219     updateExpandIcon : function(){
36220         if(this.rendered){
36221             var n = this.node, c1, c2;
36222             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36223             var hasChild = n.hasChildNodes();
36224             if(hasChild){
36225                 if(n.expanded){
36226                     cls += "-minus";
36227                     c1 = "x-tree-node-collapsed";
36228                     c2 = "x-tree-node-expanded";
36229                 }else{
36230                     cls += "-plus";
36231                     c1 = "x-tree-node-expanded";
36232                     c2 = "x-tree-node-collapsed";
36233                 }
36234                 if(this.wasLeaf){
36235                     this.removeClass("x-tree-node-leaf");
36236                     this.wasLeaf = false;
36237                 }
36238                 if(this.c1 != c1 || this.c2 != c2){
36239                     Roo.fly(this.elNode).replaceClass(c1, c2);
36240                     this.c1 = c1; this.c2 = c2;
36241                 }
36242             }else{
36243                 // this changes non-leafs into leafs if they have no children.
36244                 // it's not very rational behaviour..
36245                 
36246                 if(!this.wasLeaf && this.node.leaf){
36247                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36248                     delete this.c1;
36249                     delete this.c2;
36250                     this.wasLeaf = true;
36251                 }
36252             }
36253             var ecc = "x-tree-ec-icon "+cls;
36254             if(this.ecc != ecc){
36255                 this.ecNode.className = ecc;
36256                 this.ecc = ecc;
36257             }
36258         }
36259     },
36260
36261     getChildIndent : function(){
36262         if(!this.childIndent){
36263             var buf = [];
36264             var p = this.node;
36265             while(p){
36266                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36267                     if(!p.isLast()) {
36268                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36269                     } else {
36270                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36271                     }
36272                 }
36273                 p = p.parentNode;
36274             }
36275             this.childIndent = buf.join("");
36276         }
36277         return this.childIndent;
36278     },
36279
36280     renderIndent : function(){
36281         if(this.rendered){
36282             var indent = "";
36283             var p = this.node.parentNode;
36284             if(p){
36285                 indent = p.ui.getChildIndent();
36286             }
36287             if(this.indentMarkup != indent){ // don't rerender if not required
36288                 this.indentNode.innerHTML = indent;
36289                 this.indentMarkup = indent;
36290             }
36291             this.updateExpandIcon();
36292         }
36293     }
36294 };
36295
36296 Roo.tree.RootTreeNodeUI = function(){
36297     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36298 };
36299 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36300     render : function(){
36301         if(!this.rendered){
36302             var targetNode = this.node.ownerTree.innerCt.dom;
36303             this.node.expanded = true;
36304             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36305             this.wrap = this.ctNode = targetNode.firstChild;
36306         }
36307     },
36308     collapse : function(){
36309     },
36310     expand : function(){
36311     }
36312 });/*
36313  * Based on:
36314  * Ext JS Library 1.1.1
36315  * Copyright(c) 2006-2007, Ext JS, LLC.
36316  *
36317  * Originally Released Under LGPL - original licence link has changed is not relivant.
36318  *
36319  * Fork - LGPL
36320  * <script type="text/javascript">
36321  */
36322 /**
36323  * @class Roo.tree.TreeLoader
36324  * @extends Roo.util.Observable
36325  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36326  * nodes from a specified URL. The response must be a javascript Array definition
36327  * who's elements are node definition objects. eg:
36328  * <pre><code>
36329 {  success : true,
36330    data :      [
36331    
36332     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36333     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36334     ]
36335 }
36336
36337
36338 </code></pre>
36339  * <br><br>
36340  * The old style respose with just an array is still supported, but not recommended.
36341  * <br><br>
36342  *
36343  * A server request is sent, and child nodes are loaded only when a node is expanded.
36344  * The loading node's id is passed to the server under the parameter name "node" to
36345  * enable the server to produce the correct child nodes.
36346  * <br><br>
36347  * To pass extra parameters, an event handler may be attached to the "beforeload"
36348  * event, and the parameters specified in the TreeLoader's baseParams property:
36349  * <pre><code>
36350     myTreeLoader.on("beforeload", function(treeLoader, node) {
36351         this.baseParams.category = node.attributes.category;
36352     }, this);
36353     
36354 </code></pre>
36355  *
36356  * This would pass an HTTP parameter called "category" to the server containing
36357  * the value of the Node's "category" attribute.
36358  * @constructor
36359  * Creates a new Treeloader.
36360  * @param {Object} config A config object containing config properties.
36361  */
36362 Roo.tree.TreeLoader = function(config){
36363     this.baseParams = {};
36364     this.requestMethod = "POST";
36365     Roo.apply(this, config);
36366
36367     this.addEvents({
36368     
36369         /**
36370          * @event beforeload
36371          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36372          * @param {Object} This TreeLoader object.
36373          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36374          * @param {Object} callback The callback function specified in the {@link #load} call.
36375          */
36376         beforeload : true,
36377         /**
36378          * @event load
36379          * Fires when the node has been successfuly loaded.
36380          * @param {Object} This TreeLoader object.
36381          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36382          * @param {Object} response The response object containing the data from the server.
36383          */
36384         load : true,
36385         /**
36386          * @event loadexception
36387          * Fires if the network request failed.
36388          * @param {Object} This TreeLoader object.
36389          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36390          * @param {Object} response The response object containing the data from the server.
36391          */
36392         loadexception : true,
36393         /**
36394          * @event create
36395          * Fires before a node is created, enabling you to return custom Node types 
36396          * @param {Object} This TreeLoader object.
36397          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36398          */
36399         create : true
36400     });
36401
36402     Roo.tree.TreeLoader.superclass.constructor.call(this);
36403 };
36404
36405 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36406     /**
36407     * @cfg {String} dataUrl The URL from which to request a Json string which
36408     * specifies an array of node definition object representing the child nodes
36409     * to be loaded.
36410     */
36411     /**
36412     * @cfg {String} requestMethod either GET or POST
36413     * defaults to POST (due to BC)
36414     * to be loaded.
36415     */
36416     /**
36417     * @cfg {Object} baseParams (optional) An object containing properties which
36418     * specify HTTP parameters to be passed to each request for child nodes.
36419     */
36420     /**
36421     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36422     * created by this loader. If the attributes sent by the server have an attribute in this object,
36423     * they take priority.
36424     */
36425     /**
36426     * @cfg {Object} uiProviders (optional) An object containing properties which
36427     * 
36428     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36429     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36430     * <i>uiProvider</i> attribute of a returned child node is a string rather
36431     * than a reference to a TreeNodeUI implementation, this that string value
36432     * is used as a property name in the uiProviders object. You can define the provider named
36433     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36434     */
36435     uiProviders : {},
36436
36437     /**
36438     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36439     * child nodes before loading.
36440     */
36441     clearOnLoad : true,
36442
36443     /**
36444     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36445     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36446     * Grid query { data : [ .....] }
36447     */
36448     
36449     root : false,
36450      /**
36451     * @cfg {String} queryParam (optional) 
36452     * Name of the query as it will be passed on the querystring (defaults to 'node')
36453     * eg. the request will be ?node=[id]
36454     */
36455     
36456     
36457     queryParam: false,
36458     
36459     /**
36460      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36461      * This is called automatically when a node is expanded, but may be used to reload
36462      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36463      * @param {Roo.tree.TreeNode} node
36464      * @param {Function} callback
36465      */
36466     load : function(node, callback){
36467         if(this.clearOnLoad){
36468             while(node.firstChild){
36469                 node.removeChild(node.firstChild);
36470             }
36471         }
36472         if(node.attributes.children){ // preloaded json children
36473             var cs = node.attributes.children;
36474             for(var i = 0, len = cs.length; i < len; i++){
36475                 node.appendChild(this.createNode(cs[i]));
36476             }
36477             if(typeof callback == "function"){
36478                 callback();
36479             }
36480         }else if(this.dataUrl){
36481             this.requestData(node, callback);
36482         }
36483     },
36484
36485     getParams: function(node){
36486         var buf = [], bp = this.baseParams;
36487         for(var key in bp){
36488             if(typeof bp[key] != "function"){
36489                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36490             }
36491         }
36492         var n = this.queryParam === false ? 'node' : this.queryParam;
36493         buf.push(n + "=", encodeURIComponent(node.id));
36494         return buf.join("");
36495     },
36496
36497     requestData : function(node, callback){
36498         if(this.fireEvent("beforeload", this, node, callback) !== false){
36499             this.transId = Roo.Ajax.request({
36500                 method:this.requestMethod,
36501                 url: this.dataUrl||this.url,
36502                 success: this.handleResponse,
36503                 failure: this.handleFailure,
36504                 scope: this,
36505                 argument: {callback: callback, node: node},
36506                 params: this.getParams(node)
36507             });
36508         }else{
36509             // if the load is cancelled, make sure we notify
36510             // the node that we are done
36511             if(typeof callback == "function"){
36512                 callback();
36513             }
36514         }
36515     },
36516
36517     isLoading : function(){
36518         return this.transId ? true : false;
36519     },
36520
36521     abort : function(){
36522         if(this.isLoading()){
36523             Roo.Ajax.abort(this.transId);
36524         }
36525     },
36526
36527     // private
36528     createNode : function(attr)
36529     {
36530         // apply baseAttrs, nice idea Corey!
36531         if(this.baseAttrs){
36532             Roo.applyIf(attr, this.baseAttrs);
36533         }
36534         if(this.applyLoader !== false){
36535             attr.loader = this;
36536         }
36537         // uiProvider = depreciated..
36538         
36539         if(typeof(attr.uiProvider) == 'string'){
36540            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36541                 /**  eval:var:attr */ eval(attr.uiProvider);
36542         }
36543         if(typeof(this.uiProviders['default']) != 'undefined') {
36544             attr.uiProvider = this.uiProviders['default'];
36545         }
36546         
36547         this.fireEvent('create', this, attr);
36548         
36549         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36550         return(attr.leaf ?
36551                         new Roo.tree.TreeNode(attr) :
36552                         new Roo.tree.AsyncTreeNode(attr));
36553     },
36554
36555     processResponse : function(response, node, callback)
36556     {
36557         var json = response.responseText;
36558         try {
36559             
36560             var o = Roo.decode(json);
36561             
36562             if (this.root === false && typeof(o.success) != undefined) {
36563                 this.root = 'data'; // the default behaviour for list like data..
36564                 }
36565                 
36566             if (this.root !== false &&  !o.success) {
36567                 // it's a failure condition.
36568                 var a = response.argument;
36569                 this.fireEvent("loadexception", this, a.node, response);
36570                 Roo.log("Load failed - should have a handler really");
36571                 return;
36572             }
36573             
36574             
36575             
36576             if (this.root !== false) {
36577                  o = o[this.root];
36578             }
36579             
36580             for(var i = 0, len = o.length; i < len; i++){
36581                 var n = this.createNode(o[i]);
36582                 if(n){
36583                     node.appendChild(n);
36584                 }
36585             }
36586             if(typeof callback == "function"){
36587                 callback(this, node);
36588             }
36589         }catch(e){
36590             this.handleFailure(response);
36591         }
36592     },
36593
36594     handleResponse : function(response){
36595         this.transId = false;
36596         var a = response.argument;
36597         this.processResponse(response, a.node, a.callback);
36598         this.fireEvent("load", this, a.node, response);
36599     },
36600
36601     handleFailure : function(response)
36602     {
36603         // should handle failure better..
36604         this.transId = false;
36605         var a = response.argument;
36606         this.fireEvent("loadexception", this, a.node, response);
36607         if(typeof a.callback == "function"){
36608             a.callback(this, a.node);
36609         }
36610     }
36611 });/*
36612  * Based on:
36613  * Ext JS Library 1.1.1
36614  * Copyright(c) 2006-2007, Ext JS, LLC.
36615  *
36616  * Originally Released Under LGPL - original licence link has changed is not relivant.
36617  *
36618  * Fork - LGPL
36619  * <script type="text/javascript">
36620  */
36621
36622 /**
36623 * @class Roo.tree.TreeFilter
36624 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36625 * @param {TreePanel} tree
36626 * @param {Object} config (optional)
36627  */
36628 Roo.tree.TreeFilter = function(tree, config){
36629     this.tree = tree;
36630     this.filtered = {};
36631     Roo.apply(this, config);
36632 };
36633
36634 Roo.tree.TreeFilter.prototype = {
36635     clearBlank:false,
36636     reverse:false,
36637     autoClear:false,
36638     remove:false,
36639
36640      /**
36641      * Filter the data by a specific attribute.
36642      * @param {String/RegExp} value Either string that the attribute value
36643      * should start with or a RegExp to test against the attribute
36644      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36645      * @param {TreeNode} startNode (optional) The node to start the filter at.
36646      */
36647     filter : function(value, attr, startNode){
36648         attr = attr || "text";
36649         var f;
36650         if(typeof value == "string"){
36651             var vlen = value.length;
36652             // auto clear empty filter
36653             if(vlen == 0 && this.clearBlank){
36654                 this.clear();
36655                 return;
36656             }
36657             value = value.toLowerCase();
36658             f = function(n){
36659                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36660             };
36661         }else if(value.exec){ // regex?
36662             f = function(n){
36663                 return value.test(n.attributes[attr]);
36664             };
36665         }else{
36666             throw 'Illegal filter type, must be string or regex';
36667         }
36668         this.filterBy(f, null, startNode);
36669         },
36670
36671     /**
36672      * Filter by a function. The passed function will be called with each
36673      * node in the tree (or from the startNode). If the function returns true, the node is kept
36674      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36675      * @param {Function} fn The filter function
36676      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36677      */
36678     filterBy : function(fn, scope, startNode){
36679         startNode = startNode || this.tree.root;
36680         if(this.autoClear){
36681             this.clear();
36682         }
36683         var af = this.filtered, rv = this.reverse;
36684         var f = function(n){
36685             if(n == startNode){
36686                 return true;
36687             }
36688             if(af[n.id]){
36689                 return false;
36690             }
36691             var m = fn.call(scope || n, n);
36692             if(!m || rv){
36693                 af[n.id] = n;
36694                 n.ui.hide();
36695                 return false;
36696             }
36697             return true;
36698         };
36699         startNode.cascade(f);
36700         if(this.remove){
36701            for(var id in af){
36702                if(typeof id != "function"){
36703                    var n = af[id];
36704                    if(n && n.parentNode){
36705                        n.parentNode.removeChild(n);
36706                    }
36707                }
36708            }
36709         }
36710     },
36711
36712     /**
36713      * Clears the current filter. Note: with the "remove" option
36714      * set a filter cannot be cleared.
36715      */
36716     clear : function(){
36717         var t = this.tree;
36718         var af = this.filtered;
36719         for(var id in af){
36720             if(typeof id != "function"){
36721                 var n = af[id];
36722                 if(n){
36723                     n.ui.show();
36724                 }
36725             }
36726         }
36727         this.filtered = {};
36728     }
36729 };
36730 /*
36731  * Based on:
36732  * Ext JS Library 1.1.1
36733  * Copyright(c) 2006-2007, Ext JS, LLC.
36734  *
36735  * Originally Released Under LGPL - original licence link has changed is not relivant.
36736  *
36737  * Fork - LGPL
36738  * <script type="text/javascript">
36739  */
36740  
36741
36742 /**
36743  * @class Roo.tree.TreeSorter
36744  * Provides sorting of nodes in a TreePanel
36745  * 
36746  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36747  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36748  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36749  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36750  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36751  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36752  * @constructor
36753  * @param {TreePanel} tree
36754  * @param {Object} config
36755  */
36756 Roo.tree.TreeSorter = function(tree, config){
36757     Roo.apply(this, config);
36758     tree.on("beforechildrenrendered", this.doSort, this);
36759     tree.on("append", this.updateSort, this);
36760     tree.on("insert", this.updateSort, this);
36761     
36762     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36763     var p = this.property || "text";
36764     var sortType = this.sortType;
36765     var fs = this.folderSort;
36766     var cs = this.caseSensitive === true;
36767     var leafAttr = this.leafAttr || 'leaf';
36768
36769     this.sortFn = function(n1, n2){
36770         if(fs){
36771             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36772                 return 1;
36773             }
36774             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36775                 return -1;
36776             }
36777         }
36778         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36779         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36780         if(v1 < v2){
36781                         return dsc ? +1 : -1;
36782                 }else if(v1 > v2){
36783                         return dsc ? -1 : +1;
36784         }else{
36785                 return 0;
36786         }
36787     };
36788 };
36789
36790 Roo.tree.TreeSorter.prototype = {
36791     doSort : function(node){
36792         node.sort(this.sortFn);
36793     },
36794     
36795     compareNodes : function(n1, n2){
36796         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36797     },
36798     
36799     updateSort : function(tree, node){
36800         if(node.childrenRendered){
36801             this.doSort.defer(1, this, [node]);
36802         }
36803     }
36804 };/*
36805  * Based on:
36806  * Ext JS Library 1.1.1
36807  * Copyright(c) 2006-2007, Ext JS, LLC.
36808  *
36809  * Originally Released Under LGPL - original licence link has changed is not relivant.
36810  *
36811  * Fork - LGPL
36812  * <script type="text/javascript">
36813  */
36814
36815 if(Roo.dd.DropZone){
36816     
36817 Roo.tree.TreeDropZone = function(tree, config){
36818     this.allowParentInsert = false;
36819     this.allowContainerDrop = false;
36820     this.appendOnly = false;
36821     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36822     this.tree = tree;
36823     this.lastInsertClass = "x-tree-no-status";
36824     this.dragOverData = {};
36825 };
36826
36827 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36828     ddGroup : "TreeDD",
36829     scroll:  true,
36830     
36831     expandDelay : 1000,
36832     
36833     expandNode : function(node){
36834         if(node.hasChildNodes() && !node.isExpanded()){
36835             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36836         }
36837     },
36838     
36839     queueExpand : function(node){
36840         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36841     },
36842     
36843     cancelExpand : function(){
36844         if(this.expandProcId){
36845             clearTimeout(this.expandProcId);
36846             this.expandProcId = false;
36847         }
36848     },
36849     
36850     isValidDropPoint : function(n, pt, dd, e, data){
36851         if(!n || !data){ return false; }
36852         var targetNode = n.node;
36853         var dropNode = data.node;
36854         // default drop rules
36855         if(!(targetNode && targetNode.isTarget && pt)){
36856             return false;
36857         }
36858         if(pt == "append" && targetNode.allowChildren === false){
36859             return false;
36860         }
36861         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36862             return false;
36863         }
36864         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36865             return false;
36866         }
36867         // reuse the object
36868         var overEvent = this.dragOverData;
36869         overEvent.tree = this.tree;
36870         overEvent.target = targetNode;
36871         overEvent.data = data;
36872         overEvent.point = pt;
36873         overEvent.source = dd;
36874         overEvent.rawEvent = e;
36875         overEvent.dropNode = dropNode;
36876         overEvent.cancel = false;  
36877         var result = this.tree.fireEvent("nodedragover", overEvent);
36878         return overEvent.cancel === false && result !== false;
36879     },
36880     
36881     getDropPoint : function(e, n, dd)
36882     {
36883         var tn = n.node;
36884         if(tn.isRoot){
36885             return tn.allowChildren !== false ? "append" : false; // always append for root
36886         }
36887         var dragEl = n.ddel;
36888         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36889         var y = Roo.lib.Event.getPageY(e);
36890         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36891         
36892         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36893         var noAppend = tn.allowChildren === false;
36894         if(this.appendOnly || tn.parentNode.allowChildren === false){
36895             return noAppend ? false : "append";
36896         }
36897         var noBelow = false;
36898         if(!this.allowParentInsert){
36899             noBelow = tn.hasChildNodes() && tn.isExpanded();
36900         }
36901         var q = (b - t) / (noAppend ? 2 : 3);
36902         if(y >= t && y < (t + q)){
36903             return "above";
36904         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36905             return "below";
36906         }else{
36907             return "append";
36908         }
36909     },
36910     
36911     onNodeEnter : function(n, dd, e, data)
36912     {
36913         this.cancelExpand();
36914     },
36915     
36916     onNodeOver : function(n, dd, e, data)
36917     {
36918        
36919         var pt = this.getDropPoint(e, n, dd);
36920         var node = n.node;
36921         
36922         // auto node expand check
36923         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36924             this.queueExpand(node);
36925         }else if(pt != "append"){
36926             this.cancelExpand();
36927         }
36928         
36929         // set the insert point style on the target node
36930         var returnCls = this.dropNotAllowed;
36931         if(this.isValidDropPoint(n, pt, dd, e, data)){
36932            if(pt){
36933                var el = n.ddel;
36934                var cls;
36935                if(pt == "above"){
36936                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36937                    cls = "x-tree-drag-insert-above";
36938                }else if(pt == "below"){
36939                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36940                    cls = "x-tree-drag-insert-below";
36941                }else{
36942                    returnCls = "x-tree-drop-ok-append";
36943                    cls = "x-tree-drag-append";
36944                }
36945                if(this.lastInsertClass != cls){
36946                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36947                    this.lastInsertClass = cls;
36948                }
36949            }
36950        }
36951        return returnCls;
36952     },
36953     
36954     onNodeOut : function(n, dd, e, data){
36955         
36956         this.cancelExpand();
36957         this.removeDropIndicators(n);
36958     },
36959     
36960     onNodeDrop : function(n, dd, e, data){
36961         var point = this.getDropPoint(e, n, dd);
36962         var targetNode = n.node;
36963         targetNode.ui.startDrop();
36964         if(!this.isValidDropPoint(n, point, dd, e, data)){
36965             targetNode.ui.endDrop();
36966             return false;
36967         }
36968         // first try to find the drop node
36969         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36970         var dropEvent = {
36971             tree : this.tree,
36972             target: targetNode,
36973             data: data,
36974             point: point,
36975             source: dd,
36976             rawEvent: e,
36977             dropNode: dropNode,
36978             cancel: !dropNode   
36979         };
36980         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36981         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36982             targetNode.ui.endDrop();
36983             return false;
36984         }
36985         // allow target changing
36986         targetNode = dropEvent.target;
36987         if(point == "append" && !targetNode.isExpanded()){
36988             targetNode.expand(false, null, function(){
36989                 this.completeDrop(dropEvent);
36990             }.createDelegate(this));
36991         }else{
36992             this.completeDrop(dropEvent);
36993         }
36994         return true;
36995     },
36996     
36997     completeDrop : function(de){
36998         var ns = de.dropNode, p = de.point, t = de.target;
36999         if(!(ns instanceof Array)){
37000             ns = [ns];
37001         }
37002         var n;
37003         for(var i = 0, len = ns.length; i < len; i++){
37004             n = ns[i];
37005             if(p == "above"){
37006                 t.parentNode.insertBefore(n, t);
37007             }else if(p == "below"){
37008                 t.parentNode.insertBefore(n, t.nextSibling);
37009             }else{
37010                 t.appendChild(n);
37011             }
37012         }
37013         n.ui.focus();
37014         if(this.tree.hlDrop){
37015             n.ui.highlight();
37016         }
37017         t.ui.endDrop();
37018         this.tree.fireEvent("nodedrop", de);
37019     },
37020     
37021     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
37022         if(this.tree.hlDrop){
37023             dropNode.ui.focus();
37024             dropNode.ui.highlight();
37025         }
37026         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
37027     },
37028     
37029     getTree : function(){
37030         return this.tree;
37031     },
37032     
37033     removeDropIndicators : function(n){
37034         if(n && n.ddel){
37035             var el = n.ddel;
37036             Roo.fly(el).removeClass([
37037                     "x-tree-drag-insert-above",
37038                     "x-tree-drag-insert-below",
37039                     "x-tree-drag-append"]);
37040             this.lastInsertClass = "_noclass";
37041         }
37042     },
37043     
37044     beforeDragDrop : function(target, e, id){
37045         this.cancelExpand();
37046         return true;
37047     },
37048     
37049     afterRepair : function(data){
37050         if(data && Roo.enableFx){
37051             data.node.ui.highlight();
37052         }
37053         this.hideProxy();
37054     } 
37055     
37056 });
37057
37058 }
37059 /*
37060  * Based on:
37061  * Ext JS Library 1.1.1
37062  * Copyright(c) 2006-2007, Ext JS, LLC.
37063  *
37064  * Originally Released Under LGPL - original licence link has changed is not relivant.
37065  *
37066  * Fork - LGPL
37067  * <script type="text/javascript">
37068  */
37069  
37070
37071 if(Roo.dd.DragZone){
37072 Roo.tree.TreeDragZone = function(tree, config){
37073     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
37074     this.tree = tree;
37075 };
37076
37077 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
37078     ddGroup : "TreeDD",
37079    
37080     onBeforeDrag : function(data, e){
37081         var n = data.node;
37082         return n && n.draggable && !n.disabled;
37083     },
37084      
37085     
37086     onInitDrag : function(e){
37087         var data = this.dragData;
37088         this.tree.getSelectionModel().select(data.node);
37089         this.proxy.update("");
37090         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
37091         this.tree.fireEvent("startdrag", this.tree, data.node, e);
37092     },
37093     
37094     getRepairXY : function(e, data){
37095         return data.node.ui.getDDRepairXY();
37096     },
37097     
37098     onEndDrag : function(data, e){
37099         this.tree.fireEvent("enddrag", this.tree, data.node, e);
37100         
37101         
37102     },
37103     
37104     onValidDrop : function(dd, e, id){
37105         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
37106         this.hideProxy();
37107     },
37108     
37109     beforeInvalidDrop : function(e, id){
37110         // this scrolls the original position back into view
37111         var sm = this.tree.getSelectionModel();
37112         sm.clearSelections();
37113         sm.select(this.dragData.node);
37114     }
37115 });
37116 }/*
37117  * Based on:
37118  * Ext JS Library 1.1.1
37119  * Copyright(c) 2006-2007, Ext JS, LLC.
37120  *
37121  * Originally Released Under LGPL - original licence link has changed is not relivant.
37122  *
37123  * Fork - LGPL
37124  * <script type="text/javascript">
37125  */
37126 /**
37127  * @class Roo.tree.TreeEditor
37128  * @extends Roo.Editor
37129  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
37130  * as the editor field.
37131  * @constructor
37132  * @param {Object} config (used to be the tree panel.)
37133  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
37134  * 
37135  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
37136  * @cfg {Roo.form.TextField} field [required] The field configuration
37137  *
37138  * 
37139  */
37140 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
37141     var tree = config;
37142     var field;
37143     if (oldconfig) { // old style..
37144         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
37145     } else {
37146         // new style..
37147         tree = config.tree;
37148         config.field = config.field  || {};
37149         config.field.xtype = 'TextField';
37150         field = Roo.factory(config.field, Roo.form);
37151     }
37152     config = config || {};
37153     
37154     
37155     this.addEvents({
37156         /**
37157          * @event beforenodeedit
37158          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
37159          * false from the handler of this event.
37160          * @param {Editor} this
37161          * @param {Roo.tree.Node} node 
37162          */
37163         "beforenodeedit" : true
37164     });
37165     
37166     //Roo.log(config);
37167     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
37168
37169     this.tree = tree;
37170
37171     tree.on('beforeclick', this.beforeNodeClick, this);
37172     tree.getTreeEl().on('mousedown', this.hide, this);
37173     this.on('complete', this.updateNode, this);
37174     this.on('beforestartedit', this.fitToTree, this);
37175     this.on('startedit', this.bindScroll, this, {delay:10});
37176     this.on('specialkey', this.onSpecialKey, this);
37177 };
37178
37179 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37180     /**
37181      * @cfg {String} alignment
37182      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37183      */
37184     alignment: "l-l",
37185     // inherit
37186     autoSize: false,
37187     /**
37188      * @cfg {Boolean} hideEl
37189      * True to hide the bound element while the editor is displayed (defaults to false)
37190      */
37191     hideEl : false,
37192     /**
37193      * @cfg {String} cls
37194      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37195      */
37196     cls: "x-small-editor x-tree-editor",
37197     /**
37198      * @cfg {Boolean} shim
37199      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37200      */
37201     shim:false,
37202     // inherit
37203     shadow:"frame",
37204     /**
37205      * @cfg {Number} maxWidth
37206      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37207      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37208      * scroll and client offsets into account prior to each edit.
37209      */
37210     maxWidth: 250,
37211
37212     editDelay : 350,
37213
37214     // private
37215     fitToTree : function(ed, el){
37216         var td = this.tree.getTreeEl().dom, nd = el.dom;
37217         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37218             td.scrollLeft = nd.offsetLeft;
37219         }
37220         var w = Math.min(
37221                 this.maxWidth,
37222                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37223         this.setSize(w, '');
37224         
37225         return this.fireEvent('beforenodeedit', this, this.editNode);
37226         
37227     },
37228
37229     // private
37230     triggerEdit : function(node){
37231         this.completeEdit();
37232         this.editNode = node;
37233         this.startEdit(node.ui.textNode, node.text);
37234     },
37235
37236     // private
37237     bindScroll : function(){
37238         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37239     },
37240
37241     // private
37242     beforeNodeClick : function(node, e){
37243         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37244         this.lastClick = new Date();
37245         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37246             e.stopEvent();
37247             this.triggerEdit(node);
37248             return false;
37249         }
37250         return true;
37251     },
37252
37253     // private
37254     updateNode : function(ed, value){
37255         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37256         this.editNode.setText(value);
37257     },
37258
37259     // private
37260     onHide : function(){
37261         Roo.tree.TreeEditor.superclass.onHide.call(this);
37262         if(this.editNode){
37263             this.editNode.ui.focus();
37264         }
37265     },
37266
37267     // private
37268     onSpecialKey : function(field, e){
37269         var k = e.getKey();
37270         if(k == e.ESC){
37271             e.stopEvent();
37272             this.cancelEdit();
37273         }else if(k == e.ENTER && !e.hasModifier()){
37274             e.stopEvent();
37275             this.completeEdit();
37276         }
37277     }
37278 });//<Script type="text/javascript">
37279 /*
37280  * Based on:
37281  * Ext JS Library 1.1.1
37282  * Copyright(c) 2006-2007, Ext JS, LLC.
37283  *
37284  * Originally Released Under LGPL - original licence link has changed is not relivant.
37285  *
37286  * Fork - LGPL
37287  * <script type="text/javascript">
37288  */
37289  
37290 /**
37291  * Not documented??? - probably should be...
37292  */
37293
37294 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37295     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37296     
37297     renderElements : function(n, a, targetNode, bulkRender){
37298         //consel.log("renderElements?");
37299         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37300
37301         var t = n.getOwnerTree();
37302         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37303         
37304         var cols = t.columns;
37305         var bw = t.borderWidth;
37306         var c = cols[0];
37307         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37308          var cb = typeof a.checked == "boolean";
37309         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37310         var colcls = 'x-t-' + tid + '-c0';
37311         var buf = [
37312             '<li class="x-tree-node">',
37313             
37314                 
37315                 '<div class="x-tree-node-el ', a.cls,'">',
37316                     // extran...
37317                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37318                 
37319                 
37320                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37321                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37322                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37323                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37324                            (a.iconCls ? ' '+a.iconCls : ''),
37325                            '" unselectable="on" />',
37326                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37327                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37328                              
37329                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37330                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37331                             '<span unselectable="on" qtip="' + tx + '">',
37332                              tx,
37333                              '</span></a>' ,
37334                     '</div>',
37335                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37336                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37337                  ];
37338         for(var i = 1, len = cols.length; i < len; i++){
37339             c = cols[i];
37340             colcls = 'x-t-' + tid + '-c' +i;
37341             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37342             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37343                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37344                       "</div>");
37345          }
37346          
37347          buf.push(
37348             '</a>',
37349             '<div class="x-clear"></div></div>',
37350             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37351             "</li>");
37352         
37353         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37354             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37355                                 n.nextSibling.ui.getEl(), buf.join(""));
37356         }else{
37357             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37358         }
37359         var el = this.wrap.firstChild;
37360         this.elRow = el;
37361         this.elNode = el.firstChild;
37362         this.ranchor = el.childNodes[1];
37363         this.ctNode = this.wrap.childNodes[1];
37364         var cs = el.firstChild.childNodes;
37365         this.indentNode = cs[0];
37366         this.ecNode = cs[1];
37367         this.iconNode = cs[2];
37368         var index = 3;
37369         if(cb){
37370             this.checkbox = cs[3];
37371             index++;
37372         }
37373         this.anchor = cs[index];
37374         
37375         this.textNode = cs[index].firstChild;
37376         
37377         //el.on("click", this.onClick, this);
37378         //el.on("dblclick", this.onDblClick, this);
37379         
37380         
37381        // console.log(this);
37382     },
37383     initEvents : function(){
37384         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37385         
37386             
37387         var a = this.ranchor;
37388
37389         var el = Roo.get(a);
37390
37391         if(Roo.isOpera){ // opera render bug ignores the CSS
37392             el.setStyle("text-decoration", "none");
37393         }
37394
37395         el.on("click", this.onClick, this);
37396         el.on("dblclick", this.onDblClick, this);
37397         el.on("contextmenu", this.onContextMenu, this);
37398         
37399     },
37400     
37401     /*onSelectedChange : function(state){
37402         if(state){
37403             this.focus();
37404             this.addClass("x-tree-selected");
37405         }else{
37406             //this.blur();
37407             this.removeClass("x-tree-selected");
37408         }
37409     },*/
37410     addClass : function(cls){
37411         if(this.elRow){
37412             Roo.fly(this.elRow).addClass(cls);
37413         }
37414         
37415     },
37416     
37417     
37418     removeClass : function(cls){
37419         if(this.elRow){
37420             Roo.fly(this.elRow).removeClass(cls);
37421         }
37422     }
37423
37424     
37425     
37426 });//<Script type="text/javascript">
37427
37428 /*
37429  * Based on:
37430  * Ext JS Library 1.1.1
37431  * Copyright(c) 2006-2007, Ext JS, LLC.
37432  *
37433  * Originally Released Under LGPL - original licence link has changed is not relivant.
37434  *
37435  * Fork - LGPL
37436  * <script type="text/javascript">
37437  */
37438  
37439
37440 /**
37441  * @class Roo.tree.ColumnTree
37442  * @extends Roo.tree.TreePanel
37443  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37444  * @cfg {int} borderWidth  compined right/left border allowance
37445  * @constructor
37446  * @param {String/HTMLElement/Element} el The container element
37447  * @param {Object} config
37448  */
37449 Roo.tree.ColumnTree =  function(el, config)
37450 {
37451    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37452    this.addEvents({
37453         /**
37454         * @event resize
37455         * Fire this event on a container when it resizes
37456         * @param {int} w Width
37457         * @param {int} h Height
37458         */
37459        "resize" : true
37460     });
37461     this.on('resize', this.onResize, this);
37462 };
37463
37464 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37465     //lines:false,
37466     
37467     
37468     borderWidth: Roo.isBorderBox ? 0 : 2, 
37469     headEls : false,
37470     
37471     render : function(){
37472         // add the header.....
37473        
37474         Roo.tree.ColumnTree.superclass.render.apply(this);
37475         
37476         this.el.addClass('x-column-tree');
37477         
37478         this.headers = this.el.createChild(
37479             {cls:'x-tree-headers'},this.innerCt.dom);
37480    
37481         var cols = this.columns, c;
37482         var totalWidth = 0;
37483         this.headEls = [];
37484         var  len = cols.length;
37485         for(var i = 0; i < len; i++){
37486              c = cols[i];
37487              totalWidth += c.width;
37488             this.headEls.push(this.headers.createChild({
37489                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37490                  cn: {
37491                      cls:'x-tree-hd-text',
37492                      html: c.header
37493                  },
37494                  style:'width:'+(c.width-this.borderWidth)+'px;'
37495              }));
37496         }
37497         this.headers.createChild({cls:'x-clear'});
37498         // prevent floats from wrapping when clipped
37499         this.headers.setWidth(totalWidth);
37500         //this.innerCt.setWidth(totalWidth);
37501         this.innerCt.setStyle({ overflow: 'auto' });
37502         this.onResize(this.width, this.height);
37503              
37504         
37505     },
37506     onResize : function(w,h)
37507     {
37508         this.height = h;
37509         this.width = w;
37510         // resize cols..
37511         this.innerCt.setWidth(this.width);
37512         this.innerCt.setHeight(this.height-20);
37513         
37514         // headers...
37515         var cols = this.columns, c;
37516         var totalWidth = 0;
37517         var expEl = false;
37518         var len = cols.length;
37519         for(var i = 0; i < len; i++){
37520             c = cols[i];
37521             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37522                 // it's the expander..
37523                 expEl  = this.headEls[i];
37524                 continue;
37525             }
37526             totalWidth += c.width;
37527             
37528         }
37529         if (expEl) {
37530             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37531         }
37532         this.headers.setWidth(w-20);
37533
37534         
37535         
37536         
37537     }
37538 });
37539 /*
37540  * Based on:
37541  * Ext JS Library 1.1.1
37542  * Copyright(c) 2006-2007, Ext JS, LLC.
37543  *
37544  * Originally Released Under LGPL - original licence link has changed is not relivant.
37545  *
37546  * Fork - LGPL
37547  * <script type="text/javascript">
37548  */
37549  
37550 /**
37551  * @class Roo.menu.Menu
37552  * @extends Roo.util.Observable
37553  * @children Roo.menu.BaseItem
37554  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37555  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37556  * @constructor
37557  * Creates a new Menu
37558  * @param {Object} config Configuration options
37559  */
37560 Roo.menu.Menu = function(config){
37561     
37562     Roo.menu.Menu.superclass.constructor.call(this, config);
37563     
37564     this.id = this.id || Roo.id();
37565     this.addEvents({
37566         /**
37567          * @event beforeshow
37568          * Fires before this menu is displayed
37569          * @param {Roo.menu.Menu} this
37570          */
37571         beforeshow : true,
37572         /**
37573          * @event beforehide
37574          * Fires before this menu is hidden
37575          * @param {Roo.menu.Menu} this
37576          */
37577         beforehide : true,
37578         /**
37579          * @event show
37580          * Fires after this menu is displayed
37581          * @param {Roo.menu.Menu} this
37582          */
37583         show : true,
37584         /**
37585          * @event hide
37586          * Fires after this menu is hidden
37587          * @param {Roo.menu.Menu} this
37588          */
37589         hide : true,
37590         /**
37591          * @event click
37592          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37593          * @param {Roo.menu.Menu} this
37594          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37595          * @param {Roo.EventObject} e
37596          */
37597         click : true,
37598         /**
37599          * @event mouseover
37600          * Fires when the mouse is hovering over this menu
37601          * @param {Roo.menu.Menu} this
37602          * @param {Roo.EventObject} e
37603          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37604          */
37605         mouseover : true,
37606         /**
37607          * @event mouseout
37608          * Fires when the mouse exits this menu
37609          * @param {Roo.menu.Menu} this
37610          * @param {Roo.EventObject} e
37611          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37612          */
37613         mouseout : true,
37614         /**
37615          * @event itemclick
37616          * Fires when a menu item contained in this menu is clicked
37617          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37618          * @param {Roo.EventObject} e
37619          */
37620         itemclick: true
37621     });
37622     if (this.registerMenu) {
37623         Roo.menu.MenuMgr.register(this);
37624     }
37625     
37626     var mis = this.items;
37627     this.items = new Roo.util.MixedCollection();
37628     if(mis){
37629         this.add.apply(this, mis);
37630     }
37631 };
37632
37633 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37634     /**
37635      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37636      */
37637     minWidth : 120,
37638     /**
37639      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37640      * for bottom-right shadow (defaults to "sides")
37641      */
37642     shadow : "sides",
37643     /**
37644      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37645      * this menu (defaults to "tl-tr?")
37646      */
37647     subMenuAlign : "tl-tr?",
37648     /**
37649      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37650      * relative to its element of origin (defaults to "tl-bl?")
37651      */
37652     defaultAlign : "tl-bl?",
37653     /**
37654      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37655      */
37656     allowOtherMenus : false,
37657     /**
37658      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37659      */
37660     registerMenu : true,
37661
37662     hidden:true,
37663
37664     // private
37665     render : function(){
37666         if(this.el){
37667             return;
37668         }
37669         var el = this.el = new Roo.Layer({
37670             cls: "x-menu",
37671             shadow:this.shadow,
37672             constrain: false,
37673             parentEl: this.parentEl || document.body,
37674             zindex:15000
37675         });
37676
37677         this.keyNav = new Roo.menu.MenuNav(this);
37678
37679         if(this.plain){
37680             el.addClass("x-menu-plain");
37681         }
37682         if(this.cls){
37683             el.addClass(this.cls);
37684         }
37685         // generic focus element
37686         this.focusEl = el.createChild({
37687             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37688         });
37689         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37690         //disabling touch- as it's causing issues ..
37691         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37692         ul.on('click'   , this.onClick, this);
37693         
37694         
37695         ul.on("mouseover", this.onMouseOver, this);
37696         ul.on("mouseout", this.onMouseOut, this);
37697         this.items.each(function(item){
37698             if (item.hidden) {
37699                 return;
37700             }
37701             
37702             var li = document.createElement("li");
37703             li.className = "x-menu-list-item";
37704             ul.dom.appendChild(li);
37705             item.render(li, this);
37706         }, this);
37707         this.ul = ul;
37708         this.autoWidth();
37709     },
37710
37711     // private
37712     autoWidth : function(){
37713         var el = this.el, ul = this.ul;
37714         if(!el){
37715             return;
37716         }
37717         var w = this.width;
37718         if(w){
37719             el.setWidth(w);
37720         }else if(Roo.isIE){
37721             el.setWidth(this.minWidth);
37722             var t = el.dom.offsetWidth; // force recalc
37723             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37724         }
37725     },
37726
37727     // private
37728     delayAutoWidth : function(){
37729         if(this.rendered){
37730             if(!this.awTask){
37731                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37732             }
37733             this.awTask.delay(20);
37734         }
37735     },
37736
37737     // private
37738     findTargetItem : function(e){
37739         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37740         if(t && t.menuItemId){
37741             return this.items.get(t.menuItemId);
37742         }
37743     },
37744
37745     // private
37746     onClick : function(e){
37747         Roo.log("menu.onClick");
37748         var t = this.findTargetItem(e);
37749         if(!t){
37750             return;
37751         }
37752         Roo.log(e);
37753         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37754             if(t == this.activeItem && t.shouldDeactivate(e)){
37755                 this.activeItem.deactivate();
37756                 delete this.activeItem;
37757                 return;
37758             }
37759             if(t.canActivate){
37760                 this.setActiveItem(t, true);
37761             }
37762             return;
37763             
37764             
37765         }
37766         
37767         t.onClick(e);
37768         this.fireEvent("click", this, t, e);
37769     },
37770
37771     // private
37772     setActiveItem : function(item, autoExpand){
37773         if(item != this.activeItem){
37774             if(this.activeItem){
37775                 this.activeItem.deactivate();
37776             }
37777             this.activeItem = item;
37778             item.activate(autoExpand);
37779         }else if(autoExpand){
37780             item.expandMenu();
37781         }
37782     },
37783
37784     // private
37785     tryActivate : function(start, step){
37786         var items = this.items;
37787         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37788             var item = items.get(i);
37789             if(!item.disabled && item.canActivate){
37790                 this.setActiveItem(item, false);
37791                 return item;
37792             }
37793         }
37794         return false;
37795     },
37796
37797     // private
37798     onMouseOver : function(e){
37799         var t;
37800         if(t = this.findTargetItem(e)){
37801             if(t.canActivate && !t.disabled){
37802                 this.setActiveItem(t, true);
37803             }
37804         }
37805         this.fireEvent("mouseover", this, e, t);
37806     },
37807
37808     // private
37809     onMouseOut : function(e){
37810         var t;
37811         if(t = this.findTargetItem(e)){
37812             if(t == this.activeItem && t.shouldDeactivate(e)){
37813                 this.activeItem.deactivate();
37814                 delete this.activeItem;
37815             }
37816         }
37817         this.fireEvent("mouseout", this, e, t);
37818     },
37819
37820     /**
37821      * Read-only.  Returns true if the menu is currently displayed, else false.
37822      * @type Boolean
37823      */
37824     isVisible : function(){
37825         return this.el && !this.hidden;
37826     },
37827
37828     /**
37829      * Displays this menu relative to another element
37830      * @param {String/HTMLElement/Roo.Element} element The element to align to
37831      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37832      * the element (defaults to this.defaultAlign)
37833      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37834      */
37835     show : function(el, pos, parentMenu){
37836         this.parentMenu = parentMenu;
37837         if(!this.el){
37838             this.render();
37839         }
37840         this.fireEvent("beforeshow", this);
37841         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37842     },
37843
37844     /**
37845      * Displays this menu at a specific xy position
37846      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37847      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37848      */
37849     showAt : function(xy, parentMenu, /* private: */_e){
37850         this.parentMenu = parentMenu;
37851         if(!this.el){
37852             this.render();
37853         }
37854         if(_e !== false){
37855             this.fireEvent("beforeshow", this);
37856             xy = this.el.adjustForConstraints(xy);
37857         }
37858         this.el.setXY(xy);
37859         this.el.show();
37860         this.hidden = false;
37861         this.focus();
37862         this.fireEvent("show", this);
37863     },
37864
37865     focus : function(){
37866         if(!this.hidden){
37867             this.doFocus.defer(50, this);
37868         }
37869     },
37870
37871     doFocus : function(){
37872         if(!this.hidden){
37873             this.focusEl.focus();
37874         }
37875     },
37876
37877     /**
37878      * Hides this menu and optionally all parent menus
37879      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37880      */
37881     hide : function(deep){
37882         if(this.el && this.isVisible()){
37883             this.fireEvent("beforehide", this);
37884             if(this.activeItem){
37885                 this.activeItem.deactivate();
37886                 this.activeItem = null;
37887             }
37888             this.el.hide();
37889             this.hidden = true;
37890             this.fireEvent("hide", this);
37891         }
37892         if(deep === true && this.parentMenu){
37893             this.parentMenu.hide(true);
37894         }
37895     },
37896
37897     /**
37898      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37899      * Any of the following are valid:
37900      * <ul>
37901      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37902      * <li>An HTMLElement object which will be converted to a menu item</li>
37903      * <li>A menu item config object that will be created as a new menu item</li>
37904      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37905      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37906      * </ul>
37907      * Usage:
37908      * <pre><code>
37909 // Create the menu
37910 var menu = new Roo.menu.Menu();
37911
37912 // Create a menu item to add by reference
37913 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37914
37915 // Add a bunch of items at once using different methods.
37916 // Only the last item added will be returned.
37917 var item = menu.add(
37918     menuItem,                // add existing item by ref
37919     'Dynamic Item',          // new TextItem
37920     '-',                     // new separator
37921     { text: 'Config Item' }  // new item by config
37922 );
37923 </code></pre>
37924      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37925      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37926      */
37927     add : function(){
37928         var a = arguments, l = a.length, item;
37929         for(var i = 0; i < l; i++){
37930             var el = a[i];
37931             if ((typeof(el) == "object") && el.xtype && el.xns) {
37932                 el = Roo.factory(el, Roo.menu);
37933             }
37934             
37935             if(el.render){ // some kind of Item
37936                 item = this.addItem(el);
37937             }else if(typeof el == "string"){ // string
37938                 if(el == "separator" || el == "-"){
37939                     item = this.addSeparator();
37940                 }else{
37941                     item = this.addText(el);
37942                 }
37943             }else if(el.tagName || el.el){ // element
37944                 item = this.addElement(el);
37945             }else if(typeof el == "object"){ // must be menu item config?
37946                 item = this.addMenuItem(el);
37947             }
37948         }
37949         return item;
37950     },
37951
37952     /**
37953      * Returns this menu's underlying {@link Roo.Element} object
37954      * @return {Roo.Element} The element
37955      */
37956     getEl : function(){
37957         if(!this.el){
37958             this.render();
37959         }
37960         return this.el;
37961     },
37962
37963     /**
37964      * Adds a separator bar to the menu
37965      * @return {Roo.menu.Item} The menu item that was added
37966      */
37967     addSeparator : function(){
37968         return this.addItem(new Roo.menu.Separator());
37969     },
37970
37971     /**
37972      * Adds an {@link Roo.Element} object to the menu
37973      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37974      * @return {Roo.menu.Item} The menu item that was added
37975      */
37976     addElement : function(el){
37977         return this.addItem(new Roo.menu.BaseItem(el));
37978     },
37979
37980     /**
37981      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37982      * @param {Roo.menu.Item} item The menu item to add
37983      * @return {Roo.menu.Item} The menu item that was added
37984      */
37985     addItem : function(item){
37986         this.items.add(item);
37987         if(this.ul){
37988             var li = document.createElement("li");
37989             li.className = "x-menu-list-item";
37990             this.ul.dom.appendChild(li);
37991             item.render(li, this);
37992             this.delayAutoWidth();
37993         }
37994         return item;
37995     },
37996
37997     /**
37998      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37999      * @param {Object} config A MenuItem config object
38000      * @return {Roo.menu.Item} The menu item that was added
38001      */
38002     addMenuItem : function(config){
38003         if(!(config instanceof Roo.menu.Item)){
38004             if(typeof config.checked == "boolean"){ // must be check menu item config?
38005                 config = new Roo.menu.CheckItem(config);
38006             }else{
38007                 config = new Roo.menu.Item(config);
38008             }
38009         }
38010         return this.addItem(config);
38011     },
38012
38013     /**
38014      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
38015      * @param {String} text The text to display in the menu item
38016      * @return {Roo.menu.Item} The menu item that was added
38017      */
38018     addText : function(text){
38019         return this.addItem(new Roo.menu.TextItem({ text : text }));
38020     },
38021
38022     /**
38023      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
38024      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
38025      * @param {Roo.menu.Item} item The menu item to add
38026      * @return {Roo.menu.Item} The menu item that was added
38027      */
38028     insert : function(index, item){
38029         this.items.insert(index, item);
38030         if(this.ul){
38031             var li = document.createElement("li");
38032             li.className = "x-menu-list-item";
38033             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
38034             item.render(li, this);
38035             this.delayAutoWidth();
38036         }
38037         return item;
38038     },
38039
38040     /**
38041      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
38042      * @param {Roo.menu.Item} item The menu item to remove
38043      */
38044     remove : function(item){
38045         this.items.removeKey(item.id);
38046         item.destroy();
38047     },
38048
38049     /**
38050      * Removes and destroys all items in the menu
38051      */
38052     removeAll : function(){
38053         var f;
38054         while(f = this.items.first()){
38055             this.remove(f);
38056         }
38057     }
38058 });
38059
38060 // MenuNav is a private utility class used internally by the Menu
38061 Roo.menu.MenuNav = function(menu){
38062     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
38063     this.scope = this.menu = menu;
38064 };
38065
38066 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
38067     doRelay : function(e, h){
38068         var k = e.getKey();
38069         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
38070             this.menu.tryActivate(0, 1);
38071             return false;
38072         }
38073         return h.call(this.scope || this, e, this.menu);
38074     },
38075
38076     up : function(e, m){
38077         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
38078             m.tryActivate(m.items.length-1, -1);
38079         }
38080     },
38081
38082     down : function(e, m){
38083         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
38084             m.tryActivate(0, 1);
38085         }
38086     },
38087
38088     right : function(e, m){
38089         if(m.activeItem){
38090             m.activeItem.expandMenu(true);
38091         }
38092     },
38093
38094     left : function(e, m){
38095         m.hide();
38096         if(m.parentMenu && m.parentMenu.activeItem){
38097             m.parentMenu.activeItem.activate();
38098         }
38099     },
38100
38101     enter : function(e, m){
38102         if(m.activeItem){
38103             e.stopPropagation();
38104             m.activeItem.onClick(e);
38105             m.fireEvent("click", this, m.activeItem);
38106             return true;
38107         }
38108     }
38109 });/*
38110  * Based on:
38111  * Ext JS Library 1.1.1
38112  * Copyright(c) 2006-2007, Ext JS, LLC.
38113  *
38114  * Originally Released Under LGPL - original licence link has changed is not relivant.
38115  *
38116  * Fork - LGPL
38117  * <script type="text/javascript">
38118  */
38119  
38120 /**
38121  * @class Roo.menu.MenuMgr
38122  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
38123  * @singleton
38124  */
38125 Roo.menu.MenuMgr = function(){
38126    var menus, active, groups = {}, attached = false, lastShow = new Date();
38127
38128    // private - called when first menu is created
38129    function init(){
38130        menus = {};
38131        active = new Roo.util.MixedCollection();
38132        Roo.get(document).addKeyListener(27, function(){
38133            if(active.length > 0){
38134                hideAll();
38135            }
38136        });
38137    }
38138
38139    // private
38140    function hideAll(){
38141        if(active && active.length > 0){
38142            var c = active.clone();
38143            c.each(function(m){
38144                m.hide();
38145            });
38146        }
38147    }
38148
38149    // private
38150    function onHide(m){
38151        active.remove(m);
38152        if(active.length < 1){
38153            Roo.get(document).un("mousedown", onMouseDown);
38154            attached = false;
38155        }
38156    }
38157
38158    // private
38159    function onShow(m){
38160        var last = active.last();
38161        lastShow = new Date();
38162        active.add(m);
38163        if(!attached){
38164            Roo.get(document).on("mousedown", onMouseDown);
38165            attached = true;
38166        }
38167        if(m.parentMenu){
38168           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
38169           m.parentMenu.activeChild = m;
38170        }else if(last && last.isVisible()){
38171           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
38172        }
38173    }
38174
38175    // private
38176    function onBeforeHide(m){
38177        if(m.activeChild){
38178            m.activeChild.hide();
38179        }
38180        if(m.autoHideTimer){
38181            clearTimeout(m.autoHideTimer);
38182            delete m.autoHideTimer;
38183        }
38184    }
38185
38186    // private
38187    function onBeforeShow(m){
38188        var pm = m.parentMenu;
38189        if(!pm && !m.allowOtherMenus){
38190            hideAll();
38191        }else if(pm && pm.activeChild && active != m){
38192            pm.activeChild.hide();
38193        }
38194    }
38195
38196    // private
38197    function onMouseDown(e){
38198        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38199            hideAll();
38200        }
38201    }
38202
38203    // private
38204    function onBeforeCheck(mi, state){
38205        if(state){
38206            var g = groups[mi.group];
38207            for(var i = 0, l = g.length; i < l; i++){
38208                if(g[i] != mi){
38209                    g[i].setChecked(false);
38210                }
38211            }
38212        }
38213    }
38214
38215    return {
38216
38217        /**
38218         * Hides all menus that are currently visible
38219         */
38220        hideAll : function(){
38221             hideAll();  
38222        },
38223
38224        // private
38225        register : function(menu){
38226            if(!menus){
38227                init();
38228            }
38229            menus[menu.id] = menu;
38230            menu.on("beforehide", onBeforeHide);
38231            menu.on("hide", onHide);
38232            menu.on("beforeshow", onBeforeShow);
38233            menu.on("show", onShow);
38234            var g = menu.group;
38235            if(g && menu.events["checkchange"]){
38236                if(!groups[g]){
38237                    groups[g] = [];
38238                }
38239                groups[g].push(menu);
38240                menu.on("checkchange", onCheck);
38241            }
38242        },
38243
38244         /**
38245          * Returns a {@link Roo.menu.Menu} object
38246          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38247          * be used to generate and return a new Menu instance.
38248          */
38249        get : function(menu){
38250            if(typeof menu == "string"){ // menu id
38251                return menus[menu];
38252            }else if(menu.events){  // menu instance
38253                return menu;
38254            }else if(typeof menu.length == 'number'){ // array of menu items?
38255                return new Roo.menu.Menu({items:menu});
38256            }else{ // otherwise, must be a config
38257                return new Roo.menu.Menu(menu);
38258            }
38259        },
38260
38261        // private
38262        unregister : function(menu){
38263            delete menus[menu.id];
38264            menu.un("beforehide", onBeforeHide);
38265            menu.un("hide", onHide);
38266            menu.un("beforeshow", onBeforeShow);
38267            menu.un("show", onShow);
38268            var g = menu.group;
38269            if(g && menu.events["checkchange"]){
38270                groups[g].remove(menu);
38271                menu.un("checkchange", onCheck);
38272            }
38273        },
38274
38275        // private
38276        registerCheckable : function(menuItem){
38277            var g = menuItem.group;
38278            if(g){
38279                if(!groups[g]){
38280                    groups[g] = [];
38281                }
38282                groups[g].push(menuItem);
38283                menuItem.on("beforecheckchange", onBeforeCheck);
38284            }
38285        },
38286
38287        // private
38288        unregisterCheckable : function(menuItem){
38289            var g = menuItem.group;
38290            if(g){
38291                groups[g].remove(menuItem);
38292                menuItem.un("beforecheckchange", onBeforeCheck);
38293            }
38294        }
38295    };
38296 }();/*
38297  * Based on:
38298  * Ext JS Library 1.1.1
38299  * Copyright(c) 2006-2007, Ext JS, LLC.
38300  *
38301  * Originally Released Under LGPL - original licence link has changed is not relivant.
38302  *
38303  * Fork - LGPL
38304  * <script type="text/javascript">
38305  */
38306  
38307
38308 /**
38309  * @class Roo.menu.BaseItem
38310  * @extends Roo.Component
38311  * @abstract
38312  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38313  * management and base configuration options shared by all menu components.
38314  * @constructor
38315  * Creates a new BaseItem
38316  * @param {Object} config Configuration options
38317  */
38318 Roo.menu.BaseItem = function(config){
38319     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38320
38321     this.addEvents({
38322         /**
38323          * @event click
38324          * Fires when this item is clicked
38325          * @param {Roo.menu.BaseItem} this
38326          * @param {Roo.EventObject} e
38327          */
38328         click: true,
38329         /**
38330          * @event activate
38331          * Fires when this item is activated
38332          * @param {Roo.menu.BaseItem} this
38333          */
38334         activate : true,
38335         /**
38336          * @event deactivate
38337          * Fires when this item is deactivated
38338          * @param {Roo.menu.BaseItem} this
38339          */
38340         deactivate : true
38341     });
38342
38343     if(this.handler){
38344         this.on("click", this.handler, this.scope, true);
38345     }
38346 };
38347
38348 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38349     /**
38350      * @cfg {Function} handler
38351      * A function that will handle the click event of this menu item (defaults to undefined)
38352      */
38353     /**
38354      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38355      */
38356     canActivate : false,
38357     
38358      /**
38359      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38360      */
38361     hidden: false,
38362     
38363     /**
38364      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38365      */
38366     activeClass : "x-menu-item-active",
38367     /**
38368      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38369      */
38370     hideOnClick : true,
38371     /**
38372      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38373      */
38374     hideDelay : 100,
38375
38376     // private
38377     ctype: "Roo.menu.BaseItem",
38378
38379     // private
38380     actionMode : "container",
38381
38382     // private
38383     render : function(container, parentMenu){
38384         this.parentMenu = parentMenu;
38385         Roo.menu.BaseItem.superclass.render.call(this, container);
38386         this.container.menuItemId = this.id;
38387     },
38388
38389     // private
38390     onRender : function(container, position){
38391         this.el = Roo.get(this.el);
38392         container.dom.appendChild(this.el.dom);
38393     },
38394
38395     // private
38396     onClick : function(e){
38397         if(!this.disabled && this.fireEvent("click", this, e) !== false
38398                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38399             this.handleClick(e);
38400         }else{
38401             e.stopEvent();
38402         }
38403     },
38404
38405     // private
38406     activate : function(){
38407         if(this.disabled){
38408             return false;
38409         }
38410         var li = this.container;
38411         li.addClass(this.activeClass);
38412         this.region = li.getRegion().adjust(2, 2, -2, -2);
38413         this.fireEvent("activate", this);
38414         return true;
38415     },
38416
38417     // private
38418     deactivate : function(){
38419         this.container.removeClass(this.activeClass);
38420         this.fireEvent("deactivate", this);
38421     },
38422
38423     // private
38424     shouldDeactivate : function(e){
38425         return !this.region || !this.region.contains(e.getPoint());
38426     },
38427
38428     // private
38429     handleClick : function(e){
38430         if(this.hideOnClick){
38431             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38432         }
38433     },
38434
38435     // private
38436     expandMenu : function(autoActivate){
38437         // do nothing
38438     },
38439
38440     // private
38441     hideMenu : function(){
38442         // do nothing
38443     }
38444 });/*
38445  * Based on:
38446  * Ext JS Library 1.1.1
38447  * Copyright(c) 2006-2007, Ext JS, LLC.
38448  *
38449  * Originally Released Under LGPL - original licence link has changed is not relivant.
38450  *
38451  * Fork - LGPL
38452  * <script type="text/javascript">
38453  */
38454  
38455 /**
38456  * @class Roo.menu.Adapter
38457  * @extends Roo.menu.BaseItem
38458  * @abstract
38459  * 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.
38460  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38461  * @constructor
38462  * Creates a new Adapter
38463  * @param {Object} config Configuration options
38464  */
38465 Roo.menu.Adapter = function(component, config){
38466     Roo.menu.Adapter.superclass.constructor.call(this, config);
38467     this.component = component;
38468 };
38469 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38470     // private
38471     canActivate : true,
38472
38473     // private
38474     onRender : function(container, position){
38475         this.component.render(container);
38476         this.el = this.component.getEl();
38477     },
38478
38479     // private
38480     activate : function(){
38481         if(this.disabled){
38482             return false;
38483         }
38484         this.component.focus();
38485         this.fireEvent("activate", this);
38486         return true;
38487     },
38488
38489     // private
38490     deactivate : function(){
38491         this.fireEvent("deactivate", this);
38492     },
38493
38494     // private
38495     disable : function(){
38496         this.component.disable();
38497         Roo.menu.Adapter.superclass.disable.call(this);
38498     },
38499
38500     // private
38501     enable : function(){
38502         this.component.enable();
38503         Roo.menu.Adapter.superclass.enable.call(this);
38504     }
38505 });/*
38506  * Based on:
38507  * Ext JS Library 1.1.1
38508  * Copyright(c) 2006-2007, Ext JS, LLC.
38509  *
38510  * Originally Released Under LGPL - original licence link has changed is not relivant.
38511  *
38512  * Fork - LGPL
38513  * <script type="text/javascript">
38514  */
38515
38516 /**
38517  * @class Roo.menu.TextItem
38518  * @extends Roo.menu.BaseItem
38519  * Adds a static text string to a menu, usually used as either a heading or group separator.
38520  * Note: old style constructor with text is still supported.
38521  * 
38522  * @constructor
38523  * Creates a new TextItem
38524  * @param {Object} cfg Configuration
38525  */
38526 Roo.menu.TextItem = function(cfg){
38527     if (typeof(cfg) == 'string') {
38528         this.text = cfg;
38529     } else {
38530         Roo.apply(this,cfg);
38531     }
38532     
38533     Roo.menu.TextItem.superclass.constructor.call(this);
38534 };
38535
38536 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38537     /**
38538      * @cfg {String} text Text to show on item.
38539      */
38540     text : '',
38541     
38542     /**
38543      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38544      */
38545     hideOnClick : false,
38546     /**
38547      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38548      */
38549     itemCls : "x-menu-text",
38550
38551     // private
38552     onRender : function(){
38553         var s = document.createElement("span");
38554         s.className = this.itemCls;
38555         s.innerHTML = this.text;
38556         this.el = s;
38557         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38558     }
38559 });/*
38560  * Based on:
38561  * Ext JS Library 1.1.1
38562  * Copyright(c) 2006-2007, Ext JS, LLC.
38563  *
38564  * Originally Released Under LGPL - original licence link has changed is not relivant.
38565  *
38566  * Fork - LGPL
38567  * <script type="text/javascript">
38568  */
38569
38570 /**
38571  * @class Roo.menu.Separator
38572  * @extends Roo.menu.BaseItem
38573  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38574  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38575  * @constructor
38576  * @param {Object} config Configuration options
38577  */
38578 Roo.menu.Separator = function(config){
38579     Roo.menu.Separator.superclass.constructor.call(this, config);
38580 };
38581
38582 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38583     /**
38584      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38585      */
38586     itemCls : "x-menu-sep",
38587     /**
38588      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38589      */
38590     hideOnClick : false,
38591
38592     // private
38593     onRender : function(li){
38594         var s = document.createElement("span");
38595         s.className = this.itemCls;
38596         s.innerHTML = "&#160;";
38597         this.el = s;
38598         li.addClass("x-menu-sep-li");
38599         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38600     }
38601 });/*
38602  * Based on:
38603  * Ext JS Library 1.1.1
38604  * Copyright(c) 2006-2007, Ext JS, LLC.
38605  *
38606  * Originally Released Under LGPL - original licence link has changed is not relivant.
38607  *
38608  * Fork - LGPL
38609  * <script type="text/javascript">
38610  */
38611 /**
38612  * @class Roo.menu.Item
38613  * @extends Roo.menu.BaseItem
38614  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38615  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38616  * activation and click handling.
38617  * @constructor
38618  * Creates a new Item
38619  * @param {Object} config Configuration options
38620  */
38621 Roo.menu.Item = function(config){
38622     Roo.menu.Item.superclass.constructor.call(this, config);
38623     if(this.menu){
38624         this.menu = Roo.menu.MenuMgr.get(this.menu);
38625     }
38626 };
38627 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38628     /**
38629      * @cfg {Roo.menu.Menu} menu
38630      * A Sub menu
38631      */
38632     /**
38633      * @cfg {String} text
38634      * The text to show on the menu item.
38635      */
38636     text: '',
38637      /**
38638      * @cfg {String} HTML to render in menu
38639      * The text to show on the menu item (HTML version).
38640      */
38641     html: '',
38642     /**
38643      * @cfg {String} icon
38644      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38645      */
38646     icon: undefined,
38647     /**
38648      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38649      */
38650     itemCls : "x-menu-item",
38651     /**
38652      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38653      */
38654     canActivate : true,
38655     /**
38656      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38657      */
38658     showDelay: 200,
38659     // doc'd in BaseItem
38660     hideDelay: 200,
38661
38662     // private
38663     ctype: "Roo.menu.Item",
38664     
38665     // private
38666     onRender : function(container, position){
38667         var el = document.createElement("a");
38668         el.hideFocus = true;
38669         el.unselectable = "on";
38670         el.href = this.href || "#";
38671         if(this.hrefTarget){
38672             el.target = this.hrefTarget;
38673         }
38674         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38675         
38676         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38677         
38678         el.innerHTML = String.format(
38679                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38680                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38681         this.el = el;
38682         Roo.menu.Item.superclass.onRender.call(this, container, position);
38683     },
38684
38685     /**
38686      * Sets the text to display in this menu item
38687      * @param {String} text The text to display
38688      * @param {Boolean} isHTML true to indicate text is pure html.
38689      */
38690     setText : function(text, isHTML){
38691         if (isHTML) {
38692             this.html = text;
38693         } else {
38694             this.text = text;
38695             this.html = '';
38696         }
38697         if(this.rendered){
38698             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38699      
38700             this.el.update(String.format(
38701                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38702                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38703             this.parentMenu.autoWidth();
38704         }
38705     },
38706
38707     // private
38708     handleClick : function(e){
38709         if(!this.href){ // if no link defined, stop the event automatically
38710             e.stopEvent();
38711         }
38712         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38713     },
38714
38715     // private
38716     activate : function(autoExpand){
38717         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38718             this.focus();
38719             if(autoExpand){
38720                 this.expandMenu();
38721             }
38722         }
38723         return true;
38724     },
38725
38726     // private
38727     shouldDeactivate : function(e){
38728         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38729             if(this.menu && this.menu.isVisible()){
38730                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38731             }
38732             return true;
38733         }
38734         return false;
38735     },
38736
38737     // private
38738     deactivate : function(){
38739         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38740         this.hideMenu();
38741     },
38742
38743     // private
38744     expandMenu : function(autoActivate){
38745         if(!this.disabled && this.menu){
38746             clearTimeout(this.hideTimer);
38747             delete this.hideTimer;
38748             if(!this.menu.isVisible() && !this.showTimer){
38749                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38750             }else if (this.menu.isVisible() && autoActivate){
38751                 this.menu.tryActivate(0, 1);
38752             }
38753         }
38754     },
38755
38756     // private
38757     deferExpand : function(autoActivate){
38758         delete this.showTimer;
38759         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38760         if(autoActivate){
38761             this.menu.tryActivate(0, 1);
38762         }
38763     },
38764
38765     // private
38766     hideMenu : function(){
38767         clearTimeout(this.showTimer);
38768         delete this.showTimer;
38769         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38770             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38771         }
38772     },
38773
38774     // private
38775     deferHide : function(){
38776         delete this.hideTimer;
38777         this.menu.hide();
38778     }
38779 });/*
38780  * Based on:
38781  * Ext JS Library 1.1.1
38782  * Copyright(c) 2006-2007, Ext JS, LLC.
38783  *
38784  * Originally Released Under LGPL - original licence link has changed is not relivant.
38785  *
38786  * Fork - LGPL
38787  * <script type="text/javascript">
38788  */
38789  
38790 /**
38791  * @class Roo.menu.CheckItem
38792  * @extends Roo.menu.Item
38793  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38794  * @constructor
38795  * Creates a new CheckItem
38796  * @param {Object} config Configuration options
38797  */
38798 Roo.menu.CheckItem = function(config){
38799     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38800     this.addEvents({
38801         /**
38802          * @event beforecheckchange
38803          * Fires before the checked value is set, providing an opportunity to cancel if needed
38804          * @param {Roo.menu.CheckItem} this
38805          * @param {Boolean} checked The new checked value that will be set
38806          */
38807         "beforecheckchange" : true,
38808         /**
38809          * @event checkchange
38810          * Fires after the checked value has been set
38811          * @param {Roo.menu.CheckItem} this
38812          * @param {Boolean} checked The checked value that was set
38813          */
38814         "checkchange" : true
38815     });
38816     if(this.checkHandler){
38817         this.on('checkchange', this.checkHandler, this.scope);
38818     }
38819 };
38820 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38821     /**
38822      * @cfg {String} group
38823      * All check items with the same group name will automatically be grouped into a single-select
38824      * radio button group (defaults to '')
38825      */
38826     /**
38827      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38828      */
38829     itemCls : "x-menu-item x-menu-check-item",
38830     /**
38831      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38832      */
38833     groupClass : "x-menu-group-item",
38834
38835     /**
38836      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38837      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38838      * initialized with checked = true will be rendered as checked.
38839      */
38840     checked: false,
38841
38842     // private
38843     ctype: "Roo.menu.CheckItem",
38844
38845     // private
38846     onRender : function(c){
38847         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38848         if(this.group){
38849             this.el.addClass(this.groupClass);
38850         }
38851         Roo.menu.MenuMgr.registerCheckable(this);
38852         if(this.checked){
38853             this.checked = false;
38854             this.setChecked(true, true);
38855         }
38856     },
38857
38858     // private
38859     destroy : function(){
38860         if(this.rendered){
38861             Roo.menu.MenuMgr.unregisterCheckable(this);
38862         }
38863         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38864     },
38865
38866     /**
38867      * Set the checked state of this item
38868      * @param {Boolean} checked The new checked value
38869      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38870      */
38871     setChecked : function(state, suppressEvent){
38872         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38873             if(this.container){
38874                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38875             }
38876             this.checked = state;
38877             if(suppressEvent !== true){
38878                 this.fireEvent("checkchange", this, state);
38879             }
38880         }
38881     },
38882
38883     // private
38884     handleClick : function(e){
38885        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38886            this.setChecked(!this.checked);
38887        }
38888        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38889     }
38890 });/*
38891  * Based on:
38892  * Ext JS Library 1.1.1
38893  * Copyright(c) 2006-2007, Ext JS, LLC.
38894  *
38895  * Originally Released Under LGPL - original licence link has changed is not relivant.
38896  *
38897  * Fork - LGPL
38898  * <script type="text/javascript">
38899  */
38900  
38901 /**
38902  * @class Roo.menu.DateItem
38903  * @extends Roo.menu.Adapter
38904  * A menu item that wraps the {@link Roo.DatPicker} component.
38905  * @constructor
38906  * Creates a new DateItem
38907  * @param {Object} config Configuration options
38908  */
38909 Roo.menu.DateItem = function(config){
38910     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38911     /** The Roo.DatePicker object @type Roo.DatePicker */
38912     this.picker = this.component;
38913     this.addEvents({select: true});
38914     
38915     this.picker.on("render", function(picker){
38916         picker.getEl().swallowEvent("click");
38917         picker.container.addClass("x-menu-date-item");
38918     });
38919
38920     this.picker.on("select", this.onSelect, this);
38921 };
38922
38923 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38924     // private
38925     onSelect : function(picker, date){
38926         this.fireEvent("select", this, date, picker);
38927         Roo.menu.DateItem.superclass.handleClick.call(this);
38928     }
38929 });/*
38930  * Based on:
38931  * Ext JS Library 1.1.1
38932  * Copyright(c) 2006-2007, Ext JS, LLC.
38933  *
38934  * Originally Released Under LGPL - original licence link has changed is not relivant.
38935  *
38936  * Fork - LGPL
38937  * <script type="text/javascript">
38938  */
38939  
38940 /**
38941  * @class Roo.menu.ColorItem
38942  * @extends Roo.menu.Adapter
38943  * A menu item that wraps the {@link Roo.ColorPalette} component.
38944  * @constructor
38945  * Creates a new ColorItem
38946  * @param {Object} config Configuration options
38947  */
38948 Roo.menu.ColorItem = function(config){
38949     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38950     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38951     this.palette = this.component;
38952     this.relayEvents(this.palette, ["select"]);
38953     if(this.selectHandler){
38954         this.on('select', this.selectHandler, this.scope);
38955     }
38956 };
38957 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38958  * Based on:
38959  * Ext JS Library 1.1.1
38960  * Copyright(c) 2006-2007, Ext JS, LLC.
38961  *
38962  * Originally Released Under LGPL - original licence link has changed is not relivant.
38963  *
38964  * Fork - LGPL
38965  * <script type="text/javascript">
38966  */
38967  
38968
38969 /**
38970  * @class Roo.menu.DateMenu
38971  * @extends Roo.menu.Menu
38972  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38973  * @constructor
38974  * Creates a new DateMenu
38975  * @param {Object} config Configuration options
38976  */
38977 Roo.menu.DateMenu = function(config){
38978     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38979     this.plain = true;
38980     var di = new Roo.menu.DateItem(config);
38981     this.add(di);
38982     /**
38983      * The {@link Roo.DatePicker} instance for this DateMenu
38984      * @type DatePicker
38985      */
38986     this.picker = di.picker;
38987     /**
38988      * @event select
38989      * @param {DatePicker} picker
38990      * @param {Date} date
38991      */
38992     this.relayEvents(di, ["select"]);
38993     this.on('beforeshow', function(){
38994         if(this.picker){
38995             this.picker.hideMonthPicker(false);
38996         }
38997     }, this);
38998 };
38999 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
39000     cls:'x-date-menu'
39001 });/*
39002  * Based on:
39003  * Ext JS Library 1.1.1
39004  * Copyright(c) 2006-2007, Ext JS, LLC.
39005  *
39006  * Originally Released Under LGPL - original licence link has changed is not relivant.
39007  *
39008  * Fork - LGPL
39009  * <script type="text/javascript">
39010  */
39011  
39012
39013 /**
39014  * @class Roo.menu.ColorMenu
39015  * @extends Roo.menu.Menu
39016  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
39017  * @constructor
39018  * Creates a new ColorMenu
39019  * @param {Object} config Configuration options
39020  */
39021 Roo.menu.ColorMenu = function(config){
39022     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
39023     this.plain = true;
39024     var ci = new Roo.menu.ColorItem(config);
39025     this.add(ci);
39026     /**
39027      * The {@link Roo.ColorPalette} instance for this ColorMenu
39028      * @type ColorPalette
39029      */
39030     this.palette = ci.palette;
39031     /**
39032      * @event select
39033      * @param {ColorPalette} palette
39034      * @param {String} color
39035      */
39036     this.relayEvents(ci, ["select"]);
39037 };
39038 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
39039  * Based on:
39040  * Ext JS Library 1.1.1
39041  * Copyright(c) 2006-2007, Ext JS, LLC.
39042  *
39043  * Originally Released Under LGPL - original licence link has changed is not relivant.
39044  *
39045  * Fork - LGPL
39046  * <script type="text/javascript">
39047  */
39048  
39049 /**
39050  * @class Roo.form.TextItem
39051  * @extends Roo.BoxComponent
39052  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39053  * @constructor
39054  * Creates a new TextItem
39055  * @param {Object} config Configuration options
39056  */
39057 Roo.form.TextItem = function(config){
39058     Roo.form.TextItem.superclass.constructor.call(this, config);
39059 };
39060
39061 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
39062     
39063     /**
39064      * @cfg {String} tag the tag for this item (default div)
39065      */
39066     tag : 'div',
39067     /**
39068      * @cfg {String} html the content for this item
39069      */
39070     html : '',
39071     
39072     getAutoCreate : function()
39073     {
39074         var cfg = {
39075             id: this.id,
39076             tag: this.tag,
39077             html: this.html,
39078             cls: 'x-form-item'
39079         };
39080         
39081         return cfg;
39082         
39083     },
39084     
39085     onRender : function(ct, position)
39086     {
39087         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
39088         
39089         if(!this.el){
39090             var cfg = this.getAutoCreate();
39091             if(!cfg.name){
39092                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39093             }
39094             if (!cfg.name.length) {
39095                 delete cfg.name;
39096             }
39097             this.el = ct.createChild(cfg, position);
39098         }
39099     },
39100     /*
39101      * setHTML
39102      * @param {String} html update the Contents of the element.
39103      */
39104     setHTML : function(html)
39105     {
39106         this.fieldEl.dom.innerHTML = html;
39107     }
39108     
39109 });/*
39110  * Based on:
39111  * Ext JS Library 1.1.1
39112  * Copyright(c) 2006-2007, Ext JS, LLC.
39113  *
39114  * Originally Released Under LGPL - original licence link has changed is not relivant.
39115  *
39116  * Fork - LGPL
39117  * <script type="text/javascript">
39118  */
39119  
39120 /**
39121  * @class Roo.form.Field
39122  * @extends Roo.BoxComponent
39123  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39124  * @constructor
39125  * Creates a new Field
39126  * @param {Object} config Configuration options
39127  */
39128 Roo.form.Field = function(config){
39129     Roo.form.Field.superclass.constructor.call(this, config);
39130 };
39131
39132 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
39133     /**
39134      * @cfg {String} fieldLabel Label to use when rendering a form.
39135      */
39136        /**
39137      * @cfg {String} qtip Mouse over tip
39138      */
39139      
39140     /**
39141      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
39142      */
39143     invalidClass : "x-form-invalid",
39144     /**
39145      * @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")
39146      */
39147     invalidText : "The value in this field is invalid",
39148     /**
39149      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
39150      */
39151     focusClass : "x-form-focus",
39152     /**
39153      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
39154       automatic validation (defaults to "keyup").
39155      */
39156     validationEvent : "keyup",
39157     /**
39158      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
39159      */
39160     validateOnBlur : true,
39161     /**
39162      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
39163      */
39164     validationDelay : 250,
39165     /**
39166      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39167      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
39168      */
39169     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
39170     /**
39171      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
39172      */
39173     fieldClass : "x-form-field",
39174     /**
39175      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
39176      *<pre>
39177 Value         Description
39178 -----------   ----------------------------------------------------------------------
39179 qtip          Display a quick tip when the user hovers over the field
39180 title         Display a default browser title attribute popup
39181 under         Add a block div beneath the field containing the error text
39182 side          Add an error icon to the right of the field with a popup on hover
39183 [element id]  Add the error text directly to the innerHTML of the specified element
39184 </pre>
39185      */
39186     msgTarget : 'qtip',
39187     /**
39188      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39189      */
39190     msgFx : 'normal',
39191
39192     /**
39193      * @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.
39194      */
39195     readOnly : false,
39196
39197     /**
39198      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39199      */
39200     disabled : false,
39201
39202     /**
39203      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39204      */
39205     inputType : undefined,
39206     
39207     /**
39208      * @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).
39209          */
39210         tabIndex : undefined,
39211         
39212     // private
39213     isFormField : true,
39214
39215     // private
39216     hasFocus : false,
39217     /**
39218      * @property {Roo.Element} fieldEl
39219      * Element Containing the rendered Field (with label etc.)
39220      */
39221     /**
39222      * @cfg {Mixed} value A value to initialize this field with.
39223      */
39224     value : undefined,
39225
39226     /**
39227      * @cfg {String} name The field's HTML name attribute.
39228      */
39229     /**
39230      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39231      */
39232     // private
39233     loadedValue : false,
39234      
39235      
39236         // private ??
39237         initComponent : function(){
39238         Roo.form.Field.superclass.initComponent.call(this);
39239         this.addEvents({
39240             /**
39241              * @event focus
39242              * Fires when this field receives input focus.
39243              * @param {Roo.form.Field} this
39244              */
39245             focus : true,
39246             /**
39247              * @event blur
39248              * Fires when this field loses input focus.
39249              * @param {Roo.form.Field} this
39250              */
39251             blur : true,
39252             /**
39253              * @event specialkey
39254              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39255              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39256              * @param {Roo.form.Field} this
39257              * @param {Roo.EventObject} e The event object
39258              */
39259             specialkey : true,
39260             /**
39261              * @event change
39262              * Fires just before the field blurs if the field value has changed.
39263              * @param {Roo.form.Field} this
39264              * @param {Mixed} newValue The new value
39265              * @param {Mixed} oldValue The original value
39266              */
39267             change : true,
39268             /**
39269              * @event invalid
39270              * Fires after the field has been marked as invalid.
39271              * @param {Roo.form.Field} this
39272              * @param {String} msg The validation message
39273              */
39274             invalid : true,
39275             /**
39276              * @event valid
39277              * Fires after the field has been validated with no errors.
39278              * @param {Roo.form.Field} this
39279              */
39280             valid : true,
39281              /**
39282              * @event keyup
39283              * Fires after the key up
39284              * @param {Roo.form.Field} this
39285              * @param {Roo.EventObject}  e The event Object
39286              */
39287             keyup : true
39288         });
39289     },
39290
39291     /**
39292      * Returns the name attribute of the field if available
39293      * @return {String} name The field name
39294      */
39295     getName: function(){
39296          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39297     },
39298
39299     // private
39300     onRender : function(ct, position){
39301         Roo.form.Field.superclass.onRender.call(this, ct, position);
39302         if(!this.el){
39303             var cfg = this.getAutoCreate();
39304             if(!cfg.name){
39305                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39306             }
39307             if (!cfg.name.length) {
39308                 delete cfg.name;
39309             }
39310             if(this.inputType){
39311                 cfg.type = this.inputType;
39312             }
39313             this.el = ct.createChild(cfg, position);
39314         }
39315         var type = this.el.dom.type;
39316         if(type){
39317             if(type == 'password'){
39318                 type = 'text';
39319             }
39320             this.el.addClass('x-form-'+type);
39321         }
39322         if(this.readOnly){
39323             this.el.dom.readOnly = true;
39324         }
39325         if(this.tabIndex !== undefined){
39326             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39327         }
39328
39329         this.el.addClass([this.fieldClass, this.cls]);
39330         this.initValue();
39331     },
39332
39333     /**
39334      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39335      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39336      * @return {Roo.form.Field} this
39337      */
39338     applyTo : function(target){
39339         this.allowDomMove = false;
39340         this.el = Roo.get(target);
39341         this.render(this.el.dom.parentNode);
39342         return this;
39343     },
39344
39345     // private
39346     initValue : function(){
39347         if(this.value !== undefined){
39348             this.setValue(this.value);
39349         }else if(this.el.dom.value.length > 0){
39350             this.setValue(this.el.dom.value);
39351         }
39352     },
39353
39354     /**
39355      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39356      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39357      */
39358     isDirty : function() {
39359         if(this.disabled) {
39360             return false;
39361         }
39362         return String(this.getValue()) !== String(this.originalValue);
39363     },
39364
39365     /**
39366      * stores the current value in loadedValue
39367      */
39368     resetHasChanged : function()
39369     {
39370         this.loadedValue = String(this.getValue());
39371     },
39372     /**
39373      * checks the current value against the 'loaded' value.
39374      * Note - will return false if 'resetHasChanged' has not been called first.
39375      */
39376     hasChanged : function()
39377     {
39378         if(this.disabled || this.readOnly) {
39379             return false;
39380         }
39381         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39382     },
39383     
39384     
39385     
39386     // private
39387     afterRender : function(){
39388         Roo.form.Field.superclass.afterRender.call(this);
39389         this.initEvents();
39390     },
39391
39392     // private
39393     fireKey : function(e){
39394         //Roo.log('field ' + e.getKey());
39395         if(e.isNavKeyPress()){
39396             this.fireEvent("specialkey", this, e);
39397         }
39398     },
39399
39400     /**
39401      * Resets the current field value to the originally loaded value and clears any validation messages
39402      */
39403     reset : function(){
39404         this.setValue(this.resetValue);
39405         this.originalValue = this.getValue();
39406         this.clearInvalid();
39407     },
39408
39409     // private
39410     initEvents : function(){
39411         // safari killled keypress - so keydown is now used..
39412         this.el.on("keydown" , this.fireKey,  this);
39413         this.el.on("focus", this.onFocus,  this);
39414         this.el.on("blur", this.onBlur,  this);
39415         this.el.relayEvent('keyup', this);
39416
39417         // reference to original value for reset
39418         this.originalValue = this.getValue();
39419         this.resetValue =  this.getValue();
39420     },
39421
39422     // private
39423     onFocus : function(){
39424         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39425             this.el.addClass(this.focusClass);
39426         }
39427         if(!this.hasFocus){
39428             this.hasFocus = true;
39429             this.startValue = this.getValue();
39430             this.fireEvent("focus", this);
39431         }
39432     },
39433
39434     beforeBlur : Roo.emptyFn,
39435
39436     // private
39437     onBlur : function(){
39438         this.beforeBlur();
39439         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39440             this.el.removeClass(this.focusClass);
39441         }
39442         this.hasFocus = false;
39443         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39444             this.validate();
39445         }
39446         var v = this.getValue();
39447         if(String(v) !== String(this.startValue)){
39448             this.fireEvent('change', this, v, this.startValue);
39449         }
39450         this.fireEvent("blur", this);
39451     },
39452
39453     /**
39454      * Returns whether or not the field value is currently valid
39455      * @param {Boolean} preventMark True to disable marking the field invalid
39456      * @return {Boolean} True if the value is valid, else false
39457      */
39458     isValid : function(preventMark){
39459         if(this.disabled){
39460             return true;
39461         }
39462         var restore = this.preventMark;
39463         this.preventMark = preventMark === true;
39464         var v = this.validateValue(this.processValue(this.getRawValue()));
39465         this.preventMark = restore;
39466         return v;
39467     },
39468
39469     /**
39470      * Validates the field value
39471      * @return {Boolean} True if the value is valid, else false
39472      */
39473     validate : function(){
39474         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39475             this.clearInvalid();
39476             return true;
39477         }
39478         return false;
39479     },
39480
39481     processValue : function(value){
39482         return value;
39483     },
39484
39485     // private
39486     // Subclasses should provide the validation implementation by overriding this
39487     validateValue : function(value){
39488         return true;
39489     },
39490
39491     /**
39492      * Mark this field as invalid
39493      * @param {String} msg The validation message
39494      */
39495     markInvalid : function(msg){
39496         if(!this.rendered || this.preventMark){ // not rendered
39497             return;
39498         }
39499         
39500         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39501         
39502         obj.el.addClass(this.invalidClass);
39503         msg = msg || this.invalidText;
39504         switch(this.msgTarget){
39505             case 'qtip':
39506                 obj.el.dom.qtip = msg;
39507                 obj.el.dom.qclass = 'x-form-invalid-tip';
39508                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39509                     Roo.QuickTips.enable();
39510                 }
39511                 break;
39512             case 'title':
39513                 this.el.dom.title = msg;
39514                 break;
39515             case 'under':
39516                 if(!this.errorEl){
39517                     var elp = this.el.findParent('.x-form-element', 5, true);
39518                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39519                     this.errorEl.setWidth(elp.getWidth(true)-20);
39520                 }
39521                 this.errorEl.update(msg);
39522                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39523                 break;
39524             case 'side':
39525                 if(!this.errorIcon){
39526                     var elp = this.el.findParent('.x-form-element', 5, true);
39527                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39528                 }
39529                 this.alignErrorIcon();
39530                 this.errorIcon.dom.qtip = msg;
39531                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39532                 this.errorIcon.show();
39533                 this.on('resize', this.alignErrorIcon, this);
39534                 break;
39535             default:
39536                 var t = Roo.getDom(this.msgTarget);
39537                 t.innerHTML = msg;
39538                 t.style.display = this.msgDisplay;
39539                 break;
39540         }
39541         this.fireEvent('invalid', this, msg);
39542     },
39543
39544     // private
39545     alignErrorIcon : function(){
39546         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39547     },
39548
39549     /**
39550      * Clear any invalid styles/messages for this field
39551      */
39552     clearInvalid : function(){
39553         if(!this.rendered || this.preventMark){ // not rendered
39554             return;
39555         }
39556         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39557         
39558         obj.el.removeClass(this.invalidClass);
39559         switch(this.msgTarget){
39560             case 'qtip':
39561                 obj.el.dom.qtip = '';
39562                 break;
39563             case 'title':
39564                 this.el.dom.title = '';
39565                 break;
39566             case 'under':
39567                 if(this.errorEl){
39568                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39569                 }
39570                 break;
39571             case 'side':
39572                 if(this.errorIcon){
39573                     this.errorIcon.dom.qtip = '';
39574                     this.errorIcon.hide();
39575                     this.un('resize', this.alignErrorIcon, this);
39576                 }
39577                 break;
39578             default:
39579                 var t = Roo.getDom(this.msgTarget);
39580                 t.innerHTML = '';
39581                 t.style.display = 'none';
39582                 break;
39583         }
39584         this.fireEvent('valid', this);
39585     },
39586
39587     /**
39588      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39589      * @return {Mixed} value The field value
39590      */
39591     getRawValue : function(){
39592         var v = this.el.getValue();
39593         
39594         return v;
39595     },
39596
39597     /**
39598      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39599      * @return {Mixed} value The field value
39600      */
39601     getValue : function(){
39602         var v = this.el.getValue();
39603          
39604         return v;
39605     },
39606
39607     /**
39608      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39609      * @param {Mixed} value The value to set
39610      */
39611     setRawValue : function(v){
39612         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39613     },
39614
39615     /**
39616      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39617      * @param {Mixed} value The value to set
39618      */
39619     setValue : function(v){
39620         this.value = v;
39621         if(this.rendered){
39622             this.el.dom.value = (v === null || v === undefined ? '' : v);
39623              this.validate();
39624         }
39625     },
39626
39627     adjustSize : function(w, h){
39628         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39629         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39630         return s;
39631     },
39632
39633     adjustWidth : function(tag, w){
39634         tag = tag.toLowerCase();
39635         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39636             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39637                 if(tag == 'input'){
39638                     return w + 2;
39639                 }
39640                 if(tag == 'textarea'){
39641                     return w-2;
39642                 }
39643             }else if(Roo.isOpera){
39644                 if(tag == 'input'){
39645                     return w + 2;
39646                 }
39647                 if(tag == 'textarea'){
39648                     return w-2;
39649                 }
39650             }
39651         }
39652         return w;
39653     }
39654 });
39655
39656
39657 // anything other than normal should be considered experimental
39658 Roo.form.Field.msgFx = {
39659     normal : {
39660         show: function(msgEl, f){
39661             msgEl.setDisplayed('block');
39662         },
39663
39664         hide : function(msgEl, f){
39665             msgEl.setDisplayed(false).update('');
39666         }
39667     },
39668
39669     slide : {
39670         show: function(msgEl, f){
39671             msgEl.slideIn('t', {stopFx:true});
39672         },
39673
39674         hide : function(msgEl, f){
39675             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39676         }
39677     },
39678
39679     slideRight : {
39680         show: function(msgEl, f){
39681             msgEl.fixDisplay();
39682             msgEl.alignTo(f.el, 'tl-tr');
39683             msgEl.slideIn('l', {stopFx:true});
39684         },
39685
39686         hide : function(msgEl, f){
39687             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39688         }
39689     }
39690 };/*
39691  * Based on:
39692  * Ext JS Library 1.1.1
39693  * Copyright(c) 2006-2007, Ext JS, LLC.
39694  *
39695  * Originally Released Under LGPL - original licence link has changed is not relivant.
39696  *
39697  * Fork - LGPL
39698  * <script type="text/javascript">
39699  */
39700  
39701
39702 /**
39703  * @class Roo.form.TextField
39704  * @extends Roo.form.Field
39705  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39706  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39707  * @constructor
39708  * Creates a new TextField
39709  * @param {Object} config Configuration options
39710  */
39711 Roo.form.TextField = function(config){
39712     Roo.form.TextField.superclass.constructor.call(this, config);
39713     this.addEvents({
39714         /**
39715          * @event autosize
39716          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39717          * according to the default logic, but this event provides a hook for the developer to apply additional
39718          * logic at runtime to resize the field if needed.
39719              * @param {Roo.form.Field} this This text field
39720              * @param {Number} width The new field width
39721              */
39722         autosize : true
39723     });
39724 };
39725
39726 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39727     /**
39728      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39729      */
39730     grow : false,
39731     /**
39732      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39733      */
39734     growMin : 30,
39735     /**
39736      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39737      */
39738     growMax : 800,
39739     /**
39740      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39741      */
39742     vtype : null,
39743     /**
39744      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39745      */
39746     maskRe : null,
39747     /**
39748      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39749      */
39750     disableKeyFilter : false,
39751     /**
39752      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39753      */
39754     allowBlank : true,
39755     /**
39756      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39757      */
39758     minLength : 0,
39759     /**
39760      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39761      */
39762     maxLength : Number.MAX_VALUE,
39763     /**
39764      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39765      */
39766     minLengthText : "The minimum length for this field is {0}",
39767     /**
39768      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39769      */
39770     maxLengthText : "The maximum length for this field is {0}",
39771     /**
39772      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39773      */
39774     selectOnFocus : false,
39775     /**
39776      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39777      */    
39778     allowLeadingSpace : false,
39779     /**
39780      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39781      */
39782     blankText : "This field is required",
39783     /**
39784      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39785      * If available, this function will be called only after the basic validators all return true, and will be passed the
39786      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39787      */
39788     validator : null,
39789     /**
39790      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39791      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39792      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39793      */
39794     regex : null,
39795     /**
39796      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39797      */
39798     regexText : "",
39799     /**
39800      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39801      */
39802     emptyText : null,
39803    
39804
39805     // private
39806     initEvents : function()
39807     {
39808         if (this.emptyText) {
39809             this.el.attr('placeholder', this.emptyText);
39810         }
39811         
39812         Roo.form.TextField.superclass.initEvents.call(this);
39813         if(this.validationEvent == 'keyup'){
39814             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39815             this.el.on('keyup', this.filterValidation, this);
39816         }
39817         else if(this.validationEvent !== false){
39818             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39819         }
39820         
39821         if(this.selectOnFocus){
39822             this.on("focus", this.preFocus, this);
39823         }
39824         if (!this.allowLeadingSpace) {
39825             this.on('blur', this.cleanLeadingSpace, this);
39826         }
39827         
39828         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39829             this.el.on("keypress", this.filterKeys, this);
39830         }
39831         if(this.grow){
39832             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39833             this.el.on("click", this.autoSize,  this);
39834         }
39835         if(this.el.is('input[type=password]') && Roo.isSafari){
39836             this.el.on('keydown', this.SafariOnKeyDown, this);
39837         }
39838     },
39839
39840     processValue : function(value){
39841         if(this.stripCharsRe){
39842             var newValue = value.replace(this.stripCharsRe, '');
39843             if(newValue !== value){
39844                 this.setRawValue(newValue);
39845                 return newValue;
39846             }
39847         }
39848         return value;
39849     },
39850
39851     filterValidation : function(e){
39852         if(!e.isNavKeyPress()){
39853             this.validationTask.delay(this.validationDelay);
39854         }
39855     },
39856
39857     // private
39858     onKeyUp : function(e){
39859         if(!e.isNavKeyPress()){
39860             this.autoSize();
39861         }
39862     },
39863     // private - clean the leading white space
39864     cleanLeadingSpace : function(e)
39865     {
39866         if ( this.inputType == 'file') {
39867             return;
39868         }
39869         
39870         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39871     },
39872     /**
39873      * Resets the current field value to the originally-loaded value and clears any validation messages.
39874      *  
39875      */
39876     reset : function(){
39877         Roo.form.TextField.superclass.reset.call(this);
39878        
39879     }, 
39880     // private
39881     preFocus : function(){
39882         
39883         if(this.selectOnFocus){
39884             this.el.dom.select();
39885         }
39886     },
39887
39888     
39889     // private
39890     filterKeys : function(e){
39891         var k = e.getKey();
39892         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39893             return;
39894         }
39895         var c = e.getCharCode(), cc = String.fromCharCode(c);
39896         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39897             return;
39898         }
39899         if(!this.maskRe.test(cc)){
39900             e.stopEvent();
39901         }
39902     },
39903
39904     setValue : function(v){
39905         
39906         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39907         
39908         this.autoSize();
39909     },
39910
39911     /**
39912      * Validates a value according to the field's validation rules and marks the field as invalid
39913      * if the validation fails
39914      * @param {Mixed} value The value to validate
39915      * @return {Boolean} True if the value is valid, else false
39916      */
39917     validateValue : function(value){
39918         if(value.length < 1)  { // if it's blank
39919              if(this.allowBlank){
39920                 this.clearInvalid();
39921                 return true;
39922              }else{
39923                 this.markInvalid(this.blankText);
39924                 return false;
39925              }
39926         }
39927         if(value.length < this.minLength){
39928             this.markInvalid(String.format(this.minLengthText, this.minLength));
39929             return false;
39930         }
39931         if(value.length > this.maxLength){
39932             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39933             return false;
39934         }
39935         if(this.vtype){
39936             var vt = Roo.form.VTypes;
39937             if(!vt[this.vtype](value, this)){
39938                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39939                 return false;
39940             }
39941         }
39942         if(typeof this.validator == "function"){
39943             var msg = this.validator(value);
39944             if(msg !== true){
39945                 this.markInvalid(msg);
39946                 return false;
39947             }
39948         }
39949         if(this.regex && !this.regex.test(value)){
39950             this.markInvalid(this.regexText);
39951             return false;
39952         }
39953         return true;
39954     },
39955
39956     /**
39957      * Selects text in this field
39958      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39959      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39960      */
39961     selectText : function(start, end){
39962         var v = this.getRawValue();
39963         if(v.length > 0){
39964             start = start === undefined ? 0 : start;
39965             end = end === undefined ? v.length : end;
39966             var d = this.el.dom;
39967             if(d.setSelectionRange){
39968                 d.setSelectionRange(start, end);
39969             }else if(d.createTextRange){
39970                 var range = d.createTextRange();
39971                 range.moveStart("character", start);
39972                 range.moveEnd("character", v.length-end);
39973                 range.select();
39974             }
39975         }
39976     },
39977
39978     /**
39979      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39980      * This only takes effect if grow = true, and fires the autosize event.
39981      */
39982     autoSize : function(){
39983         if(!this.grow || !this.rendered){
39984             return;
39985         }
39986         if(!this.metrics){
39987             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39988         }
39989         var el = this.el;
39990         var v = el.dom.value;
39991         var d = document.createElement('div');
39992         d.appendChild(document.createTextNode(v));
39993         v = d.innerHTML;
39994         d = null;
39995         v += "&#160;";
39996         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39997         this.el.setWidth(w);
39998         this.fireEvent("autosize", this, w);
39999     },
40000     
40001     // private
40002     SafariOnKeyDown : function(event)
40003     {
40004         // this is a workaround for a password hang bug on chrome/ webkit.
40005         
40006         var isSelectAll = false;
40007         
40008         if(this.el.dom.selectionEnd > 0){
40009             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
40010         }
40011         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
40012             event.preventDefault();
40013             this.setValue('');
40014             return;
40015         }
40016         
40017         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
40018             
40019             event.preventDefault();
40020             // this is very hacky as keydown always get's upper case.
40021             
40022             var cc = String.fromCharCode(event.getCharCode());
40023             
40024             
40025             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
40026             
40027         }
40028         
40029         
40030     }
40031 });/*
40032  * Based on:
40033  * Ext JS Library 1.1.1
40034  * Copyright(c) 2006-2007, Ext JS, LLC.
40035  *
40036  * Originally Released Under LGPL - original licence link has changed is not relivant.
40037  *
40038  * Fork - LGPL
40039  * <script type="text/javascript">
40040  */
40041  
40042 /**
40043  * @class Roo.form.Hidden
40044  * @extends Roo.form.TextField
40045  * Simple Hidden element used on forms 
40046  * 
40047  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
40048  * 
40049  * @constructor
40050  * Creates a new Hidden form element.
40051  * @param {Object} config Configuration options
40052  */
40053
40054
40055
40056 // easy hidden field...
40057 Roo.form.Hidden = function(config){
40058     Roo.form.Hidden.superclass.constructor.call(this, config);
40059 };
40060   
40061 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
40062     fieldLabel:      '',
40063     inputType:      'hidden',
40064     width:          50,
40065     allowBlank:     true,
40066     labelSeparator: '',
40067     hidden:         true,
40068     itemCls :       'x-form-item-display-none'
40069
40070
40071 });
40072
40073
40074 /*
40075  * Based on:
40076  * Ext JS Library 1.1.1
40077  * Copyright(c) 2006-2007, Ext JS, LLC.
40078  *
40079  * Originally Released Under LGPL - original licence link has changed is not relivant.
40080  *
40081  * Fork - LGPL
40082  * <script type="text/javascript">
40083  */
40084  
40085 /**
40086  * @class Roo.form.TriggerField
40087  * @extends Roo.form.TextField
40088  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
40089  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
40090  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
40091  * for which you can provide a custom implementation.  For example:
40092  * <pre><code>
40093 var trigger = new Roo.form.TriggerField();
40094 trigger.onTriggerClick = myTriggerFn;
40095 trigger.applyTo('my-field');
40096 </code></pre>
40097  *
40098  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
40099  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
40100  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
40101  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
40102  * @constructor
40103  * Create a new TriggerField.
40104  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
40105  * to the base TextField)
40106  */
40107 Roo.form.TriggerField = function(config){
40108     this.mimicing = false;
40109     Roo.form.TriggerField.superclass.constructor.call(this, config);
40110 };
40111
40112 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
40113     /**
40114      * @cfg {String} triggerClass A CSS class to apply to the trigger
40115      */
40116     /**
40117      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40118      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
40119      */
40120     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
40121     /**
40122      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
40123      */
40124     hideTrigger:false,
40125
40126     /** @cfg {Boolean} grow @hide */
40127     /** @cfg {Number} growMin @hide */
40128     /** @cfg {Number} growMax @hide */
40129
40130     /**
40131      * @hide 
40132      * @method
40133      */
40134     autoSize: Roo.emptyFn,
40135     // private
40136     monitorTab : true,
40137     // private
40138     deferHeight : true,
40139
40140     
40141     actionMode : 'wrap',
40142     // private
40143     onResize : function(w, h){
40144         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
40145         if(typeof w == 'number'){
40146             var x = w - this.trigger.getWidth();
40147             this.el.setWidth(this.adjustWidth('input', x));
40148             this.trigger.setStyle('left', x+'px');
40149         }
40150     },
40151
40152     // private
40153     adjustSize : Roo.BoxComponent.prototype.adjustSize,
40154
40155     // private
40156     getResizeEl : function(){
40157         return this.wrap;
40158     },
40159
40160     // private
40161     getPositionEl : function(){
40162         return this.wrap;
40163     },
40164
40165     // private
40166     alignErrorIcon : function(){
40167         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
40168     },
40169
40170     // private
40171     onRender : function(ct, position){
40172         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
40173         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
40174         this.trigger = this.wrap.createChild(this.triggerConfig ||
40175                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
40176         if(this.hideTrigger){
40177             this.trigger.setDisplayed(false);
40178         }
40179         this.initTrigger();
40180         if(!this.width){
40181             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
40182         }
40183     },
40184
40185     // private
40186     initTrigger : function(){
40187         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40188         this.trigger.addClassOnOver('x-form-trigger-over');
40189         this.trigger.addClassOnClick('x-form-trigger-click');
40190     },
40191
40192     // private
40193     onDestroy : function(){
40194         if(this.trigger){
40195             this.trigger.removeAllListeners();
40196             this.trigger.remove();
40197         }
40198         if(this.wrap){
40199             this.wrap.remove();
40200         }
40201         Roo.form.TriggerField.superclass.onDestroy.call(this);
40202     },
40203
40204     // private
40205     onFocus : function(){
40206         Roo.form.TriggerField.superclass.onFocus.call(this);
40207         if(!this.mimicing){
40208             this.wrap.addClass('x-trigger-wrap-focus');
40209             this.mimicing = true;
40210             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40211             if(this.monitorTab){
40212                 this.el.on("keydown", this.checkTab, this);
40213             }
40214         }
40215     },
40216
40217     // private
40218     checkTab : function(e){
40219         if(e.getKey() == e.TAB){
40220             this.triggerBlur();
40221         }
40222     },
40223
40224     // private
40225     onBlur : function(){
40226         // do nothing
40227     },
40228
40229     // private
40230     mimicBlur : function(e, t){
40231         if(!this.wrap.contains(t) && this.validateBlur()){
40232             this.triggerBlur();
40233         }
40234     },
40235
40236     // private
40237     triggerBlur : function(){
40238         this.mimicing = false;
40239         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40240         if(this.monitorTab){
40241             this.el.un("keydown", this.checkTab, this);
40242         }
40243         this.wrap.removeClass('x-trigger-wrap-focus');
40244         Roo.form.TriggerField.superclass.onBlur.call(this);
40245     },
40246
40247     // private
40248     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40249     validateBlur : function(e, t){
40250         return true;
40251     },
40252
40253     // private
40254     onDisable : function(){
40255         Roo.form.TriggerField.superclass.onDisable.call(this);
40256         if(this.wrap){
40257             this.wrap.addClass('x-item-disabled');
40258         }
40259     },
40260
40261     // private
40262     onEnable : function(){
40263         Roo.form.TriggerField.superclass.onEnable.call(this);
40264         if(this.wrap){
40265             this.wrap.removeClass('x-item-disabled');
40266         }
40267     },
40268
40269     // private
40270     onShow : function(){
40271         var ae = this.getActionEl();
40272         
40273         if(ae){
40274             ae.dom.style.display = '';
40275             ae.dom.style.visibility = 'visible';
40276         }
40277     },
40278
40279     // private
40280     
40281     onHide : function(){
40282         var ae = this.getActionEl();
40283         ae.dom.style.display = 'none';
40284     },
40285
40286     /**
40287      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40288      * by an implementing function.
40289      * @method
40290      * @param {EventObject} e
40291      */
40292     onTriggerClick : Roo.emptyFn
40293 });
40294
40295 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40296 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40297 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40298 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40299     initComponent : function(){
40300         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40301
40302         this.triggerConfig = {
40303             tag:'span', cls:'x-form-twin-triggers', cn:[
40304             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40305             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40306         ]};
40307     },
40308
40309     getTrigger : function(index){
40310         return this.triggers[index];
40311     },
40312
40313     initTrigger : function(){
40314         var ts = this.trigger.select('.x-form-trigger', true);
40315         this.wrap.setStyle('overflow', 'hidden');
40316         var triggerField = this;
40317         ts.each(function(t, all, index){
40318             t.hide = function(){
40319                 var w = triggerField.wrap.getWidth();
40320                 this.dom.style.display = 'none';
40321                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40322             };
40323             t.show = function(){
40324                 var w = triggerField.wrap.getWidth();
40325                 this.dom.style.display = '';
40326                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40327             };
40328             var triggerIndex = 'Trigger'+(index+1);
40329
40330             if(this['hide'+triggerIndex]){
40331                 t.dom.style.display = 'none';
40332             }
40333             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40334             t.addClassOnOver('x-form-trigger-over');
40335             t.addClassOnClick('x-form-trigger-click');
40336         }, this);
40337         this.triggers = ts.elements;
40338     },
40339
40340     onTrigger1Click : Roo.emptyFn,
40341     onTrigger2Click : Roo.emptyFn
40342 });/*
40343  * Based on:
40344  * Ext JS Library 1.1.1
40345  * Copyright(c) 2006-2007, Ext JS, LLC.
40346  *
40347  * Originally Released Under LGPL - original licence link has changed is not relivant.
40348  *
40349  * Fork - LGPL
40350  * <script type="text/javascript">
40351  */
40352  
40353 /**
40354  * @class Roo.form.TextArea
40355  * @extends Roo.form.TextField
40356  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40357  * support for auto-sizing.
40358  * @constructor
40359  * Creates a new TextArea
40360  * @param {Object} config Configuration options
40361  */
40362 Roo.form.TextArea = function(config){
40363     Roo.form.TextArea.superclass.constructor.call(this, config);
40364     // these are provided exchanges for backwards compat
40365     // minHeight/maxHeight were replaced by growMin/growMax to be
40366     // compatible with TextField growing config values
40367     if(this.minHeight !== undefined){
40368         this.growMin = this.minHeight;
40369     }
40370     if(this.maxHeight !== undefined){
40371         this.growMax = this.maxHeight;
40372     }
40373 };
40374
40375 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40376     /**
40377      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40378      */
40379     growMin : 60,
40380     /**
40381      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40382      */
40383     growMax: 1000,
40384     /**
40385      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40386      * in the field (equivalent to setting overflow: hidden, defaults to false)
40387      */
40388     preventScrollbars: false,
40389     /**
40390      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40391      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40392      */
40393
40394     // private
40395     onRender : function(ct, position){
40396         if(!this.el){
40397             this.defaultAutoCreate = {
40398                 tag: "textarea",
40399                 style:"width:300px;height:60px;",
40400                 autocomplete: "new-password"
40401             };
40402         }
40403         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40404         if(this.grow){
40405             this.textSizeEl = Roo.DomHelper.append(document.body, {
40406                 tag: "pre", cls: "x-form-grow-sizer"
40407             });
40408             if(this.preventScrollbars){
40409                 this.el.setStyle("overflow", "hidden");
40410             }
40411             this.el.setHeight(this.growMin);
40412         }
40413     },
40414
40415     onDestroy : function(){
40416         if(this.textSizeEl){
40417             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40418         }
40419         Roo.form.TextArea.superclass.onDestroy.call(this);
40420     },
40421
40422     // private
40423     onKeyUp : function(e){
40424         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40425             this.autoSize();
40426         }
40427     },
40428
40429     /**
40430      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40431      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40432      */
40433     autoSize : function(){
40434         if(!this.grow || !this.textSizeEl){
40435             return;
40436         }
40437         var el = this.el;
40438         var v = el.dom.value;
40439         var ts = this.textSizeEl;
40440
40441         ts.innerHTML = '';
40442         ts.appendChild(document.createTextNode(v));
40443         v = ts.innerHTML;
40444
40445         Roo.fly(ts).setWidth(this.el.getWidth());
40446         if(v.length < 1){
40447             v = "&#160;&#160;";
40448         }else{
40449             if(Roo.isIE){
40450                 v = v.replace(/\n/g, '<p>&#160;</p>');
40451             }
40452             v += "&#160;\n&#160;";
40453         }
40454         ts.innerHTML = v;
40455         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40456         if(h != this.lastHeight){
40457             this.lastHeight = h;
40458             this.el.setHeight(h);
40459             this.fireEvent("autosize", this, h);
40460         }
40461     }
40462 });/*
40463  * Based on:
40464  * Ext JS Library 1.1.1
40465  * Copyright(c) 2006-2007, Ext JS, LLC.
40466  *
40467  * Originally Released Under LGPL - original licence link has changed is not relivant.
40468  *
40469  * Fork - LGPL
40470  * <script type="text/javascript">
40471  */
40472  
40473
40474 /**
40475  * @class Roo.form.NumberField
40476  * @extends Roo.form.TextField
40477  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40478  * @constructor
40479  * Creates a new NumberField
40480  * @param {Object} config Configuration options
40481  */
40482 Roo.form.NumberField = function(config){
40483     Roo.form.NumberField.superclass.constructor.call(this, config);
40484 };
40485
40486 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40487     /**
40488      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40489      */
40490     fieldClass: "x-form-field x-form-num-field",
40491     /**
40492      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40493      */
40494     allowDecimals : true,
40495     /**
40496      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40497      */
40498     decimalSeparator : ".",
40499     /**
40500      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40501      */
40502     decimalPrecision : 2,
40503     /**
40504      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40505      */
40506     allowNegative : true,
40507     /**
40508      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40509      */
40510     minValue : Number.NEGATIVE_INFINITY,
40511     /**
40512      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40513      */
40514     maxValue : Number.MAX_VALUE,
40515     /**
40516      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40517      */
40518     minText : "The minimum value for this field is {0}",
40519     /**
40520      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40521      */
40522     maxText : "The maximum value for this field is {0}",
40523     /**
40524      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40525      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40526      */
40527     nanText : "{0} is not a valid number",
40528
40529     // private
40530     initEvents : function(){
40531         Roo.form.NumberField.superclass.initEvents.call(this);
40532         var allowed = "0123456789";
40533         if(this.allowDecimals){
40534             allowed += this.decimalSeparator;
40535         }
40536         if(this.allowNegative){
40537             allowed += "-";
40538         }
40539         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40540         var keyPress = function(e){
40541             var k = e.getKey();
40542             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40543                 return;
40544             }
40545             var c = e.getCharCode();
40546             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40547                 e.stopEvent();
40548             }
40549         };
40550         this.el.on("keypress", keyPress, this);
40551     },
40552
40553     // private
40554     validateValue : function(value){
40555         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40556             return false;
40557         }
40558         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40559              return true;
40560         }
40561         var num = this.parseValue(value);
40562         if(isNaN(num)){
40563             this.markInvalid(String.format(this.nanText, value));
40564             return false;
40565         }
40566         if(num < this.minValue){
40567             this.markInvalid(String.format(this.minText, this.minValue));
40568             return false;
40569         }
40570         if(num > this.maxValue){
40571             this.markInvalid(String.format(this.maxText, this.maxValue));
40572             return false;
40573         }
40574         return true;
40575     },
40576
40577     getValue : function(){
40578         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40579     },
40580
40581     // private
40582     parseValue : function(value){
40583         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40584         return isNaN(value) ? '' : value;
40585     },
40586
40587     // private
40588     fixPrecision : function(value){
40589         var nan = isNaN(value);
40590         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40591             return nan ? '' : value;
40592         }
40593         return parseFloat(value).toFixed(this.decimalPrecision);
40594     },
40595
40596     setValue : function(v){
40597         v = this.fixPrecision(v);
40598         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40599     },
40600
40601     // private
40602     decimalPrecisionFcn : function(v){
40603         return Math.floor(v);
40604     },
40605
40606     beforeBlur : function(){
40607         var v = this.parseValue(this.getRawValue());
40608         if(v){
40609             this.setValue(v);
40610         }
40611     }
40612 });/*
40613  * Based on:
40614  * Ext JS Library 1.1.1
40615  * Copyright(c) 2006-2007, Ext JS, LLC.
40616  *
40617  * Originally Released Under LGPL - original licence link has changed is not relivant.
40618  *
40619  * Fork - LGPL
40620  * <script type="text/javascript">
40621  */
40622  
40623 /**
40624  * @class Roo.form.DateField
40625  * @extends Roo.form.TriggerField
40626  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40627 * @constructor
40628 * Create a new DateField
40629 * @param {Object} config
40630  */
40631 Roo.form.DateField = function(config)
40632 {
40633     Roo.form.DateField.superclass.constructor.call(this, config);
40634     
40635       this.addEvents({
40636          
40637         /**
40638          * @event select
40639          * Fires when a date is selected
40640              * @param {Roo.form.DateField} combo This combo box
40641              * @param {Date} date The date selected
40642              */
40643         'select' : true
40644          
40645     });
40646     
40647     
40648     if(typeof this.minValue == "string") {
40649         this.minValue = this.parseDate(this.minValue);
40650     }
40651     if(typeof this.maxValue == "string") {
40652         this.maxValue = this.parseDate(this.maxValue);
40653     }
40654     this.ddMatch = null;
40655     if(this.disabledDates){
40656         var dd = this.disabledDates;
40657         var re = "(?:";
40658         for(var i = 0; i < dd.length; i++){
40659             re += dd[i];
40660             if(i != dd.length-1) {
40661                 re += "|";
40662             }
40663         }
40664         this.ddMatch = new RegExp(re + ")");
40665     }
40666 };
40667
40668 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40669     /**
40670      * @cfg {String} format
40671      * The default date format string which can be overriden for localization support.  The format must be
40672      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40673      */
40674     format : "m/d/y",
40675     /**
40676      * @cfg {String} altFormats
40677      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40678      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40679      */
40680     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40681     /**
40682      * @cfg {Array} disabledDays
40683      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40684      */
40685     disabledDays : null,
40686     /**
40687      * @cfg {String} disabledDaysText
40688      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40689      */
40690     disabledDaysText : "Disabled",
40691     /**
40692      * @cfg {Array} disabledDates
40693      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40694      * expression so they are very powerful. Some examples:
40695      * <ul>
40696      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40697      * <li>["03/08", "09/16"] would disable those days for every year</li>
40698      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40699      * <li>["03/../2006"] would disable every day in March 2006</li>
40700      * <li>["^03"] would disable every day in every March</li>
40701      * </ul>
40702      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40703      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40704      */
40705     disabledDates : null,
40706     /**
40707      * @cfg {String} disabledDatesText
40708      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40709      */
40710     disabledDatesText : "Disabled",
40711     /**
40712      * @cfg {Date/String} minValue
40713      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40714      * valid format (defaults to null).
40715      */
40716     minValue : null,
40717     /**
40718      * @cfg {Date/String} maxValue
40719      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40720      * valid format (defaults to null).
40721      */
40722     maxValue : null,
40723     /**
40724      * @cfg {String} minText
40725      * The error text to display when the date in the cell is before minValue (defaults to
40726      * 'The date in this field must be after {minValue}').
40727      */
40728     minText : "The date in this field must be equal to or after {0}",
40729     /**
40730      * @cfg {String} maxText
40731      * The error text to display when the date in the cell is after maxValue (defaults to
40732      * 'The date in this field must be before {maxValue}').
40733      */
40734     maxText : "The date in this field must be equal to or before {0}",
40735     /**
40736      * @cfg {String} invalidText
40737      * The error text to display when the date in the field is invalid (defaults to
40738      * '{value} is not a valid date - it must be in the format {format}').
40739      */
40740     invalidText : "{0} is not a valid date - it must be in the format {1}",
40741     /**
40742      * @cfg {String} triggerClass
40743      * An additional CSS class used to style the trigger button.  The trigger will always get the
40744      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40745      * which displays a calendar icon).
40746      */
40747     triggerClass : 'x-form-date-trigger',
40748     
40749
40750     /**
40751      * @cfg {Boolean} useIso
40752      * if enabled, then the date field will use a hidden field to store the 
40753      * real value as iso formated date. default (false)
40754      */ 
40755     useIso : false,
40756     /**
40757      * @cfg {String/Object} autoCreate
40758      * A DomHelper element spec, or true for a default element spec (defaults to
40759      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40760      */ 
40761     // private
40762     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40763     
40764     // private
40765     hiddenField: false,
40766     
40767     onRender : function(ct, position)
40768     {
40769         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40770         if (this.useIso) {
40771             //this.el.dom.removeAttribute('name'); 
40772             Roo.log("Changing name?");
40773             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40774             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40775                     'before', true);
40776             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40777             // prevent input submission
40778             this.hiddenName = this.name;
40779         }
40780             
40781             
40782     },
40783     
40784     // private
40785     validateValue : function(value)
40786     {
40787         value = this.formatDate(value);
40788         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40789             Roo.log('super failed');
40790             return false;
40791         }
40792         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40793              return true;
40794         }
40795         var svalue = value;
40796         value = this.parseDate(value);
40797         if(!value){
40798             Roo.log('parse date failed' + svalue);
40799             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40800             return false;
40801         }
40802         var time = value.getTime();
40803         if(this.minValue && time < this.minValue.getTime()){
40804             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40805             return false;
40806         }
40807         if(this.maxValue && time > this.maxValue.getTime()){
40808             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40809             return false;
40810         }
40811         if(this.disabledDays){
40812             var day = value.getDay();
40813             for(var i = 0; i < this.disabledDays.length; i++) {
40814                 if(day === this.disabledDays[i]){
40815                     this.markInvalid(this.disabledDaysText);
40816                     return false;
40817                 }
40818             }
40819         }
40820         var fvalue = this.formatDate(value);
40821         if(this.ddMatch && this.ddMatch.test(fvalue)){
40822             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40823             return false;
40824         }
40825         return true;
40826     },
40827
40828     // private
40829     // Provides logic to override the default TriggerField.validateBlur which just returns true
40830     validateBlur : function(){
40831         return !this.menu || !this.menu.isVisible();
40832     },
40833     
40834     getName: function()
40835     {
40836         // returns hidden if it's set..
40837         if (!this.rendered) {return ''};
40838         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40839         
40840     },
40841
40842     /**
40843      * Returns the current date value of the date field.
40844      * @return {Date} The date value
40845      */
40846     getValue : function(){
40847         
40848         return  this.hiddenField ?
40849                 this.hiddenField.value :
40850                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40851     },
40852
40853     /**
40854      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40855      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40856      * (the default format used is "m/d/y").
40857      * <br />Usage:
40858      * <pre><code>
40859 //All of these calls set the same date value (May 4, 2006)
40860
40861 //Pass a date object:
40862 var dt = new Date('5/4/06');
40863 dateField.setValue(dt);
40864
40865 //Pass a date string (default format):
40866 dateField.setValue('5/4/06');
40867
40868 //Pass a date string (custom format):
40869 dateField.format = 'Y-m-d';
40870 dateField.setValue('2006-5-4');
40871 </code></pre>
40872      * @param {String/Date} date The date or valid date string
40873      */
40874     setValue : function(date){
40875         if (this.hiddenField) {
40876             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40877         }
40878         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40879         // make sure the value field is always stored as a date..
40880         this.value = this.parseDate(date);
40881         
40882         
40883     },
40884
40885     // private
40886     parseDate : function(value){
40887         if(!value || value instanceof Date){
40888             return value;
40889         }
40890         var v = Date.parseDate(value, this.format);
40891          if (!v && this.useIso) {
40892             v = Date.parseDate(value, 'Y-m-d');
40893         }
40894         if(!v && this.altFormats){
40895             if(!this.altFormatsArray){
40896                 this.altFormatsArray = this.altFormats.split("|");
40897             }
40898             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40899                 v = Date.parseDate(value, this.altFormatsArray[i]);
40900             }
40901         }
40902         return v;
40903     },
40904
40905     // private
40906     formatDate : function(date, fmt){
40907         return (!date || !(date instanceof Date)) ?
40908                date : date.dateFormat(fmt || this.format);
40909     },
40910
40911     // private
40912     menuListeners : {
40913         select: function(m, d){
40914             
40915             this.setValue(d);
40916             this.fireEvent('select', this, d);
40917         },
40918         show : function(){ // retain focus styling
40919             this.onFocus();
40920         },
40921         hide : function(){
40922             this.focus.defer(10, this);
40923             var ml = this.menuListeners;
40924             this.menu.un("select", ml.select,  this);
40925             this.menu.un("show", ml.show,  this);
40926             this.menu.un("hide", ml.hide,  this);
40927         }
40928     },
40929
40930     // private
40931     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40932     onTriggerClick : function(){
40933         if(this.disabled){
40934             return;
40935         }
40936         if(this.menu == null){
40937             this.menu = new Roo.menu.DateMenu();
40938         }
40939         Roo.apply(this.menu.picker,  {
40940             showClear: this.allowBlank,
40941             minDate : this.minValue,
40942             maxDate : this.maxValue,
40943             disabledDatesRE : this.ddMatch,
40944             disabledDatesText : this.disabledDatesText,
40945             disabledDays : this.disabledDays,
40946             disabledDaysText : this.disabledDaysText,
40947             format : this.useIso ? 'Y-m-d' : this.format,
40948             minText : String.format(this.minText, this.formatDate(this.minValue)),
40949             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40950         });
40951         this.menu.on(Roo.apply({}, this.menuListeners, {
40952             scope:this
40953         }));
40954         this.menu.picker.setValue(this.getValue() || new Date());
40955         this.menu.show(this.el, "tl-bl?");
40956     },
40957
40958     beforeBlur : function(){
40959         var v = this.parseDate(this.getRawValue());
40960         if(v){
40961             this.setValue(v);
40962         }
40963     },
40964
40965     /*@
40966      * overide
40967      * 
40968      */
40969     isDirty : function() {
40970         if(this.disabled) {
40971             return false;
40972         }
40973         
40974         if(typeof(this.startValue) === 'undefined'){
40975             return false;
40976         }
40977         
40978         return String(this.getValue()) !== String(this.startValue);
40979         
40980     },
40981     // @overide
40982     cleanLeadingSpace : function(e)
40983     {
40984        return;
40985     }
40986     
40987 });/*
40988  * Based on:
40989  * Ext JS Library 1.1.1
40990  * Copyright(c) 2006-2007, Ext JS, LLC.
40991  *
40992  * Originally Released Under LGPL - original licence link has changed is not relivant.
40993  *
40994  * Fork - LGPL
40995  * <script type="text/javascript">
40996  */
40997  
40998 /**
40999  * @class Roo.form.MonthField
41000  * @extends Roo.form.TriggerField
41001  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
41002 * @constructor
41003 * Create a new MonthField
41004 * @param {Object} config
41005  */
41006 Roo.form.MonthField = function(config){
41007     
41008     Roo.form.MonthField.superclass.constructor.call(this, config);
41009     
41010       this.addEvents({
41011          
41012         /**
41013          * @event select
41014          * Fires when a date is selected
41015              * @param {Roo.form.MonthFieeld} combo This combo box
41016              * @param {Date} date The date selected
41017              */
41018         'select' : true
41019          
41020     });
41021     
41022     
41023     if(typeof this.minValue == "string") {
41024         this.minValue = this.parseDate(this.minValue);
41025     }
41026     if(typeof this.maxValue == "string") {
41027         this.maxValue = this.parseDate(this.maxValue);
41028     }
41029     this.ddMatch = null;
41030     if(this.disabledDates){
41031         var dd = this.disabledDates;
41032         var re = "(?:";
41033         for(var i = 0; i < dd.length; i++){
41034             re += dd[i];
41035             if(i != dd.length-1) {
41036                 re += "|";
41037             }
41038         }
41039         this.ddMatch = new RegExp(re + ")");
41040     }
41041 };
41042
41043 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
41044     /**
41045      * @cfg {String} format
41046      * The default date format string which can be overriden for localization support.  The format must be
41047      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
41048      */
41049     format : "M Y",
41050     /**
41051      * @cfg {String} altFormats
41052      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
41053      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
41054      */
41055     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
41056     /**
41057      * @cfg {Array} disabledDays
41058      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
41059      */
41060     disabledDays : [0,1,2,3,4,5,6],
41061     /**
41062      * @cfg {String} disabledDaysText
41063      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
41064      */
41065     disabledDaysText : "Disabled",
41066     /**
41067      * @cfg {Array} disabledDates
41068      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
41069      * expression so they are very powerful. Some examples:
41070      * <ul>
41071      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
41072      * <li>["03/08", "09/16"] would disable those days for every year</li>
41073      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
41074      * <li>["03/../2006"] would disable every day in March 2006</li>
41075      * <li>["^03"] would disable every day in every March</li>
41076      * </ul>
41077      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
41078      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
41079      */
41080     disabledDates : null,
41081     /**
41082      * @cfg {String} disabledDatesText
41083      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
41084      */
41085     disabledDatesText : "Disabled",
41086     /**
41087      * @cfg {Date/String} minValue
41088      * The minimum allowed date. Can be either a Javascript date object or a string date in a
41089      * valid format (defaults to null).
41090      */
41091     minValue : null,
41092     /**
41093      * @cfg {Date/String} maxValue
41094      * The maximum allowed date. Can be either a Javascript date object or a string date in a
41095      * valid format (defaults to null).
41096      */
41097     maxValue : null,
41098     /**
41099      * @cfg {String} minText
41100      * The error text to display when the date in the cell is before minValue (defaults to
41101      * 'The date in this field must be after {minValue}').
41102      */
41103     minText : "The date in this field must be equal to or after {0}",
41104     /**
41105      * @cfg {String} maxTextf
41106      * The error text to display when the date in the cell is after maxValue (defaults to
41107      * 'The date in this field must be before {maxValue}').
41108      */
41109     maxText : "The date in this field must be equal to or before {0}",
41110     /**
41111      * @cfg {String} invalidText
41112      * The error text to display when the date in the field is invalid (defaults to
41113      * '{value} is not a valid date - it must be in the format {format}').
41114      */
41115     invalidText : "{0} is not a valid date - it must be in the format {1}",
41116     /**
41117      * @cfg {String} triggerClass
41118      * An additional CSS class used to style the trigger button.  The trigger will always get the
41119      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
41120      * which displays a calendar icon).
41121      */
41122     triggerClass : 'x-form-date-trigger',
41123     
41124
41125     /**
41126      * @cfg {Boolean} useIso
41127      * if enabled, then the date field will use a hidden field to store the 
41128      * real value as iso formated date. default (true)
41129      */ 
41130     useIso : true,
41131     /**
41132      * @cfg {String/Object} autoCreate
41133      * A DomHelper element spec, or true for a default element spec (defaults to
41134      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
41135      */ 
41136     // private
41137     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
41138     
41139     // private
41140     hiddenField: false,
41141     
41142     hideMonthPicker : false,
41143     
41144     onRender : function(ct, position)
41145     {
41146         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
41147         if (this.useIso) {
41148             this.el.dom.removeAttribute('name'); 
41149             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
41150                     'before', true);
41151             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
41152             // prevent input submission
41153             this.hiddenName = this.name;
41154         }
41155             
41156             
41157     },
41158     
41159     // private
41160     validateValue : function(value)
41161     {
41162         value = this.formatDate(value);
41163         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
41164             return false;
41165         }
41166         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41167              return true;
41168         }
41169         var svalue = value;
41170         value = this.parseDate(value);
41171         if(!value){
41172             this.markInvalid(String.format(this.invalidText, svalue, this.format));
41173             return false;
41174         }
41175         var time = value.getTime();
41176         if(this.minValue && time < this.minValue.getTime()){
41177             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
41178             return false;
41179         }
41180         if(this.maxValue && time > this.maxValue.getTime()){
41181             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
41182             return false;
41183         }
41184         /*if(this.disabledDays){
41185             var day = value.getDay();
41186             for(var i = 0; i < this.disabledDays.length; i++) {
41187                 if(day === this.disabledDays[i]){
41188                     this.markInvalid(this.disabledDaysText);
41189                     return false;
41190                 }
41191             }
41192         }
41193         */
41194         var fvalue = this.formatDate(value);
41195         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41196             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41197             return false;
41198         }
41199         */
41200         return true;
41201     },
41202
41203     // private
41204     // Provides logic to override the default TriggerField.validateBlur which just returns true
41205     validateBlur : function(){
41206         return !this.menu || !this.menu.isVisible();
41207     },
41208
41209     /**
41210      * Returns the current date value of the date field.
41211      * @return {Date} The date value
41212      */
41213     getValue : function(){
41214         
41215         
41216         
41217         return  this.hiddenField ?
41218                 this.hiddenField.value :
41219                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41220     },
41221
41222     /**
41223      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41224      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41225      * (the default format used is "m/d/y").
41226      * <br />Usage:
41227      * <pre><code>
41228 //All of these calls set the same date value (May 4, 2006)
41229
41230 //Pass a date object:
41231 var dt = new Date('5/4/06');
41232 monthField.setValue(dt);
41233
41234 //Pass a date string (default format):
41235 monthField.setValue('5/4/06');
41236
41237 //Pass a date string (custom format):
41238 monthField.format = 'Y-m-d';
41239 monthField.setValue('2006-5-4');
41240 </code></pre>
41241      * @param {String/Date} date The date or valid date string
41242      */
41243     setValue : function(date){
41244         Roo.log('month setValue' + date);
41245         // can only be first of month..
41246         
41247         var val = this.parseDate(date);
41248         
41249         if (this.hiddenField) {
41250             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41251         }
41252         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41253         this.value = this.parseDate(date);
41254     },
41255
41256     // private
41257     parseDate : function(value){
41258         if(!value || value instanceof Date){
41259             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41260             return value;
41261         }
41262         var v = Date.parseDate(value, this.format);
41263         if (!v && this.useIso) {
41264             v = Date.parseDate(value, 'Y-m-d');
41265         }
41266         if (v) {
41267             // 
41268             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41269         }
41270         
41271         
41272         if(!v && this.altFormats){
41273             if(!this.altFormatsArray){
41274                 this.altFormatsArray = this.altFormats.split("|");
41275             }
41276             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41277                 v = Date.parseDate(value, this.altFormatsArray[i]);
41278             }
41279         }
41280         return v;
41281     },
41282
41283     // private
41284     formatDate : function(date, fmt){
41285         return (!date || !(date instanceof Date)) ?
41286                date : date.dateFormat(fmt || this.format);
41287     },
41288
41289     // private
41290     menuListeners : {
41291         select: function(m, d){
41292             this.setValue(d);
41293             this.fireEvent('select', this, d);
41294         },
41295         show : function(){ // retain focus styling
41296             this.onFocus();
41297         },
41298         hide : function(){
41299             this.focus.defer(10, this);
41300             var ml = this.menuListeners;
41301             this.menu.un("select", ml.select,  this);
41302             this.menu.un("show", ml.show,  this);
41303             this.menu.un("hide", ml.hide,  this);
41304         }
41305     },
41306     // private
41307     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41308     onTriggerClick : function(){
41309         if(this.disabled){
41310             return;
41311         }
41312         if(this.menu == null){
41313             this.menu = new Roo.menu.DateMenu();
41314            
41315         }
41316         
41317         Roo.apply(this.menu.picker,  {
41318             
41319             showClear: this.allowBlank,
41320             minDate : this.minValue,
41321             maxDate : this.maxValue,
41322             disabledDatesRE : this.ddMatch,
41323             disabledDatesText : this.disabledDatesText,
41324             
41325             format : this.useIso ? 'Y-m-d' : this.format,
41326             minText : String.format(this.minText, this.formatDate(this.minValue)),
41327             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41328             
41329         });
41330          this.menu.on(Roo.apply({}, this.menuListeners, {
41331             scope:this
41332         }));
41333        
41334         
41335         var m = this.menu;
41336         var p = m.picker;
41337         
41338         // hide month picker get's called when we called by 'before hide';
41339         
41340         var ignorehide = true;
41341         p.hideMonthPicker  = function(disableAnim){
41342             if (ignorehide) {
41343                 return;
41344             }
41345              if(this.monthPicker){
41346                 Roo.log("hideMonthPicker called");
41347                 if(disableAnim === true){
41348                     this.monthPicker.hide();
41349                 }else{
41350                     this.monthPicker.slideOut('t', {duration:.2});
41351                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41352                     p.fireEvent("select", this, this.value);
41353                     m.hide();
41354                 }
41355             }
41356         }
41357         
41358         Roo.log('picker set value');
41359         Roo.log(this.getValue());
41360         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41361         m.show(this.el, 'tl-bl?');
41362         ignorehide  = false;
41363         // this will trigger hideMonthPicker..
41364         
41365         
41366         // hidden the day picker
41367         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41368         
41369         
41370         
41371       
41372         
41373         p.showMonthPicker.defer(100, p);
41374     
41375         
41376        
41377     },
41378
41379     beforeBlur : function(){
41380         var v = this.parseDate(this.getRawValue());
41381         if(v){
41382             this.setValue(v);
41383         }
41384     }
41385
41386     /** @cfg {Boolean} grow @hide */
41387     /** @cfg {Number} growMin @hide */
41388     /** @cfg {Number} growMax @hide */
41389     /**
41390      * @hide
41391      * @method autoSize
41392      */
41393 });/*
41394  * Based on:
41395  * Ext JS Library 1.1.1
41396  * Copyright(c) 2006-2007, Ext JS, LLC.
41397  *
41398  * Originally Released Under LGPL - original licence link has changed is not relivant.
41399  *
41400  * Fork - LGPL
41401  * <script type="text/javascript">
41402  */
41403  
41404
41405 /**
41406  * @class Roo.form.ComboBox
41407  * @extends Roo.form.TriggerField
41408  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41409  * @constructor
41410  * Create a new ComboBox.
41411  * @param {Object} config Configuration options
41412  */
41413 Roo.form.ComboBox = function(config){
41414     Roo.form.ComboBox.superclass.constructor.call(this, config);
41415     this.addEvents({
41416         /**
41417          * @event expand
41418          * Fires when the dropdown list is expanded
41419              * @param {Roo.form.ComboBox} combo This combo box
41420              */
41421         'expand' : true,
41422         /**
41423          * @event collapse
41424          * Fires when the dropdown list is collapsed
41425              * @param {Roo.form.ComboBox} combo This combo box
41426              */
41427         'collapse' : true,
41428         /**
41429          * @event beforeselect
41430          * Fires before a list item is selected. Return false to cancel the selection.
41431              * @param {Roo.form.ComboBox} combo This combo box
41432              * @param {Roo.data.Record} record The data record returned from the underlying store
41433              * @param {Number} index The index of the selected item in the dropdown list
41434              */
41435         'beforeselect' : true,
41436         /**
41437          * @event select
41438          * Fires when a list item is selected
41439              * @param {Roo.form.ComboBox} combo This combo box
41440              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41441              * @param {Number} index The index of the selected item in the dropdown list
41442              */
41443         'select' : true,
41444         /**
41445          * @event beforequery
41446          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41447          * The event object passed has these properties:
41448              * @param {Roo.form.ComboBox} combo This combo box
41449              * @param {String} query The query
41450              * @param {Boolean} forceAll true to force "all" query
41451              * @param {Boolean} cancel true to cancel the query
41452              * @param {Object} e The query event object
41453              */
41454         'beforequery': true,
41455          /**
41456          * @event add
41457          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41458              * @param {Roo.form.ComboBox} combo This combo box
41459              */
41460         'add' : true,
41461         /**
41462          * @event edit
41463          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41464              * @param {Roo.form.ComboBox} combo This combo box
41465              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41466              */
41467         'edit' : true
41468         
41469         
41470     });
41471     if(this.transform){
41472         this.allowDomMove = false;
41473         var s = Roo.getDom(this.transform);
41474         if(!this.hiddenName){
41475             this.hiddenName = s.name;
41476         }
41477         if(!this.store){
41478             this.mode = 'local';
41479             var d = [], opts = s.options;
41480             for(var i = 0, len = opts.length;i < len; i++){
41481                 var o = opts[i];
41482                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41483                 if(o.selected) {
41484                     this.value = value;
41485                 }
41486                 d.push([value, o.text]);
41487             }
41488             this.store = new Roo.data.SimpleStore({
41489                 'id': 0,
41490                 fields: ['value', 'text'],
41491                 data : d
41492             });
41493             this.valueField = 'value';
41494             this.displayField = 'text';
41495         }
41496         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41497         if(!this.lazyRender){
41498             this.target = true;
41499             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41500             s.parentNode.removeChild(s); // remove it
41501             this.render(this.el.parentNode);
41502         }else{
41503             s.parentNode.removeChild(s); // remove it
41504         }
41505
41506     }
41507     if (this.store) {
41508         this.store = Roo.factory(this.store, Roo.data);
41509     }
41510     
41511     this.selectedIndex = -1;
41512     if(this.mode == 'local'){
41513         if(config.queryDelay === undefined){
41514             this.queryDelay = 10;
41515         }
41516         if(config.minChars === undefined){
41517             this.minChars = 0;
41518         }
41519     }
41520 };
41521
41522 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41523     /**
41524      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41525      */
41526     /**
41527      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41528      * rendering into an Roo.Editor, defaults to false)
41529      */
41530     /**
41531      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41532      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41533      */
41534     /**
41535      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41536      */
41537     /**
41538      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41539      * the dropdown list (defaults to undefined, with no header element)
41540      */
41541
41542      /**
41543      * @cfg {String/Roo.Template} tpl The template to use to render the output
41544      */
41545      
41546     // private
41547     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41548     /**
41549      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41550      */
41551     listWidth: undefined,
41552     /**
41553      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41554      * mode = 'remote' or 'text' if mode = 'local')
41555      */
41556     displayField: undefined,
41557     /**
41558      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41559      * mode = 'remote' or 'value' if mode = 'local'). 
41560      * Note: use of a valueField requires the user make a selection
41561      * in order for a value to be mapped.
41562      */
41563     valueField: undefined,
41564     
41565     
41566     /**
41567      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41568      * field's data value (defaults to the underlying DOM element's name)
41569      */
41570     hiddenName: undefined,
41571     /**
41572      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41573      */
41574     listClass: '',
41575     /**
41576      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41577      */
41578     selectedClass: 'x-combo-selected',
41579     /**
41580      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41581      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41582      * which displays a downward arrow icon).
41583      */
41584     triggerClass : 'x-form-arrow-trigger',
41585     /**
41586      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41587      */
41588     shadow:'sides',
41589     /**
41590      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41591      * anchor positions (defaults to 'tl-bl')
41592      */
41593     listAlign: 'tl-bl?',
41594     /**
41595      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41596      */
41597     maxHeight: 300,
41598     /**
41599      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41600      * query specified by the allQuery config option (defaults to 'query')
41601      */
41602     triggerAction: 'query',
41603     /**
41604      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41605      * (defaults to 4, does not apply if editable = false)
41606      */
41607     minChars : 4,
41608     /**
41609      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41610      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41611      */
41612     typeAhead: false,
41613     /**
41614      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41615      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41616      */
41617     queryDelay: 500,
41618     /**
41619      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41620      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41621      */
41622     pageSize: 0,
41623     /**
41624      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41625      * when editable = true (defaults to false)
41626      */
41627     selectOnFocus:false,
41628     /**
41629      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41630      */
41631     queryParam: 'query',
41632     /**
41633      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41634      * when mode = 'remote' (defaults to 'Loading...')
41635      */
41636     loadingText: 'Loading...',
41637     /**
41638      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41639      */
41640     resizable: false,
41641     /**
41642      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41643      */
41644     handleHeight : 8,
41645     /**
41646      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41647      * traditional select (defaults to true)
41648      */
41649     editable: true,
41650     /**
41651      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41652      */
41653     allQuery: '',
41654     /**
41655      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41656      */
41657     mode: 'remote',
41658     /**
41659      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41660      * listWidth has a higher value)
41661      */
41662     minListWidth : 70,
41663     /**
41664      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41665      * allow the user to set arbitrary text into the field (defaults to false)
41666      */
41667     forceSelection:false,
41668     /**
41669      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41670      * if typeAhead = true (defaults to 250)
41671      */
41672     typeAheadDelay : 250,
41673     /**
41674      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41675      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41676      */
41677     valueNotFoundText : undefined,
41678     /**
41679      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41680      */
41681     blockFocus : false,
41682     
41683     /**
41684      * @cfg {Boolean} disableClear Disable showing of clear button.
41685      */
41686     disableClear : false,
41687     /**
41688      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41689      */
41690     alwaysQuery : false,
41691     
41692     //private
41693     addicon : false,
41694     editicon: false,
41695     
41696     // element that contains real text value.. (when hidden is used..)
41697      
41698     // private
41699     onRender : function(ct, position)
41700     {
41701         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41702         
41703         if(this.hiddenName){
41704             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41705                     'before', true);
41706             this.hiddenField.value =
41707                 this.hiddenValue !== undefined ? this.hiddenValue :
41708                 this.value !== undefined ? this.value : '';
41709
41710             // prevent input submission
41711             this.el.dom.removeAttribute('name');
41712              
41713              
41714         }
41715         
41716         if(Roo.isGecko){
41717             this.el.dom.setAttribute('autocomplete', 'off');
41718         }
41719
41720         var cls = 'x-combo-list';
41721
41722         this.list = new Roo.Layer({
41723             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41724         });
41725
41726         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41727         this.list.setWidth(lw);
41728         this.list.swallowEvent('mousewheel');
41729         this.assetHeight = 0;
41730
41731         if(this.title){
41732             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41733             this.assetHeight += this.header.getHeight();
41734         }
41735
41736         this.innerList = this.list.createChild({cls:cls+'-inner'});
41737         this.innerList.on('mouseover', this.onViewOver, this);
41738         this.innerList.on('mousemove', this.onViewMove, this);
41739         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41740         
41741         if(this.allowBlank && !this.pageSize && !this.disableClear){
41742             this.footer = this.list.createChild({cls:cls+'-ft'});
41743             this.pageTb = new Roo.Toolbar(this.footer);
41744            
41745         }
41746         if(this.pageSize){
41747             this.footer = this.list.createChild({cls:cls+'-ft'});
41748             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41749                     {pageSize: this.pageSize});
41750             
41751         }
41752         
41753         if (this.pageTb && this.allowBlank && !this.disableClear) {
41754             var _this = this;
41755             this.pageTb.add(new Roo.Toolbar.Fill(), {
41756                 cls: 'x-btn-icon x-btn-clear',
41757                 text: '&#160;',
41758                 handler: function()
41759                 {
41760                     _this.collapse();
41761                     _this.clearValue();
41762                     _this.onSelect(false, -1);
41763                 }
41764             });
41765         }
41766         if (this.footer) {
41767             this.assetHeight += this.footer.getHeight();
41768         }
41769         
41770
41771         if(!this.tpl){
41772             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41773         }
41774
41775         this.view = new Roo.View(this.innerList, this.tpl, {
41776             singleSelect:true,
41777             store: this.store,
41778             selectedClass: this.selectedClass
41779         });
41780
41781         this.view.on('click', this.onViewClick, this);
41782
41783         this.store.on('beforeload', this.onBeforeLoad, this);
41784         this.store.on('load', this.onLoad, this);
41785         this.store.on('loadexception', this.onLoadException, this);
41786
41787         if(this.resizable){
41788             this.resizer = new Roo.Resizable(this.list,  {
41789                pinned:true, handles:'se'
41790             });
41791             this.resizer.on('resize', function(r, w, h){
41792                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41793                 this.listWidth = w;
41794                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41795                 this.restrictHeight();
41796             }, this);
41797             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41798         }
41799         if(!this.editable){
41800             this.editable = true;
41801             this.setEditable(false);
41802         }  
41803         
41804         
41805         if (typeof(this.events.add.listeners) != 'undefined') {
41806             
41807             this.addicon = this.wrap.createChild(
41808                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41809        
41810             this.addicon.on('click', function(e) {
41811                 this.fireEvent('add', this);
41812             }, this);
41813         }
41814         if (typeof(this.events.edit.listeners) != 'undefined') {
41815             
41816             this.editicon = this.wrap.createChild(
41817                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41818             if (this.addicon) {
41819                 this.editicon.setStyle('margin-left', '40px');
41820             }
41821             this.editicon.on('click', function(e) {
41822                 
41823                 // we fire even  if inothing is selected..
41824                 this.fireEvent('edit', this, this.lastData );
41825                 
41826             }, this);
41827         }
41828         
41829         
41830         
41831     },
41832
41833     // private
41834     initEvents : function(){
41835         Roo.form.ComboBox.superclass.initEvents.call(this);
41836
41837         this.keyNav = new Roo.KeyNav(this.el, {
41838             "up" : function(e){
41839                 this.inKeyMode = true;
41840                 this.selectPrev();
41841             },
41842
41843             "down" : function(e){
41844                 if(!this.isExpanded()){
41845                     this.onTriggerClick();
41846                 }else{
41847                     this.inKeyMode = true;
41848                     this.selectNext();
41849                 }
41850             },
41851
41852             "enter" : function(e){
41853                 this.onViewClick();
41854                 //return true;
41855             },
41856
41857             "esc" : function(e){
41858                 this.collapse();
41859             },
41860
41861             "tab" : function(e){
41862                 this.onViewClick(false);
41863                 this.fireEvent("specialkey", this, e);
41864                 return true;
41865             },
41866
41867             scope : this,
41868
41869             doRelay : function(foo, bar, hname){
41870                 if(hname == 'down' || this.scope.isExpanded()){
41871                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41872                 }
41873                 return true;
41874             },
41875
41876             forceKeyDown: true
41877         });
41878         this.queryDelay = Math.max(this.queryDelay || 10,
41879                 this.mode == 'local' ? 10 : 250);
41880         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41881         if(this.typeAhead){
41882             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41883         }
41884         if(this.editable !== false){
41885             this.el.on("keyup", this.onKeyUp, this);
41886         }
41887         if(this.forceSelection){
41888             this.on('blur', this.doForce, this);
41889         }
41890     },
41891
41892     onDestroy : function(){
41893         if(this.view){
41894             this.view.setStore(null);
41895             this.view.el.removeAllListeners();
41896             this.view.el.remove();
41897             this.view.purgeListeners();
41898         }
41899         if(this.list){
41900             this.list.destroy();
41901         }
41902         if(this.store){
41903             this.store.un('beforeload', this.onBeforeLoad, this);
41904             this.store.un('load', this.onLoad, this);
41905             this.store.un('loadexception', this.onLoadException, this);
41906         }
41907         Roo.form.ComboBox.superclass.onDestroy.call(this);
41908     },
41909
41910     // private
41911     fireKey : function(e){
41912         if(e.isNavKeyPress() && !this.list.isVisible()){
41913             this.fireEvent("specialkey", this, e);
41914         }
41915     },
41916
41917     // private
41918     onResize: function(w, h){
41919         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41920         
41921         if(typeof w != 'number'){
41922             // we do not handle it!?!?
41923             return;
41924         }
41925         var tw = this.trigger.getWidth();
41926         tw += this.addicon ? this.addicon.getWidth() : 0;
41927         tw += this.editicon ? this.editicon.getWidth() : 0;
41928         var x = w - tw;
41929         this.el.setWidth( this.adjustWidth('input', x));
41930             
41931         this.trigger.setStyle('left', x+'px');
41932         
41933         if(this.list && this.listWidth === undefined){
41934             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41935             this.list.setWidth(lw);
41936             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41937         }
41938         
41939     
41940         
41941     },
41942
41943     /**
41944      * Allow or prevent the user from directly editing the field text.  If false is passed,
41945      * the user will only be able to select from the items defined in the dropdown list.  This method
41946      * is the runtime equivalent of setting the 'editable' config option at config time.
41947      * @param {Boolean} value True to allow the user to directly edit the field text
41948      */
41949     setEditable : function(value){
41950         if(value == this.editable){
41951             return;
41952         }
41953         this.editable = value;
41954         if(!value){
41955             this.el.dom.setAttribute('readOnly', true);
41956             this.el.on('mousedown', this.onTriggerClick,  this);
41957             this.el.addClass('x-combo-noedit');
41958         }else{
41959             this.el.dom.setAttribute('readOnly', false);
41960             this.el.un('mousedown', this.onTriggerClick,  this);
41961             this.el.removeClass('x-combo-noedit');
41962         }
41963     },
41964
41965     // private
41966     onBeforeLoad : function(){
41967         if(!this.hasFocus){
41968             return;
41969         }
41970         this.innerList.update(this.loadingText ?
41971                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41972         this.restrictHeight();
41973         this.selectedIndex = -1;
41974     },
41975
41976     // private
41977     onLoad : function(){
41978         if(!this.hasFocus){
41979             return;
41980         }
41981         if(this.store.getCount() > 0){
41982             this.expand();
41983             this.restrictHeight();
41984             if(this.lastQuery == this.allQuery){
41985                 if(this.editable){
41986                     this.el.dom.select();
41987                 }
41988                 if(!this.selectByValue(this.value, true)){
41989                     this.select(0, true);
41990                 }
41991             }else{
41992                 this.selectNext();
41993                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41994                     this.taTask.delay(this.typeAheadDelay);
41995                 }
41996             }
41997         }else{
41998             this.onEmptyResults();
41999         }
42000         //this.el.focus();
42001     },
42002     // private
42003     onLoadException : function()
42004     {
42005         this.collapse();
42006         Roo.log(this.store.reader.jsonData);
42007         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
42008             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
42009         }
42010         
42011         
42012     },
42013     // private
42014     onTypeAhead : function(){
42015         if(this.store.getCount() > 0){
42016             var r = this.store.getAt(0);
42017             var newValue = r.data[this.displayField];
42018             var len = newValue.length;
42019             var selStart = this.getRawValue().length;
42020             if(selStart != len){
42021                 this.setRawValue(newValue);
42022                 this.selectText(selStart, newValue.length);
42023             }
42024         }
42025     },
42026
42027     // private
42028     onSelect : function(record, index){
42029         if(this.fireEvent('beforeselect', this, record, index) !== false){
42030             this.setFromData(index > -1 ? record.data : false);
42031             this.collapse();
42032             this.fireEvent('select', this, record, index);
42033         }
42034     },
42035
42036     /**
42037      * Returns the currently selected field value or empty string if no value is set.
42038      * @return {String} value The selected value
42039      */
42040     getValue : function(){
42041         if(this.valueField){
42042             return typeof this.value != 'undefined' ? this.value : '';
42043         }
42044         return Roo.form.ComboBox.superclass.getValue.call(this);
42045     },
42046
42047     /**
42048      * Clears any text/value currently set in the field
42049      */
42050     clearValue : function(){
42051         if(this.hiddenField){
42052             this.hiddenField.value = '';
42053         }
42054         this.value = '';
42055         this.setRawValue('');
42056         this.lastSelectionText = '';
42057         
42058     },
42059
42060     /**
42061      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
42062      * will be displayed in the field.  If the value does not match the data value of an existing item,
42063      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
42064      * Otherwise the field will be blank (although the value will still be set).
42065      * @param {String} value The value to match
42066      */
42067     setValue : function(v){
42068         var text = v;
42069         if(this.valueField){
42070             var r = this.findRecord(this.valueField, v);
42071             if(r){
42072                 text = r.data[this.displayField];
42073             }else if(this.valueNotFoundText !== undefined){
42074                 text = this.valueNotFoundText;
42075             }
42076         }
42077         this.lastSelectionText = text;
42078         if(this.hiddenField){
42079             this.hiddenField.value = v;
42080         }
42081         Roo.form.ComboBox.superclass.setValue.call(this, text);
42082         this.value = v;
42083     },
42084     /**
42085      * @property {Object} the last set data for the element
42086      */
42087     
42088     lastData : false,
42089     /**
42090      * Sets the value of the field based on a object which is related to the record format for the store.
42091      * @param {Object} value the value to set as. or false on reset?
42092      */
42093     setFromData : function(o){
42094         var dv = ''; // display value
42095         var vv = ''; // value value..
42096         this.lastData = o;
42097         if (this.displayField) {
42098             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
42099         } else {
42100             // this is an error condition!!!
42101             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
42102         }
42103         
42104         if(this.valueField){
42105             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
42106         }
42107         if(this.hiddenField){
42108             this.hiddenField.value = vv;
42109             
42110             this.lastSelectionText = dv;
42111             Roo.form.ComboBox.superclass.setValue.call(this, dv);
42112             this.value = vv;
42113             return;
42114         }
42115         // no hidden field.. - we store the value in 'value', but still display
42116         // display field!!!!
42117         this.lastSelectionText = dv;
42118         Roo.form.ComboBox.superclass.setValue.call(this, dv);
42119         this.value = vv;
42120         
42121         
42122     },
42123     // private
42124     reset : function(){
42125         // overridden so that last data is reset..
42126         this.setValue(this.resetValue);
42127         this.originalValue = this.getValue();
42128         this.clearInvalid();
42129         this.lastData = false;
42130         if (this.view) {
42131             this.view.clearSelections();
42132         }
42133     },
42134     // private
42135     findRecord : function(prop, value){
42136         var record;
42137         if(this.store.getCount() > 0){
42138             this.store.each(function(r){
42139                 if(r.data[prop] == value){
42140                     record = r;
42141                     return false;
42142                 }
42143                 return true;
42144             });
42145         }
42146         return record;
42147     },
42148     
42149     getName: function()
42150     {
42151         // returns hidden if it's set..
42152         if (!this.rendered) {return ''};
42153         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42154         
42155     },
42156     // private
42157     onViewMove : function(e, t){
42158         this.inKeyMode = false;
42159     },
42160
42161     // private
42162     onViewOver : function(e, t){
42163         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
42164             return;
42165         }
42166         var item = this.view.findItemFromChild(t);
42167         if(item){
42168             var index = this.view.indexOf(item);
42169             this.select(index, false);
42170         }
42171     },
42172
42173     // private
42174     onViewClick : function(doFocus)
42175     {
42176         var index = this.view.getSelectedIndexes()[0];
42177         var r = this.store.getAt(index);
42178         if(r){
42179             this.onSelect(r, index);
42180         }
42181         if(doFocus !== false && !this.blockFocus){
42182             this.el.focus();
42183         }
42184     },
42185
42186     // private
42187     restrictHeight : function(){
42188         this.innerList.dom.style.height = '';
42189         var inner = this.innerList.dom;
42190         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42191         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42192         this.list.beginUpdate();
42193         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42194         this.list.alignTo(this.el, this.listAlign);
42195         this.list.endUpdate();
42196     },
42197
42198     // private
42199     onEmptyResults : function(){
42200         this.collapse();
42201     },
42202
42203     /**
42204      * Returns true if the dropdown list is expanded, else false.
42205      */
42206     isExpanded : function(){
42207         return this.list.isVisible();
42208     },
42209
42210     /**
42211      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42212      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42213      * @param {String} value The data value of the item to select
42214      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42215      * selected item if it is not currently in view (defaults to true)
42216      * @return {Boolean} True if the value matched an item in the list, else false
42217      */
42218     selectByValue : function(v, scrollIntoView){
42219         if(v !== undefined && v !== null){
42220             var r = this.findRecord(this.valueField || this.displayField, v);
42221             if(r){
42222                 this.select(this.store.indexOf(r), scrollIntoView);
42223                 return true;
42224             }
42225         }
42226         return false;
42227     },
42228
42229     /**
42230      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42231      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42232      * @param {Number} index The zero-based index of the list item to select
42233      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42234      * selected item if it is not currently in view (defaults to true)
42235      */
42236     select : function(index, scrollIntoView){
42237         this.selectedIndex = index;
42238         this.view.select(index);
42239         if(scrollIntoView !== false){
42240             var el = this.view.getNode(index);
42241             if(el){
42242                 this.innerList.scrollChildIntoView(el, false);
42243             }
42244         }
42245     },
42246
42247     // private
42248     selectNext : function(){
42249         var ct = this.store.getCount();
42250         if(ct > 0){
42251             if(this.selectedIndex == -1){
42252                 this.select(0);
42253             }else if(this.selectedIndex < ct-1){
42254                 this.select(this.selectedIndex+1);
42255             }
42256         }
42257     },
42258
42259     // private
42260     selectPrev : function(){
42261         var ct = this.store.getCount();
42262         if(ct > 0){
42263             if(this.selectedIndex == -1){
42264                 this.select(0);
42265             }else if(this.selectedIndex != 0){
42266                 this.select(this.selectedIndex-1);
42267             }
42268         }
42269     },
42270
42271     // private
42272     onKeyUp : function(e){
42273         if(this.editable !== false && !e.isSpecialKey()){
42274             this.lastKey = e.getKey();
42275             this.dqTask.delay(this.queryDelay);
42276         }
42277     },
42278
42279     // private
42280     validateBlur : function(){
42281         return !this.list || !this.list.isVisible();   
42282     },
42283
42284     // private
42285     initQuery : function(){
42286         this.doQuery(this.getRawValue());
42287     },
42288
42289     // private
42290     doForce : function(){
42291         if(this.el.dom.value.length > 0){
42292             this.el.dom.value =
42293                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42294              
42295         }
42296     },
42297
42298     /**
42299      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42300      * query allowing the query action to be canceled if needed.
42301      * @param {String} query The SQL query to execute
42302      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42303      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42304      * saved in the current store (defaults to false)
42305      */
42306     doQuery : function(q, forceAll){
42307         if(q === undefined || q === null){
42308             q = '';
42309         }
42310         var qe = {
42311             query: q,
42312             forceAll: forceAll,
42313             combo: this,
42314             cancel:false
42315         };
42316         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42317             return false;
42318         }
42319         q = qe.query;
42320         forceAll = qe.forceAll;
42321         if(forceAll === true || (q.length >= this.minChars)){
42322             if(this.lastQuery != q || this.alwaysQuery){
42323                 this.lastQuery = q;
42324                 if(this.mode == 'local'){
42325                     this.selectedIndex = -1;
42326                     if(forceAll){
42327                         this.store.clearFilter();
42328                     }else{
42329                         this.store.filter(this.displayField, q);
42330                     }
42331                     this.onLoad();
42332                 }else{
42333                     this.store.baseParams[this.queryParam] = q;
42334                     this.store.load({
42335                         params: this.getParams(q)
42336                     });
42337                     this.expand();
42338                 }
42339             }else{
42340                 this.selectedIndex = -1;
42341                 this.onLoad();   
42342             }
42343         }
42344     },
42345
42346     // private
42347     getParams : function(q){
42348         var p = {};
42349         //p[this.queryParam] = q;
42350         if(this.pageSize){
42351             p.start = 0;
42352             p.limit = this.pageSize;
42353         }
42354         return p;
42355     },
42356
42357     /**
42358      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42359      */
42360     collapse : function(){
42361         if(!this.isExpanded()){
42362             return;
42363         }
42364         this.list.hide();
42365         Roo.get(document).un('mousedown', this.collapseIf, this);
42366         Roo.get(document).un('mousewheel', this.collapseIf, this);
42367         if (!this.editable) {
42368             Roo.get(document).un('keydown', this.listKeyPress, this);
42369         }
42370         this.fireEvent('collapse', this);
42371     },
42372
42373     // private
42374     collapseIf : function(e){
42375         if(!e.within(this.wrap) && !e.within(this.list)){
42376             this.collapse();
42377         }
42378     },
42379
42380     /**
42381      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42382      */
42383     expand : function(){
42384         if(this.isExpanded() || !this.hasFocus){
42385             return;
42386         }
42387         this.list.alignTo(this.el, this.listAlign);
42388         this.list.show();
42389         Roo.get(document).on('mousedown', this.collapseIf, this);
42390         Roo.get(document).on('mousewheel', this.collapseIf, this);
42391         if (!this.editable) {
42392             Roo.get(document).on('keydown', this.listKeyPress, this);
42393         }
42394         
42395         this.fireEvent('expand', this);
42396     },
42397
42398     // private
42399     // Implements the default empty TriggerField.onTriggerClick function
42400     onTriggerClick : function(){
42401         if(this.disabled){
42402             return;
42403         }
42404         if(this.isExpanded()){
42405             this.collapse();
42406             if (!this.blockFocus) {
42407                 this.el.focus();
42408             }
42409             
42410         }else {
42411             this.hasFocus = true;
42412             if(this.triggerAction == 'all') {
42413                 this.doQuery(this.allQuery, true);
42414             } else {
42415                 this.doQuery(this.getRawValue());
42416             }
42417             if (!this.blockFocus) {
42418                 this.el.focus();
42419             }
42420         }
42421     },
42422     listKeyPress : function(e)
42423     {
42424         //Roo.log('listkeypress');
42425         // scroll to first matching element based on key pres..
42426         if (e.isSpecialKey()) {
42427             return false;
42428         }
42429         var k = String.fromCharCode(e.getKey()).toUpperCase();
42430         //Roo.log(k);
42431         var match  = false;
42432         var csel = this.view.getSelectedNodes();
42433         var cselitem = false;
42434         if (csel.length) {
42435             var ix = this.view.indexOf(csel[0]);
42436             cselitem  = this.store.getAt(ix);
42437             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42438                 cselitem = false;
42439             }
42440             
42441         }
42442         
42443         this.store.each(function(v) { 
42444             if (cselitem) {
42445                 // start at existing selection.
42446                 if (cselitem.id == v.id) {
42447                     cselitem = false;
42448                 }
42449                 return;
42450             }
42451                 
42452             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42453                 match = this.store.indexOf(v);
42454                 return false;
42455             }
42456         }, this);
42457         
42458         if (match === false) {
42459             return true; // no more action?
42460         }
42461         // scroll to?
42462         this.view.select(match);
42463         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42464         sn.scrollIntoView(sn.dom.parentNode, false);
42465     } 
42466
42467     /** 
42468     * @cfg {Boolean} grow 
42469     * @hide 
42470     */
42471     /** 
42472     * @cfg {Number} growMin 
42473     * @hide 
42474     */
42475     /** 
42476     * @cfg {Number} growMax 
42477     * @hide 
42478     */
42479     /**
42480      * @hide
42481      * @method autoSize
42482      */
42483 });/*
42484  * Copyright(c) 2010-2012, Roo J Solutions Limited
42485  *
42486  * Licence LGPL
42487  *
42488  */
42489
42490 /**
42491  * @class Roo.form.ComboBoxArray
42492  * @extends Roo.form.TextField
42493  * A facebook style adder... for lists of email / people / countries  etc...
42494  * pick multiple items from a combo box, and shows each one.
42495  *
42496  *  Fred [x]  Brian [x]  [Pick another |v]
42497  *
42498  *
42499  *  For this to work: it needs various extra information
42500  *    - normal combo problay has
42501  *      name, hiddenName
42502  *    + displayField, valueField
42503  *
42504  *    For our purpose...
42505  *
42506  *
42507  *   If we change from 'extends' to wrapping...
42508  *   
42509  *  
42510  *
42511  
42512  
42513  * @constructor
42514  * Create a new ComboBoxArray.
42515  * @param {Object} config Configuration options
42516  */
42517  
42518
42519 Roo.form.ComboBoxArray = function(config)
42520 {
42521     this.addEvents({
42522         /**
42523          * @event beforeremove
42524          * Fires before remove the value from the list
42525              * @param {Roo.form.ComboBoxArray} _self This combo box array
42526              * @param {Roo.form.ComboBoxArray.Item} item removed item
42527              */
42528         'beforeremove' : true,
42529         /**
42530          * @event remove
42531          * Fires when remove the value from the list
42532              * @param {Roo.form.ComboBoxArray} _self This combo box array
42533              * @param {Roo.form.ComboBoxArray.Item} item removed item
42534              */
42535         'remove' : true
42536         
42537         
42538     });
42539     
42540     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42541     
42542     this.items = new Roo.util.MixedCollection(false);
42543     
42544     // construct the child combo...
42545     
42546     
42547     
42548     
42549    
42550     
42551 }
42552
42553  
42554 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42555
42556     /**
42557      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
42558      */
42559     
42560     lastData : false,
42561     
42562     // behavies liek a hiddne field
42563     inputType:      'hidden',
42564     /**
42565      * @cfg {Number} width The width of the box that displays the selected element
42566      */ 
42567     width:          300,
42568
42569     
42570     
42571     /**
42572      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42573      */
42574     name : false,
42575     /**
42576      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42577      */
42578     hiddenName : false,
42579       /**
42580      * @cfg {String} seperator    The value seperator normally ',' 
42581      */
42582     seperator : ',',
42583     
42584     // private the array of items that are displayed..
42585     items  : false,
42586     // private - the hidden field el.
42587     hiddenEl : false,
42588     // private - the filed el..
42589     el : false,
42590     
42591     //validateValue : function() { return true; }, // all values are ok!
42592     //onAddClick: function() { },
42593     
42594     onRender : function(ct, position) 
42595     {
42596         
42597         // create the standard hidden element
42598         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42599         
42600         
42601         // give fake names to child combo;
42602         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42603         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42604         
42605         this.combo = Roo.factory(this.combo, Roo.form);
42606         this.combo.onRender(ct, position);
42607         if (typeof(this.combo.width) != 'undefined') {
42608             this.combo.onResize(this.combo.width,0);
42609         }
42610         
42611         this.combo.initEvents();
42612         
42613         // assigned so form know we need to do this..
42614         this.store          = this.combo.store;
42615         this.valueField     = this.combo.valueField;
42616         this.displayField   = this.combo.displayField ;
42617         
42618         
42619         this.combo.wrap.addClass('x-cbarray-grp');
42620         
42621         var cbwrap = this.combo.wrap.createChild(
42622             {tag: 'div', cls: 'x-cbarray-cb'},
42623             this.combo.el.dom
42624         );
42625         
42626              
42627         this.hiddenEl = this.combo.wrap.createChild({
42628             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42629         });
42630         this.el = this.combo.wrap.createChild({
42631             tag: 'input',  type:'hidden' , name: this.name, value : ''
42632         });
42633          //   this.el.dom.removeAttribute("name");
42634         
42635         
42636         this.outerWrap = this.combo.wrap;
42637         this.wrap = cbwrap;
42638         
42639         this.outerWrap.setWidth(this.width);
42640         this.outerWrap.dom.removeChild(this.el.dom);
42641         
42642         this.wrap.dom.appendChild(this.el.dom);
42643         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42644         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42645         
42646         this.combo.trigger.setStyle('position','relative');
42647         this.combo.trigger.setStyle('left', '0px');
42648         this.combo.trigger.setStyle('top', '2px');
42649         
42650         this.combo.el.setStyle('vertical-align', 'text-bottom');
42651         
42652         //this.trigger.setStyle('vertical-align', 'top');
42653         
42654         // this should use the code from combo really... on('add' ....)
42655         if (this.adder) {
42656             
42657         
42658             this.adder = this.outerWrap.createChild(
42659                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42660             var _t = this;
42661             this.adder.on('click', function(e) {
42662                 _t.fireEvent('adderclick', this, e);
42663             }, _t);
42664         }
42665         //var _t = this;
42666         //this.adder.on('click', this.onAddClick, _t);
42667         
42668         
42669         this.combo.on('select', function(cb, rec, ix) {
42670             this.addItem(rec.data);
42671             
42672             cb.setValue('');
42673             cb.el.dom.value = '';
42674             //cb.lastData = rec.data;
42675             // add to list
42676             
42677         }, this);
42678         
42679         
42680     },
42681     
42682     
42683     getName: function()
42684     {
42685         // returns hidden if it's set..
42686         if (!this.rendered) {return ''};
42687         return  this.hiddenName ? this.hiddenName : this.name;
42688         
42689     },
42690     
42691     
42692     onResize: function(w, h){
42693         
42694         return;
42695         // not sure if this is needed..
42696         //this.combo.onResize(w,h);
42697         
42698         if(typeof w != 'number'){
42699             // we do not handle it!?!?
42700             return;
42701         }
42702         var tw = this.combo.trigger.getWidth();
42703         tw += this.addicon ? this.addicon.getWidth() : 0;
42704         tw += this.editicon ? this.editicon.getWidth() : 0;
42705         var x = w - tw;
42706         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42707             
42708         this.combo.trigger.setStyle('left', '0px');
42709         
42710         if(this.list && this.listWidth === undefined){
42711             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42712             this.list.setWidth(lw);
42713             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42714         }
42715         
42716     
42717         
42718     },
42719     
42720     addItem: function(rec)
42721     {
42722         var valueField = this.combo.valueField;
42723         var displayField = this.combo.displayField;
42724         
42725         if (this.items.indexOfKey(rec[valueField]) > -1) {
42726             //console.log("GOT " + rec.data.id);
42727             return;
42728         }
42729         
42730         var x = new Roo.form.ComboBoxArray.Item({
42731             //id : rec[this.idField],
42732             data : rec,
42733             displayField : displayField ,
42734             tipField : displayField ,
42735             cb : this
42736         });
42737         // use the 
42738         this.items.add(rec[valueField],x);
42739         // add it before the element..
42740         this.updateHiddenEl();
42741         x.render(this.outerWrap, this.wrap.dom);
42742         // add the image handler..
42743     },
42744     
42745     updateHiddenEl : function()
42746     {
42747         this.validate();
42748         if (!this.hiddenEl) {
42749             return;
42750         }
42751         var ar = [];
42752         var idField = this.combo.valueField;
42753         
42754         this.items.each(function(f) {
42755             ar.push(f.data[idField]);
42756         });
42757         this.hiddenEl.dom.value = ar.join(this.seperator);
42758         this.validate();
42759     },
42760     
42761     reset : function()
42762     {
42763         this.items.clear();
42764         
42765         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42766            el.remove();
42767         });
42768         
42769         this.el.dom.value = '';
42770         if (this.hiddenEl) {
42771             this.hiddenEl.dom.value = '';
42772         }
42773         
42774     },
42775     getValue: function()
42776     {
42777         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42778     },
42779     setValue: function(v) // not a valid action - must use addItems..
42780     {
42781         
42782         this.reset();
42783          
42784         if (this.store.isLocal && (typeof(v) == 'string')) {
42785             // then we can use the store to find the values..
42786             // comma seperated at present.. this needs to allow JSON based encoding..
42787             this.hiddenEl.value  = v;
42788             var v_ar = [];
42789             Roo.each(v.split(this.seperator), function(k) {
42790                 Roo.log("CHECK " + this.valueField + ',' + k);
42791                 var li = this.store.query(this.valueField, k);
42792                 if (!li.length) {
42793                     return;
42794                 }
42795                 var add = {};
42796                 add[this.valueField] = k;
42797                 add[this.displayField] = li.item(0).data[this.displayField];
42798                 
42799                 this.addItem(add);
42800             }, this) 
42801              
42802         }
42803         if (typeof(v) == 'object' ) {
42804             // then let's assume it's an array of objects..
42805             Roo.each(v, function(l) {
42806                 var add = l;
42807                 if (typeof(l) == 'string') {
42808                     add = {};
42809                     add[this.valueField] = l;
42810                     add[this.displayField] = l
42811                 }
42812                 this.addItem(add);
42813             }, this);
42814              
42815         }
42816         
42817         
42818     },
42819     setFromData: function(v)
42820     {
42821         // this recieves an object, if setValues is called.
42822         this.reset();
42823         this.el.dom.value = v[this.displayField];
42824         this.hiddenEl.dom.value = v[this.valueField];
42825         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42826             return;
42827         }
42828         var kv = v[this.valueField];
42829         var dv = v[this.displayField];
42830         kv = typeof(kv) != 'string' ? '' : kv;
42831         dv = typeof(dv) != 'string' ? '' : dv;
42832         
42833         
42834         var keys = kv.split(this.seperator);
42835         var display = dv.split(this.seperator);
42836         for (var i = 0 ; i < keys.length; i++) {
42837             add = {};
42838             add[this.valueField] = keys[i];
42839             add[this.displayField] = display[i];
42840             this.addItem(add);
42841         }
42842       
42843         
42844     },
42845     
42846     /**
42847      * Validates the combox array value
42848      * @return {Boolean} True if the value is valid, else false
42849      */
42850     validate : function(){
42851         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42852             this.clearInvalid();
42853             return true;
42854         }
42855         return false;
42856     },
42857     
42858     validateValue : function(value){
42859         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42860         
42861     },
42862     
42863     /*@
42864      * overide
42865      * 
42866      */
42867     isDirty : function() {
42868         if(this.disabled) {
42869             return false;
42870         }
42871         
42872         try {
42873             var d = Roo.decode(String(this.originalValue));
42874         } catch (e) {
42875             return String(this.getValue()) !== String(this.originalValue);
42876         }
42877         
42878         var originalValue = [];
42879         
42880         for (var i = 0; i < d.length; i++){
42881             originalValue.push(d[i][this.valueField]);
42882         }
42883         
42884         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42885         
42886     }
42887     
42888 });
42889
42890
42891
42892 /**
42893  * @class Roo.form.ComboBoxArray.Item
42894  * @extends Roo.BoxComponent
42895  * A selected item in the list
42896  *  Fred [x]  Brian [x]  [Pick another |v]
42897  * 
42898  * @constructor
42899  * Create a new item.
42900  * @param {Object} config Configuration options
42901  */
42902  
42903 Roo.form.ComboBoxArray.Item = function(config) {
42904     config.id = Roo.id();
42905     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42906 }
42907
42908 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42909     data : {},
42910     cb: false,
42911     displayField : false,
42912     tipField : false,
42913     
42914     
42915     defaultAutoCreate : {
42916         tag: 'div',
42917         cls: 'x-cbarray-item',
42918         cn : [ 
42919             { tag: 'div' },
42920             {
42921                 tag: 'img',
42922                 width:16,
42923                 height : 16,
42924                 src : Roo.BLANK_IMAGE_URL ,
42925                 align: 'center'
42926             }
42927         ]
42928         
42929     },
42930     
42931  
42932     onRender : function(ct, position)
42933     {
42934         Roo.form.Field.superclass.onRender.call(this, ct, position);
42935         
42936         if(!this.el){
42937             var cfg = this.getAutoCreate();
42938             this.el = ct.createChild(cfg, position);
42939         }
42940         
42941         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42942         
42943         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42944             this.cb.renderer(this.data) :
42945             String.format('{0}',this.data[this.displayField]);
42946         
42947             
42948         this.el.child('div').dom.setAttribute('qtip',
42949                         String.format('{0}',this.data[this.tipField])
42950         );
42951         
42952         this.el.child('img').on('click', this.remove, this);
42953         
42954     },
42955    
42956     remove : function()
42957     {
42958         if(this.cb.disabled){
42959             return;
42960         }
42961         
42962         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42963             this.cb.items.remove(this);
42964             this.el.child('img').un('click', this.remove, this);
42965             this.el.remove();
42966             this.cb.updateHiddenEl();
42967
42968             this.cb.fireEvent('remove', this.cb, this);
42969         }
42970         
42971     }
42972 });/*
42973  * RooJS Library 1.1.1
42974  * Copyright(c) 2008-2011  Alan Knowles
42975  *
42976  * License - LGPL
42977  */
42978  
42979
42980 /**
42981  * @class Roo.form.ComboNested
42982  * @extends Roo.form.ComboBox
42983  * A combobox for that allows selection of nested items in a list,
42984  * eg.
42985  *
42986  *  Book
42987  *    -> red
42988  *    -> green
42989  *  Table
42990  *    -> square
42991  *      ->red
42992  *      ->green
42993  *    -> rectangle
42994  *      ->green
42995  *      
42996  * 
42997  * @constructor
42998  * Create a new ComboNested
42999  * @param {Object} config Configuration options
43000  */
43001 Roo.form.ComboNested = function(config){
43002     Roo.form.ComboCheck.superclass.constructor.call(this, config);
43003     // should verify some data...
43004     // like
43005     // hiddenName = required..
43006     // displayField = required
43007     // valudField == required
43008     var req= [ 'hiddenName', 'displayField', 'valueField' ];
43009     var _t = this;
43010     Roo.each(req, function(e) {
43011         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
43012             throw "Roo.form.ComboNested : missing value for: " + e;
43013         }
43014     });
43015      
43016     
43017 };
43018
43019 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
43020    
43021     /*
43022      * @config {Number} max Number of columns to show
43023      */
43024     
43025     maxColumns : 3,
43026    
43027     list : null, // the outermost div..
43028     innerLists : null, // the
43029     views : null,
43030     stores : null,
43031     // private
43032     loadingChildren : false,
43033     
43034     onRender : function(ct, position)
43035     {
43036         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
43037         
43038         if(this.hiddenName){
43039             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
43040                     'before', true);
43041             this.hiddenField.value =
43042                 this.hiddenValue !== undefined ? this.hiddenValue :
43043                 this.value !== undefined ? this.value : '';
43044
43045             // prevent input submission
43046             this.el.dom.removeAttribute('name');
43047              
43048              
43049         }
43050         
43051         if(Roo.isGecko){
43052             this.el.dom.setAttribute('autocomplete', 'off');
43053         }
43054
43055         var cls = 'x-combo-list';
43056
43057         this.list = new Roo.Layer({
43058             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
43059         });
43060
43061         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
43062         this.list.setWidth(lw);
43063         this.list.swallowEvent('mousewheel');
43064         this.assetHeight = 0;
43065
43066         if(this.title){
43067             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
43068             this.assetHeight += this.header.getHeight();
43069         }
43070         this.innerLists = [];
43071         this.views = [];
43072         this.stores = [];
43073         for (var i =0 ; i < this.maxColumns; i++) {
43074             this.onRenderList( cls, i);
43075         }
43076         
43077         // always needs footer, as we are going to have an 'OK' button.
43078         this.footer = this.list.createChild({cls:cls+'-ft'});
43079         this.pageTb = new Roo.Toolbar(this.footer);  
43080         var _this = this;
43081         this.pageTb.add(  {
43082             
43083             text: 'Done',
43084             handler: function()
43085             {
43086                 _this.collapse();
43087             }
43088         });
43089         
43090         if ( this.allowBlank && !this.disableClear) {
43091             
43092             this.pageTb.add(new Roo.Toolbar.Fill(), {
43093                 cls: 'x-btn-icon x-btn-clear',
43094                 text: '&#160;',
43095                 handler: function()
43096                 {
43097                     _this.collapse();
43098                     _this.clearValue();
43099                     _this.onSelect(false, -1);
43100                 }
43101             });
43102         }
43103         if (this.footer) {
43104             this.assetHeight += this.footer.getHeight();
43105         }
43106         
43107     },
43108     onRenderList : function (  cls, i)
43109     {
43110         
43111         var lw = Math.floor(
43112                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43113         );
43114         
43115         this.list.setWidth(lw); // default to '1'
43116
43117         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
43118         //il.on('mouseover', this.onViewOver, this, { list:  i });
43119         //il.on('mousemove', this.onViewMove, this, { list:  i });
43120         il.setWidth(lw);
43121         il.setStyle({ 'overflow-x' : 'hidden'});
43122
43123         if(!this.tpl){
43124             this.tpl = new Roo.Template({
43125                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
43126                 isEmpty: function (value, allValues) {
43127                     //Roo.log(value);
43128                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
43129                     return dl ? 'has-children' : 'no-children'
43130                 }
43131             });
43132         }
43133         
43134         var store  = this.store;
43135         if (i > 0) {
43136             store  = new Roo.data.SimpleStore({
43137                 //fields : this.store.reader.meta.fields,
43138                 reader : this.store.reader,
43139                 data : [ ]
43140             });
43141         }
43142         this.stores[i]  = store;
43143                   
43144         var view = this.views[i] = new Roo.View(
43145             il,
43146             this.tpl,
43147             {
43148                 singleSelect:true,
43149                 store: store,
43150                 selectedClass: this.selectedClass
43151             }
43152         );
43153         view.getEl().setWidth(lw);
43154         view.getEl().setStyle({
43155             position: i < 1 ? 'relative' : 'absolute',
43156             top: 0,
43157             left: (i * lw ) + 'px',
43158             display : i > 0 ? 'none' : 'block'
43159         });
43160         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
43161         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
43162         //view.on('click', this.onViewClick, this, { list : i });
43163
43164         store.on('beforeload', this.onBeforeLoad, this);
43165         store.on('load',  this.onLoad, this, { list  : i});
43166         store.on('loadexception', this.onLoadException, this);
43167
43168         // hide the other vies..
43169         
43170         
43171         
43172     },
43173       
43174     restrictHeight : function()
43175     {
43176         var mh = 0;
43177         Roo.each(this.innerLists, function(il,i) {
43178             var el = this.views[i].getEl();
43179             el.dom.style.height = '';
43180             var inner = el.dom;
43181             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
43182             // only adjust heights on other ones..
43183             mh = Math.max(h, mh);
43184             if (i < 1) {
43185                 
43186                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43187                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43188                
43189             }
43190             
43191             
43192         }, this);
43193         
43194         this.list.beginUpdate();
43195         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43196         this.list.alignTo(this.el, this.listAlign);
43197         this.list.endUpdate();
43198         
43199     },
43200      
43201     
43202     // -- store handlers..
43203     // private
43204     onBeforeLoad : function()
43205     {
43206         if(!this.hasFocus){
43207             return;
43208         }
43209         this.innerLists[0].update(this.loadingText ?
43210                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43211         this.restrictHeight();
43212         this.selectedIndex = -1;
43213     },
43214     // private
43215     onLoad : function(a,b,c,d)
43216     {
43217         if (!this.loadingChildren) {
43218             // then we are loading the top level. - hide the children
43219             for (var i = 1;i < this.views.length; i++) {
43220                 this.views[i].getEl().setStyle({ display : 'none' });
43221             }
43222             var lw = Math.floor(
43223                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43224             );
43225         
43226              this.list.setWidth(lw); // default to '1'
43227
43228             
43229         }
43230         if(!this.hasFocus){
43231             return;
43232         }
43233         
43234         if(this.store.getCount() > 0) {
43235             this.expand();
43236             this.restrictHeight();   
43237         } else {
43238             this.onEmptyResults();
43239         }
43240         
43241         if (!this.loadingChildren) {
43242             this.selectActive();
43243         }
43244         /*
43245         this.stores[1].loadData([]);
43246         this.stores[2].loadData([]);
43247         this.views
43248         */    
43249     
43250         //this.el.focus();
43251     },
43252     
43253     
43254     // private
43255     onLoadException : function()
43256     {
43257         this.collapse();
43258         Roo.log(this.store.reader.jsonData);
43259         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43260             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43261         }
43262         
43263         
43264     },
43265     // no cleaning of leading spaces on blur here.
43266     cleanLeadingSpace : function(e) { },
43267     
43268
43269     onSelectChange : function (view, sels, opts )
43270     {
43271         var ix = view.getSelectedIndexes();
43272          
43273         if (opts.list > this.maxColumns - 2) {
43274             if (view.store.getCount()<  1) {
43275                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43276
43277             } else  {
43278                 if (ix.length) {
43279                     // used to clear ?? but if we are loading unselected 
43280                     this.setFromData(view.store.getAt(ix[0]).data);
43281                 }
43282                 
43283             }
43284             
43285             return;
43286         }
43287         
43288         if (!ix.length) {
43289             // this get's fired when trigger opens..
43290            // this.setFromData({});
43291             var str = this.stores[opts.list+1];
43292             str.data.clear(); // removeall wihtout the fire events..
43293             return;
43294         }
43295         
43296         var rec = view.store.getAt(ix[0]);
43297          
43298         this.setFromData(rec.data);
43299         this.fireEvent('select', this, rec, ix[0]);
43300         
43301         var lw = Math.floor(
43302              (
43303                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43304              ) / this.maxColumns
43305         );
43306         this.loadingChildren = true;
43307         this.stores[opts.list+1].loadDataFromChildren( rec );
43308         this.loadingChildren = false;
43309         var dl = this.stores[opts.list+1]. getTotalCount();
43310         
43311         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43312         
43313         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43314         for (var i = opts.list+2; i < this.views.length;i++) {
43315             this.views[i].getEl().setStyle({ display : 'none' });
43316         }
43317         
43318         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43319         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43320         
43321         if (this.isLoading) {
43322            // this.selectActive(opts.list);
43323         }
43324          
43325     },
43326     
43327     
43328     
43329     
43330     onDoubleClick : function()
43331     {
43332         this.collapse(); //??
43333     },
43334     
43335      
43336     
43337     
43338     
43339     // private
43340     recordToStack : function(store, prop, value, stack)
43341     {
43342         var cstore = new Roo.data.SimpleStore({
43343             //fields : this.store.reader.meta.fields, // we need array reader.. for
43344             reader : this.store.reader,
43345             data : [ ]
43346         });
43347         var _this = this;
43348         var record  = false;
43349         var srec = false;
43350         if(store.getCount() < 1){
43351             return false;
43352         }
43353         store.each(function(r){
43354             if(r.data[prop] == value){
43355                 record = r;
43356             srec = r;
43357                 return false;
43358             }
43359             if (r.data.cn && r.data.cn.length) {
43360                 cstore.loadDataFromChildren( r);
43361                 var cret = _this.recordToStack(cstore, prop, value, stack);
43362                 if (cret !== false) {
43363                     record = cret;
43364                     srec = r;
43365                     return false;
43366                 }
43367             }
43368              
43369             return true;
43370         });
43371         if (record == false) {
43372             return false
43373         }
43374         stack.unshift(srec);
43375         return record;
43376     },
43377     
43378     /*
43379      * find the stack of stores that match our value.
43380      *
43381      * 
43382      */
43383     
43384     selectActive : function ()
43385     {
43386         // if store is not loaded, then we will need to wait for that to happen first.
43387         var stack = [];
43388         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43389         for (var i = 0; i < stack.length; i++ ) {
43390             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43391         }
43392         
43393     }
43394         
43395          
43396     
43397     
43398     
43399     
43400 });/*
43401  * Based on:
43402  * Ext JS Library 1.1.1
43403  * Copyright(c) 2006-2007, Ext JS, LLC.
43404  *
43405  * Originally Released Under LGPL - original licence link has changed is not relivant.
43406  *
43407  * Fork - LGPL
43408  * <script type="text/javascript">
43409  */
43410 /**
43411  * @class Roo.form.Checkbox
43412  * @extends Roo.form.Field
43413  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43414  * @constructor
43415  * Creates a new Checkbox
43416  * @param {Object} config Configuration options
43417  */
43418 Roo.form.Checkbox = function(config){
43419     Roo.form.Checkbox.superclass.constructor.call(this, config);
43420     this.addEvents({
43421         /**
43422          * @event check
43423          * Fires when the checkbox is checked or unchecked.
43424              * @param {Roo.form.Checkbox} this This checkbox
43425              * @param {Boolean} checked The new checked value
43426              */
43427         check : true
43428     });
43429 };
43430
43431 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43432     /**
43433      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43434      */
43435     focusClass : undefined,
43436     /**
43437      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43438      */
43439     fieldClass: "x-form-field",
43440     /**
43441      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43442      */
43443     checked: false,
43444     /**
43445      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43446      * {tag: "input", type: "checkbox", autocomplete: "off"})
43447      */
43448     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43449     /**
43450      * @cfg {String} boxLabel The text that appears beside the checkbox
43451      */
43452     boxLabel : "",
43453     /**
43454      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43455      */  
43456     inputValue : '1',
43457     /**
43458      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43459      */
43460      valueOff: '0', // value when not checked..
43461
43462     actionMode : 'viewEl', 
43463     //
43464     // private
43465     itemCls : 'x-menu-check-item x-form-item',
43466     groupClass : 'x-menu-group-item',
43467     inputType : 'hidden',
43468     
43469     
43470     inSetChecked: false, // check that we are not calling self...
43471     
43472     inputElement: false, // real input element?
43473     basedOn: false, // ????
43474     
43475     isFormField: true, // not sure where this is needed!!!!
43476
43477     onResize : function(){
43478         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43479         if(!this.boxLabel){
43480             this.el.alignTo(this.wrap, 'c-c');
43481         }
43482     },
43483
43484     initEvents : function(){
43485         Roo.form.Checkbox.superclass.initEvents.call(this);
43486         this.el.on("click", this.onClick,  this);
43487         this.el.on("change", this.onClick,  this);
43488     },
43489
43490
43491     getResizeEl : function(){
43492         return this.wrap;
43493     },
43494
43495     getPositionEl : function(){
43496         return this.wrap;
43497     },
43498
43499     // private
43500     onRender : function(ct, position){
43501         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43502         /*
43503         if(this.inputValue !== undefined){
43504             this.el.dom.value = this.inputValue;
43505         }
43506         */
43507         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43508         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43509         var viewEl = this.wrap.createChild({ 
43510             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43511         this.viewEl = viewEl;   
43512         this.wrap.on('click', this.onClick,  this); 
43513         
43514         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43515         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43516         
43517         
43518         
43519         if(this.boxLabel){
43520             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43521         //    viewEl.on('click', this.onClick,  this); 
43522         }
43523         //if(this.checked){
43524             this.setChecked(this.checked);
43525         //}else{
43526             //this.checked = this.el.dom;
43527         //}
43528
43529     },
43530
43531     // private
43532     initValue : Roo.emptyFn,
43533
43534     /**
43535      * Returns the checked state of the checkbox.
43536      * @return {Boolean} True if checked, else false
43537      */
43538     getValue : function(){
43539         if(this.el){
43540             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43541         }
43542         return this.valueOff;
43543         
43544     },
43545
43546         // private
43547     onClick : function(){ 
43548         if (this.disabled) {
43549             return;
43550         }
43551         this.setChecked(!this.checked);
43552
43553         //if(this.el.dom.checked != this.checked){
43554         //    this.setValue(this.el.dom.checked);
43555        // }
43556     },
43557
43558     /**
43559      * Sets the checked state of the checkbox.
43560      * On is always based on a string comparison between inputValue and the param.
43561      * @param {Boolean/String} value - the value to set 
43562      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43563      */
43564     setValue : function(v,suppressEvent){
43565         
43566         
43567         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43568         //if(this.el && this.el.dom){
43569         //    this.el.dom.checked = this.checked;
43570         //    this.el.dom.defaultChecked = this.checked;
43571         //}
43572         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43573         //this.fireEvent("check", this, this.checked);
43574     },
43575     // private..
43576     setChecked : function(state,suppressEvent)
43577     {
43578         if (this.inSetChecked) {
43579             this.checked = state;
43580             return;
43581         }
43582         
43583     
43584         if(this.wrap){
43585             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43586         }
43587         this.checked = state;
43588         if(suppressEvent !== true){
43589             this.fireEvent('check', this, state);
43590         }
43591         this.inSetChecked = true;
43592         this.el.dom.value = state ? this.inputValue : this.valueOff;
43593         this.inSetChecked = false;
43594         
43595     },
43596     // handle setting of hidden value by some other method!!?!?
43597     setFromHidden: function()
43598     {
43599         if(!this.el){
43600             return;
43601         }
43602         //console.log("SET FROM HIDDEN");
43603         //alert('setFrom hidden');
43604         this.setValue(this.el.dom.value);
43605     },
43606     
43607     onDestroy : function()
43608     {
43609         if(this.viewEl){
43610             Roo.get(this.viewEl).remove();
43611         }
43612          
43613         Roo.form.Checkbox.superclass.onDestroy.call(this);
43614     },
43615     
43616     setBoxLabel : function(str)
43617     {
43618         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43619     }
43620
43621 });/*
43622  * Based on:
43623  * Ext JS Library 1.1.1
43624  * Copyright(c) 2006-2007, Ext JS, LLC.
43625  *
43626  * Originally Released Under LGPL - original licence link has changed is not relivant.
43627  *
43628  * Fork - LGPL
43629  * <script type="text/javascript">
43630  */
43631  
43632 /**
43633  * @class Roo.form.Radio
43634  * @extends Roo.form.Checkbox
43635  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43636  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43637  * @constructor
43638  * Creates a new Radio
43639  * @param {Object} config Configuration options
43640  */
43641 Roo.form.Radio = function(){
43642     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43643 };
43644 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43645     inputType: 'radio',
43646
43647     /**
43648      * If this radio is part of a group, it will return the selected value
43649      * @return {String}
43650      */
43651     getGroupValue : function(){
43652         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43653     },
43654     
43655     
43656     onRender : function(ct, position){
43657         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43658         
43659         if(this.inputValue !== undefined){
43660             this.el.dom.value = this.inputValue;
43661         }
43662          
43663         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43664         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43665         //var viewEl = this.wrap.createChild({ 
43666         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43667         //this.viewEl = viewEl;   
43668         //this.wrap.on('click', this.onClick,  this); 
43669         
43670         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43671         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43672         
43673         
43674         
43675         if(this.boxLabel){
43676             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43677         //    viewEl.on('click', this.onClick,  this); 
43678         }
43679          if(this.checked){
43680             this.el.dom.checked =   'checked' ;
43681         }
43682          
43683     } 
43684     
43685     
43686 });//<script type="text/javascript">
43687
43688 /*
43689  * Based  Ext JS Library 1.1.1
43690  * Copyright(c) 2006-2007, Ext JS, LLC.
43691  * LGPL
43692  *
43693  */
43694  
43695 /**
43696  * @class Roo.HtmlEditorCore
43697  * @extends Roo.Component
43698  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43699  *
43700  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43701  */
43702
43703 Roo.HtmlEditorCore = function(config){
43704     
43705     
43706     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43707     
43708     
43709     this.addEvents({
43710         /**
43711          * @event initialize
43712          * Fires when the editor is fully initialized (including the iframe)
43713          * @param {Roo.HtmlEditorCore} this
43714          */
43715         initialize: true,
43716         /**
43717          * @event activate
43718          * Fires when the editor is first receives the focus. Any insertion must wait
43719          * until after this event.
43720          * @param {Roo.HtmlEditorCore} this
43721          */
43722         activate: true,
43723          /**
43724          * @event beforesync
43725          * Fires before the textarea is updated with content from the editor iframe. Return false
43726          * to cancel the sync.
43727          * @param {Roo.HtmlEditorCore} this
43728          * @param {String} html
43729          */
43730         beforesync: true,
43731          /**
43732          * @event beforepush
43733          * Fires before the iframe editor is updated with content from the textarea. Return false
43734          * to cancel the push.
43735          * @param {Roo.HtmlEditorCore} this
43736          * @param {String} html
43737          */
43738         beforepush: true,
43739          /**
43740          * @event sync
43741          * Fires when the textarea is updated with content from the editor iframe.
43742          * @param {Roo.HtmlEditorCore} this
43743          * @param {String} html
43744          */
43745         sync: true,
43746          /**
43747          * @event push
43748          * Fires when the iframe editor is updated with content from the textarea.
43749          * @param {Roo.HtmlEditorCore} this
43750          * @param {String} html
43751          */
43752         push: true,
43753         
43754         /**
43755          * @event editorevent
43756          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43757          * @param {Roo.HtmlEditorCore} this
43758          */
43759         editorevent: true
43760         
43761     });
43762     
43763     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43764     
43765     // defaults : white / black...
43766     this.applyBlacklists();
43767     
43768     
43769     
43770 };
43771
43772
43773 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43774
43775
43776      /**
43777      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43778      */
43779     
43780     owner : false,
43781     
43782      /**
43783      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43784      *                        Roo.resizable.
43785      */
43786     resizable : false,
43787      /**
43788      * @cfg {Number} height (in pixels)
43789      */   
43790     height: 300,
43791    /**
43792      * @cfg {Number} width (in pixels)
43793      */   
43794     width: 500,
43795     
43796     /**
43797      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43798      * 
43799      */
43800     stylesheets: false,
43801     
43802     /**
43803      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
43804      */
43805     allowComments: false,
43806     // id of frame..
43807     frameId: false,
43808     
43809     // private properties
43810     validationEvent : false,
43811     deferHeight: true,
43812     initialized : false,
43813     activated : false,
43814     sourceEditMode : false,
43815     onFocus : Roo.emptyFn,
43816     iframePad:3,
43817     hideMode:'offsets',
43818     
43819     clearUp: true,
43820     
43821     // blacklist + whitelisted elements..
43822     black: false,
43823     white: false,
43824      
43825     bodyCls : '',
43826
43827     /**
43828      * Protected method that will not generally be called directly. It
43829      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43830      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43831      */
43832     getDocMarkup : function(){
43833         // body styles..
43834         var st = '';
43835         
43836         // inherit styels from page...?? 
43837         if (this.stylesheets === false) {
43838             
43839             Roo.get(document.head).select('style').each(function(node) {
43840                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43841             });
43842             
43843             Roo.get(document.head).select('link').each(function(node) { 
43844                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43845             });
43846             
43847         } else if (!this.stylesheets.length) {
43848                 // simple..
43849                 st = '<style type="text/css">' +
43850                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43851                    '</style>';
43852         } else {
43853             for (var i in this.stylesheets) { 
43854                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43855             }
43856             
43857         }
43858         
43859         st +=  '<style type="text/css">' +
43860             'IMG { cursor: pointer } ' +
43861         '</style>';
43862
43863         var cls = 'roo-htmleditor-body';
43864         
43865         if(this.bodyCls.length){
43866             cls += ' ' + this.bodyCls;
43867         }
43868         
43869         return '<html><head>' + st  +
43870             //<style type="text/css">' +
43871             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43872             //'</style>' +
43873             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43874     },
43875
43876     // private
43877     onRender : function(ct, position)
43878     {
43879         var _t = this;
43880         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43881         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43882         
43883         
43884         this.el.dom.style.border = '0 none';
43885         this.el.dom.setAttribute('tabIndex', -1);
43886         this.el.addClass('x-hidden hide');
43887         
43888         
43889         
43890         if(Roo.isIE){ // fix IE 1px bogus margin
43891             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43892         }
43893        
43894         
43895         this.frameId = Roo.id();
43896         
43897          
43898         
43899         var iframe = this.owner.wrap.createChild({
43900             tag: 'iframe',
43901             cls: 'form-control', // bootstrap..
43902             id: this.frameId,
43903             name: this.frameId,
43904             frameBorder : 'no',
43905             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43906         }, this.el
43907         );
43908         
43909         
43910         this.iframe = iframe.dom;
43911
43912          this.assignDocWin();
43913         
43914         this.doc.designMode = 'on';
43915        
43916         this.doc.open();
43917         this.doc.write(this.getDocMarkup());
43918         this.doc.close();
43919
43920         
43921         var task = { // must defer to wait for browser to be ready
43922             run : function(){
43923                 //console.log("run task?" + this.doc.readyState);
43924                 this.assignDocWin();
43925                 if(this.doc.body || this.doc.readyState == 'complete'){
43926                     try {
43927                         this.doc.designMode="on";
43928                     } catch (e) {
43929                         return;
43930                     }
43931                     Roo.TaskMgr.stop(task);
43932                     this.initEditor.defer(10, this);
43933                 }
43934             },
43935             interval : 10,
43936             duration: 10000,
43937             scope: this
43938         };
43939         Roo.TaskMgr.start(task);
43940
43941     },
43942
43943     // private
43944     onResize : function(w, h)
43945     {
43946          Roo.log('resize: ' +w + ',' + h );
43947         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43948         if(!this.iframe){
43949             return;
43950         }
43951         if(typeof w == 'number'){
43952             
43953             this.iframe.style.width = w + 'px';
43954         }
43955         if(typeof h == 'number'){
43956             
43957             this.iframe.style.height = h + 'px';
43958             if(this.doc){
43959                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43960             }
43961         }
43962         
43963     },
43964
43965     /**
43966      * Toggles the editor between standard and source edit mode.
43967      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43968      */
43969     toggleSourceEdit : function(sourceEditMode){
43970         
43971         this.sourceEditMode = sourceEditMode === true;
43972         
43973         if(this.sourceEditMode){
43974  
43975             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43976             
43977         }else{
43978             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43979             //this.iframe.className = '';
43980             this.deferFocus();
43981         }
43982         //this.setSize(this.owner.wrap.getSize());
43983         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43984     },
43985
43986     
43987   
43988
43989     /**
43990      * Protected method that will not generally be called directly. If you need/want
43991      * custom HTML cleanup, this is the method you should override.
43992      * @param {String} html The HTML to be cleaned
43993      * return {String} The cleaned HTML
43994      */
43995     cleanHtml : function(html){
43996         html = String(html);
43997         if(html.length > 5){
43998             if(Roo.isSafari){ // strip safari nonsense
43999                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
44000             }
44001         }
44002         if(html == '&nbsp;'){
44003             html = '';
44004         }
44005         return html;
44006     },
44007
44008     /**
44009      * HTML Editor -> Textarea
44010      * Protected method that will not generally be called directly. Syncs the contents
44011      * of the editor iframe with the textarea.
44012      */
44013     syncValue : function(){
44014         if(this.initialized){
44015             var bd = (this.doc.body || this.doc.documentElement);
44016             //this.cleanUpPaste(); -- this is done else where and causes havoc..
44017             var html = bd.innerHTML;
44018             if(Roo.isSafari){
44019                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
44020                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
44021                 if(m && m[1]){
44022                     html = '<div style="'+m[0]+'">' + html + '</div>';
44023                 }
44024             }
44025             html = this.cleanHtml(html);
44026             // fix up the special chars.. normaly like back quotes in word...
44027             // however we do not want to do this with chinese..
44028             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
44029                 
44030                 var cc = match.charCodeAt();
44031
44032                 // Get the character value, handling surrogate pairs
44033                 if (match.length == 2) {
44034                     // It's a surrogate pair, calculate the Unicode code point
44035                     var high = match.charCodeAt(0) - 0xD800;
44036                     var low  = match.charCodeAt(1) - 0xDC00;
44037                     cc = (high * 0x400) + low + 0x10000;
44038                 }  else if (
44039                     (cc >= 0x4E00 && cc < 0xA000 ) ||
44040                     (cc >= 0x3400 && cc < 0x4E00 ) ||
44041                     (cc >= 0xf900 && cc < 0xfb00 )
44042                 ) {
44043                         return match;
44044                 }  
44045          
44046                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
44047                 return "&#" + cc + ";";
44048                 
44049                 
44050             });
44051             
44052             
44053              
44054             if(this.owner.fireEvent('beforesync', this, html) !== false){
44055                 this.el.dom.value = html;
44056                 this.owner.fireEvent('sync', this, html);
44057             }
44058         }
44059     },
44060
44061     /**
44062      * Protected method that will not generally be called directly. Pushes the value of the textarea
44063      * into the iframe editor.
44064      */
44065     pushValue : function(){
44066         if(this.initialized){
44067             var v = this.el.dom.value.trim();
44068             
44069 //            if(v.length < 1){
44070 //                v = '&#160;';
44071 //            }
44072             
44073             if(this.owner.fireEvent('beforepush', this, v) !== false){
44074                 var d = (this.doc.body || this.doc.documentElement);
44075                 d.innerHTML = v;
44076                 this.cleanUpPaste();
44077                 this.el.dom.value = d.innerHTML;
44078                 this.owner.fireEvent('push', this, v);
44079             }
44080         }
44081     },
44082
44083     // private
44084     deferFocus : function(){
44085         this.focus.defer(10, this);
44086     },
44087
44088     // doc'ed in Field
44089     focus : function(){
44090         if(this.win && !this.sourceEditMode){
44091             this.win.focus();
44092         }else{
44093             this.el.focus();
44094         }
44095     },
44096     
44097     assignDocWin: function()
44098     {
44099         var iframe = this.iframe;
44100         
44101          if(Roo.isIE){
44102             this.doc = iframe.contentWindow.document;
44103             this.win = iframe.contentWindow;
44104         } else {
44105 //            if (!Roo.get(this.frameId)) {
44106 //                return;
44107 //            }
44108 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44109 //            this.win = Roo.get(this.frameId).dom.contentWindow;
44110             
44111             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
44112                 return;
44113             }
44114             
44115             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44116             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
44117         }
44118     },
44119     
44120     // private
44121     initEditor : function(){
44122         //console.log("INIT EDITOR");
44123         this.assignDocWin();
44124         
44125         
44126         
44127         this.doc.designMode="on";
44128         this.doc.open();
44129         this.doc.write(this.getDocMarkup());
44130         this.doc.close();
44131         
44132         var dbody = (this.doc.body || this.doc.documentElement);
44133         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
44134         // this copies styles from the containing element into thsi one..
44135         // not sure why we need all of this..
44136         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
44137         
44138         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
44139         //ss['background-attachment'] = 'fixed'; // w3c
44140         dbody.bgProperties = 'fixed'; // ie
44141         //Roo.DomHelper.applyStyles(dbody, ss);
44142         Roo.EventManager.on(this.doc, {
44143             //'mousedown': this.onEditorEvent,
44144             'mouseup': this.onEditorEvent,
44145             'dblclick': this.onEditorEvent,
44146             'click': this.onEditorEvent,
44147             'keyup': this.onEditorEvent,
44148             buffer:100,
44149             scope: this
44150         });
44151         if(Roo.isGecko){
44152             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
44153         }
44154         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
44155             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
44156         }
44157         this.initialized = true;
44158
44159         this.owner.fireEvent('initialize', this);
44160         this.pushValue();
44161     },
44162
44163     // private
44164     onDestroy : function(){
44165         
44166         
44167         
44168         if(this.rendered){
44169             
44170             //for (var i =0; i < this.toolbars.length;i++) {
44171             //    // fixme - ask toolbars for heights?
44172             //    this.toolbars[i].onDestroy();
44173            // }
44174             
44175             //this.wrap.dom.innerHTML = '';
44176             //this.wrap.remove();
44177         }
44178     },
44179
44180     // private
44181     onFirstFocus : function(){
44182         
44183         this.assignDocWin();
44184         
44185         
44186         this.activated = true;
44187          
44188     
44189         if(Roo.isGecko){ // prevent silly gecko errors
44190             this.win.focus();
44191             var s = this.win.getSelection();
44192             if(!s.focusNode || s.focusNode.nodeType != 3){
44193                 var r = s.getRangeAt(0);
44194                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44195                 r.collapse(true);
44196                 this.deferFocus();
44197             }
44198             try{
44199                 this.execCmd('useCSS', true);
44200                 this.execCmd('styleWithCSS', false);
44201             }catch(e){}
44202         }
44203         this.owner.fireEvent('activate', this);
44204     },
44205
44206     // private
44207     adjustFont: function(btn){
44208         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44209         //if(Roo.isSafari){ // safari
44210         //    adjust *= 2;
44211        // }
44212         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44213         if(Roo.isSafari){ // safari
44214             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44215             v =  (v < 10) ? 10 : v;
44216             v =  (v > 48) ? 48 : v;
44217             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44218             
44219         }
44220         
44221         
44222         v = Math.max(1, v+adjust);
44223         
44224         this.execCmd('FontSize', v  );
44225     },
44226
44227     onEditorEvent : function(e)
44228     {
44229         this.owner.fireEvent('editorevent', this, e);
44230       //  this.updateToolbar();
44231         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44232     },
44233
44234     insertTag : function(tg)
44235     {
44236         // could be a bit smarter... -> wrap the current selected tRoo..
44237         if (tg.toLowerCase() == 'span' ||
44238             tg.toLowerCase() == 'code' ||
44239             tg.toLowerCase() == 'sup' ||
44240             tg.toLowerCase() == 'sub' 
44241             ) {
44242             
44243             range = this.createRange(this.getSelection());
44244             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44245             wrappingNode.appendChild(range.extractContents());
44246             range.insertNode(wrappingNode);
44247
44248             return;
44249             
44250             
44251             
44252         }
44253         this.execCmd("formatblock",   tg);
44254         
44255     },
44256     
44257     insertText : function(txt)
44258     {
44259         
44260         
44261         var range = this.createRange();
44262         range.deleteContents();
44263                //alert(Sender.getAttribute('label'));
44264                
44265         range.insertNode(this.doc.createTextNode(txt));
44266     } ,
44267     
44268      
44269
44270     /**
44271      * Executes a Midas editor command on the editor document and performs necessary focus and
44272      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44273      * @param {String} cmd The Midas command
44274      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44275      */
44276     relayCmd : function(cmd, value){
44277         this.win.focus();
44278         this.execCmd(cmd, value);
44279         this.owner.fireEvent('editorevent', this);
44280         //this.updateToolbar();
44281         this.owner.deferFocus();
44282     },
44283
44284     /**
44285      * Executes a Midas editor command directly on the editor document.
44286      * For visual commands, you should use {@link #relayCmd} instead.
44287      * <b>This should only be called after the editor is initialized.</b>
44288      * @param {String} cmd The Midas command
44289      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44290      */
44291     execCmd : function(cmd, value){
44292         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44293         this.syncValue();
44294     },
44295  
44296  
44297    
44298     /**
44299      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44300      * to insert tRoo.
44301      * @param {String} text | dom node.. 
44302      */
44303     insertAtCursor : function(text)
44304     {
44305         
44306         if(!this.activated){
44307             return;
44308         }
44309         /*
44310         if(Roo.isIE){
44311             this.win.focus();
44312             var r = this.doc.selection.createRange();
44313             if(r){
44314                 r.collapse(true);
44315                 r.pasteHTML(text);
44316                 this.syncValue();
44317                 this.deferFocus();
44318             
44319             }
44320             return;
44321         }
44322         */
44323         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44324             this.win.focus();
44325             
44326             
44327             // from jquery ui (MIT licenced)
44328             var range, node;
44329             var win = this.win;
44330             
44331             if (win.getSelection && win.getSelection().getRangeAt) {
44332                 range = win.getSelection().getRangeAt(0);
44333                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44334                 range.insertNode(node);
44335             } else if (win.document.selection && win.document.selection.createRange) {
44336                 // no firefox support
44337                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44338                 win.document.selection.createRange().pasteHTML(txt);
44339             } else {
44340                 // no firefox support
44341                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44342                 this.execCmd('InsertHTML', txt);
44343             } 
44344             
44345             this.syncValue();
44346             
44347             this.deferFocus();
44348         }
44349     },
44350  // private
44351     mozKeyPress : function(e){
44352         if(e.ctrlKey){
44353             var c = e.getCharCode(), cmd;
44354           
44355             if(c > 0){
44356                 c = String.fromCharCode(c).toLowerCase();
44357                 switch(c){
44358                     case 'b':
44359                         cmd = 'bold';
44360                         break;
44361                     case 'i':
44362                         cmd = 'italic';
44363                         break;
44364                     
44365                     case 'u':
44366                         cmd = 'underline';
44367                         break;
44368                     
44369                     case 'v':
44370                         this.cleanUpPaste.defer(100, this);
44371                         return;
44372                         
44373                 }
44374                 if(cmd){
44375                     this.win.focus();
44376                     this.execCmd(cmd);
44377                     this.deferFocus();
44378                     e.preventDefault();
44379                 }
44380                 
44381             }
44382         }
44383     },
44384
44385     // private
44386     fixKeys : function(){ // load time branching for fastest keydown performance
44387         if(Roo.isIE){
44388             return function(e){
44389                 var k = e.getKey(), r;
44390                 if(k == e.TAB){
44391                     e.stopEvent();
44392                     r = this.doc.selection.createRange();
44393                     if(r){
44394                         r.collapse(true);
44395                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44396                         this.deferFocus();
44397                     }
44398                     return;
44399                 }
44400                 
44401                 if(k == e.ENTER){
44402                     r = this.doc.selection.createRange();
44403                     if(r){
44404                         var target = r.parentElement();
44405                         if(!target || target.tagName.toLowerCase() != 'li'){
44406                             e.stopEvent();
44407                             r.pasteHTML('<br />');
44408                             r.collapse(false);
44409                             r.select();
44410                         }
44411                     }
44412                 }
44413                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44414                     this.cleanUpPaste.defer(100, this);
44415                     return;
44416                 }
44417                 
44418                 
44419             };
44420         }else if(Roo.isOpera){
44421             return function(e){
44422                 var k = e.getKey();
44423                 if(k == e.TAB){
44424                     e.stopEvent();
44425                     this.win.focus();
44426                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44427                     this.deferFocus();
44428                 }
44429                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44430                     this.cleanUpPaste.defer(100, this);
44431                     return;
44432                 }
44433                 
44434             };
44435         }else if(Roo.isSafari){
44436             return function(e){
44437                 var k = e.getKey();
44438                 
44439                 if(k == e.TAB){
44440                     e.stopEvent();
44441                     this.execCmd('InsertText','\t');
44442                     this.deferFocus();
44443                     return;
44444                 }
44445                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44446                     this.cleanUpPaste.defer(100, this);
44447                     return;
44448                 }
44449                 
44450              };
44451         }
44452     }(),
44453     
44454     getAllAncestors: function()
44455     {
44456         var p = this.getSelectedNode();
44457         var a = [];
44458         if (!p) {
44459             a.push(p); // push blank onto stack..
44460             p = this.getParentElement();
44461         }
44462         
44463         
44464         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44465             a.push(p);
44466             p = p.parentNode;
44467         }
44468         a.push(this.doc.body);
44469         return a;
44470     },
44471     lastSel : false,
44472     lastSelNode : false,
44473     
44474     
44475     getSelection : function() 
44476     {
44477         this.assignDocWin();
44478         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44479     },
44480     
44481     getSelectedNode: function() 
44482     {
44483         // this may only work on Gecko!!!
44484         
44485         // should we cache this!!!!
44486         
44487         
44488         
44489          
44490         var range = this.createRange(this.getSelection()).cloneRange();
44491         
44492         if (Roo.isIE) {
44493             var parent = range.parentElement();
44494             while (true) {
44495                 var testRange = range.duplicate();
44496                 testRange.moveToElementText(parent);
44497                 if (testRange.inRange(range)) {
44498                     break;
44499                 }
44500                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44501                     break;
44502                 }
44503                 parent = parent.parentElement;
44504             }
44505             return parent;
44506         }
44507         
44508         // is ancestor a text element.
44509         var ac =  range.commonAncestorContainer;
44510         if (ac.nodeType == 3) {
44511             ac = ac.parentNode;
44512         }
44513         
44514         var ar = ac.childNodes;
44515          
44516         var nodes = [];
44517         var other_nodes = [];
44518         var has_other_nodes = false;
44519         for (var i=0;i<ar.length;i++) {
44520             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44521                 continue;
44522             }
44523             // fullly contained node.
44524             
44525             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44526                 nodes.push(ar[i]);
44527                 continue;
44528             }
44529             
44530             // probably selected..
44531             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44532                 other_nodes.push(ar[i]);
44533                 continue;
44534             }
44535             // outer..
44536             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44537                 continue;
44538             }
44539             
44540             
44541             has_other_nodes = true;
44542         }
44543         if (!nodes.length && other_nodes.length) {
44544             nodes= other_nodes;
44545         }
44546         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44547             return false;
44548         }
44549         
44550         return nodes[0];
44551     },
44552     createRange: function(sel)
44553     {
44554         // this has strange effects when using with 
44555         // top toolbar - not sure if it's a great idea.
44556         //this.editor.contentWindow.focus();
44557         if (typeof sel != "undefined") {
44558             try {
44559                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44560             } catch(e) {
44561                 return this.doc.createRange();
44562             }
44563         } else {
44564             return this.doc.createRange();
44565         }
44566     },
44567     getParentElement: function()
44568     {
44569         
44570         this.assignDocWin();
44571         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44572         
44573         var range = this.createRange(sel);
44574          
44575         try {
44576             var p = range.commonAncestorContainer;
44577             while (p.nodeType == 3) { // text node
44578                 p = p.parentNode;
44579             }
44580             return p;
44581         } catch (e) {
44582             return null;
44583         }
44584     
44585     },
44586     /***
44587      *
44588      * Range intersection.. the hard stuff...
44589      *  '-1' = before
44590      *  '0' = hits..
44591      *  '1' = after.
44592      *         [ -- selected range --- ]
44593      *   [fail]                        [fail]
44594      *
44595      *    basically..
44596      *      if end is before start or  hits it. fail.
44597      *      if start is after end or hits it fail.
44598      *
44599      *   if either hits (but other is outside. - then it's not 
44600      *   
44601      *    
44602      **/
44603     
44604     
44605     // @see http://www.thismuchiknow.co.uk/?p=64.
44606     rangeIntersectsNode : function(range, node)
44607     {
44608         var nodeRange = node.ownerDocument.createRange();
44609         try {
44610             nodeRange.selectNode(node);
44611         } catch (e) {
44612             nodeRange.selectNodeContents(node);
44613         }
44614     
44615         var rangeStartRange = range.cloneRange();
44616         rangeStartRange.collapse(true);
44617     
44618         var rangeEndRange = range.cloneRange();
44619         rangeEndRange.collapse(false);
44620     
44621         var nodeStartRange = nodeRange.cloneRange();
44622         nodeStartRange.collapse(true);
44623     
44624         var nodeEndRange = nodeRange.cloneRange();
44625         nodeEndRange.collapse(false);
44626     
44627         return rangeStartRange.compareBoundaryPoints(
44628                  Range.START_TO_START, nodeEndRange) == -1 &&
44629                rangeEndRange.compareBoundaryPoints(
44630                  Range.START_TO_START, nodeStartRange) == 1;
44631         
44632          
44633     },
44634     rangeCompareNode : function(range, node)
44635     {
44636         var nodeRange = node.ownerDocument.createRange();
44637         try {
44638             nodeRange.selectNode(node);
44639         } catch (e) {
44640             nodeRange.selectNodeContents(node);
44641         }
44642         
44643         
44644         range.collapse(true);
44645     
44646         nodeRange.collapse(true);
44647      
44648         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44649         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44650          
44651         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44652         
44653         var nodeIsBefore   =  ss == 1;
44654         var nodeIsAfter    = ee == -1;
44655         
44656         if (nodeIsBefore && nodeIsAfter) {
44657             return 0; // outer
44658         }
44659         if (!nodeIsBefore && nodeIsAfter) {
44660             return 1; //right trailed.
44661         }
44662         
44663         if (nodeIsBefore && !nodeIsAfter) {
44664             return 2;  // left trailed.
44665         }
44666         // fully contined.
44667         return 3;
44668     },
44669
44670     // private? - in a new class?
44671     cleanUpPaste :  function()
44672     {
44673         // cleans up the whole document..
44674         Roo.log('cleanuppaste');
44675         
44676         this.cleanUpChildren(this.doc.body);
44677         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44678         if (clean != this.doc.body.innerHTML) {
44679             this.doc.body.innerHTML = clean;
44680         }
44681         
44682     },
44683     
44684     cleanWordChars : function(input) {// change the chars to hex code
44685         var he = Roo.HtmlEditorCore;
44686         
44687         var output = input;
44688         Roo.each(he.swapCodes, function(sw) { 
44689             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44690             
44691             output = output.replace(swapper, sw[1]);
44692         });
44693         
44694         return output;
44695     },
44696     
44697     
44698     cleanUpChildren : function (n)
44699     {
44700         if (!n.childNodes.length) {
44701             return;
44702         }
44703         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44704            this.cleanUpChild(n.childNodes[i]);
44705         }
44706     },
44707     
44708     
44709         
44710     
44711     cleanUpChild : function (node)
44712     {
44713         var ed = this;
44714         //console.log(node);
44715         if (node.nodeName == "#text") {
44716             // clean up silly Windows -- stuff?
44717             return; 
44718         }
44719         if (node.nodeName == "#comment") {
44720             if (!this.allowComments) {
44721                 node.parentNode.removeChild(node);
44722             }
44723             // clean up silly Windows -- stuff?
44724             return; 
44725         }
44726         var lcname = node.tagName.toLowerCase();
44727         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44728         // whitelist of tags..
44729         
44730         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44731             // remove node.
44732             node.parentNode.removeChild(node);
44733             return;
44734             
44735         }
44736         
44737         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44738         
44739         // spans with no attributes - just remove them..
44740         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44741             remove_keep_children = true;
44742         }
44743         
44744         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44745         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44746         
44747         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44748         //    remove_keep_children = true;
44749         //}
44750         
44751         if (remove_keep_children) {
44752             this.cleanUpChildren(node);
44753             // inserts everything just before this node...
44754             while (node.childNodes.length) {
44755                 var cn = node.childNodes[0];
44756                 node.removeChild(cn);
44757                 node.parentNode.insertBefore(cn, node);
44758             }
44759             node.parentNode.removeChild(node);
44760             return;
44761         }
44762         
44763         if (!node.attributes || !node.attributes.length) {
44764             
44765           
44766             
44767             
44768             this.cleanUpChildren(node);
44769             return;
44770         }
44771         
44772         function cleanAttr(n,v)
44773         {
44774             
44775             if (v.match(/^\./) || v.match(/^\//)) {
44776                 return;
44777             }
44778             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44779                 return;
44780             }
44781             if (v.match(/^#/)) {
44782                 return;
44783             }
44784             if (v.match(/^\{/)) { // allow template editing.
44785                 return;
44786             }
44787 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44788             node.removeAttribute(n);
44789             
44790         }
44791         
44792         var cwhite = this.cwhite;
44793         var cblack = this.cblack;
44794             
44795         function cleanStyle(n,v)
44796         {
44797             if (v.match(/expression/)) { //XSS?? should we even bother..
44798                 node.removeAttribute(n);
44799                 return;
44800             }
44801             
44802             var parts = v.split(/;/);
44803             var clean = [];
44804             
44805             Roo.each(parts, function(p) {
44806                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44807                 if (!p.length) {
44808                     return true;
44809                 }
44810                 var l = p.split(':').shift().replace(/\s+/g,'');
44811                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44812                 
44813                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44814 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44815                     //node.removeAttribute(n);
44816                     return true;
44817                 }
44818                 //Roo.log()
44819                 // only allow 'c whitelisted system attributes'
44820                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44821 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44822                     //node.removeAttribute(n);
44823                     return true;
44824                 }
44825                 
44826                 
44827                  
44828                 
44829                 clean.push(p);
44830                 return true;
44831             });
44832             if (clean.length) { 
44833                 node.setAttribute(n, clean.join(';'));
44834             } else {
44835                 node.removeAttribute(n);
44836             }
44837             
44838         }
44839         
44840         
44841         for (var i = node.attributes.length-1; i > -1 ; i--) {
44842             var a = node.attributes[i];
44843             //console.log(a);
44844             
44845             if (a.name.toLowerCase().substr(0,2)=='on')  {
44846                 node.removeAttribute(a.name);
44847                 continue;
44848             }
44849             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44850                 node.removeAttribute(a.name);
44851                 continue;
44852             }
44853             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44854                 cleanAttr(a.name,a.value); // fixme..
44855                 continue;
44856             }
44857             if (a.name == 'style') {
44858                 cleanStyle(a.name,a.value);
44859                 continue;
44860             }
44861             /// clean up MS crap..
44862             // tecnically this should be a list of valid class'es..
44863             
44864             
44865             if (a.name == 'class') {
44866                 if (a.value.match(/^Mso/)) {
44867                     node.removeAttribute('class');
44868                 }
44869                 
44870                 if (a.value.match(/^body$/)) {
44871                     node.removeAttribute('class');
44872                 }
44873                 continue;
44874             }
44875             
44876             // style cleanup!?
44877             // class cleanup?
44878             
44879         }
44880         
44881         
44882         this.cleanUpChildren(node);
44883         
44884         
44885     },
44886     
44887     /**
44888      * Clean up MS wordisms...
44889      */
44890     cleanWord : function(node)
44891     {
44892         if (!node) {
44893             this.cleanWord(this.doc.body);
44894             return;
44895         }
44896         
44897         if(
44898                 node.nodeName == 'SPAN' &&
44899                 !node.hasAttributes() &&
44900                 node.childNodes.length == 1 &&
44901                 node.firstChild.nodeName == "#text"  
44902         ) {
44903             var textNode = node.firstChild;
44904             node.removeChild(textNode);
44905             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44906                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44907             }
44908             node.parentNode.insertBefore(textNode, node);
44909             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44910                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44911             }
44912             node.parentNode.removeChild(node);
44913         }
44914         
44915         if (node.nodeName == "#text") {
44916             // clean up silly Windows -- stuff?
44917             return; 
44918         }
44919         if (node.nodeName == "#comment") {
44920             node.parentNode.removeChild(node);
44921             // clean up silly Windows -- stuff?
44922             return; 
44923         }
44924         
44925         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44926             node.parentNode.removeChild(node);
44927             return;
44928         }
44929         //Roo.log(node.tagName);
44930         // remove - but keep children..
44931         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44932             //Roo.log('-- removed');
44933             while (node.childNodes.length) {
44934                 var cn = node.childNodes[0];
44935                 node.removeChild(cn);
44936                 node.parentNode.insertBefore(cn, node);
44937                 // move node to parent - and clean it..
44938                 this.cleanWord(cn);
44939             }
44940             node.parentNode.removeChild(node);
44941             /// no need to iterate chidlren = it's got none..
44942             //this.iterateChildren(node, this.cleanWord);
44943             return;
44944         }
44945         // clean styles
44946         if (node.className.length) {
44947             
44948             var cn = node.className.split(/\W+/);
44949             var cna = [];
44950             Roo.each(cn, function(cls) {
44951                 if (cls.match(/Mso[a-zA-Z]+/)) {
44952                     return;
44953                 }
44954                 cna.push(cls);
44955             });
44956             node.className = cna.length ? cna.join(' ') : '';
44957             if (!cna.length) {
44958                 node.removeAttribute("class");
44959             }
44960         }
44961         
44962         if (node.hasAttribute("lang")) {
44963             node.removeAttribute("lang");
44964         }
44965         
44966         if (node.hasAttribute("style")) {
44967             
44968             var styles = node.getAttribute("style").split(";");
44969             var nstyle = [];
44970             Roo.each(styles, function(s) {
44971                 if (!s.match(/:/)) {
44972                     return;
44973                 }
44974                 var kv = s.split(":");
44975                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44976                     return;
44977                 }
44978                 // what ever is left... we allow.
44979                 nstyle.push(s);
44980             });
44981             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44982             if (!nstyle.length) {
44983                 node.removeAttribute('style');
44984             }
44985         }
44986         this.iterateChildren(node, this.cleanWord);
44987         
44988         
44989         
44990     },
44991     /**
44992      * iterateChildren of a Node, calling fn each time, using this as the scole..
44993      * @param {DomNode} node node to iterate children of.
44994      * @param {Function} fn method of this class to call on each item.
44995      */
44996     iterateChildren : function(node, fn)
44997     {
44998         if (!node.childNodes.length) {
44999                 return;
45000         }
45001         for (var i = node.childNodes.length-1; i > -1 ; i--) {
45002            fn.call(this, node.childNodes[i])
45003         }
45004     },
45005     
45006     
45007     /**
45008      * cleanTableWidths.
45009      *
45010      * Quite often pasting from word etc.. results in tables with column and widths.
45011      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
45012      *
45013      */
45014     cleanTableWidths : function(node)
45015     {
45016          
45017          
45018         if (!node) {
45019             this.cleanTableWidths(this.doc.body);
45020             return;
45021         }
45022         
45023         // ignore list...
45024         if (node.nodeName == "#text" || node.nodeName == "#comment") {
45025             return; 
45026         }
45027         Roo.log(node.tagName);
45028         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
45029             this.iterateChildren(node, this.cleanTableWidths);
45030             return;
45031         }
45032         if (node.hasAttribute('width')) {
45033             node.removeAttribute('width');
45034         }
45035         
45036          
45037         if (node.hasAttribute("style")) {
45038             // pretty basic...
45039             
45040             var styles = node.getAttribute("style").split(";");
45041             var nstyle = [];
45042             Roo.each(styles, function(s) {
45043                 if (!s.match(/:/)) {
45044                     return;
45045                 }
45046                 var kv = s.split(":");
45047                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
45048                     return;
45049                 }
45050                 // what ever is left... we allow.
45051                 nstyle.push(s);
45052             });
45053             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
45054             if (!nstyle.length) {
45055                 node.removeAttribute('style');
45056             }
45057         }
45058         
45059         this.iterateChildren(node, this.cleanTableWidths);
45060         
45061         
45062     },
45063     
45064     
45065     
45066     
45067     domToHTML : function(currentElement, depth, nopadtext) {
45068         
45069         depth = depth || 0;
45070         nopadtext = nopadtext || false;
45071     
45072         if (!currentElement) {
45073             return this.domToHTML(this.doc.body);
45074         }
45075         
45076         //Roo.log(currentElement);
45077         var j;
45078         var allText = false;
45079         var nodeName = currentElement.nodeName;
45080         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
45081         
45082         if  (nodeName == '#text') {
45083             
45084             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
45085         }
45086         
45087         
45088         var ret = '';
45089         if (nodeName != 'BODY') {
45090              
45091             var i = 0;
45092             // Prints the node tagName, such as <A>, <IMG>, etc
45093             if (tagName) {
45094                 var attr = [];
45095                 for(i = 0; i < currentElement.attributes.length;i++) {
45096                     // quoting?
45097                     var aname = currentElement.attributes.item(i).name;
45098                     if (!currentElement.attributes.item(i).value.length) {
45099                         continue;
45100                     }
45101                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
45102                 }
45103                 
45104                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
45105             } 
45106             else {
45107                 
45108                 // eack
45109             }
45110         } else {
45111             tagName = false;
45112         }
45113         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
45114             return ret;
45115         }
45116         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
45117             nopadtext = true;
45118         }
45119         
45120         
45121         // Traverse the tree
45122         i = 0;
45123         var currentElementChild = currentElement.childNodes.item(i);
45124         var allText = true;
45125         var innerHTML  = '';
45126         lastnode = '';
45127         while (currentElementChild) {
45128             // Formatting code (indent the tree so it looks nice on the screen)
45129             var nopad = nopadtext;
45130             if (lastnode == 'SPAN') {
45131                 nopad  = true;
45132             }
45133             // text
45134             if  (currentElementChild.nodeName == '#text') {
45135                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
45136                 toadd = nopadtext ? toadd : toadd.trim();
45137                 if (!nopad && toadd.length > 80) {
45138                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
45139                 }
45140                 innerHTML  += toadd;
45141                 
45142                 i++;
45143                 currentElementChild = currentElement.childNodes.item(i);
45144                 lastNode = '';
45145                 continue;
45146             }
45147             allText = false;
45148             
45149             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
45150                 
45151             // Recursively traverse the tree structure of the child node
45152             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
45153             lastnode = currentElementChild.nodeName;
45154             i++;
45155             currentElementChild=currentElement.childNodes.item(i);
45156         }
45157         
45158         ret += innerHTML;
45159         
45160         if (!allText) {
45161                 // The remaining code is mostly for formatting the tree
45162             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
45163         }
45164         
45165         
45166         if (tagName) {
45167             ret+= "</"+tagName+">";
45168         }
45169         return ret;
45170         
45171     },
45172         
45173     applyBlacklists : function()
45174     {
45175         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
45176         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
45177         
45178         this.white = [];
45179         this.black = [];
45180         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
45181             if (b.indexOf(tag) > -1) {
45182                 return;
45183             }
45184             this.white.push(tag);
45185             
45186         }, this);
45187         
45188         Roo.each(w, function(tag) {
45189             if (b.indexOf(tag) > -1) {
45190                 return;
45191             }
45192             if (this.white.indexOf(tag) > -1) {
45193                 return;
45194             }
45195             this.white.push(tag);
45196             
45197         }, this);
45198         
45199         
45200         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45201             if (w.indexOf(tag) > -1) {
45202                 return;
45203             }
45204             this.black.push(tag);
45205             
45206         }, this);
45207         
45208         Roo.each(b, function(tag) {
45209             if (w.indexOf(tag) > -1) {
45210                 return;
45211             }
45212             if (this.black.indexOf(tag) > -1) {
45213                 return;
45214             }
45215             this.black.push(tag);
45216             
45217         }, this);
45218         
45219         
45220         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45221         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45222         
45223         this.cwhite = [];
45224         this.cblack = [];
45225         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45226             if (b.indexOf(tag) > -1) {
45227                 return;
45228             }
45229             this.cwhite.push(tag);
45230             
45231         }, this);
45232         
45233         Roo.each(w, function(tag) {
45234             if (b.indexOf(tag) > -1) {
45235                 return;
45236             }
45237             if (this.cwhite.indexOf(tag) > -1) {
45238                 return;
45239             }
45240             this.cwhite.push(tag);
45241             
45242         }, this);
45243         
45244         
45245         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45246             if (w.indexOf(tag) > -1) {
45247                 return;
45248             }
45249             this.cblack.push(tag);
45250             
45251         }, this);
45252         
45253         Roo.each(b, function(tag) {
45254             if (w.indexOf(tag) > -1) {
45255                 return;
45256             }
45257             if (this.cblack.indexOf(tag) > -1) {
45258                 return;
45259             }
45260             this.cblack.push(tag);
45261             
45262         }, this);
45263     },
45264     
45265     setStylesheets : function(stylesheets)
45266     {
45267         if(typeof(stylesheets) == 'string'){
45268             Roo.get(this.iframe.contentDocument.head).createChild({
45269                 tag : 'link',
45270                 rel : 'stylesheet',
45271                 type : 'text/css',
45272                 href : stylesheets
45273             });
45274             
45275             return;
45276         }
45277         var _this = this;
45278      
45279         Roo.each(stylesheets, function(s) {
45280             if(!s.length){
45281                 return;
45282             }
45283             
45284             Roo.get(_this.iframe.contentDocument.head).createChild({
45285                 tag : 'link',
45286                 rel : 'stylesheet',
45287                 type : 'text/css',
45288                 href : s
45289             });
45290         });
45291
45292         
45293     },
45294     
45295     removeStylesheets : function()
45296     {
45297         var _this = this;
45298         
45299         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45300             s.remove();
45301         });
45302     },
45303     
45304     setStyle : function(style)
45305     {
45306         Roo.get(this.iframe.contentDocument.head).createChild({
45307             tag : 'style',
45308             type : 'text/css',
45309             html : style
45310         });
45311
45312         return;
45313     }
45314     
45315     // hide stuff that is not compatible
45316     /**
45317      * @event blur
45318      * @hide
45319      */
45320     /**
45321      * @event change
45322      * @hide
45323      */
45324     /**
45325      * @event focus
45326      * @hide
45327      */
45328     /**
45329      * @event specialkey
45330      * @hide
45331      */
45332     /**
45333      * @cfg {String} fieldClass @hide
45334      */
45335     /**
45336      * @cfg {String} focusClass @hide
45337      */
45338     /**
45339      * @cfg {String} autoCreate @hide
45340      */
45341     /**
45342      * @cfg {String} inputType @hide
45343      */
45344     /**
45345      * @cfg {String} invalidClass @hide
45346      */
45347     /**
45348      * @cfg {String} invalidText @hide
45349      */
45350     /**
45351      * @cfg {String} msgFx @hide
45352      */
45353     /**
45354      * @cfg {String} validateOnBlur @hide
45355      */
45356 });
45357
45358 Roo.HtmlEditorCore.white = [
45359         'area', 'br', 'img', 'input', 'hr', 'wbr',
45360         
45361        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45362        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45363        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45364        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45365        'table',   'ul',         'xmp', 
45366        
45367        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45368       'thead',   'tr', 
45369      
45370       'dir', 'menu', 'ol', 'ul', 'dl',
45371        
45372       'embed',  'object'
45373 ];
45374
45375
45376 Roo.HtmlEditorCore.black = [
45377     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45378         'applet', // 
45379         'base',   'basefont', 'bgsound', 'blink',  'body', 
45380         'frame',  'frameset', 'head',    'html',   'ilayer', 
45381         'iframe', 'layer',  'link',     'meta',    'object',   
45382         'script', 'style' ,'title',  'xml' // clean later..
45383 ];
45384 Roo.HtmlEditorCore.clean = [
45385     'script', 'style', 'title', 'xml'
45386 ];
45387 Roo.HtmlEditorCore.remove = [
45388     'font'
45389 ];
45390 // attributes..
45391
45392 Roo.HtmlEditorCore.ablack = [
45393     'on'
45394 ];
45395     
45396 Roo.HtmlEditorCore.aclean = [ 
45397     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45398 ];
45399
45400 // protocols..
45401 Roo.HtmlEditorCore.pwhite= [
45402         'http',  'https',  'mailto'
45403 ];
45404
45405 // white listed style attributes.
45406 Roo.HtmlEditorCore.cwhite= [
45407       //  'text-align', /// default is to allow most things..
45408       
45409          
45410 //        'font-size'//??
45411 ];
45412
45413 // black listed style attributes.
45414 Roo.HtmlEditorCore.cblack= [
45415       //  'font-size' -- this can be set by the project 
45416 ];
45417
45418
45419 Roo.HtmlEditorCore.swapCodes   =[ 
45420     [    8211, "&#8211;" ], 
45421     [    8212, "&#8212;" ], 
45422     [    8216,  "'" ],  
45423     [    8217, "'" ],  
45424     [    8220, '"' ],  
45425     [    8221, '"' ],  
45426     [    8226, "*" ],  
45427     [    8230, "..." ]
45428 ]; 
45429
45430     //<script type="text/javascript">
45431
45432 /*
45433  * Ext JS Library 1.1.1
45434  * Copyright(c) 2006-2007, Ext JS, LLC.
45435  * Licence LGPL
45436  * 
45437  */
45438  
45439  
45440 Roo.form.HtmlEditor = function(config){
45441     
45442     
45443     
45444     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45445     
45446     if (!this.toolbars) {
45447         this.toolbars = [];
45448     }
45449     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45450     
45451     
45452 };
45453
45454 /**
45455  * @class Roo.form.HtmlEditor
45456  * @extends Roo.form.Field
45457  * Provides a lightweight HTML Editor component.
45458  *
45459  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45460  * 
45461  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45462  * supported by this editor.</b><br/><br/>
45463  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45464  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45465  */
45466 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45467     /**
45468      * @cfg {Boolean} clearUp
45469      */
45470     clearUp : true,
45471       /**
45472      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45473      */
45474     toolbars : false,
45475    
45476      /**
45477      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45478      *                        Roo.resizable.
45479      */
45480     resizable : false,
45481      /**
45482      * @cfg {Number} height (in pixels)
45483      */   
45484     height: 300,
45485    /**
45486      * @cfg {Number} width (in pixels)
45487      */   
45488     width: 500,
45489     
45490     /**
45491      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45492      * 
45493      */
45494     stylesheets: false,
45495     
45496     
45497      /**
45498      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45499      * 
45500      */
45501     cblack: false,
45502     /**
45503      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45504      * 
45505      */
45506     cwhite: false,
45507     
45508      /**
45509      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45510      * 
45511      */
45512     black: false,
45513     /**
45514      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45515      * 
45516      */
45517     white: false,
45518     /**
45519      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
45520      */
45521     allowComments: false,
45522     
45523     // id of frame..
45524     frameId: false,
45525     
45526     // private properties
45527     validationEvent : false,
45528     deferHeight: true,
45529     initialized : false,
45530     activated : false,
45531     
45532     onFocus : Roo.emptyFn,
45533     iframePad:3,
45534     hideMode:'offsets',
45535     
45536     actionMode : 'container', // defaults to hiding it...
45537     
45538     defaultAutoCreate : { // modified by initCompnoent..
45539         tag: "textarea",
45540         style:"width:500px;height:300px;",
45541         autocomplete: "new-password"
45542     },
45543
45544     // private
45545     initComponent : function(){
45546         this.addEvents({
45547             /**
45548              * @event initialize
45549              * Fires when the editor is fully initialized (including the iframe)
45550              * @param {HtmlEditor} this
45551              */
45552             initialize: true,
45553             /**
45554              * @event activate
45555              * Fires when the editor is first receives the focus. Any insertion must wait
45556              * until after this event.
45557              * @param {HtmlEditor} this
45558              */
45559             activate: true,
45560              /**
45561              * @event beforesync
45562              * Fires before the textarea is updated with content from the editor iframe. Return false
45563              * to cancel the sync.
45564              * @param {HtmlEditor} this
45565              * @param {String} html
45566              */
45567             beforesync: true,
45568              /**
45569              * @event beforepush
45570              * Fires before the iframe editor is updated with content from the textarea. Return false
45571              * to cancel the push.
45572              * @param {HtmlEditor} this
45573              * @param {String} html
45574              */
45575             beforepush: true,
45576              /**
45577              * @event sync
45578              * Fires when the textarea is updated with content from the editor iframe.
45579              * @param {HtmlEditor} this
45580              * @param {String} html
45581              */
45582             sync: true,
45583              /**
45584              * @event push
45585              * Fires when the iframe editor is updated with content from the textarea.
45586              * @param {HtmlEditor} this
45587              * @param {String} html
45588              */
45589             push: true,
45590              /**
45591              * @event editmodechange
45592              * Fires when the editor switches edit modes
45593              * @param {HtmlEditor} this
45594              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45595              */
45596             editmodechange: true,
45597             /**
45598              * @event editorevent
45599              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45600              * @param {HtmlEditor} this
45601              */
45602             editorevent: true,
45603             /**
45604              * @event firstfocus
45605              * Fires when on first focus - needed by toolbars..
45606              * @param {HtmlEditor} this
45607              */
45608             firstfocus: true,
45609             /**
45610              * @event autosave
45611              * Auto save the htmlEditor value as a file into Events
45612              * @param {HtmlEditor} this
45613              */
45614             autosave: true,
45615             /**
45616              * @event savedpreview
45617              * preview the saved version of htmlEditor
45618              * @param {HtmlEditor} this
45619              */
45620             savedpreview: true,
45621             
45622             /**
45623             * @event stylesheetsclick
45624             * Fires when press the Sytlesheets button
45625             * @param {Roo.HtmlEditorCore} this
45626             */
45627             stylesheetsclick: true
45628         });
45629         this.defaultAutoCreate =  {
45630             tag: "textarea",
45631             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45632             autocomplete: "new-password"
45633         };
45634     },
45635
45636     /**
45637      * Protected method that will not generally be called directly. It
45638      * is called when the editor creates its toolbar. Override this method if you need to
45639      * add custom toolbar buttons.
45640      * @param {HtmlEditor} editor
45641      */
45642     createToolbar : function(editor){
45643         Roo.log("create toolbars");
45644         if (!editor.toolbars || !editor.toolbars.length) {
45645             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45646         }
45647         
45648         for (var i =0 ; i < editor.toolbars.length;i++) {
45649             editor.toolbars[i] = Roo.factory(
45650                     typeof(editor.toolbars[i]) == 'string' ?
45651                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45652                 Roo.form.HtmlEditor);
45653             editor.toolbars[i].init(editor);
45654         }
45655          
45656         
45657     },
45658
45659      
45660     // private
45661     onRender : function(ct, position)
45662     {
45663         var _t = this;
45664         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45665         
45666         this.wrap = this.el.wrap({
45667             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45668         });
45669         
45670         this.editorcore.onRender(ct, position);
45671          
45672         if (this.resizable) {
45673             this.resizeEl = new Roo.Resizable(this.wrap, {
45674                 pinned : true,
45675                 wrap: true,
45676                 dynamic : true,
45677                 minHeight : this.height,
45678                 height: this.height,
45679                 handles : this.resizable,
45680                 width: this.width,
45681                 listeners : {
45682                     resize : function(r, w, h) {
45683                         _t.onResize(w,h); // -something
45684                     }
45685                 }
45686             });
45687             
45688         }
45689         this.createToolbar(this);
45690        
45691         
45692         if(!this.width){
45693             this.setSize(this.wrap.getSize());
45694         }
45695         if (this.resizeEl) {
45696             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45697             // should trigger onReize..
45698         }
45699         
45700         this.keyNav = new Roo.KeyNav(this.el, {
45701             
45702             "tab" : function(e){
45703                 e.preventDefault();
45704                 
45705                 var value = this.getValue();
45706                 
45707                 var start = this.el.dom.selectionStart;
45708                 var end = this.el.dom.selectionEnd;
45709                 
45710                 if(!e.shiftKey){
45711                     
45712                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45713                     this.el.dom.setSelectionRange(end + 1, end + 1);
45714                     return;
45715                 }
45716                 
45717                 var f = value.substring(0, start).split("\t");
45718                 
45719                 if(f.pop().length != 0){
45720                     return;
45721                 }
45722                 
45723                 this.setValue(f.join("\t") + value.substring(end));
45724                 this.el.dom.setSelectionRange(start - 1, start - 1);
45725                 
45726             },
45727             
45728             "home" : function(e){
45729                 e.preventDefault();
45730                 
45731                 var curr = this.el.dom.selectionStart;
45732                 var lines = this.getValue().split("\n");
45733                 
45734                 if(!lines.length){
45735                     return;
45736                 }
45737                 
45738                 if(e.ctrlKey){
45739                     this.el.dom.setSelectionRange(0, 0);
45740                     return;
45741                 }
45742                 
45743                 var pos = 0;
45744                 
45745                 for (var i = 0; i < lines.length;i++) {
45746                     pos += lines[i].length;
45747                     
45748                     if(i != 0){
45749                         pos += 1;
45750                     }
45751                     
45752                     if(pos < curr){
45753                         continue;
45754                     }
45755                     
45756                     pos -= lines[i].length;
45757                     
45758                     break;
45759                 }
45760                 
45761                 if(!e.shiftKey){
45762                     this.el.dom.setSelectionRange(pos, pos);
45763                     return;
45764                 }
45765                 
45766                 this.el.dom.selectionStart = pos;
45767                 this.el.dom.selectionEnd = curr;
45768             },
45769             
45770             "end" : function(e){
45771                 e.preventDefault();
45772                 
45773                 var curr = this.el.dom.selectionStart;
45774                 var lines = this.getValue().split("\n");
45775                 
45776                 if(!lines.length){
45777                     return;
45778                 }
45779                 
45780                 if(e.ctrlKey){
45781                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45782                     return;
45783                 }
45784                 
45785                 var pos = 0;
45786                 
45787                 for (var i = 0; i < lines.length;i++) {
45788                     
45789                     pos += lines[i].length;
45790                     
45791                     if(i != 0){
45792                         pos += 1;
45793                     }
45794                     
45795                     if(pos < curr){
45796                         continue;
45797                     }
45798                     
45799                     break;
45800                 }
45801                 
45802                 if(!e.shiftKey){
45803                     this.el.dom.setSelectionRange(pos, pos);
45804                     return;
45805                 }
45806                 
45807                 this.el.dom.selectionStart = curr;
45808                 this.el.dom.selectionEnd = pos;
45809             },
45810
45811             scope : this,
45812
45813             doRelay : function(foo, bar, hname){
45814                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45815             },
45816
45817             forceKeyDown: true
45818         });
45819         
45820 //        if(this.autosave && this.w){
45821 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45822 //        }
45823     },
45824
45825     // private
45826     onResize : function(w, h)
45827     {
45828         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45829         var ew = false;
45830         var eh = false;
45831         
45832         if(this.el ){
45833             if(typeof w == 'number'){
45834                 var aw = w - this.wrap.getFrameWidth('lr');
45835                 this.el.setWidth(this.adjustWidth('textarea', aw));
45836                 ew = aw;
45837             }
45838             if(typeof h == 'number'){
45839                 var tbh = 0;
45840                 for (var i =0; i < this.toolbars.length;i++) {
45841                     // fixme - ask toolbars for heights?
45842                     tbh += this.toolbars[i].tb.el.getHeight();
45843                     if (this.toolbars[i].footer) {
45844                         tbh += this.toolbars[i].footer.el.getHeight();
45845                     }
45846                 }
45847                 
45848                 
45849                 
45850                 
45851                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45852                 ah -= 5; // knock a few pixes off for look..
45853 //                Roo.log(ah);
45854                 this.el.setHeight(this.adjustWidth('textarea', ah));
45855                 var eh = ah;
45856             }
45857         }
45858         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45859         this.editorcore.onResize(ew,eh);
45860         
45861     },
45862
45863     /**
45864      * Toggles the editor between standard and source edit mode.
45865      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45866      */
45867     toggleSourceEdit : function(sourceEditMode)
45868     {
45869         this.editorcore.toggleSourceEdit(sourceEditMode);
45870         
45871         if(this.editorcore.sourceEditMode){
45872             Roo.log('editor - showing textarea');
45873             
45874 //            Roo.log('in');
45875 //            Roo.log(this.syncValue());
45876             this.editorcore.syncValue();
45877             this.el.removeClass('x-hidden');
45878             this.el.dom.removeAttribute('tabIndex');
45879             this.el.focus();
45880             
45881             for (var i = 0; i < this.toolbars.length; i++) {
45882                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45883                     this.toolbars[i].tb.hide();
45884                     this.toolbars[i].footer.hide();
45885                 }
45886             }
45887             
45888         }else{
45889             Roo.log('editor - hiding textarea');
45890 //            Roo.log('out')
45891 //            Roo.log(this.pushValue()); 
45892             this.editorcore.pushValue();
45893             
45894             this.el.addClass('x-hidden');
45895             this.el.dom.setAttribute('tabIndex', -1);
45896             
45897             for (var i = 0; i < this.toolbars.length; i++) {
45898                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45899                     this.toolbars[i].tb.show();
45900                     this.toolbars[i].footer.show();
45901                 }
45902             }
45903             
45904             //this.deferFocus();
45905         }
45906         
45907         this.setSize(this.wrap.getSize());
45908         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45909         
45910         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45911     },
45912  
45913     // private (for BoxComponent)
45914     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45915
45916     // private (for BoxComponent)
45917     getResizeEl : function(){
45918         return this.wrap;
45919     },
45920
45921     // private (for BoxComponent)
45922     getPositionEl : function(){
45923         return this.wrap;
45924     },
45925
45926     // private
45927     initEvents : function(){
45928         this.originalValue = this.getValue();
45929     },
45930
45931     /**
45932      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45933      * @method
45934      */
45935     markInvalid : Roo.emptyFn,
45936     /**
45937      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45938      * @method
45939      */
45940     clearInvalid : Roo.emptyFn,
45941
45942     setValue : function(v){
45943         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45944         this.editorcore.pushValue();
45945     },
45946
45947      
45948     // private
45949     deferFocus : function(){
45950         this.focus.defer(10, this);
45951     },
45952
45953     // doc'ed in Field
45954     focus : function(){
45955         this.editorcore.focus();
45956         
45957     },
45958       
45959
45960     // private
45961     onDestroy : function(){
45962         
45963         
45964         
45965         if(this.rendered){
45966             
45967             for (var i =0; i < this.toolbars.length;i++) {
45968                 // fixme - ask toolbars for heights?
45969                 this.toolbars[i].onDestroy();
45970             }
45971             
45972             this.wrap.dom.innerHTML = '';
45973             this.wrap.remove();
45974         }
45975     },
45976
45977     // private
45978     onFirstFocus : function(){
45979         //Roo.log("onFirstFocus");
45980         this.editorcore.onFirstFocus();
45981          for (var i =0; i < this.toolbars.length;i++) {
45982             this.toolbars[i].onFirstFocus();
45983         }
45984         
45985     },
45986     
45987     // private
45988     syncValue : function()
45989     {
45990         this.editorcore.syncValue();
45991     },
45992     
45993     pushValue : function()
45994     {
45995         this.editorcore.pushValue();
45996     },
45997     
45998     setStylesheets : function(stylesheets)
45999     {
46000         this.editorcore.setStylesheets(stylesheets);
46001     },
46002     
46003     removeStylesheets : function()
46004     {
46005         this.editorcore.removeStylesheets();
46006     }
46007      
46008     
46009     // hide stuff that is not compatible
46010     /**
46011      * @event blur
46012      * @hide
46013      */
46014     /**
46015      * @event change
46016      * @hide
46017      */
46018     /**
46019      * @event focus
46020      * @hide
46021      */
46022     /**
46023      * @event specialkey
46024      * @hide
46025      */
46026     /**
46027      * @cfg {String} fieldClass @hide
46028      */
46029     /**
46030      * @cfg {String} focusClass @hide
46031      */
46032     /**
46033      * @cfg {String} autoCreate @hide
46034      */
46035     /**
46036      * @cfg {String} inputType @hide
46037      */
46038     /**
46039      * @cfg {String} invalidClass @hide
46040      */
46041     /**
46042      * @cfg {String} invalidText @hide
46043      */
46044     /**
46045      * @cfg {String} msgFx @hide
46046      */
46047     /**
46048      * @cfg {String} validateOnBlur @hide
46049      */
46050 });
46051  
46052     // <script type="text/javascript">
46053 /*
46054  * Based on
46055  * Ext JS Library 1.1.1
46056  * Copyright(c) 2006-2007, Ext JS, LLC.
46057  *  
46058  
46059  */
46060
46061 /**
46062  * @class Roo.form.HtmlEditorToolbar1
46063  * Basic Toolbar
46064  * 
46065  * Usage:
46066  *
46067  new Roo.form.HtmlEditor({
46068     ....
46069     toolbars : [
46070         new Roo.form.HtmlEditorToolbar1({
46071             disable : { fonts: 1 , format: 1, ..., ... , ...],
46072             btns : [ .... ]
46073         })
46074     }
46075      
46076  * 
46077  * @cfg {Object} disable List of elements to disable..
46078  * @cfg {Array} btns List of additional buttons.
46079  * 
46080  * 
46081  * NEEDS Extra CSS? 
46082  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
46083  */
46084  
46085 Roo.form.HtmlEditor.ToolbarStandard = function(config)
46086 {
46087     
46088     Roo.apply(this, config);
46089     
46090     // default disabled, based on 'good practice'..
46091     this.disable = this.disable || {};
46092     Roo.applyIf(this.disable, {
46093         fontSize : true,
46094         colors : true,
46095         specialElements : true
46096     });
46097     
46098     
46099     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46100     // dont call parent... till later.
46101 }
46102
46103 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
46104     
46105     tb: false,
46106     
46107     rendered: false,
46108     
46109     editor : false,
46110     editorcore : false,
46111     /**
46112      * @cfg {Object} disable  List of toolbar elements to disable
46113          
46114      */
46115     disable : false,
46116     
46117     
46118      /**
46119      * @cfg {String} createLinkText The default text for the create link prompt
46120      */
46121     createLinkText : 'Please enter the URL for the link:',
46122     /**
46123      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
46124      */
46125     defaultLinkValue : 'http:/'+'/',
46126    
46127     
46128       /**
46129      * @cfg {Array} fontFamilies An array of available font families
46130      */
46131     fontFamilies : [
46132         'Arial',
46133         'Courier New',
46134         'Tahoma',
46135         'Times New Roman',
46136         'Verdana'
46137     ],
46138     
46139     specialChars : [
46140            "&#169;",
46141           "&#174;",     
46142           "&#8482;",    
46143           "&#163;" ,    
46144          // "&#8212;",    
46145           "&#8230;",    
46146           "&#247;" ,    
46147         //  "&#225;" ,     ?? a acute?
46148            "&#8364;"    , //Euro
46149        //   "&#8220;"    ,
46150         //  "&#8221;"    ,
46151         //  "&#8226;"    ,
46152           "&#176;"  //   , // degrees
46153
46154          // "&#233;"     , // e ecute
46155          // "&#250;"     , // u ecute?
46156     ],
46157     
46158     specialElements : [
46159         {
46160             text: "Insert Table",
46161             xtype: 'MenuItem',
46162             xns : Roo.Menu,
46163             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
46164                 
46165         },
46166         {    
46167             text: "Insert Image",
46168             xtype: 'MenuItem',
46169             xns : Roo.Menu,
46170             ihtml : '<img src="about:blank"/>'
46171             
46172         }
46173         
46174          
46175     ],
46176     
46177     
46178     inputElements : [ 
46179             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
46180             "input:submit", "input:button", "select", "textarea", "label" ],
46181     formats : [
46182         ["p"] ,  
46183         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
46184         ["pre"],[ "code"], 
46185         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
46186         ['div'],['span'],
46187         ['sup'],['sub']
46188     ],
46189     
46190     cleanStyles : [
46191         "font-size"
46192     ],
46193      /**
46194      * @cfg {String} defaultFont default font to use.
46195      */
46196     defaultFont: 'tahoma',
46197    
46198     fontSelect : false,
46199     
46200     
46201     formatCombo : false,
46202     
46203     init : function(editor)
46204     {
46205         this.editor = editor;
46206         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46207         var editorcore = this.editorcore;
46208         
46209         var _t = this;
46210         
46211         var fid = editorcore.frameId;
46212         var etb = this;
46213         function btn(id, toggle, handler){
46214             var xid = fid + '-'+ id ;
46215             return {
46216                 id : xid,
46217                 cmd : id,
46218                 cls : 'x-btn-icon x-edit-'+id,
46219                 enableToggle:toggle !== false,
46220                 scope: _t, // was editor...
46221                 handler:handler||_t.relayBtnCmd,
46222                 clickEvent:'mousedown',
46223                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46224                 tabIndex:-1
46225             };
46226         }
46227         
46228         
46229         
46230         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46231         this.tb = tb;
46232          // stop form submits
46233         tb.el.on('click', function(e){
46234             e.preventDefault(); // what does this do?
46235         });
46236
46237         if(!this.disable.font) { // && !Roo.isSafari){
46238             /* why no safari for fonts 
46239             editor.fontSelect = tb.el.createChild({
46240                 tag:'select',
46241                 tabIndex: -1,
46242                 cls:'x-font-select',
46243                 html: this.createFontOptions()
46244             });
46245             
46246             editor.fontSelect.on('change', function(){
46247                 var font = editor.fontSelect.dom.value;
46248                 editor.relayCmd('fontname', font);
46249                 editor.deferFocus();
46250             }, editor);
46251             
46252             tb.add(
46253                 editor.fontSelect.dom,
46254                 '-'
46255             );
46256             */
46257             
46258         };
46259         if(!this.disable.formats){
46260             this.formatCombo = new Roo.form.ComboBox({
46261                 store: new Roo.data.SimpleStore({
46262                     id : 'tag',
46263                     fields: ['tag'],
46264                     data : this.formats // from states.js
46265                 }),
46266                 blockFocus : true,
46267                 name : '',
46268                 //autoCreate : {tag: "div",  size: "20"},
46269                 displayField:'tag',
46270                 typeAhead: false,
46271                 mode: 'local',
46272                 editable : false,
46273                 triggerAction: 'all',
46274                 emptyText:'Add tag',
46275                 selectOnFocus:true,
46276                 width:135,
46277                 listeners : {
46278                     'select': function(c, r, i) {
46279                         editorcore.insertTag(r.get('tag'));
46280                         editor.focus();
46281                     }
46282                 }
46283
46284             });
46285             tb.addField(this.formatCombo);
46286             
46287         }
46288         
46289         if(!this.disable.format){
46290             tb.add(
46291                 btn('bold'),
46292                 btn('italic'),
46293                 btn('underline'),
46294                 btn('strikethrough')
46295             );
46296         };
46297         if(!this.disable.fontSize){
46298             tb.add(
46299                 '-',
46300                 
46301                 
46302                 btn('increasefontsize', false, editorcore.adjustFont),
46303                 btn('decreasefontsize', false, editorcore.adjustFont)
46304             );
46305         };
46306         
46307         
46308         if(!this.disable.colors){
46309             tb.add(
46310                 '-', {
46311                     id:editorcore.frameId +'-forecolor',
46312                     cls:'x-btn-icon x-edit-forecolor',
46313                     clickEvent:'mousedown',
46314                     tooltip: this.buttonTips['forecolor'] || undefined,
46315                     tabIndex:-1,
46316                     menu : new Roo.menu.ColorMenu({
46317                         allowReselect: true,
46318                         focus: Roo.emptyFn,
46319                         value:'000000',
46320                         plain:true,
46321                         selectHandler: function(cp, color){
46322                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46323                             editor.deferFocus();
46324                         },
46325                         scope: editorcore,
46326                         clickEvent:'mousedown'
46327                     })
46328                 }, {
46329                     id:editorcore.frameId +'backcolor',
46330                     cls:'x-btn-icon x-edit-backcolor',
46331                     clickEvent:'mousedown',
46332                     tooltip: this.buttonTips['backcolor'] || undefined,
46333                     tabIndex:-1,
46334                     menu : new Roo.menu.ColorMenu({
46335                         focus: Roo.emptyFn,
46336                         value:'FFFFFF',
46337                         plain:true,
46338                         allowReselect: true,
46339                         selectHandler: function(cp, color){
46340                             if(Roo.isGecko){
46341                                 editorcore.execCmd('useCSS', false);
46342                                 editorcore.execCmd('hilitecolor', color);
46343                                 editorcore.execCmd('useCSS', true);
46344                                 editor.deferFocus();
46345                             }else{
46346                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46347                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46348                                 editor.deferFocus();
46349                             }
46350                         },
46351                         scope:editorcore,
46352                         clickEvent:'mousedown'
46353                     })
46354                 }
46355             );
46356         };
46357         // now add all the items...
46358         
46359
46360         if(!this.disable.alignments){
46361             tb.add(
46362                 '-',
46363                 btn('justifyleft'),
46364                 btn('justifycenter'),
46365                 btn('justifyright')
46366             );
46367         };
46368
46369         //if(!Roo.isSafari){
46370             if(!this.disable.links){
46371                 tb.add(
46372                     '-',
46373                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46374                 );
46375             };
46376
46377             if(!this.disable.lists){
46378                 tb.add(
46379                     '-',
46380                     btn('insertorderedlist'),
46381                     btn('insertunorderedlist')
46382                 );
46383             }
46384             if(!this.disable.sourceEdit){
46385                 tb.add(
46386                     '-',
46387                     btn('sourceedit', true, function(btn){
46388                         this.toggleSourceEdit(btn.pressed);
46389                     })
46390                 );
46391             }
46392         //}
46393         
46394         var smenu = { };
46395         // special menu.. - needs to be tidied up..
46396         if (!this.disable.special) {
46397             smenu = {
46398                 text: "&#169;",
46399                 cls: 'x-edit-none',
46400                 
46401                 menu : {
46402                     items : []
46403                 }
46404             };
46405             for (var i =0; i < this.specialChars.length; i++) {
46406                 smenu.menu.items.push({
46407                     
46408                     html: this.specialChars[i],
46409                     handler: function(a,b) {
46410                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46411                         //editor.insertAtCursor(a.html);
46412                         
46413                     },
46414                     tabIndex:-1
46415                 });
46416             }
46417             
46418             
46419             tb.add(smenu);
46420             
46421             
46422         }
46423         
46424         var cmenu = { };
46425         if (!this.disable.cleanStyles) {
46426             cmenu = {
46427                 cls: 'x-btn-icon x-btn-clear',
46428                 
46429                 menu : {
46430                     items : []
46431                 }
46432             };
46433             for (var i =0; i < this.cleanStyles.length; i++) {
46434                 cmenu.menu.items.push({
46435                     actiontype : this.cleanStyles[i],
46436                     html: 'Remove ' + this.cleanStyles[i],
46437                     handler: function(a,b) {
46438 //                        Roo.log(a);
46439 //                        Roo.log(b);
46440                         var c = Roo.get(editorcore.doc.body);
46441                         c.select('[style]').each(function(s) {
46442                             s.dom.style.removeProperty(a.actiontype);
46443                         });
46444                         editorcore.syncValue();
46445                     },
46446                     tabIndex:-1
46447                 });
46448             }
46449              cmenu.menu.items.push({
46450                 actiontype : 'tablewidths',
46451                 html: 'Remove Table Widths',
46452                 handler: function(a,b) {
46453                     editorcore.cleanTableWidths();
46454                     editorcore.syncValue();
46455                 },
46456                 tabIndex:-1
46457             });
46458             cmenu.menu.items.push({
46459                 actiontype : 'word',
46460                 html: 'Remove MS Word Formating',
46461                 handler: function(a,b) {
46462                     editorcore.cleanWord();
46463                     editorcore.syncValue();
46464                 },
46465                 tabIndex:-1
46466             });
46467             
46468             cmenu.menu.items.push({
46469                 actiontype : 'all',
46470                 html: 'Remove All Styles',
46471                 handler: function(a,b) {
46472                     
46473                     var c = Roo.get(editorcore.doc.body);
46474                     c.select('[style]').each(function(s) {
46475                         s.dom.removeAttribute('style');
46476                     });
46477                     editorcore.syncValue();
46478                 },
46479                 tabIndex:-1
46480             });
46481             
46482             cmenu.menu.items.push({
46483                 actiontype : 'all',
46484                 html: 'Remove All CSS Classes',
46485                 handler: function(a,b) {
46486                     
46487                     var c = Roo.get(editorcore.doc.body);
46488                     c.select('[class]').each(function(s) {
46489                         s.dom.removeAttribute('class');
46490                     });
46491                     editorcore.cleanWord();
46492                     editorcore.syncValue();
46493                 },
46494                 tabIndex:-1
46495             });
46496             
46497              cmenu.menu.items.push({
46498                 actiontype : 'tidy',
46499                 html: 'Tidy HTML Source',
46500                 handler: function(a,b) {
46501                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46502                     editorcore.syncValue();
46503                 },
46504                 tabIndex:-1
46505             });
46506             
46507             
46508             tb.add(cmenu);
46509         }
46510          
46511         if (!this.disable.specialElements) {
46512             var semenu = {
46513                 text: "Other;",
46514                 cls: 'x-edit-none',
46515                 menu : {
46516                     items : []
46517                 }
46518             };
46519             for (var i =0; i < this.specialElements.length; i++) {
46520                 semenu.menu.items.push(
46521                     Roo.apply({ 
46522                         handler: function(a,b) {
46523                             editor.insertAtCursor(this.ihtml);
46524                         }
46525                     }, this.specialElements[i])
46526                 );
46527                     
46528             }
46529             
46530             tb.add(semenu);
46531             
46532             
46533         }
46534          
46535         
46536         if (this.btns) {
46537             for(var i =0; i< this.btns.length;i++) {
46538                 var b = Roo.factory(this.btns[i],Roo.form);
46539                 b.cls =  'x-edit-none';
46540                 
46541                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46542                     b.cls += ' x-init-enable';
46543                 }
46544                 
46545                 b.scope = editorcore;
46546                 tb.add(b);
46547             }
46548         
46549         }
46550         
46551         
46552         
46553         // disable everything...
46554         
46555         this.tb.items.each(function(item){
46556             
46557            if(
46558                 item.id != editorcore.frameId+ '-sourceedit' && 
46559                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46560             ){
46561                 
46562                 item.disable();
46563             }
46564         });
46565         this.rendered = true;
46566         
46567         // the all the btns;
46568         editor.on('editorevent', this.updateToolbar, this);
46569         // other toolbars need to implement this..
46570         //editor.on('editmodechange', this.updateToolbar, this);
46571     },
46572     
46573     
46574     relayBtnCmd : function(btn) {
46575         this.editorcore.relayCmd(btn.cmd);
46576     },
46577     // private used internally
46578     createLink : function(){
46579         Roo.log("create link?");
46580         var url = prompt(this.createLinkText, this.defaultLinkValue);
46581         if(url && url != 'http:/'+'/'){
46582             this.editorcore.relayCmd('createlink', url);
46583         }
46584     },
46585
46586     
46587     /**
46588      * Protected method that will not generally be called directly. It triggers
46589      * a toolbar update by reading the markup state of the current selection in the editor.
46590      */
46591     updateToolbar: function(){
46592
46593         if(!this.editorcore.activated){
46594             this.editor.onFirstFocus();
46595             return;
46596         }
46597
46598         var btns = this.tb.items.map, 
46599             doc = this.editorcore.doc,
46600             frameId = this.editorcore.frameId;
46601
46602         if(!this.disable.font && !Roo.isSafari){
46603             /*
46604             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46605             if(name != this.fontSelect.dom.value){
46606                 this.fontSelect.dom.value = name;
46607             }
46608             */
46609         }
46610         if(!this.disable.format){
46611             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46612             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46613             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46614             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46615         }
46616         if(!this.disable.alignments){
46617             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46618             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46619             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46620         }
46621         if(!Roo.isSafari && !this.disable.lists){
46622             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46623             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46624         }
46625         
46626         var ans = this.editorcore.getAllAncestors();
46627         if (this.formatCombo) {
46628             
46629             
46630             var store = this.formatCombo.store;
46631             this.formatCombo.setValue("");
46632             for (var i =0; i < ans.length;i++) {
46633                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46634                     // select it..
46635                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46636                     break;
46637                 }
46638             }
46639         }
46640         
46641         
46642         
46643         // hides menus... - so this cant be on a menu...
46644         Roo.menu.MenuMgr.hideAll();
46645
46646         //this.editorsyncValue();
46647     },
46648    
46649     
46650     createFontOptions : function(){
46651         var buf = [], fs = this.fontFamilies, ff, lc;
46652         
46653         
46654         
46655         for(var i = 0, len = fs.length; i< len; i++){
46656             ff = fs[i];
46657             lc = ff.toLowerCase();
46658             buf.push(
46659                 '<option value="',lc,'" style="font-family:',ff,';"',
46660                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46661                     ff,
46662                 '</option>'
46663             );
46664         }
46665         return buf.join('');
46666     },
46667     
46668     toggleSourceEdit : function(sourceEditMode){
46669         
46670         Roo.log("toolbar toogle");
46671         if(sourceEditMode === undefined){
46672             sourceEditMode = !this.sourceEditMode;
46673         }
46674         this.sourceEditMode = sourceEditMode === true;
46675         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46676         // just toggle the button?
46677         if(btn.pressed !== this.sourceEditMode){
46678             btn.toggle(this.sourceEditMode);
46679             return;
46680         }
46681         
46682         if(sourceEditMode){
46683             Roo.log("disabling buttons");
46684             this.tb.items.each(function(item){
46685                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46686                     item.disable();
46687                 }
46688             });
46689           
46690         }else{
46691             Roo.log("enabling buttons");
46692             if(this.editorcore.initialized){
46693                 this.tb.items.each(function(item){
46694                     item.enable();
46695                 });
46696             }
46697             
46698         }
46699         Roo.log("calling toggole on editor");
46700         // tell the editor that it's been pressed..
46701         this.editor.toggleSourceEdit(sourceEditMode);
46702        
46703     },
46704      /**
46705      * Object collection of toolbar tooltips for the buttons in the editor. The key
46706      * is the command id associated with that button and the value is a valid QuickTips object.
46707      * For example:
46708 <pre><code>
46709 {
46710     bold : {
46711         title: 'Bold (Ctrl+B)',
46712         text: 'Make the selected text bold.',
46713         cls: 'x-html-editor-tip'
46714     },
46715     italic : {
46716         title: 'Italic (Ctrl+I)',
46717         text: 'Make the selected text italic.',
46718         cls: 'x-html-editor-tip'
46719     },
46720     ...
46721 </code></pre>
46722     * @type Object
46723      */
46724     buttonTips : {
46725         bold : {
46726             title: 'Bold (Ctrl+B)',
46727             text: 'Make the selected text bold.',
46728             cls: 'x-html-editor-tip'
46729         },
46730         italic : {
46731             title: 'Italic (Ctrl+I)',
46732             text: 'Make the selected text italic.',
46733             cls: 'x-html-editor-tip'
46734         },
46735         underline : {
46736             title: 'Underline (Ctrl+U)',
46737             text: 'Underline the selected text.',
46738             cls: 'x-html-editor-tip'
46739         },
46740         strikethrough : {
46741             title: 'Strikethrough',
46742             text: 'Strikethrough the selected text.',
46743             cls: 'x-html-editor-tip'
46744         },
46745         increasefontsize : {
46746             title: 'Grow Text',
46747             text: 'Increase the font size.',
46748             cls: 'x-html-editor-tip'
46749         },
46750         decreasefontsize : {
46751             title: 'Shrink Text',
46752             text: 'Decrease the font size.',
46753             cls: 'x-html-editor-tip'
46754         },
46755         backcolor : {
46756             title: 'Text Highlight Color',
46757             text: 'Change the background color of the selected text.',
46758             cls: 'x-html-editor-tip'
46759         },
46760         forecolor : {
46761             title: 'Font Color',
46762             text: 'Change the color of the selected text.',
46763             cls: 'x-html-editor-tip'
46764         },
46765         justifyleft : {
46766             title: 'Align Text Left',
46767             text: 'Align text to the left.',
46768             cls: 'x-html-editor-tip'
46769         },
46770         justifycenter : {
46771             title: 'Center Text',
46772             text: 'Center text in the editor.',
46773             cls: 'x-html-editor-tip'
46774         },
46775         justifyright : {
46776             title: 'Align Text Right',
46777             text: 'Align text to the right.',
46778             cls: 'x-html-editor-tip'
46779         },
46780         insertunorderedlist : {
46781             title: 'Bullet List',
46782             text: 'Start a bulleted list.',
46783             cls: 'x-html-editor-tip'
46784         },
46785         insertorderedlist : {
46786             title: 'Numbered List',
46787             text: 'Start a numbered list.',
46788             cls: 'x-html-editor-tip'
46789         },
46790         createlink : {
46791             title: 'Hyperlink',
46792             text: 'Make the selected text a hyperlink.',
46793             cls: 'x-html-editor-tip'
46794         },
46795         sourceedit : {
46796             title: 'Source Edit',
46797             text: 'Switch to source editing mode.',
46798             cls: 'x-html-editor-tip'
46799         }
46800     },
46801     // private
46802     onDestroy : function(){
46803         if(this.rendered){
46804             
46805             this.tb.items.each(function(item){
46806                 if(item.menu){
46807                     item.menu.removeAll();
46808                     if(item.menu.el){
46809                         item.menu.el.destroy();
46810                     }
46811                 }
46812                 item.destroy();
46813             });
46814              
46815         }
46816     },
46817     onFirstFocus: function() {
46818         this.tb.items.each(function(item){
46819            item.enable();
46820         });
46821     }
46822 });
46823
46824
46825
46826
46827 // <script type="text/javascript">
46828 /*
46829  * Based on
46830  * Ext JS Library 1.1.1
46831  * Copyright(c) 2006-2007, Ext JS, LLC.
46832  *  
46833  
46834  */
46835
46836  
46837 /**
46838  * @class Roo.form.HtmlEditor.ToolbarContext
46839  * Context Toolbar
46840  * 
46841  * Usage:
46842  *
46843  new Roo.form.HtmlEditor({
46844     ....
46845     toolbars : [
46846         { xtype: 'ToolbarStandard', styles : {} }
46847         { xtype: 'ToolbarContext', disable : {} }
46848     ]
46849 })
46850
46851      
46852  * 
46853  * @config : {Object} disable List of elements to disable.. (not done yet.)
46854  * @config : {Object} styles  Map of styles available.
46855  * 
46856  */
46857
46858 Roo.form.HtmlEditor.ToolbarContext = function(config)
46859 {
46860     
46861     Roo.apply(this, config);
46862     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46863     // dont call parent... till later.
46864     this.styles = this.styles || {};
46865 }
46866
46867  
46868
46869 Roo.form.HtmlEditor.ToolbarContext.types = {
46870     'IMG' : {
46871         width : {
46872             title: "Width",
46873             width: 40
46874         },
46875         height:  {
46876             title: "Height",
46877             width: 40
46878         },
46879         align: {
46880             title: "Align",
46881             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46882             width : 80
46883             
46884         },
46885         border: {
46886             title: "Border",
46887             width: 40
46888         },
46889         alt: {
46890             title: "Alt",
46891             width: 120
46892         },
46893         src : {
46894             title: "Src",
46895             width: 220
46896         }
46897         
46898     },
46899     'A' : {
46900         name : {
46901             title: "Name",
46902             width: 50
46903         },
46904         target:  {
46905             title: "Target",
46906             width: 120
46907         },
46908         href:  {
46909             title: "Href",
46910             width: 220
46911         } // border?
46912         
46913     },
46914     'TABLE' : {
46915         rows : {
46916             title: "Rows",
46917             width: 20
46918         },
46919         cols : {
46920             title: "Cols",
46921             width: 20
46922         },
46923         width : {
46924             title: "Width",
46925             width: 40
46926         },
46927         height : {
46928             title: "Height",
46929             width: 40
46930         },
46931         border : {
46932             title: "Border",
46933             width: 20
46934         }
46935     },
46936     'TD' : {
46937         width : {
46938             title: "Width",
46939             width: 40
46940         },
46941         height : {
46942             title: "Height",
46943             width: 40
46944         },   
46945         align: {
46946             title: "Align",
46947             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46948             width: 80
46949         },
46950         valign: {
46951             title: "Valign",
46952             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46953             width: 80
46954         },
46955         colspan: {
46956             title: "Colspan",
46957             width: 20
46958             
46959         },
46960          'font-family'  : {
46961             title : "Font",
46962             style : 'fontFamily',
46963             displayField: 'display',
46964             optname : 'font-family',
46965             width: 140
46966         }
46967     },
46968     'INPUT' : {
46969         name : {
46970             title: "name",
46971             width: 120
46972         },
46973         value : {
46974             title: "Value",
46975             width: 120
46976         },
46977         width : {
46978             title: "Width",
46979             width: 40
46980         }
46981     },
46982     'LABEL' : {
46983         'for' : {
46984             title: "For",
46985             width: 120
46986         }
46987     },
46988     'TEXTAREA' : {
46989           name : {
46990             title: "name",
46991             width: 120
46992         },
46993         rows : {
46994             title: "Rows",
46995             width: 20
46996         },
46997         cols : {
46998             title: "Cols",
46999             width: 20
47000         }
47001     },
47002     'SELECT' : {
47003         name : {
47004             title: "name",
47005             width: 120
47006         },
47007         selectoptions : {
47008             title: "Options",
47009             width: 200
47010         }
47011     },
47012     
47013     // should we really allow this??
47014     // should this just be 
47015     'BODY' : {
47016         title : {
47017             title: "Title",
47018             width: 200,
47019             disabled : true
47020         }
47021     },
47022     'SPAN' : {
47023         'font-family'  : {
47024             title : "Font",
47025             style : 'fontFamily',
47026             displayField: 'display',
47027             optname : 'font-family',
47028             width: 140
47029         }
47030     },
47031     'DIV' : {
47032         'font-family'  : {
47033             title : "Font",
47034             style : 'fontFamily',
47035             displayField: 'display',
47036             optname : 'font-family',
47037             width: 140
47038         }
47039     },
47040      'P' : {
47041         'font-family'  : {
47042             title : "Font",
47043             style : 'fontFamily',
47044             displayField: 'display',
47045             optname : 'font-family',
47046             width: 140
47047         }
47048     },
47049     
47050     '*' : {
47051         // empty..
47052     }
47053
47054 };
47055
47056 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
47057 Roo.form.HtmlEditor.ToolbarContext.stores = false;
47058
47059 Roo.form.HtmlEditor.ToolbarContext.options = {
47060         'font-family'  : [ 
47061                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
47062                 [ 'Courier New', 'Courier New'],
47063                 [ 'Tahoma', 'Tahoma'],
47064                 [ 'Times New Roman,serif', 'Times'],
47065                 [ 'Verdana','Verdana' ]
47066         ]
47067 };
47068
47069 // fixme - these need to be configurable..
47070  
47071
47072 //Roo.form.HtmlEditor.ToolbarContext.types
47073
47074
47075 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
47076     
47077     tb: false,
47078     
47079     rendered: false,
47080     
47081     editor : false,
47082     editorcore : false,
47083     /**
47084      * @cfg {Object} disable  List of toolbar elements to disable
47085          
47086      */
47087     disable : false,
47088     /**
47089      * @cfg {Object} styles List of styles 
47090      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
47091      *
47092      * These must be defined in the page, so they get rendered correctly..
47093      * .headline { }
47094      * TD.underline { }
47095      * 
47096      */
47097     styles : false,
47098     
47099     options: false,
47100     
47101     toolbars : false,
47102     
47103     init : function(editor)
47104     {
47105         this.editor = editor;
47106         this.editorcore = editor.editorcore ? editor.editorcore : editor;
47107         var editorcore = this.editorcore;
47108         
47109         var fid = editorcore.frameId;
47110         var etb = this;
47111         function btn(id, toggle, handler){
47112             var xid = fid + '-'+ id ;
47113             return {
47114                 id : xid,
47115                 cmd : id,
47116                 cls : 'x-btn-icon x-edit-'+id,
47117                 enableToggle:toggle !== false,
47118                 scope: editorcore, // was editor...
47119                 handler:handler||editorcore.relayBtnCmd,
47120                 clickEvent:'mousedown',
47121                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
47122                 tabIndex:-1
47123             };
47124         }
47125         // create a new element.
47126         var wdiv = editor.wrap.createChild({
47127                 tag: 'div'
47128             }, editor.wrap.dom.firstChild.nextSibling, true);
47129         
47130         // can we do this more than once??
47131         
47132          // stop form submits
47133       
47134  
47135         // disable everything...
47136         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47137         this.toolbars = {};
47138            
47139         for (var i in  ty) {
47140           
47141             this.toolbars[i] = this.buildToolbar(ty[i],i);
47142         }
47143         this.tb = this.toolbars.BODY;
47144         this.tb.el.show();
47145         this.buildFooter();
47146         this.footer.show();
47147         editor.on('hide', function( ) { this.footer.hide() }, this);
47148         editor.on('show', function( ) { this.footer.show() }, this);
47149         
47150          
47151         this.rendered = true;
47152         
47153         // the all the btns;
47154         editor.on('editorevent', this.updateToolbar, this);
47155         // other toolbars need to implement this..
47156         //editor.on('editmodechange', this.updateToolbar, this);
47157     },
47158     
47159     
47160     
47161     /**
47162      * Protected method that will not generally be called directly. It triggers
47163      * a toolbar update by reading the markup state of the current selection in the editor.
47164      *
47165      * Note you can force an update by calling on('editorevent', scope, false)
47166      */
47167     updateToolbar: function(editor,ev,sel){
47168
47169         //Roo.log(ev);
47170         // capture mouse up - this is handy for selecting images..
47171         // perhaps should go somewhere else...
47172         if(!this.editorcore.activated){
47173              this.editor.onFirstFocus();
47174             return;
47175         }
47176         
47177         
47178         
47179         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
47180         // selectNode - might want to handle IE?
47181         if (ev &&
47182             (ev.type == 'mouseup' || ev.type == 'click' ) &&
47183             ev.target && ev.target.tagName == 'IMG') {
47184             // they have click on an image...
47185             // let's see if we can change the selection...
47186             sel = ev.target;
47187          
47188               var nodeRange = sel.ownerDocument.createRange();
47189             try {
47190                 nodeRange.selectNode(sel);
47191             } catch (e) {
47192                 nodeRange.selectNodeContents(sel);
47193             }
47194             //nodeRange.collapse(true);
47195             var s = this.editorcore.win.getSelection();
47196             s.removeAllRanges();
47197             s.addRange(nodeRange);
47198         }  
47199         
47200       
47201         var updateFooter = sel ? false : true;
47202         
47203         
47204         var ans = this.editorcore.getAllAncestors();
47205         
47206         // pick
47207         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47208         
47209         if (!sel) { 
47210             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47211             sel = sel ? sel : this.editorcore.doc.body;
47212             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47213             
47214         }
47215         // pick a menu that exists..
47216         var tn = sel.tagName.toUpperCase();
47217         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47218         
47219         tn = sel.tagName.toUpperCase();
47220         
47221         var lastSel = this.tb.selectedNode;
47222         
47223         this.tb.selectedNode = sel;
47224         
47225         // if current menu does not match..
47226         
47227         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47228                 
47229             this.tb.el.hide();
47230             ///console.log("show: " + tn);
47231             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47232             this.tb.el.show();
47233             // update name
47234             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47235             
47236             
47237             // update attributes
47238             if (this.tb.fields) {
47239                 this.tb.fields.each(function(e) {
47240                     if (e.stylename) {
47241                         e.setValue(sel.style[e.stylename]);
47242                         return;
47243                     } 
47244                    e.setValue(sel.getAttribute(e.attrname));
47245                 });
47246             }
47247             
47248             var hasStyles = false;
47249             for(var i in this.styles) {
47250                 hasStyles = true;
47251                 break;
47252             }
47253             
47254             // update styles
47255             if (hasStyles) { 
47256                 var st = this.tb.fields.item(0);
47257                 
47258                 st.store.removeAll();
47259                
47260                 
47261                 var cn = sel.className.split(/\s+/);
47262                 
47263                 var avs = [];
47264                 if (this.styles['*']) {
47265                     
47266                     Roo.each(this.styles['*'], function(v) {
47267                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47268                     });
47269                 }
47270                 if (this.styles[tn]) { 
47271                     Roo.each(this.styles[tn], function(v) {
47272                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47273                     });
47274                 }
47275                 
47276                 st.store.loadData(avs);
47277                 st.collapse();
47278                 st.setValue(cn);
47279             }
47280             // flag our selected Node.
47281             this.tb.selectedNode = sel;
47282            
47283            
47284             Roo.menu.MenuMgr.hideAll();
47285
47286         }
47287         
47288         if (!updateFooter) {
47289             //this.footDisp.dom.innerHTML = ''; 
47290             return;
47291         }
47292         // update the footer
47293         //
47294         var html = '';
47295         
47296         this.footerEls = ans.reverse();
47297         Roo.each(this.footerEls, function(a,i) {
47298             if (!a) { return; }
47299             html += html.length ? ' &gt; '  :  '';
47300             
47301             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47302             
47303         });
47304        
47305         // 
47306         var sz = this.footDisp.up('td').getSize();
47307         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47308         this.footDisp.dom.style.marginLeft = '5px';
47309         
47310         this.footDisp.dom.style.overflow = 'hidden';
47311         
47312         this.footDisp.dom.innerHTML = html;
47313             
47314         //this.editorsyncValue();
47315     },
47316      
47317     
47318    
47319        
47320     // private
47321     onDestroy : function(){
47322         if(this.rendered){
47323             
47324             this.tb.items.each(function(item){
47325                 if(item.menu){
47326                     item.menu.removeAll();
47327                     if(item.menu.el){
47328                         item.menu.el.destroy();
47329                     }
47330                 }
47331                 item.destroy();
47332             });
47333              
47334         }
47335     },
47336     onFirstFocus: function() {
47337         // need to do this for all the toolbars..
47338         this.tb.items.each(function(item){
47339            item.enable();
47340         });
47341     },
47342     buildToolbar: function(tlist, nm)
47343     {
47344         var editor = this.editor;
47345         var editorcore = this.editorcore;
47346          // create a new element.
47347         var wdiv = editor.wrap.createChild({
47348                 tag: 'div'
47349             }, editor.wrap.dom.firstChild.nextSibling, true);
47350         
47351        
47352         var tb = new Roo.Toolbar(wdiv);
47353         // add the name..
47354         
47355         tb.add(nm+ ":&nbsp;");
47356         
47357         var styles = [];
47358         for(var i in this.styles) {
47359             styles.push(i);
47360         }
47361         
47362         // styles...
47363         if (styles && styles.length) {
47364             
47365             // this needs a multi-select checkbox...
47366             tb.addField( new Roo.form.ComboBox({
47367                 store: new Roo.data.SimpleStore({
47368                     id : 'val',
47369                     fields: ['val', 'selected'],
47370                     data : [] 
47371                 }),
47372                 name : '-roo-edit-className',
47373                 attrname : 'className',
47374                 displayField: 'val',
47375                 typeAhead: false,
47376                 mode: 'local',
47377                 editable : false,
47378                 triggerAction: 'all',
47379                 emptyText:'Select Style',
47380                 selectOnFocus:true,
47381                 width: 130,
47382                 listeners : {
47383                     'select': function(c, r, i) {
47384                         // initial support only for on class per el..
47385                         tb.selectedNode.className =  r ? r.get('val') : '';
47386                         editorcore.syncValue();
47387                     }
47388                 }
47389     
47390             }));
47391         }
47392         
47393         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47394         var tbops = tbc.options;
47395         
47396         for (var i in tlist) {
47397             
47398             var item = tlist[i];
47399             tb.add(item.title + ":&nbsp;");
47400             
47401             
47402             //optname == used so you can configure the options available..
47403             var opts = item.opts ? item.opts : false;
47404             if (item.optname) {
47405                 opts = tbops[item.optname];
47406            
47407             }
47408             
47409             if (opts) {
47410                 // opts == pulldown..
47411                 tb.addField( new Roo.form.ComboBox({
47412                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47413                         id : 'val',
47414                         fields: ['val', 'display'],
47415                         data : opts  
47416                     }),
47417                     name : '-roo-edit-' + i,
47418                     attrname : i,
47419                     stylename : item.style ? item.style : false,
47420                     displayField: item.displayField ? item.displayField : 'val',
47421                     valueField :  'val',
47422                     typeAhead: false,
47423                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47424                     editable : false,
47425                     triggerAction: 'all',
47426                     emptyText:'Select',
47427                     selectOnFocus:true,
47428                     width: item.width ? item.width  : 130,
47429                     listeners : {
47430                         'select': function(c, r, i) {
47431                             if (c.stylename) {
47432                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47433                                 return;
47434                             }
47435                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47436                         }
47437                     }
47438
47439                 }));
47440                 continue;
47441                     
47442                  
47443                 
47444                 tb.addField( new Roo.form.TextField({
47445                     name: i,
47446                     width: 100,
47447                     //allowBlank:false,
47448                     value: ''
47449                 }));
47450                 continue;
47451             }
47452             tb.addField( new Roo.form.TextField({
47453                 name: '-roo-edit-' + i,
47454                 attrname : i,
47455                 
47456                 width: item.width,
47457                 //allowBlank:true,
47458                 value: '',
47459                 listeners: {
47460                     'change' : function(f, nv, ov) {
47461                         tb.selectedNode.setAttribute(f.attrname, nv);
47462                         editorcore.syncValue();
47463                     }
47464                 }
47465             }));
47466              
47467         }
47468         
47469         var _this = this;
47470         
47471         if(nm == 'BODY'){
47472             tb.addSeparator();
47473         
47474             tb.addButton( {
47475                 text: 'Stylesheets',
47476
47477                 listeners : {
47478                     click : function ()
47479                     {
47480                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47481                     }
47482                 }
47483             });
47484         }
47485         
47486         tb.addFill();
47487         tb.addButton( {
47488             text: 'Remove Tag',
47489     
47490             listeners : {
47491                 click : function ()
47492                 {
47493                     // remove
47494                     // undo does not work.
47495                      
47496                     var sn = tb.selectedNode;
47497                     
47498                     var pn = sn.parentNode;
47499                     
47500                     var stn =  sn.childNodes[0];
47501                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47502                     while (sn.childNodes.length) {
47503                         var node = sn.childNodes[0];
47504                         sn.removeChild(node);
47505                         //Roo.log(node);
47506                         pn.insertBefore(node, sn);
47507                         
47508                     }
47509                     pn.removeChild(sn);
47510                     var range = editorcore.createRange();
47511         
47512                     range.setStart(stn,0);
47513                     range.setEnd(en,0); //????
47514                     //range.selectNode(sel);
47515                     
47516                     
47517                     var selection = editorcore.getSelection();
47518                     selection.removeAllRanges();
47519                     selection.addRange(range);
47520                     
47521                     
47522                     
47523                     //_this.updateToolbar(null, null, pn);
47524                     _this.updateToolbar(null, null, null);
47525                     _this.footDisp.dom.innerHTML = ''; 
47526                 }
47527             }
47528             
47529                     
47530                 
47531             
47532         });
47533         
47534         
47535         tb.el.on('click', function(e){
47536             e.preventDefault(); // what does this do?
47537         });
47538         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47539         tb.el.hide();
47540         tb.name = nm;
47541         // dont need to disable them... as they will get hidden
47542         return tb;
47543          
47544         
47545     },
47546     buildFooter : function()
47547     {
47548         
47549         var fel = this.editor.wrap.createChild();
47550         this.footer = new Roo.Toolbar(fel);
47551         // toolbar has scrolly on left / right?
47552         var footDisp= new Roo.Toolbar.Fill();
47553         var _t = this;
47554         this.footer.add(
47555             {
47556                 text : '&lt;',
47557                 xtype: 'Button',
47558                 handler : function() {
47559                     _t.footDisp.scrollTo('left',0,true)
47560                 }
47561             }
47562         );
47563         this.footer.add( footDisp );
47564         this.footer.add( 
47565             {
47566                 text : '&gt;',
47567                 xtype: 'Button',
47568                 handler : function() {
47569                     // no animation..
47570                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47571                 }
47572             }
47573         );
47574         var fel = Roo.get(footDisp.el);
47575         fel.addClass('x-editor-context');
47576         this.footDispWrap = fel; 
47577         this.footDispWrap.overflow  = 'hidden';
47578         
47579         this.footDisp = fel.createChild();
47580         this.footDispWrap.on('click', this.onContextClick, this)
47581         
47582         
47583     },
47584     onContextClick : function (ev,dom)
47585     {
47586         ev.preventDefault();
47587         var  cn = dom.className;
47588         //Roo.log(cn);
47589         if (!cn.match(/x-ed-loc-/)) {
47590             return;
47591         }
47592         var n = cn.split('-').pop();
47593         var ans = this.footerEls;
47594         var sel = ans[n];
47595         
47596          // pick
47597         var range = this.editorcore.createRange();
47598         
47599         range.selectNodeContents(sel);
47600         //range.selectNode(sel);
47601         
47602         
47603         var selection = this.editorcore.getSelection();
47604         selection.removeAllRanges();
47605         selection.addRange(range);
47606         
47607         
47608         
47609         this.updateToolbar(null, null, sel);
47610         
47611         
47612     }
47613     
47614     
47615     
47616     
47617     
47618 });
47619
47620
47621
47622
47623
47624 /*
47625  * Based on:
47626  * Ext JS Library 1.1.1
47627  * Copyright(c) 2006-2007, Ext JS, LLC.
47628  *
47629  * Originally Released Under LGPL - original licence link has changed is not relivant.
47630  *
47631  * Fork - LGPL
47632  * <script type="text/javascript">
47633  */
47634  
47635 /**
47636  * @class Roo.form.BasicForm
47637  * @extends Roo.util.Observable
47638  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47639  * @constructor
47640  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47641  * @param {Object} config Configuration options
47642  */
47643 Roo.form.BasicForm = function(el, config){
47644     this.allItems = [];
47645     this.childForms = [];
47646     Roo.apply(this, config);
47647     /*
47648      * The Roo.form.Field items in this form.
47649      * @type MixedCollection
47650      */
47651      
47652      
47653     this.items = new Roo.util.MixedCollection(false, function(o){
47654         return o.id || (o.id = Roo.id());
47655     });
47656     this.addEvents({
47657         /**
47658          * @event beforeaction
47659          * Fires before any action is performed. Return false to cancel the action.
47660          * @param {Form} this
47661          * @param {Action} action The action to be performed
47662          */
47663         beforeaction: true,
47664         /**
47665          * @event actionfailed
47666          * Fires when an action fails.
47667          * @param {Form} this
47668          * @param {Action} action The action that failed
47669          */
47670         actionfailed : true,
47671         /**
47672          * @event actioncomplete
47673          * Fires when an action is completed.
47674          * @param {Form} this
47675          * @param {Action} action The action that completed
47676          */
47677         actioncomplete : true
47678     });
47679     if(el){
47680         this.initEl(el);
47681     }
47682     Roo.form.BasicForm.superclass.constructor.call(this);
47683     
47684     Roo.form.BasicForm.popover.apply();
47685 };
47686
47687 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47688     /**
47689      * @cfg {String} method
47690      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47691      */
47692     /**
47693      * @cfg {DataReader} reader
47694      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47695      * This is optional as there is built-in support for processing JSON.
47696      */
47697     /**
47698      * @cfg {DataReader} errorReader
47699      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47700      * This is completely optional as there is built-in support for processing JSON.
47701      */
47702     /**
47703      * @cfg {String} url
47704      * The URL to use for form actions if one isn't supplied in the action options.
47705      */
47706     /**
47707      * @cfg {Boolean} fileUpload
47708      * Set to true if this form is a file upload.
47709      */
47710      
47711     /**
47712      * @cfg {Object} baseParams
47713      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47714      */
47715      /**
47716      
47717     /**
47718      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47719      */
47720     timeout: 30,
47721
47722     // private
47723     activeAction : null,
47724
47725     /**
47726      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47727      * or setValues() data instead of when the form was first created.
47728      */
47729     trackResetOnLoad : false,
47730     
47731     
47732     /**
47733      * childForms - used for multi-tab forms
47734      * @type {Array}
47735      */
47736     childForms : false,
47737     
47738     /**
47739      * allItems - full list of fields.
47740      * @type {Array}
47741      */
47742     allItems : false,
47743     
47744     /**
47745      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47746      * element by passing it or its id or mask the form itself by passing in true.
47747      * @type Mixed
47748      */
47749     waitMsgTarget : false,
47750     
47751     /**
47752      * @type Boolean
47753      */
47754     disableMask : false,
47755     
47756     /**
47757      * @cfg {Boolean} errorMask (true|false) default false
47758      */
47759     errorMask : false,
47760     
47761     /**
47762      * @cfg {Number} maskOffset Default 100
47763      */
47764     maskOffset : 100,
47765
47766     // private
47767     initEl : function(el){
47768         this.el = Roo.get(el);
47769         this.id = this.el.id || Roo.id();
47770         this.el.on('submit', this.onSubmit, this);
47771         this.el.addClass('x-form');
47772     },
47773
47774     // private
47775     onSubmit : function(e){
47776         e.stopEvent();
47777     },
47778
47779     /**
47780      * Returns true if client-side validation on the form is successful.
47781      * @return Boolean
47782      */
47783     isValid : function(){
47784         var valid = true;
47785         var target = false;
47786         this.items.each(function(f){
47787             if(f.validate()){
47788                 return;
47789             }
47790             
47791             valid = false;
47792                 
47793             if(!target && f.el.isVisible(true)){
47794                 target = f;
47795             }
47796         });
47797         
47798         if(this.errorMask && !valid){
47799             Roo.form.BasicForm.popover.mask(this, target);
47800         }
47801         
47802         return valid;
47803     },
47804     /**
47805      * Returns array of invalid form fields.
47806      * @return Array
47807      */
47808     
47809     invalidFields : function()
47810     {
47811         var ret = [];
47812         this.items.each(function(f){
47813             if(f.validate()){
47814                 return;
47815             }
47816             ret.push(f);
47817             
47818         });
47819         
47820         return ret;
47821     },
47822     
47823     
47824     /**
47825      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47826      * @return Boolean
47827      */
47828     isDirty : function(){
47829         var dirty = false;
47830         this.items.each(function(f){
47831            if(f.isDirty()){
47832                dirty = true;
47833                return false;
47834            }
47835         });
47836         return dirty;
47837     },
47838     
47839     /**
47840      * Returns true if any fields in this form have changed since their original load. (New version)
47841      * @return Boolean
47842      */
47843     
47844     hasChanged : function()
47845     {
47846         var dirty = false;
47847         this.items.each(function(f){
47848            if(f.hasChanged()){
47849                dirty = true;
47850                return false;
47851            }
47852         });
47853         return dirty;
47854         
47855     },
47856     /**
47857      * Resets all hasChanged to 'false' -
47858      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47859      * So hasChanged storage is only to be used for this purpose
47860      * @return Boolean
47861      */
47862     resetHasChanged : function()
47863     {
47864         this.items.each(function(f){
47865            f.resetHasChanged();
47866         });
47867         
47868     },
47869     
47870     
47871     /**
47872      * Performs a predefined action (submit or load) or custom actions you define on this form.
47873      * @param {String} actionName The name of the action type
47874      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47875      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47876      * accept other config options):
47877      * <pre>
47878 Property          Type             Description
47879 ----------------  ---------------  ----------------------------------------------------------------------------------
47880 url               String           The url for the action (defaults to the form's url)
47881 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47882 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47883 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47884                                    validate the form on the client (defaults to false)
47885      * </pre>
47886      * @return {BasicForm} this
47887      */
47888     doAction : function(action, options){
47889         if(typeof action == 'string'){
47890             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47891         }
47892         if(this.fireEvent('beforeaction', this, action) !== false){
47893             this.beforeAction(action);
47894             action.run.defer(100, action);
47895         }
47896         return this;
47897     },
47898
47899     /**
47900      * Shortcut to do a submit action.
47901      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47902      * @return {BasicForm} this
47903      */
47904     submit : function(options){
47905         this.doAction('submit', options);
47906         return this;
47907     },
47908
47909     /**
47910      * Shortcut to do a load action.
47911      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47912      * @return {BasicForm} this
47913      */
47914     load : function(options){
47915         this.doAction('load', options);
47916         return this;
47917     },
47918
47919     /**
47920      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47921      * @param {Record} record The record to edit
47922      * @return {BasicForm} this
47923      */
47924     updateRecord : function(record){
47925         record.beginEdit();
47926         var fs = record.fields;
47927         fs.each(function(f){
47928             var field = this.findField(f.name);
47929             if(field){
47930                 record.set(f.name, field.getValue());
47931             }
47932         }, this);
47933         record.endEdit();
47934         return this;
47935     },
47936
47937     /**
47938      * Loads an Roo.data.Record into this form.
47939      * @param {Record} record The record to load
47940      * @return {BasicForm} this
47941      */
47942     loadRecord : function(record){
47943         this.setValues(record.data);
47944         return this;
47945     },
47946
47947     // private
47948     beforeAction : function(action){
47949         var o = action.options;
47950         
47951         if(!this.disableMask) {
47952             if(this.waitMsgTarget === true){
47953                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47954             }else if(this.waitMsgTarget){
47955                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47956                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47957             }else {
47958                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47959             }
47960         }
47961         
47962          
47963     },
47964
47965     // private
47966     afterAction : function(action, success){
47967         this.activeAction = null;
47968         var o = action.options;
47969         
47970         if(!this.disableMask) {
47971             if(this.waitMsgTarget === true){
47972                 this.el.unmask();
47973             }else if(this.waitMsgTarget){
47974                 this.waitMsgTarget.unmask();
47975             }else{
47976                 Roo.MessageBox.updateProgress(1);
47977                 Roo.MessageBox.hide();
47978             }
47979         }
47980         
47981         if(success){
47982             if(o.reset){
47983                 this.reset();
47984             }
47985             Roo.callback(o.success, o.scope, [this, action]);
47986             this.fireEvent('actioncomplete', this, action);
47987             
47988         }else{
47989             
47990             // failure condition..
47991             // we have a scenario where updates need confirming.
47992             // eg. if a locking scenario exists..
47993             // we look for { errors : { needs_confirm : true }} in the response.
47994             if (
47995                 (typeof(action.result) != 'undefined')  &&
47996                 (typeof(action.result.errors) != 'undefined')  &&
47997                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47998            ){
47999                 var _t = this;
48000                 Roo.MessageBox.confirm(
48001                     "Change requires confirmation",
48002                     action.result.errorMsg,
48003                     function(r) {
48004                         if (r != 'yes') {
48005                             return;
48006                         }
48007                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
48008                     }
48009                     
48010                 );
48011                 
48012                 
48013                 
48014                 return;
48015             }
48016             
48017             Roo.callback(o.failure, o.scope, [this, action]);
48018             // show an error message if no failed handler is set..
48019             if (!this.hasListener('actionfailed')) {
48020                 Roo.MessageBox.alert("Error",
48021                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
48022                         action.result.errorMsg :
48023                         "Saving Failed, please check your entries or try again"
48024                 );
48025             }
48026             
48027             this.fireEvent('actionfailed', this, action);
48028         }
48029         
48030     },
48031
48032     /**
48033      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
48034      * @param {String} id The value to search for
48035      * @return Field
48036      */
48037     findField : function(id){
48038         var field = this.items.get(id);
48039         if(!field){
48040             this.items.each(function(f){
48041                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
48042                     field = f;
48043                     return false;
48044                 }
48045             });
48046         }
48047         return field || null;
48048     },
48049
48050     /**
48051      * Add a secondary form to this one, 
48052      * Used to provide tabbed forms. One form is primary, with hidden values 
48053      * which mirror the elements from the other forms.
48054      * 
48055      * @param {Roo.form.Form} form to add.
48056      * 
48057      */
48058     addForm : function(form)
48059     {
48060        
48061         if (this.childForms.indexOf(form) > -1) {
48062             // already added..
48063             return;
48064         }
48065         this.childForms.push(form);
48066         var n = '';
48067         Roo.each(form.allItems, function (fe) {
48068             
48069             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
48070             if (this.findField(n)) { // already added..
48071                 return;
48072             }
48073             var add = new Roo.form.Hidden({
48074                 name : n
48075             });
48076             add.render(this.el);
48077             
48078             this.add( add );
48079         }, this);
48080         
48081     },
48082     /**
48083      * Mark fields in this form invalid in bulk.
48084      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
48085      * @return {BasicForm} this
48086      */
48087     markInvalid : function(errors){
48088         if(errors instanceof Array){
48089             for(var i = 0, len = errors.length; i < len; i++){
48090                 var fieldError = errors[i];
48091                 var f = this.findField(fieldError.id);
48092                 if(f){
48093                     f.markInvalid(fieldError.msg);
48094                 }
48095             }
48096         }else{
48097             var field, id;
48098             for(id in errors){
48099                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
48100                     field.markInvalid(errors[id]);
48101                 }
48102             }
48103         }
48104         Roo.each(this.childForms || [], function (f) {
48105             f.markInvalid(errors);
48106         });
48107         
48108         return this;
48109     },
48110
48111     /**
48112      * Set values for fields in this form in bulk.
48113      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
48114      * @return {BasicForm} this
48115      */
48116     setValues : function(values){
48117         if(values instanceof Array){ // array of objects
48118             for(var i = 0, len = values.length; i < len; i++){
48119                 var v = values[i];
48120                 var f = this.findField(v.id);
48121                 if(f){
48122                     f.setValue(v.value);
48123                     if(this.trackResetOnLoad){
48124                         f.originalValue = f.getValue();
48125                     }
48126                 }
48127             }
48128         }else{ // object hash
48129             var field, id;
48130             for(id in values){
48131                 if(typeof values[id] != 'function' && (field = this.findField(id))){
48132                     
48133                     if (field.setFromData && 
48134                         field.valueField && 
48135                         field.displayField &&
48136                         // combos' with local stores can 
48137                         // be queried via setValue()
48138                         // to set their value..
48139                         (field.store && !field.store.isLocal)
48140                         ) {
48141                         // it's a combo
48142                         var sd = { };
48143                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
48144                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
48145                         field.setFromData(sd);
48146                         
48147                     } else {
48148                         field.setValue(values[id]);
48149                     }
48150                     
48151                     
48152                     if(this.trackResetOnLoad){
48153                         field.originalValue = field.getValue();
48154                     }
48155                 }
48156             }
48157         }
48158         this.resetHasChanged();
48159         
48160         
48161         Roo.each(this.childForms || [], function (f) {
48162             f.setValues(values);
48163             f.resetHasChanged();
48164         });
48165                 
48166         return this;
48167     },
48168  
48169     /**
48170      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
48171      * they are returned as an array.
48172      * @param {Boolean} asString
48173      * @return {Object}
48174      */
48175     getValues : function(asString){
48176         if (this.childForms) {
48177             // copy values from the child forms
48178             Roo.each(this.childForms, function (f) {
48179                 this.setValues(f.getValues());
48180             }, this);
48181         }
48182         
48183         // use formdata
48184         if (typeof(FormData) != 'undefined' && asString !== true) {
48185             // this relies on a 'recent' version of chrome apparently...
48186             try {
48187                 var fd = (new FormData(this.el.dom)).entries();
48188                 var ret = {};
48189                 var ent = fd.next();
48190                 while (!ent.done) {
48191                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
48192                     ent = fd.next();
48193                 };
48194                 return ret;
48195             } catch(e) {
48196                 
48197             }
48198             
48199         }
48200         
48201         
48202         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48203         if(asString === true){
48204             return fs;
48205         }
48206         return Roo.urlDecode(fs);
48207     },
48208     
48209     /**
48210      * Returns the fields in this form as an object with key/value pairs. 
48211      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48212      * @return {Object}
48213      */
48214     getFieldValues : function(with_hidden)
48215     {
48216         if (this.childForms) {
48217             // copy values from the child forms
48218             // should this call getFieldValues - probably not as we do not currently copy
48219             // hidden fields when we generate..
48220             Roo.each(this.childForms, function (f) {
48221                 this.setValues(f.getValues());
48222             }, this);
48223         }
48224         
48225         var ret = {};
48226         this.items.each(function(f){
48227             if (!f.getName()) {
48228                 return;
48229             }
48230             var v = f.getValue();
48231             if (f.inputType =='radio') {
48232                 if (typeof(ret[f.getName()]) == 'undefined') {
48233                     ret[f.getName()] = ''; // empty..
48234                 }
48235                 
48236                 if (!f.el.dom.checked) {
48237                     return;
48238                     
48239                 }
48240                 v = f.el.dom.value;
48241                 
48242             }
48243             
48244             // not sure if this supported any more..
48245             if ((typeof(v) == 'object') && f.getRawValue) {
48246                 v = f.getRawValue() ; // dates..
48247             }
48248             // combo boxes where name != hiddenName...
48249             if (f.name != f.getName()) {
48250                 ret[f.name] = f.getRawValue();
48251             }
48252             ret[f.getName()] = v;
48253         });
48254         
48255         return ret;
48256     },
48257
48258     /**
48259      * Clears all invalid messages in this form.
48260      * @return {BasicForm} this
48261      */
48262     clearInvalid : function(){
48263         this.items.each(function(f){
48264            f.clearInvalid();
48265         });
48266         
48267         Roo.each(this.childForms || [], function (f) {
48268             f.clearInvalid();
48269         });
48270         
48271         
48272         return this;
48273     },
48274
48275     /**
48276      * Resets this form.
48277      * @return {BasicForm} this
48278      */
48279     reset : function(){
48280         this.items.each(function(f){
48281             f.reset();
48282         });
48283         
48284         Roo.each(this.childForms || [], function (f) {
48285             f.reset();
48286         });
48287         this.resetHasChanged();
48288         
48289         return this;
48290     },
48291
48292     /**
48293      * Add Roo.form components to this form.
48294      * @param {Field} field1
48295      * @param {Field} field2 (optional)
48296      * @param {Field} etc (optional)
48297      * @return {BasicForm} this
48298      */
48299     add : function(){
48300         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48301         return this;
48302     },
48303
48304
48305     /**
48306      * Removes a field from the items collection (does NOT remove its markup).
48307      * @param {Field} field
48308      * @return {BasicForm} this
48309      */
48310     remove : function(field){
48311         this.items.remove(field);
48312         return this;
48313     },
48314
48315     /**
48316      * Looks at the fields in this form, checks them for an id attribute,
48317      * and calls applyTo on the existing dom element with that id.
48318      * @return {BasicForm} this
48319      */
48320     render : function(){
48321         this.items.each(function(f){
48322             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48323                 f.applyTo(f.id);
48324             }
48325         });
48326         return this;
48327     },
48328
48329     /**
48330      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48331      * @param {Object} values
48332      * @return {BasicForm} this
48333      */
48334     applyToFields : function(o){
48335         this.items.each(function(f){
48336            Roo.apply(f, o);
48337         });
48338         return this;
48339     },
48340
48341     /**
48342      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48343      * @param {Object} values
48344      * @return {BasicForm} this
48345      */
48346     applyIfToFields : function(o){
48347         this.items.each(function(f){
48348            Roo.applyIf(f, o);
48349         });
48350         return this;
48351     }
48352 });
48353
48354 // back compat
48355 Roo.BasicForm = Roo.form.BasicForm;
48356
48357 Roo.apply(Roo.form.BasicForm, {
48358     
48359     popover : {
48360         
48361         padding : 5,
48362         
48363         isApplied : false,
48364         
48365         isMasked : false,
48366         
48367         form : false,
48368         
48369         target : false,
48370         
48371         intervalID : false,
48372         
48373         maskEl : false,
48374         
48375         apply : function()
48376         {
48377             if(this.isApplied){
48378                 return;
48379             }
48380             
48381             this.maskEl = {
48382                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48383                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48384                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48385                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48386             };
48387             
48388             this.maskEl.top.enableDisplayMode("block");
48389             this.maskEl.left.enableDisplayMode("block");
48390             this.maskEl.bottom.enableDisplayMode("block");
48391             this.maskEl.right.enableDisplayMode("block");
48392             
48393             Roo.get(document.body).on('click', function(){
48394                 this.unmask();
48395             }, this);
48396             
48397             Roo.get(document.body).on('touchstart', function(){
48398                 this.unmask();
48399             }, this);
48400             
48401             this.isApplied = true
48402         },
48403         
48404         mask : function(form, target)
48405         {
48406             this.form = form;
48407             
48408             this.target = target;
48409             
48410             if(!this.form.errorMask || !target.el){
48411                 return;
48412             }
48413             
48414             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48415             
48416             var ot = this.target.el.calcOffsetsTo(scrollable);
48417             
48418             var scrollTo = ot[1] - this.form.maskOffset;
48419             
48420             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48421             
48422             scrollable.scrollTo('top', scrollTo);
48423             
48424             var el = this.target.wrap || this.target.el;
48425             
48426             var box = el.getBox();
48427             
48428             this.maskEl.top.setStyle('position', 'absolute');
48429             this.maskEl.top.setStyle('z-index', 10000);
48430             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48431             this.maskEl.top.setLeft(0);
48432             this.maskEl.top.setTop(0);
48433             this.maskEl.top.show();
48434             
48435             this.maskEl.left.setStyle('position', 'absolute');
48436             this.maskEl.left.setStyle('z-index', 10000);
48437             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48438             this.maskEl.left.setLeft(0);
48439             this.maskEl.left.setTop(box.y - this.padding);
48440             this.maskEl.left.show();
48441
48442             this.maskEl.bottom.setStyle('position', 'absolute');
48443             this.maskEl.bottom.setStyle('z-index', 10000);
48444             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48445             this.maskEl.bottom.setLeft(0);
48446             this.maskEl.bottom.setTop(box.bottom + this.padding);
48447             this.maskEl.bottom.show();
48448
48449             this.maskEl.right.setStyle('position', 'absolute');
48450             this.maskEl.right.setStyle('z-index', 10000);
48451             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48452             this.maskEl.right.setLeft(box.right + this.padding);
48453             this.maskEl.right.setTop(box.y - this.padding);
48454             this.maskEl.right.show();
48455
48456             this.intervalID = window.setInterval(function() {
48457                 Roo.form.BasicForm.popover.unmask();
48458             }, 10000);
48459
48460             window.onwheel = function(){ return false;};
48461             
48462             (function(){ this.isMasked = true; }).defer(500, this);
48463             
48464         },
48465         
48466         unmask : function()
48467         {
48468             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48469                 return;
48470             }
48471             
48472             this.maskEl.top.setStyle('position', 'absolute');
48473             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48474             this.maskEl.top.hide();
48475
48476             this.maskEl.left.setStyle('position', 'absolute');
48477             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48478             this.maskEl.left.hide();
48479
48480             this.maskEl.bottom.setStyle('position', 'absolute');
48481             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48482             this.maskEl.bottom.hide();
48483
48484             this.maskEl.right.setStyle('position', 'absolute');
48485             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48486             this.maskEl.right.hide();
48487             
48488             window.onwheel = function(){ return true;};
48489             
48490             if(this.intervalID){
48491                 window.clearInterval(this.intervalID);
48492                 this.intervalID = false;
48493             }
48494             
48495             this.isMasked = false;
48496             
48497         }
48498         
48499     }
48500     
48501 });/*
48502  * Based on:
48503  * Ext JS Library 1.1.1
48504  * Copyright(c) 2006-2007, Ext JS, LLC.
48505  *
48506  * Originally Released Under LGPL - original licence link has changed is not relivant.
48507  *
48508  * Fork - LGPL
48509  * <script type="text/javascript">
48510  */
48511
48512 /**
48513  * @class Roo.form.Form
48514  * @extends Roo.form.BasicForm
48515  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
48516  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48517  * @constructor
48518  * @param {Object} config Configuration options
48519  */
48520 Roo.form.Form = function(config){
48521     var xitems =  [];
48522     if (config.items) {
48523         xitems = config.items;
48524         delete config.items;
48525     }
48526    
48527     
48528     Roo.form.Form.superclass.constructor.call(this, null, config);
48529     this.url = this.url || this.action;
48530     if(!this.root){
48531         this.root = new Roo.form.Layout(Roo.applyIf({
48532             id: Roo.id()
48533         }, config));
48534     }
48535     this.active = this.root;
48536     /**
48537      * Array of all the buttons that have been added to this form via {@link addButton}
48538      * @type Array
48539      */
48540     this.buttons = [];
48541     this.allItems = [];
48542     this.addEvents({
48543         /**
48544          * @event clientvalidation
48545          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48546          * @param {Form} this
48547          * @param {Boolean} valid true if the form has passed client-side validation
48548          */
48549         clientvalidation: true,
48550         /**
48551          * @event rendered
48552          * Fires when the form is rendered
48553          * @param {Roo.form.Form} form
48554          */
48555         rendered : true
48556     });
48557     
48558     if (this.progressUrl) {
48559             // push a hidden field onto the list of fields..
48560             this.addxtype( {
48561                     xns: Roo.form, 
48562                     xtype : 'Hidden', 
48563                     name : 'UPLOAD_IDENTIFIER' 
48564             });
48565         }
48566         
48567     
48568     Roo.each(xitems, this.addxtype, this);
48569     
48570 };
48571
48572 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48573      /**
48574      * @cfg {Roo.Button} buttons[] buttons at bottom of form
48575      */
48576     
48577     /**
48578      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48579      */
48580     /**
48581      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48582      */
48583     /**
48584      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48585      */
48586     buttonAlign:'center',
48587
48588     /**
48589      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48590      */
48591     minButtonWidth:75,
48592
48593     /**
48594      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48595      * This property cascades to child containers if not set.
48596      */
48597     labelAlign:'left',
48598
48599     /**
48600      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48601      * fires a looping event with that state. This is required to bind buttons to the valid
48602      * state using the config value formBind:true on the button.
48603      */
48604     monitorValid : false,
48605
48606     /**
48607      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48608      */
48609     monitorPoll : 200,
48610     
48611     /**
48612      * @cfg {String} progressUrl - Url to return progress data 
48613      */
48614     
48615     progressUrl : false,
48616     /**
48617      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48618      * sending a formdata with extra parameters - eg uploaded elements.
48619      */
48620     
48621     formData : false,
48622     
48623     /**
48624      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48625      * fields are added and the column is closed. If no fields are passed the column remains open
48626      * until end() is called.
48627      * @param {Object} config The config to pass to the column
48628      * @param {Field} field1 (optional)
48629      * @param {Field} field2 (optional)
48630      * @param {Field} etc (optional)
48631      * @return Column The column container object
48632      */
48633     column : function(c){
48634         var col = new Roo.form.Column(c);
48635         this.start(col);
48636         if(arguments.length > 1){ // duplicate code required because of Opera
48637             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48638             this.end();
48639         }
48640         return col;
48641     },
48642
48643     /**
48644      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48645      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48646      * until end() is called.
48647      * @param {Object} config The config to pass to the fieldset
48648      * @param {Field} field1 (optional)
48649      * @param {Field} field2 (optional)
48650      * @param {Field} etc (optional)
48651      * @return FieldSet The fieldset container object
48652      */
48653     fieldset : function(c){
48654         var fs = new Roo.form.FieldSet(c);
48655         this.start(fs);
48656         if(arguments.length > 1){ // duplicate code required because of Opera
48657             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48658             this.end();
48659         }
48660         return fs;
48661     },
48662
48663     /**
48664      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48665      * fields are added and the container is closed. If no fields are passed the container remains open
48666      * until end() is called.
48667      * @param {Object} config The config to pass to the Layout
48668      * @param {Field} field1 (optional)
48669      * @param {Field} field2 (optional)
48670      * @param {Field} etc (optional)
48671      * @return Layout The container object
48672      */
48673     container : function(c){
48674         var l = new Roo.form.Layout(c);
48675         this.start(l);
48676         if(arguments.length > 1){ // duplicate code required because of Opera
48677             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48678             this.end();
48679         }
48680         return l;
48681     },
48682
48683     /**
48684      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48685      * @param {Object} container A Roo.form.Layout or subclass of Layout
48686      * @return {Form} this
48687      */
48688     start : function(c){
48689         // cascade label info
48690         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48691         this.active.stack.push(c);
48692         c.ownerCt = this.active;
48693         this.active = c;
48694         return this;
48695     },
48696
48697     /**
48698      * Closes the current open container
48699      * @return {Form} this
48700      */
48701     end : function(){
48702         if(this.active == this.root){
48703             return this;
48704         }
48705         this.active = this.active.ownerCt;
48706         return this;
48707     },
48708
48709     /**
48710      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48711      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48712      * as the label of the field.
48713      * @param {Field} field1
48714      * @param {Field} field2 (optional)
48715      * @param {Field} etc. (optional)
48716      * @return {Form} this
48717      */
48718     add : function(){
48719         this.active.stack.push.apply(this.active.stack, arguments);
48720         this.allItems.push.apply(this.allItems,arguments);
48721         var r = [];
48722         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48723             if(a[i].isFormField){
48724                 r.push(a[i]);
48725             }
48726         }
48727         if(r.length > 0){
48728             Roo.form.Form.superclass.add.apply(this, r);
48729         }
48730         return this;
48731     },
48732     
48733
48734     
48735     
48736     
48737      /**
48738      * Find any element that has been added to a form, using it's ID or name
48739      * This can include framesets, columns etc. along with regular fields..
48740      * @param {String} id - id or name to find.
48741      
48742      * @return {Element} e - or false if nothing found.
48743      */
48744     findbyId : function(id)
48745     {
48746         var ret = false;
48747         if (!id) {
48748             return ret;
48749         }
48750         Roo.each(this.allItems, function(f){
48751             if (f.id == id || f.name == id ){
48752                 ret = f;
48753                 return false;
48754             }
48755         });
48756         return ret;
48757     },
48758
48759     
48760     
48761     /**
48762      * Render this form into the passed container. This should only be called once!
48763      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48764      * @return {Form} this
48765      */
48766     render : function(ct)
48767     {
48768         
48769         
48770         
48771         ct = Roo.get(ct);
48772         var o = this.autoCreate || {
48773             tag: 'form',
48774             method : this.method || 'POST',
48775             id : this.id || Roo.id()
48776         };
48777         this.initEl(ct.createChild(o));
48778
48779         this.root.render(this.el);
48780         
48781        
48782              
48783         this.items.each(function(f){
48784             f.render('x-form-el-'+f.id);
48785         });
48786
48787         if(this.buttons.length > 0){
48788             // tables are required to maintain order and for correct IE layout
48789             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48790                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48791                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48792             }}, null, true);
48793             var tr = tb.getElementsByTagName('tr')[0];
48794             for(var i = 0, len = this.buttons.length; i < len; i++) {
48795                 var b = this.buttons[i];
48796                 var td = document.createElement('td');
48797                 td.className = 'x-form-btn-td';
48798                 b.render(tr.appendChild(td));
48799             }
48800         }
48801         if(this.monitorValid){ // initialize after render
48802             this.startMonitoring();
48803         }
48804         this.fireEvent('rendered', this);
48805         return this;
48806     },
48807
48808     /**
48809      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48810      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48811      * object or a valid Roo.DomHelper element config
48812      * @param {Function} handler The function called when the button is clicked
48813      * @param {Object} scope (optional) The scope of the handler function
48814      * @return {Roo.Button}
48815      */
48816     addButton : function(config, handler, scope){
48817         var bc = {
48818             handler: handler,
48819             scope: scope,
48820             minWidth: this.minButtonWidth,
48821             hideParent:true
48822         };
48823         if(typeof config == "string"){
48824             bc.text = config;
48825         }else{
48826             Roo.apply(bc, config);
48827         }
48828         var btn = new Roo.Button(null, bc);
48829         this.buttons.push(btn);
48830         return btn;
48831     },
48832
48833      /**
48834      * Adds a series of form elements (using the xtype property as the factory method.
48835      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48836      * @param {Object} config 
48837      */
48838     
48839     addxtype : function()
48840     {
48841         var ar = Array.prototype.slice.call(arguments, 0);
48842         var ret = false;
48843         for(var i = 0; i < ar.length; i++) {
48844             if (!ar[i]) {
48845                 continue; // skip -- if this happends something invalid got sent, we 
48846                 // should ignore it, as basically that interface element will not show up
48847                 // and that should be pretty obvious!!
48848             }
48849             
48850             if (Roo.form[ar[i].xtype]) {
48851                 ar[i].form = this;
48852                 var fe = Roo.factory(ar[i], Roo.form);
48853                 if (!ret) {
48854                     ret = fe;
48855                 }
48856                 fe.form = this;
48857                 if (fe.store) {
48858                     fe.store.form = this;
48859                 }
48860                 if (fe.isLayout) {  
48861                          
48862                     this.start(fe);
48863                     this.allItems.push(fe);
48864                     if (fe.items && fe.addxtype) {
48865                         fe.addxtype.apply(fe, fe.items);
48866                         delete fe.items;
48867                     }
48868                      this.end();
48869                     continue;
48870                 }
48871                 
48872                 
48873                  
48874                 this.add(fe);
48875               //  console.log('adding ' + ar[i].xtype);
48876             }
48877             if (ar[i].xtype == 'Button') {  
48878                 //console.log('adding button');
48879                 //console.log(ar[i]);
48880                 this.addButton(ar[i]);
48881                 this.allItems.push(fe);
48882                 continue;
48883             }
48884             
48885             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48886                 alert('end is not supported on xtype any more, use items');
48887             //    this.end();
48888             //    //console.log('adding end');
48889             }
48890             
48891         }
48892         return ret;
48893     },
48894     
48895     /**
48896      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48897      * option "monitorValid"
48898      */
48899     startMonitoring : function(){
48900         if(!this.bound){
48901             this.bound = true;
48902             Roo.TaskMgr.start({
48903                 run : this.bindHandler,
48904                 interval : this.monitorPoll || 200,
48905                 scope: this
48906             });
48907         }
48908     },
48909
48910     /**
48911      * Stops monitoring of the valid state of this form
48912      */
48913     stopMonitoring : function(){
48914         this.bound = false;
48915     },
48916
48917     // private
48918     bindHandler : function(){
48919         if(!this.bound){
48920             return false; // stops binding
48921         }
48922         var valid = true;
48923         this.items.each(function(f){
48924             if(!f.isValid(true)){
48925                 valid = false;
48926                 return false;
48927             }
48928         });
48929         for(var i = 0, len = this.buttons.length; i < len; i++){
48930             var btn = this.buttons[i];
48931             if(btn.formBind === true && btn.disabled === valid){
48932                 btn.setDisabled(!valid);
48933             }
48934         }
48935         this.fireEvent('clientvalidation', this, valid);
48936     }
48937     
48938     
48939     
48940     
48941     
48942     
48943     
48944     
48945 });
48946
48947
48948 // back compat
48949 Roo.Form = Roo.form.Form;
48950 /*
48951  * Based on:
48952  * Ext JS Library 1.1.1
48953  * Copyright(c) 2006-2007, Ext JS, LLC.
48954  *
48955  * Originally Released Under LGPL - original licence link has changed is not relivant.
48956  *
48957  * Fork - LGPL
48958  * <script type="text/javascript">
48959  */
48960
48961 // as we use this in bootstrap.
48962 Roo.namespace('Roo.form');
48963  /**
48964  * @class Roo.form.Action
48965  * Internal Class used to handle form actions
48966  * @constructor
48967  * @param {Roo.form.BasicForm} el The form element or its id
48968  * @param {Object} config Configuration options
48969  */
48970
48971  
48972  
48973 // define the action interface
48974 Roo.form.Action = function(form, options){
48975     this.form = form;
48976     this.options = options || {};
48977 };
48978 /**
48979  * Client Validation Failed
48980  * @const 
48981  */
48982 Roo.form.Action.CLIENT_INVALID = 'client';
48983 /**
48984  * Server Validation Failed
48985  * @const 
48986  */
48987 Roo.form.Action.SERVER_INVALID = 'server';
48988  /**
48989  * Connect to Server Failed
48990  * @const 
48991  */
48992 Roo.form.Action.CONNECT_FAILURE = 'connect';
48993 /**
48994  * Reading Data from Server Failed
48995  * @const 
48996  */
48997 Roo.form.Action.LOAD_FAILURE = 'load';
48998
48999 Roo.form.Action.prototype = {
49000     type : 'default',
49001     failureType : undefined,
49002     response : undefined,
49003     result : undefined,
49004
49005     // interface method
49006     run : function(options){
49007
49008     },
49009
49010     // interface method
49011     success : function(response){
49012
49013     },
49014
49015     // interface method
49016     handleResponse : function(response){
49017
49018     },
49019
49020     // default connection failure
49021     failure : function(response){
49022         
49023         this.response = response;
49024         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49025         this.form.afterAction(this, false);
49026     },
49027
49028     processResponse : function(response){
49029         this.response = response;
49030         if(!response.responseText){
49031             return true;
49032         }
49033         this.result = this.handleResponse(response);
49034         return this.result;
49035     },
49036
49037     // utility functions used internally
49038     getUrl : function(appendParams){
49039         var url = this.options.url || this.form.url || this.form.el.dom.action;
49040         if(appendParams){
49041             var p = this.getParams();
49042             if(p){
49043                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
49044             }
49045         }
49046         return url;
49047     },
49048
49049     getMethod : function(){
49050         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
49051     },
49052
49053     getParams : function(){
49054         var bp = this.form.baseParams;
49055         var p = this.options.params;
49056         if(p){
49057             if(typeof p == "object"){
49058                 p = Roo.urlEncode(Roo.applyIf(p, bp));
49059             }else if(typeof p == 'string' && bp){
49060                 p += '&' + Roo.urlEncode(bp);
49061             }
49062         }else if(bp){
49063             p = Roo.urlEncode(bp);
49064         }
49065         return p;
49066     },
49067
49068     createCallback : function(){
49069         return {
49070             success: this.success,
49071             failure: this.failure,
49072             scope: this,
49073             timeout: (this.form.timeout*1000),
49074             upload: this.form.fileUpload ? this.success : undefined
49075         };
49076     }
49077 };
49078
49079 Roo.form.Action.Submit = function(form, options){
49080     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
49081 };
49082
49083 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
49084     type : 'submit',
49085
49086     haveProgress : false,
49087     uploadComplete : false,
49088     
49089     // uploadProgress indicator.
49090     uploadProgress : function()
49091     {
49092         if (!this.form.progressUrl) {
49093             return;
49094         }
49095         
49096         if (!this.haveProgress) {
49097             Roo.MessageBox.progress("Uploading", "Uploading");
49098         }
49099         if (this.uploadComplete) {
49100            Roo.MessageBox.hide();
49101            return;
49102         }
49103         
49104         this.haveProgress = true;
49105    
49106         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
49107         
49108         var c = new Roo.data.Connection();
49109         c.request({
49110             url : this.form.progressUrl,
49111             params: {
49112                 id : uid
49113             },
49114             method: 'GET',
49115             success : function(req){
49116                //console.log(data);
49117                 var rdata = false;
49118                 var edata;
49119                 try  {
49120                    rdata = Roo.decode(req.responseText)
49121                 } catch (e) {
49122                     Roo.log("Invalid data from server..");
49123                     Roo.log(edata);
49124                     return;
49125                 }
49126                 if (!rdata || !rdata.success) {
49127                     Roo.log(rdata);
49128                     Roo.MessageBox.alert(Roo.encode(rdata));
49129                     return;
49130                 }
49131                 var data = rdata.data;
49132                 
49133                 if (this.uploadComplete) {
49134                    Roo.MessageBox.hide();
49135                    return;
49136                 }
49137                    
49138                 if (data){
49139                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
49140                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
49141                     );
49142                 }
49143                 this.uploadProgress.defer(2000,this);
49144             },
49145        
49146             failure: function(data) {
49147                 Roo.log('progress url failed ');
49148                 Roo.log(data);
49149             },
49150             scope : this
49151         });
49152            
49153     },
49154     
49155     
49156     run : function()
49157     {
49158         // run get Values on the form, so it syncs any secondary forms.
49159         this.form.getValues();
49160         
49161         var o = this.options;
49162         var method = this.getMethod();
49163         var isPost = method == 'POST';
49164         if(o.clientValidation === false || this.form.isValid()){
49165             
49166             if (this.form.progressUrl) {
49167                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
49168                     (new Date() * 1) + '' + Math.random());
49169                     
49170             } 
49171             
49172             
49173             Roo.Ajax.request(Roo.apply(this.createCallback(), {
49174                 form:this.form.el.dom,
49175                 url:this.getUrl(!isPost),
49176                 method: method,
49177                 params:isPost ? this.getParams() : null,
49178                 isUpload: this.form.fileUpload,
49179                 formData : this.form.formData
49180             }));
49181             
49182             this.uploadProgress();
49183
49184         }else if (o.clientValidation !== false){ // client validation failed
49185             this.failureType = Roo.form.Action.CLIENT_INVALID;
49186             this.form.afterAction(this, false);
49187         }
49188     },
49189
49190     success : function(response)
49191     {
49192         this.uploadComplete= true;
49193         if (this.haveProgress) {
49194             Roo.MessageBox.hide();
49195         }
49196         
49197         
49198         var result = this.processResponse(response);
49199         if(result === true || result.success){
49200             this.form.afterAction(this, true);
49201             return;
49202         }
49203         if(result.errors){
49204             this.form.markInvalid(result.errors);
49205             this.failureType = Roo.form.Action.SERVER_INVALID;
49206         }
49207         this.form.afterAction(this, false);
49208     },
49209     failure : function(response)
49210     {
49211         this.uploadComplete= true;
49212         if (this.haveProgress) {
49213             Roo.MessageBox.hide();
49214         }
49215         
49216         this.response = response;
49217         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49218         this.form.afterAction(this, false);
49219     },
49220     
49221     handleResponse : function(response){
49222         if(this.form.errorReader){
49223             var rs = this.form.errorReader.read(response);
49224             var errors = [];
49225             if(rs.records){
49226                 for(var i = 0, len = rs.records.length; i < len; i++) {
49227                     var r = rs.records[i];
49228                     errors[i] = r.data;
49229                 }
49230             }
49231             if(errors.length < 1){
49232                 errors = null;
49233             }
49234             return {
49235                 success : rs.success,
49236                 errors : errors
49237             };
49238         }
49239         var ret = false;
49240         try {
49241             ret = Roo.decode(response.responseText);
49242         } catch (e) {
49243             ret = {
49244                 success: false,
49245                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49246                 errors : []
49247             };
49248         }
49249         return ret;
49250         
49251     }
49252 });
49253
49254
49255 Roo.form.Action.Load = function(form, options){
49256     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49257     this.reader = this.form.reader;
49258 };
49259
49260 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49261     type : 'load',
49262
49263     run : function(){
49264         
49265         Roo.Ajax.request(Roo.apply(
49266                 this.createCallback(), {
49267                     method:this.getMethod(),
49268                     url:this.getUrl(false),
49269                     params:this.getParams()
49270         }));
49271     },
49272
49273     success : function(response){
49274         
49275         var result = this.processResponse(response);
49276         if(result === true || !result.success || !result.data){
49277             this.failureType = Roo.form.Action.LOAD_FAILURE;
49278             this.form.afterAction(this, false);
49279             return;
49280         }
49281         this.form.clearInvalid();
49282         this.form.setValues(result.data);
49283         this.form.afterAction(this, true);
49284     },
49285
49286     handleResponse : function(response){
49287         if(this.form.reader){
49288             var rs = this.form.reader.read(response);
49289             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49290             return {
49291                 success : rs.success,
49292                 data : data
49293             };
49294         }
49295         return Roo.decode(response.responseText);
49296     }
49297 });
49298
49299 Roo.form.Action.ACTION_TYPES = {
49300     'load' : Roo.form.Action.Load,
49301     'submit' : Roo.form.Action.Submit
49302 };/*
49303  * Based on:
49304  * Ext JS Library 1.1.1
49305  * Copyright(c) 2006-2007, Ext JS, LLC.
49306  *
49307  * Originally Released Under LGPL - original licence link has changed is not relivant.
49308  *
49309  * Fork - LGPL
49310  * <script type="text/javascript">
49311  */
49312  
49313 /**
49314  * @class Roo.form.Layout
49315  * @extends Roo.Component
49316  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
49317  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49318  * @constructor
49319  * @param {Object} config Configuration options
49320  */
49321 Roo.form.Layout = function(config){
49322     var xitems = [];
49323     if (config.items) {
49324         xitems = config.items;
49325         delete config.items;
49326     }
49327     Roo.form.Layout.superclass.constructor.call(this, config);
49328     this.stack = [];
49329     Roo.each(xitems, this.addxtype, this);
49330      
49331 };
49332
49333 Roo.extend(Roo.form.Layout, Roo.Component, {
49334     /**
49335      * @cfg {String/Object} autoCreate
49336      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49337      */
49338     /**
49339      * @cfg {String/Object/Function} style
49340      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49341      * a function which returns such a specification.
49342      */
49343     /**
49344      * @cfg {String} labelAlign
49345      * Valid values are "left," "top" and "right" (defaults to "left")
49346      */
49347     /**
49348      * @cfg {Number} labelWidth
49349      * Fixed width in pixels of all field labels (defaults to undefined)
49350      */
49351     /**
49352      * @cfg {Boolean} clear
49353      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49354      */
49355     clear : true,
49356     /**
49357      * @cfg {String} labelSeparator
49358      * The separator to use after field labels (defaults to ':')
49359      */
49360     labelSeparator : ':',
49361     /**
49362      * @cfg {Boolean} hideLabels
49363      * True to suppress the display of field labels in this layout (defaults to false)
49364      */
49365     hideLabels : false,
49366
49367     // private
49368     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49369     
49370     isLayout : true,
49371     
49372     // private
49373     onRender : function(ct, position){
49374         if(this.el){ // from markup
49375             this.el = Roo.get(this.el);
49376         }else {  // generate
49377             var cfg = this.getAutoCreate();
49378             this.el = ct.createChild(cfg, position);
49379         }
49380         if(this.style){
49381             this.el.applyStyles(this.style);
49382         }
49383         if(this.labelAlign){
49384             this.el.addClass('x-form-label-'+this.labelAlign);
49385         }
49386         if(this.hideLabels){
49387             this.labelStyle = "display:none";
49388             this.elementStyle = "padding-left:0;";
49389         }else{
49390             if(typeof this.labelWidth == 'number'){
49391                 this.labelStyle = "width:"+this.labelWidth+"px;";
49392                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49393             }
49394             if(this.labelAlign == 'top'){
49395                 this.labelStyle = "width:auto;";
49396                 this.elementStyle = "padding-left:0;";
49397             }
49398         }
49399         var stack = this.stack;
49400         var slen = stack.length;
49401         if(slen > 0){
49402             if(!this.fieldTpl){
49403                 var t = new Roo.Template(
49404                     '<div class="x-form-item {5}">',
49405                         '<label for="{0}" style="{2}">{1}{4}</label>',
49406                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49407                         '</div>',
49408                     '</div><div class="x-form-clear-left"></div>'
49409                 );
49410                 t.disableFormats = true;
49411                 t.compile();
49412                 Roo.form.Layout.prototype.fieldTpl = t;
49413             }
49414             for(var i = 0; i < slen; i++) {
49415                 if(stack[i].isFormField){
49416                     this.renderField(stack[i]);
49417                 }else{
49418                     this.renderComponent(stack[i]);
49419                 }
49420             }
49421         }
49422         if(this.clear){
49423             this.el.createChild({cls:'x-form-clear'});
49424         }
49425     },
49426
49427     // private
49428     renderField : function(f){
49429         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49430                f.id, //0
49431                f.fieldLabel, //1
49432                f.labelStyle||this.labelStyle||'', //2
49433                this.elementStyle||'', //3
49434                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49435                f.itemCls||this.itemCls||''  //5
49436        ], true).getPrevSibling());
49437     },
49438
49439     // private
49440     renderComponent : function(c){
49441         c.render(c.isLayout ? this.el : this.el.createChild());    
49442     },
49443     /**
49444      * Adds a object form elements (using the xtype property as the factory method.)
49445      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49446      * @param {Object} config 
49447      */
49448     addxtype : function(o)
49449     {
49450         // create the lement.
49451         o.form = this.form;
49452         var fe = Roo.factory(o, Roo.form);
49453         this.form.allItems.push(fe);
49454         this.stack.push(fe);
49455         
49456         if (fe.isFormField) {
49457             this.form.items.add(fe);
49458         }
49459          
49460         return fe;
49461     }
49462 });
49463
49464 /**
49465  * @class Roo.form.Column
49466  * @extends Roo.form.Layout
49467  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49468  * @constructor
49469  * @param {Object} config Configuration options
49470  */
49471 Roo.form.Column = function(config){
49472     Roo.form.Column.superclass.constructor.call(this, config);
49473 };
49474
49475 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49476     /**
49477      * @cfg {Number/String} width
49478      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49479      */
49480     /**
49481      * @cfg {String/Object} autoCreate
49482      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49483      */
49484
49485     // private
49486     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49487
49488     // private
49489     onRender : function(ct, position){
49490         Roo.form.Column.superclass.onRender.call(this, ct, position);
49491         if(this.width){
49492             this.el.setWidth(this.width);
49493         }
49494     }
49495 });
49496
49497
49498 /**
49499  * @class Roo.form.Row
49500  * @extends Roo.form.Layout
49501  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
49502  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49503  * @constructor
49504  * @param {Object} config Configuration options
49505  */
49506
49507  
49508 Roo.form.Row = function(config){
49509     Roo.form.Row.superclass.constructor.call(this, config);
49510 };
49511  
49512 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49513       /**
49514      * @cfg {Number/String} width
49515      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49516      */
49517     /**
49518      * @cfg {Number/String} height
49519      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49520      */
49521     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49522     
49523     padWidth : 20,
49524     // private
49525     onRender : function(ct, position){
49526         //console.log('row render');
49527         if(!this.rowTpl){
49528             var t = new Roo.Template(
49529                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49530                     '<label for="{0}" style="{2}">{1}{4}</label>',
49531                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49532                     '</div>',
49533                 '</div>'
49534             );
49535             t.disableFormats = true;
49536             t.compile();
49537             Roo.form.Layout.prototype.rowTpl = t;
49538         }
49539         this.fieldTpl = this.rowTpl;
49540         
49541         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49542         var labelWidth = 100;
49543         
49544         if ((this.labelAlign != 'top')) {
49545             if (typeof this.labelWidth == 'number') {
49546                 labelWidth = this.labelWidth
49547             }
49548             this.padWidth =  20 + labelWidth;
49549             
49550         }
49551         
49552         Roo.form.Column.superclass.onRender.call(this, ct, position);
49553         if(this.width){
49554             this.el.setWidth(this.width);
49555         }
49556         if(this.height){
49557             this.el.setHeight(this.height);
49558         }
49559     },
49560     
49561     // private
49562     renderField : function(f){
49563         f.fieldEl = this.fieldTpl.append(this.el, [
49564                f.id, f.fieldLabel,
49565                f.labelStyle||this.labelStyle||'',
49566                this.elementStyle||'',
49567                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49568                f.itemCls||this.itemCls||'',
49569                f.width ? f.width + this.padWidth : 160 + this.padWidth
49570        ],true);
49571     }
49572 });
49573  
49574
49575 /**
49576  * @class Roo.form.FieldSet
49577  * @extends Roo.form.Layout
49578  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
49579  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49580  * @constructor
49581  * @param {Object} config Configuration options
49582  */
49583 Roo.form.FieldSet = function(config){
49584     Roo.form.FieldSet.superclass.constructor.call(this, config);
49585 };
49586
49587 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49588     /**
49589      * @cfg {String} legend
49590      * The text to display as the legend for the FieldSet (defaults to '')
49591      */
49592     /**
49593      * @cfg {String/Object} autoCreate
49594      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49595      */
49596
49597     // private
49598     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49599
49600     // private
49601     onRender : function(ct, position){
49602         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49603         if(this.legend){
49604             this.setLegend(this.legend);
49605         }
49606     },
49607
49608     // private
49609     setLegend : function(text){
49610         if(this.rendered){
49611             this.el.child('legend').update(text);
49612         }
49613     }
49614 });/*
49615  * Based on:
49616  * Ext JS Library 1.1.1
49617  * Copyright(c) 2006-2007, Ext JS, LLC.
49618  *
49619  * Originally Released Under LGPL - original licence link has changed is not relivant.
49620  *
49621  * Fork - LGPL
49622  * <script type="text/javascript">
49623  */
49624 /**
49625  * @class Roo.form.VTypes
49626  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49627  * @singleton
49628  */
49629 Roo.form.VTypes = function(){
49630     // closure these in so they are only created once.
49631     var alpha = /^[a-zA-Z_]+$/;
49632     var alphanum = /^[a-zA-Z0-9_]+$/;
49633     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49634     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49635
49636     // All these messages and functions are configurable
49637     return {
49638         /**
49639          * The function used to validate email addresses
49640          * @param {String} value The email address
49641          */
49642         'email' : function(v){
49643             return email.test(v);
49644         },
49645         /**
49646          * The error text to display when the email validation function returns false
49647          * @type String
49648          */
49649         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49650         /**
49651          * The keystroke filter mask to be applied on email input
49652          * @type RegExp
49653          */
49654         'emailMask' : /[a-z0-9_\.\-@]/i,
49655
49656         /**
49657          * The function used to validate URLs
49658          * @param {String} value The URL
49659          */
49660         'url' : function(v){
49661             return url.test(v);
49662         },
49663         /**
49664          * The error text to display when the url validation function returns false
49665          * @type String
49666          */
49667         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49668         
49669         /**
49670          * The function used to validate alpha values
49671          * @param {String} value The value
49672          */
49673         'alpha' : function(v){
49674             return alpha.test(v);
49675         },
49676         /**
49677          * The error text to display when the alpha validation function returns false
49678          * @type String
49679          */
49680         'alphaText' : 'This field should only contain letters and _',
49681         /**
49682          * The keystroke filter mask to be applied on alpha input
49683          * @type RegExp
49684          */
49685         'alphaMask' : /[a-z_]/i,
49686
49687         /**
49688          * The function used to validate alphanumeric values
49689          * @param {String} value The value
49690          */
49691         'alphanum' : function(v){
49692             return alphanum.test(v);
49693         },
49694         /**
49695          * The error text to display when the alphanumeric validation function returns false
49696          * @type String
49697          */
49698         'alphanumText' : 'This field should only contain letters, numbers and _',
49699         /**
49700          * The keystroke filter mask to be applied on alphanumeric input
49701          * @type RegExp
49702          */
49703         'alphanumMask' : /[a-z0-9_]/i
49704     };
49705 }();//<script type="text/javascript">
49706
49707 /**
49708  * @class Roo.form.FCKeditor
49709  * @extends Roo.form.TextArea
49710  * Wrapper around the FCKEditor http://www.fckeditor.net
49711  * @constructor
49712  * Creates a new FCKeditor
49713  * @param {Object} config Configuration options
49714  */
49715 Roo.form.FCKeditor = function(config){
49716     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49717     this.addEvents({
49718          /**
49719          * @event editorinit
49720          * Fired when the editor is initialized - you can add extra handlers here..
49721          * @param {FCKeditor} this
49722          * @param {Object} the FCK object.
49723          */
49724         editorinit : true
49725     });
49726     
49727     
49728 };
49729 Roo.form.FCKeditor.editors = { };
49730 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49731 {
49732     //defaultAutoCreate : {
49733     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49734     //},
49735     // private
49736     /**
49737      * @cfg {Object} fck options - see fck manual for details.
49738      */
49739     fckconfig : false,
49740     
49741     /**
49742      * @cfg {Object} fck toolbar set (Basic or Default)
49743      */
49744     toolbarSet : 'Basic',
49745     /**
49746      * @cfg {Object} fck BasePath
49747      */ 
49748     basePath : '/fckeditor/',
49749     
49750     
49751     frame : false,
49752     
49753     value : '',
49754     
49755    
49756     onRender : function(ct, position)
49757     {
49758         if(!this.el){
49759             this.defaultAutoCreate = {
49760                 tag: "textarea",
49761                 style:"width:300px;height:60px;",
49762                 autocomplete: "new-password"
49763             };
49764         }
49765         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49766         /*
49767         if(this.grow){
49768             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49769             if(this.preventScrollbars){
49770                 this.el.setStyle("overflow", "hidden");
49771             }
49772             this.el.setHeight(this.growMin);
49773         }
49774         */
49775         //console.log('onrender' + this.getId() );
49776         Roo.form.FCKeditor.editors[this.getId()] = this;
49777          
49778
49779         this.replaceTextarea() ;
49780         
49781     },
49782     
49783     getEditor : function() {
49784         return this.fckEditor;
49785     },
49786     /**
49787      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49788      * @param {Mixed} value The value to set
49789      */
49790     
49791     
49792     setValue : function(value)
49793     {
49794         //console.log('setValue: ' + value);
49795         
49796         if(typeof(value) == 'undefined') { // not sure why this is happending...
49797             return;
49798         }
49799         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49800         
49801         //if(!this.el || !this.getEditor()) {
49802         //    this.value = value;
49803             //this.setValue.defer(100,this,[value]);    
49804         //    return;
49805         //} 
49806         
49807         if(!this.getEditor()) {
49808             return;
49809         }
49810         
49811         this.getEditor().SetData(value);
49812         
49813         //
49814
49815     },
49816
49817     /**
49818      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49819      * @return {Mixed} value The field value
49820      */
49821     getValue : function()
49822     {
49823         
49824         if (this.frame && this.frame.dom.style.display == 'none') {
49825             return Roo.form.FCKeditor.superclass.getValue.call(this);
49826         }
49827         
49828         if(!this.el || !this.getEditor()) {
49829            
49830            // this.getValue.defer(100,this); 
49831             return this.value;
49832         }
49833        
49834         
49835         var value=this.getEditor().GetData();
49836         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49837         return Roo.form.FCKeditor.superclass.getValue.call(this);
49838         
49839
49840     },
49841
49842     /**
49843      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49844      * @return {Mixed} value The field value
49845      */
49846     getRawValue : function()
49847     {
49848         if (this.frame && this.frame.dom.style.display == 'none') {
49849             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49850         }
49851         
49852         if(!this.el || !this.getEditor()) {
49853             //this.getRawValue.defer(100,this); 
49854             return this.value;
49855             return;
49856         }
49857         
49858         
49859         
49860         var value=this.getEditor().GetData();
49861         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49862         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49863          
49864     },
49865     
49866     setSize : function(w,h) {
49867         
49868         
49869         
49870         //if (this.frame && this.frame.dom.style.display == 'none') {
49871         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49872         //    return;
49873         //}
49874         //if(!this.el || !this.getEditor()) {
49875         //    this.setSize.defer(100,this, [w,h]); 
49876         //    return;
49877         //}
49878         
49879         
49880         
49881         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49882         
49883         this.frame.dom.setAttribute('width', w);
49884         this.frame.dom.setAttribute('height', h);
49885         this.frame.setSize(w,h);
49886         
49887     },
49888     
49889     toggleSourceEdit : function(value) {
49890         
49891       
49892          
49893         this.el.dom.style.display = value ? '' : 'none';
49894         this.frame.dom.style.display = value ?  'none' : '';
49895         
49896     },
49897     
49898     
49899     focus: function(tag)
49900     {
49901         if (this.frame.dom.style.display == 'none') {
49902             return Roo.form.FCKeditor.superclass.focus.call(this);
49903         }
49904         if(!this.el || !this.getEditor()) {
49905             this.focus.defer(100,this, [tag]); 
49906             return;
49907         }
49908         
49909         
49910         
49911         
49912         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49913         this.getEditor().Focus();
49914         if (tgs.length) {
49915             if (!this.getEditor().Selection.GetSelection()) {
49916                 this.focus.defer(100,this, [tag]); 
49917                 return;
49918             }
49919             
49920             
49921             var r = this.getEditor().EditorDocument.createRange();
49922             r.setStart(tgs[0],0);
49923             r.setEnd(tgs[0],0);
49924             this.getEditor().Selection.GetSelection().removeAllRanges();
49925             this.getEditor().Selection.GetSelection().addRange(r);
49926             this.getEditor().Focus();
49927         }
49928         
49929     },
49930     
49931     
49932     
49933     replaceTextarea : function()
49934     {
49935         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49936             return ;
49937         }
49938         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49939         //{
49940             // We must check the elements firstly using the Id and then the name.
49941         var oTextarea = document.getElementById( this.getId() );
49942         
49943         var colElementsByName = document.getElementsByName( this.getId() ) ;
49944          
49945         oTextarea.style.display = 'none' ;
49946
49947         if ( oTextarea.tabIndex ) {            
49948             this.TabIndex = oTextarea.tabIndex ;
49949         }
49950         
49951         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49952         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49953         this.frame = Roo.get(this.getId() + '___Frame')
49954     },
49955     
49956     _getConfigHtml : function()
49957     {
49958         var sConfig = '' ;
49959
49960         for ( var o in this.fckconfig ) {
49961             sConfig += sConfig.length > 0  ? '&amp;' : '';
49962             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49963         }
49964
49965         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49966     },
49967     
49968     
49969     _getIFrameHtml : function()
49970     {
49971         var sFile = 'fckeditor.html' ;
49972         /* no idea what this is about..
49973         try
49974         {
49975             if ( (/fcksource=true/i).test( window.top.location.search ) )
49976                 sFile = 'fckeditor.original.html' ;
49977         }
49978         catch (e) { 
49979         */
49980
49981         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49982         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49983         
49984         
49985         var html = '<iframe id="' + this.getId() +
49986             '___Frame" src="' + sLink +
49987             '" width="' + this.width +
49988             '" height="' + this.height + '"' +
49989             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49990             ' frameborder="0" scrolling="no"></iframe>' ;
49991
49992         return html ;
49993     },
49994     
49995     _insertHtmlBefore : function( html, element )
49996     {
49997         if ( element.insertAdjacentHTML )       {
49998             // IE
49999             element.insertAdjacentHTML( 'beforeBegin', html ) ;
50000         } else { // Gecko
50001             var oRange = document.createRange() ;
50002             oRange.setStartBefore( element ) ;
50003             var oFragment = oRange.createContextualFragment( html );
50004             element.parentNode.insertBefore( oFragment, element ) ;
50005         }
50006     }
50007     
50008     
50009   
50010     
50011     
50012     
50013     
50014
50015 });
50016
50017 //Roo.reg('fckeditor', Roo.form.FCKeditor);
50018
50019 function FCKeditor_OnComplete(editorInstance){
50020     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
50021     f.fckEditor = editorInstance;
50022     //console.log("loaded");
50023     f.fireEvent('editorinit', f, editorInstance);
50024
50025   
50026
50027  
50028
50029
50030
50031
50032
50033
50034
50035
50036
50037
50038
50039
50040
50041
50042
50043 //<script type="text/javascript">
50044 /**
50045  * @class Roo.form.GridField
50046  * @extends Roo.form.Field
50047  * Embed a grid (or editable grid into a form)
50048  * STATUS ALPHA
50049  * 
50050  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
50051  * it needs 
50052  * xgrid.store = Roo.data.Store
50053  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
50054  * xgrid.store.reader = Roo.data.JsonReader 
50055  * 
50056  * 
50057  * @constructor
50058  * Creates a new GridField
50059  * @param {Object} config Configuration options
50060  */
50061 Roo.form.GridField = function(config){
50062     Roo.form.GridField.superclass.constructor.call(this, config);
50063      
50064 };
50065
50066 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
50067     /**
50068      * @cfg {Number} width  - used to restrict width of grid..
50069      */
50070     width : 100,
50071     /**
50072      * @cfg {Number} height - used to restrict height of grid..
50073      */
50074     height : 50,
50075      /**
50076      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
50077          * 
50078          *}
50079      */
50080     xgrid : false, 
50081     /**
50082      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50083      * {tag: "input", type: "checkbox", autocomplete: "off"})
50084      */
50085    // defaultAutoCreate : { tag: 'div' },
50086     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
50087     /**
50088      * @cfg {String} addTitle Text to include for adding a title.
50089      */
50090     addTitle : false,
50091     //
50092     onResize : function(){
50093         Roo.form.Field.superclass.onResize.apply(this, arguments);
50094     },
50095
50096     initEvents : function(){
50097         // Roo.form.Checkbox.superclass.initEvents.call(this);
50098         // has no events...
50099        
50100     },
50101
50102
50103     getResizeEl : function(){
50104         return this.wrap;
50105     },
50106
50107     getPositionEl : function(){
50108         return this.wrap;
50109     },
50110
50111     // private
50112     onRender : function(ct, position){
50113         
50114         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
50115         var style = this.style;
50116         delete this.style;
50117         
50118         Roo.form.GridField.superclass.onRender.call(this, ct, position);
50119         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
50120         this.viewEl = this.wrap.createChild({ tag: 'div' });
50121         if (style) {
50122             this.viewEl.applyStyles(style);
50123         }
50124         if (this.width) {
50125             this.viewEl.setWidth(this.width);
50126         }
50127         if (this.height) {
50128             this.viewEl.setHeight(this.height);
50129         }
50130         //if(this.inputValue !== undefined){
50131         //this.setValue(this.value);
50132         
50133         
50134         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
50135         
50136         
50137         this.grid.render();
50138         this.grid.getDataSource().on('remove', this.refreshValue, this);
50139         this.grid.getDataSource().on('update', this.refreshValue, this);
50140         this.grid.on('afteredit', this.refreshValue, this);
50141  
50142     },
50143      
50144     
50145     /**
50146      * Sets the value of the item. 
50147      * @param {String} either an object  or a string..
50148      */
50149     setValue : function(v){
50150         //this.value = v;
50151         v = v || []; // empty set..
50152         // this does not seem smart - it really only affects memoryproxy grids..
50153         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
50154             var ds = this.grid.getDataSource();
50155             // assumes a json reader..
50156             var data = {}
50157             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
50158             ds.loadData( data);
50159         }
50160         // clear selection so it does not get stale.
50161         if (this.grid.sm) { 
50162             this.grid.sm.clearSelections();
50163         }
50164         
50165         Roo.form.GridField.superclass.setValue.call(this, v);
50166         this.refreshValue();
50167         // should load data in the grid really....
50168     },
50169     
50170     // private
50171     refreshValue: function() {
50172          var val = [];
50173         this.grid.getDataSource().each(function(r) {
50174             val.push(r.data);
50175         });
50176         this.el.dom.value = Roo.encode(val);
50177     }
50178     
50179      
50180     
50181     
50182 });/*
50183  * Based on:
50184  * Ext JS Library 1.1.1
50185  * Copyright(c) 2006-2007, Ext JS, LLC.
50186  *
50187  * Originally Released Under LGPL - original licence link has changed is not relivant.
50188  *
50189  * Fork - LGPL
50190  * <script type="text/javascript">
50191  */
50192 /**
50193  * @class Roo.form.DisplayField
50194  * @extends Roo.form.Field
50195  * A generic Field to display non-editable data.
50196  * @cfg {Boolean} closable (true|false) default false
50197  * @constructor
50198  * Creates a new Display Field item.
50199  * @param {Object} config Configuration options
50200  */
50201 Roo.form.DisplayField = function(config){
50202     Roo.form.DisplayField.superclass.constructor.call(this, config);
50203     
50204     this.addEvents({
50205         /**
50206          * @event close
50207          * Fires after the click the close btn
50208              * @param {Roo.form.DisplayField} this
50209              */
50210         close : true
50211     });
50212 };
50213
50214 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50215     inputType:      'hidden',
50216     allowBlank:     true,
50217     readOnly:         true,
50218     
50219  
50220     /**
50221      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50222      */
50223     focusClass : undefined,
50224     /**
50225      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50226      */
50227     fieldClass: 'x-form-field',
50228     
50229      /**
50230      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50231      */
50232     valueRenderer: undefined,
50233     
50234     width: 100,
50235     /**
50236      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50237      * {tag: "input", type: "checkbox", autocomplete: "off"})
50238      */
50239      
50240  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50241  
50242     closable : false,
50243     
50244     onResize : function(){
50245         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50246         
50247     },
50248
50249     initEvents : function(){
50250         // Roo.form.Checkbox.superclass.initEvents.call(this);
50251         // has no events...
50252         
50253         if(this.closable){
50254             this.closeEl.on('click', this.onClose, this);
50255         }
50256        
50257     },
50258
50259
50260     getResizeEl : function(){
50261         return this.wrap;
50262     },
50263
50264     getPositionEl : function(){
50265         return this.wrap;
50266     },
50267
50268     // private
50269     onRender : function(ct, position){
50270         
50271         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50272         //if(this.inputValue !== undefined){
50273         this.wrap = this.el.wrap();
50274         
50275         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50276         
50277         if(this.closable){
50278             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50279         }
50280         
50281         if (this.bodyStyle) {
50282             this.viewEl.applyStyles(this.bodyStyle);
50283         }
50284         //this.viewEl.setStyle('padding', '2px');
50285         
50286         this.setValue(this.value);
50287         
50288     },
50289 /*
50290     // private
50291     initValue : Roo.emptyFn,
50292
50293   */
50294
50295         // private
50296     onClick : function(){
50297         
50298     },
50299
50300     /**
50301      * Sets the checked state of the checkbox.
50302      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50303      */
50304     setValue : function(v){
50305         this.value = v;
50306         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50307         // this might be called before we have a dom element..
50308         if (!this.viewEl) {
50309             return;
50310         }
50311         this.viewEl.dom.innerHTML = html;
50312         Roo.form.DisplayField.superclass.setValue.call(this, v);
50313
50314     },
50315     
50316     onClose : function(e)
50317     {
50318         e.preventDefault();
50319         
50320         this.fireEvent('close', this);
50321     }
50322 });/*
50323  * 
50324  * Licence- LGPL
50325  * 
50326  */
50327
50328 /**
50329  * @class Roo.form.DayPicker
50330  * @extends Roo.form.Field
50331  * A Day picker show [M] [T] [W] ....
50332  * @constructor
50333  * Creates a new Day Picker
50334  * @param {Object} config Configuration options
50335  */
50336 Roo.form.DayPicker= function(config){
50337     Roo.form.DayPicker.superclass.constructor.call(this, config);
50338      
50339 };
50340
50341 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50342     /**
50343      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50344      */
50345     focusClass : undefined,
50346     /**
50347      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50348      */
50349     fieldClass: "x-form-field",
50350    
50351     /**
50352      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50353      * {tag: "input", type: "checkbox", autocomplete: "off"})
50354      */
50355     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50356     
50357    
50358     actionMode : 'viewEl', 
50359     //
50360     // private
50361  
50362     inputType : 'hidden',
50363     
50364      
50365     inputElement: false, // real input element?
50366     basedOn: false, // ????
50367     
50368     isFormField: true, // not sure where this is needed!!!!
50369
50370     onResize : function(){
50371         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50372         if(!this.boxLabel){
50373             this.el.alignTo(this.wrap, 'c-c');
50374         }
50375     },
50376
50377     initEvents : function(){
50378         Roo.form.Checkbox.superclass.initEvents.call(this);
50379         this.el.on("click", this.onClick,  this);
50380         this.el.on("change", this.onClick,  this);
50381     },
50382
50383
50384     getResizeEl : function(){
50385         return this.wrap;
50386     },
50387
50388     getPositionEl : function(){
50389         return this.wrap;
50390     },
50391
50392     
50393     // private
50394     onRender : function(ct, position){
50395         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50396        
50397         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50398         
50399         var r1 = '<table><tr>';
50400         var r2 = '<tr class="x-form-daypick-icons">';
50401         for (var i=0; i < 7; i++) {
50402             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50403             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50404         }
50405         
50406         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50407         viewEl.select('img').on('click', this.onClick, this);
50408         this.viewEl = viewEl;   
50409         
50410         
50411         // this will not work on Chrome!!!
50412         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50413         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50414         
50415         
50416           
50417
50418     },
50419
50420     // private
50421     initValue : Roo.emptyFn,
50422
50423     /**
50424      * Returns the checked state of the checkbox.
50425      * @return {Boolean} True if checked, else false
50426      */
50427     getValue : function(){
50428         return this.el.dom.value;
50429         
50430     },
50431
50432         // private
50433     onClick : function(e){ 
50434         //this.setChecked(!this.checked);
50435         Roo.get(e.target).toggleClass('x-menu-item-checked');
50436         this.refreshValue();
50437         //if(this.el.dom.checked != this.checked){
50438         //    this.setValue(this.el.dom.checked);
50439        // }
50440     },
50441     
50442     // private
50443     refreshValue : function()
50444     {
50445         var val = '';
50446         this.viewEl.select('img',true).each(function(e,i,n)  {
50447             val += e.is(".x-menu-item-checked") ? String(n) : '';
50448         });
50449         this.setValue(val, true);
50450     },
50451
50452     /**
50453      * Sets the checked state of the checkbox.
50454      * On is always based on a string comparison between inputValue and the param.
50455      * @param {Boolean/String} value - the value to set 
50456      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50457      */
50458     setValue : function(v,suppressEvent){
50459         if (!this.el.dom) {
50460             return;
50461         }
50462         var old = this.el.dom.value ;
50463         this.el.dom.value = v;
50464         if (suppressEvent) {
50465             return ;
50466         }
50467          
50468         // update display..
50469         this.viewEl.select('img',true).each(function(e,i,n)  {
50470             
50471             var on = e.is(".x-menu-item-checked");
50472             var newv = v.indexOf(String(n)) > -1;
50473             if (on != newv) {
50474                 e.toggleClass('x-menu-item-checked');
50475             }
50476             
50477         });
50478         
50479         
50480         this.fireEvent('change', this, v, old);
50481         
50482         
50483     },
50484    
50485     // handle setting of hidden value by some other method!!?!?
50486     setFromHidden: function()
50487     {
50488         if(!this.el){
50489             return;
50490         }
50491         //console.log("SET FROM HIDDEN");
50492         //alert('setFrom hidden');
50493         this.setValue(this.el.dom.value);
50494     },
50495     
50496     onDestroy : function()
50497     {
50498         if(this.viewEl){
50499             Roo.get(this.viewEl).remove();
50500         }
50501          
50502         Roo.form.DayPicker.superclass.onDestroy.call(this);
50503     }
50504
50505 });/*
50506  * RooJS Library 1.1.1
50507  * Copyright(c) 2008-2011  Alan Knowles
50508  *
50509  * License - LGPL
50510  */
50511  
50512
50513 /**
50514  * @class Roo.form.ComboCheck
50515  * @extends Roo.form.ComboBox
50516  * A combobox for multiple select items.
50517  *
50518  * FIXME - could do with a reset button..
50519  * 
50520  * @constructor
50521  * Create a new ComboCheck
50522  * @param {Object} config Configuration options
50523  */
50524 Roo.form.ComboCheck = function(config){
50525     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50526     // should verify some data...
50527     // like
50528     // hiddenName = required..
50529     // displayField = required
50530     // valudField == required
50531     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50532     var _t = this;
50533     Roo.each(req, function(e) {
50534         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50535             throw "Roo.form.ComboCheck : missing value for: " + e;
50536         }
50537     });
50538     
50539     
50540 };
50541
50542 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50543      
50544      
50545     editable : false,
50546      
50547     selectedClass: 'x-menu-item-checked', 
50548     
50549     // private
50550     onRender : function(ct, position){
50551         var _t = this;
50552         
50553         
50554         
50555         if(!this.tpl){
50556             var cls = 'x-combo-list';
50557
50558             
50559             this.tpl =  new Roo.Template({
50560                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50561                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50562                    '<span>{' + this.displayField + '}</span>' +
50563                     '</div>' 
50564                 
50565             });
50566         }
50567  
50568         
50569         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50570         this.view.singleSelect = false;
50571         this.view.multiSelect = true;
50572         this.view.toggleSelect = true;
50573         this.pageTb.add(new Roo.Toolbar.Fill(), {
50574             
50575             text: 'Done',
50576             handler: function()
50577             {
50578                 _t.collapse();
50579             }
50580         });
50581     },
50582     
50583     onViewOver : function(e, t){
50584         // do nothing...
50585         return;
50586         
50587     },
50588     
50589     onViewClick : function(doFocus,index){
50590         return;
50591         
50592     },
50593     select: function () {
50594         //Roo.log("SELECT CALLED");
50595     },
50596      
50597     selectByValue : function(xv, scrollIntoView){
50598         var ar = this.getValueArray();
50599         var sels = [];
50600         
50601         Roo.each(ar, function(v) {
50602             if(v === undefined || v === null){
50603                 return;
50604             }
50605             var r = this.findRecord(this.valueField, v);
50606             if(r){
50607                 sels.push(this.store.indexOf(r))
50608                 
50609             }
50610         },this);
50611         this.view.select(sels);
50612         return false;
50613     },
50614     
50615     
50616     
50617     onSelect : function(record, index){
50618        // Roo.log("onselect Called");
50619        // this is only called by the clear button now..
50620         this.view.clearSelections();
50621         this.setValue('[]');
50622         if (this.value != this.valueBefore) {
50623             this.fireEvent('change', this, this.value, this.valueBefore);
50624             this.valueBefore = this.value;
50625         }
50626     },
50627     getValueArray : function()
50628     {
50629         var ar = [] ;
50630         
50631         try {
50632             //Roo.log(this.value);
50633             if (typeof(this.value) == 'undefined') {
50634                 return [];
50635             }
50636             var ar = Roo.decode(this.value);
50637             return  ar instanceof Array ? ar : []; //?? valid?
50638             
50639         } catch(e) {
50640             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50641             return [];
50642         }
50643          
50644     },
50645     expand : function ()
50646     {
50647         
50648         Roo.form.ComboCheck.superclass.expand.call(this);
50649         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50650         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50651         
50652
50653     },
50654     
50655     collapse : function(){
50656         Roo.form.ComboCheck.superclass.collapse.call(this);
50657         var sl = this.view.getSelectedIndexes();
50658         var st = this.store;
50659         var nv = [];
50660         var tv = [];
50661         var r;
50662         Roo.each(sl, function(i) {
50663             r = st.getAt(i);
50664             nv.push(r.get(this.valueField));
50665         },this);
50666         this.setValue(Roo.encode(nv));
50667         if (this.value != this.valueBefore) {
50668
50669             this.fireEvent('change', this, this.value, this.valueBefore);
50670             this.valueBefore = this.value;
50671         }
50672         
50673     },
50674     
50675     setValue : function(v){
50676         // Roo.log(v);
50677         this.value = v;
50678         
50679         var vals = this.getValueArray();
50680         var tv = [];
50681         Roo.each(vals, function(k) {
50682             var r = this.findRecord(this.valueField, k);
50683             if(r){
50684                 tv.push(r.data[this.displayField]);
50685             }else if(this.valueNotFoundText !== undefined){
50686                 tv.push( this.valueNotFoundText );
50687             }
50688         },this);
50689        // Roo.log(tv);
50690         
50691         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50692         this.hiddenField.value = v;
50693         this.value = v;
50694     }
50695     
50696 });/*
50697  * Based on:
50698  * Ext JS Library 1.1.1
50699  * Copyright(c) 2006-2007, Ext JS, LLC.
50700  *
50701  * Originally Released Under LGPL - original licence link has changed is not relivant.
50702  *
50703  * Fork - LGPL
50704  * <script type="text/javascript">
50705  */
50706  
50707 /**
50708  * @class Roo.form.Signature
50709  * @extends Roo.form.Field
50710  * Signature field.  
50711  * @constructor
50712  * 
50713  * @param {Object} config Configuration options
50714  */
50715
50716 Roo.form.Signature = function(config){
50717     Roo.form.Signature.superclass.constructor.call(this, config);
50718     
50719     this.addEvents({// not in used??
50720          /**
50721          * @event confirm
50722          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50723              * @param {Roo.form.Signature} combo This combo box
50724              */
50725         'confirm' : true,
50726         /**
50727          * @event reset
50728          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50729              * @param {Roo.form.ComboBox} combo This combo box
50730              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50731              */
50732         'reset' : true
50733     });
50734 };
50735
50736 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50737     /**
50738      * @cfg {Object} labels Label to use when rendering a form.
50739      * defaults to 
50740      * labels : { 
50741      *      clear : "Clear",
50742      *      confirm : "Confirm"
50743      *  }
50744      */
50745     labels : { 
50746         clear : "Clear",
50747         confirm : "Confirm"
50748     },
50749     /**
50750      * @cfg {Number} width The signature panel width (defaults to 300)
50751      */
50752     width: 300,
50753     /**
50754      * @cfg {Number} height The signature panel height (defaults to 100)
50755      */
50756     height : 100,
50757     /**
50758      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50759      */
50760     allowBlank : false,
50761     
50762     //private
50763     // {Object} signPanel The signature SVG panel element (defaults to {})
50764     signPanel : {},
50765     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50766     isMouseDown : false,
50767     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50768     isConfirmed : false,
50769     // {String} signatureTmp SVG mapping string (defaults to empty string)
50770     signatureTmp : '',
50771     
50772     
50773     defaultAutoCreate : { // modified by initCompnoent..
50774         tag: "input",
50775         type:"hidden"
50776     },
50777
50778     // private
50779     onRender : function(ct, position){
50780         
50781         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50782         
50783         this.wrap = this.el.wrap({
50784             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50785         });
50786         
50787         this.createToolbar(this);
50788         this.signPanel = this.wrap.createChild({
50789                 tag: 'div',
50790                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50791             }, this.el
50792         );
50793             
50794         this.svgID = Roo.id();
50795         this.svgEl = this.signPanel.createChild({
50796               xmlns : 'http://www.w3.org/2000/svg',
50797               tag : 'svg',
50798               id : this.svgID + "-svg",
50799               width: this.width,
50800               height: this.height,
50801               viewBox: '0 0 '+this.width+' '+this.height,
50802               cn : [
50803                 {
50804                     tag: "rect",
50805                     id: this.svgID + "-svg-r",
50806                     width: this.width,
50807                     height: this.height,
50808                     fill: "#ffa"
50809                 },
50810                 {
50811                     tag: "line",
50812                     id: this.svgID + "-svg-l",
50813                     x1: "0", // start
50814                     y1: (this.height*0.8), // start set the line in 80% of height
50815                     x2: this.width, // end
50816                     y2: (this.height*0.8), // end set the line in 80% of height
50817                     'stroke': "#666",
50818                     'stroke-width': "1",
50819                     'stroke-dasharray': "3",
50820                     'shape-rendering': "crispEdges",
50821                     'pointer-events': "none"
50822                 },
50823                 {
50824                     tag: "path",
50825                     id: this.svgID + "-svg-p",
50826                     'stroke': "navy",
50827                     'stroke-width': "3",
50828                     'fill': "none",
50829                     'pointer-events': 'none'
50830                 }
50831               ]
50832         });
50833         this.createSVG();
50834         this.svgBox = this.svgEl.dom.getScreenCTM();
50835     },
50836     createSVG : function(){ 
50837         var svg = this.signPanel;
50838         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50839         var t = this;
50840
50841         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50842         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50843         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50844         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50845         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50846         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50847         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50848         
50849     },
50850     isTouchEvent : function(e){
50851         return e.type.match(/^touch/);
50852     },
50853     getCoords : function (e) {
50854         var pt    = this.svgEl.dom.createSVGPoint();
50855         pt.x = e.clientX; 
50856         pt.y = e.clientY;
50857         if (this.isTouchEvent(e)) {
50858             pt.x =  e.targetTouches[0].clientX;
50859             pt.y = e.targetTouches[0].clientY;
50860         }
50861         var a = this.svgEl.dom.getScreenCTM();
50862         var b = a.inverse();
50863         var mx = pt.matrixTransform(b);
50864         return mx.x + ',' + mx.y;
50865     },
50866     //mouse event headler 
50867     down : function (e) {
50868         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50869         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50870         
50871         this.isMouseDown = true;
50872         
50873         e.preventDefault();
50874     },
50875     move : function (e) {
50876         if (this.isMouseDown) {
50877             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50878             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50879         }
50880         
50881         e.preventDefault();
50882     },
50883     up : function (e) {
50884         this.isMouseDown = false;
50885         var sp = this.signatureTmp.split(' ');
50886         
50887         if(sp.length > 1){
50888             if(!sp[sp.length-2].match(/^L/)){
50889                 sp.pop();
50890                 sp.pop();
50891                 sp.push("");
50892                 this.signatureTmp = sp.join(" ");
50893             }
50894         }
50895         if(this.getValue() != this.signatureTmp){
50896             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50897             this.isConfirmed = false;
50898         }
50899         e.preventDefault();
50900     },
50901     
50902     /**
50903      * Protected method that will not generally be called directly. It
50904      * is called when the editor creates its toolbar. Override this method if you need to
50905      * add custom toolbar buttons.
50906      * @param {HtmlEditor} editor
50907      */
50908     createToolbar : function(editor){
50909          function btn(id, toggle, handler){
50910             var xid = fid + '-'+ id ;
50911             return {
50912                 id : xid,
50913                 cmd : id,
50914                 cls : 'x-btn-icon x-edit-'+id,
50915                 enableToggle:toggle !== false,
50916                 scope: editor, // was editor...
50917                 handler:handler||editor.relayBtnCmd,
50918                 clickEvent:'mousedown',
50919                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50920                 tabIndex:-1
50921             };
50922         }
50923         
50924         
50925         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50926         this.tb = tb;
50927         this.tb.add(
50928            {
50929                 cls : ' x-signature-btn x-signature-'+id,
50930                 scope: editor, // was editor...
50931                 handler: this.reset,
50932                 clickEvent:'mousedown',
50933                 text: this.labels.clear
50934             },
50935             {
50936                  xtype : 'Fill',
50937                  xns: Roo.Toolbar
50938             }, 
50939             {
50940                 cls : '  x-signature-btn x-signature-'+id,
50941                 scope: editor, // was editor...
50942                 handler: this.confirmHandler,
50943                 clickEvent:'mousedown',
50944                 text: this.labels.confirm
50945             }
50946         );
50947     
50948     },
50949     //public
50950     /**
50951      * when user is clicked confirm then show this image.....
50952      * 
50953      * @return {String} Image Data URI
50954      */
50955     getImageDataURI : function(){
50956         var svg = this.svgEl.dom.parentNode.innerHTML;
50957         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50958         return src; 
50959     },
50960     /**
50961      * 
50962      * @return {Boolean} this.isConfirmed
50963      */
50964     getConfirmed : function(){
50965         return this.isConfirmed;
50966     },
50967     /**
50968      * 
50969      * @return {Number} this.width
50970      */
50971     getWidth : function(){
50972         return this.width;
50973     },
50974     /**
50975      * 
50976      * @return {Number} this.height
50977      */
50978     getHeight : function(){
50979         return this.height;
50980     },
50981     // private
50982     getSignature : function(){
50983         return this.signatureTmp;
50984     },
50985     // private
50986     reset : function(){
50987         this.signatureTmp = '';
50988         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50989         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50990         this.isConfirmed = false;
50991         Roo.form.Signature.superclass.reset.call(this);
50992     },
50993     setSignature : function(s){
50994         this.signatureTmp = s;
50995         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50996         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50997         this.setValue(s);
50998         this.isConfirmed = false;
50999         Roo.form.Signature.superclass.reset.call(this);
51000     }, 
51001     test : function(){
51002 //        Roo.log(this.signPanel.dom.contentWindow.up())
51003     },
51004     //private
51005     setConfirmed : function(){
51006         
51007         
51008         
51009 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
51010     },
51011     // private
51012     confirmHandler : function(){
51013         if(!this.getSignature()){
51014             return;
51015         }
51016         
51017         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
51018         this.setValue(this.getSignature());
51019         this.isConfirmed = true;
51020         
51021         this.fireEvent('confirm', this);
51022     },
51023     // private
51024     // Subclasses should provide the validation implementation by overriding this
51025     validateValue : function(value){
51026         if(this.allowBlank){
51027             return true;
51028         }
51029         
51030         if(this.isConfirmed){
51031             return true;
51032         }
51033         return false;
51034     }
51035 });/*
51036  * Based on:
51037  * Ext JS Library 1.1.1
51038  * Copyright(c) 2006-2007, Ext JS, LLC.
51039  *
51040  * Originally Released Under LGPL - original licence link has changed is not relivant.
51041  *
51042  * Fork - LGPL
51043  * <script type="text/javascript">
51044  */
51045  
51046
51047 /**
51048  * @class Roo.form.ComboBox
51049  * @extends Roo.form.TriggerField
51050  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
51051  * @constructor
51052  * Create a new ComboBox.
51053  * @param {Object} config Configuration options
51054  */
51055 Roo.form.Select = function(config){
51056     Roo.form.Select.superclass.constructor.call(this, config);
51057      
51058 };
51059
51060 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
51061     /**
51062      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
51063      */
51064     /**
51065      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
51066      * rendering into an Roo.Editor, defaults to false)
51067      */
51068     /**
51069      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
51070      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
51071      */
51072     /**
51073      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
51074      */
51075     /**
51076      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
51077      * the dropdown list (defaults to undefined, with no header element)
51078      */
51079
51080      /**
51081      * @cfg {String/Roo.Template} tpl The template to use to render the output
51082      */
51083      
51084     // private
51085     defaultAutoCreate : {tag: "select"  },
51086     /**
51087      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
51088      */
51089     listWidth: undefined,
51090     /**
51091      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
51092      * mode = 'remote' or 'text' if mode = 'local')
51093      */
51094     displayField: undefined,
51095     /**
51096      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
51097      * mode = 'remote' or 'value' if mode = 'local'). 
51098      * Note: use of a valueField requires the user make a selection
51099      * in order for a value to be mapped.
51100      */
51101     valueField: undefined,
51102     
51103     
51104     /**
51105      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
51106      * field's data value (defaults to the underlying DOM element's name)
51107      */
51108     hiddenName: undefined,
51109     /**
51110      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
51111      */
51112     listClass: '',
51113     /**
51114      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
51115      */
51116     selectedClass: 'x-combo-selected',
51117     /**
51118      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
51119      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
51120      * which displays a downward arrow icon).
51121      */
51122     triggerClass : 'x-form-arrow-trigger',
51123     /**
51124      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
51125      */
51126     shadow:'sides',
51127     /**
51128      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
51129      * anchor positions (defaults to 'tl-bl')
51130      */
51131     listAlign: 'tl-bl?',
51132     /**
51133      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
51134      */
51135     maxHeight: 300,
51136     /**
51137      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
51138      * query specified by the allQuery config option (defaults to 'query')
51139      */
51140     triggerAction: 'query',
51141     /**
51142      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
51143      * (defaults to 4, does not apply if editable = false)
51144      */
51145     minChars : 4,
51146     /**
51147      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
51148      * delay (typeAheadDelay) if it matches a known value (defaults to false)
51149      */
51150     typeAhead: false,
51151     /**
51152      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
51153      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
51154      */
51155     queryDelay: 500,
51156     /**
51157      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
51158      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
51159      */
51160     pageSize: 0,
51161     /**
51162      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
51163      * when editable = true (defaults to false)
51164      */
51165     selectOnFocus:false,
51166     /**
51167      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
51168      */
51169     queryParam: 'query',
51170     /**
51171      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
51172      * when mode = 'remote' (defaults to 'Loading...')
51173      */
51174     loadingText: 'Loading...',
51175     /**
51176      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
51177      */
51178     resizable: false,
51179     /**
51180      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
51181      */
51182     handleHeight : 8,
51183     /**
51184      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
51185      * traditional select (defaults to true)
51186      */
51187     editable: true,
51188     /**
51189      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
51190      */
51191     allQuery: '',
51192     /**
51193      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
51194      */
51195     mode: 'remote',
51196     /**
51197      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
51198      * listWidth has a higher value)
51199      */
51200     minListWidth : 70,
51201     /**
51202      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51203      * allow the user to set arbitrary text into the field (defaults to false)
51204      */
51205     forceSelection:false,
51206     /**
51207      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51208      * if typeAhead = true (defaults to 250)
51209      */
51210     typeAheadDelay : 250,
51211     /**
51212      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51213      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51214      */
51215     valueNotFoundText : undefined,
51216     
51217     /**
51218      * @cfg {String} defaultValue The value displayed after loading the store.
51219      */
51220     defaultValue: '',
51221     
51222     /**
51223      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51224      */
51225     blockFocus : false,
51226     
51227     /**
51228      * @cfg {Boolean} disableClear Disable showing of clear button.
51229      */
51230     disableClear : false,
51231     /**
51232      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51233      */
51234     alwaysQuery : false,
51235     
51236     //private
51237     addicon : false,
51238     editicon: false,
51239     
51240     // element that contains real text value.. (when hidden is used..)
51241      
51242     // private
51243     onRender : function(ct, position){
51244         Roo.form.Field.prototype.onRender.call(this, ct, position);
51245         
51246         if(this.store){
51247             this.store.on('beforeload', this.onBeforeLoad, this);
51248             this.store.on('load', this.onLoad, this);
51249             this.store.on('loadexception', this.onLoadException, this);
51250             this.store.load({});
51251         }
51252         
51253         
51254         
51255     },
51256
51257     // private
51258     initEvents : function(){
51259         //Roo.form.ComboBox.superclass.initEvents.call(this);
51260  
51261     },
51262
51263     onDestroy : function(){
51264        
51265         if(this.store){
51266             this.store.un('beforeload', this.onBeforeLoad, this);
51267             this.store.un('load', this.onLoad, this);
51268             this.store.un('loadexception', this.onLoadException, this);
51269         }
51270         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51271     },
51272
51273     // private
51274     fireKey : function(e){
51275         if(e.isNavKeyPress() && !this.list.isVisible()){
51276             this.fireEvent("specialkey", this, e);
51277         }
51278     },
51279
51280     // private
51281     onResize: function(w, h){
51282         
51283         return; 
51284     
51285         
51286     },
51287
51288     /**
51289      * Allow or prevent the user from directly editing the field text.  If false is passed,
51290      * the user will only be able to select from the items defined in the dropdown list.  This method
51291      * is the runtime equivalent of setting the 'editable' config option at config time.
51292      * @param {Boolean} value True to allow the user to directly edit the field text
51293      */
51294     setEditable : function(value){
51295          
51296     },
51297
51298     // private
51299     onBeforeLoad : function(){
51300         
51301         Roo.log("Select before load");
51302         return;
51303     
51304         this.innerList.update(this.loadingText ?
51305                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51306         //this.restrictHeight();
51307         this.selectedIndex = -1;
51308     },
51309
51310     // private
51311     onLoad : function(){
51312
51313     
51314         var dom = this.el.dom;
51315         dom.innerHTML = '';
51316          var od = dom.ownerDocument;
51317          
51318         if (this.emptyText) {
51319             var op = od.createElement('option');
51320             op.setAttribute('value', '');
51321             op.innerHTML = String.format('{0}', this.emptyText);
51322             dom.appendChild(op);
51323         }
51324         if(this.store.getCount() > 0){
51325            
51326             var vf = this.valueField;
51327             var df = this.displayField;
51328             this.store.data.each(function(r) {
51329                 // which colmsn to use... testing - cdoe / title..
51330                 var op = od.createElement('option');
51331                 op.setAttribute('value', r.data[vf]);
51332                 op.innerHTML = String.format('{0}', r.data[df]);
51333                 dom.appendChild(op);
51334             });
51335             if (typeof(this.defaultValue != 'undefined')) {
51336                 this.setValue(this.defaultValue);
51337             }
51338             
51339              
51340         }else{
51341             //this.onEmptyResults();
51342         }
51343         //this.el.focus();
51344     },
51345     // private
51346     onLoadException : function()
51347     {
51348         dom.innerHTML = '';
51349             
51350         Roo.log("Select on load exception");
51351         return;
51352     
51353         this.collapse();
51354         Roo.log(this.store.reader.jsonData);
51355         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51356             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51357         }
51358         
51359         
51360     },
51361     // private
51362     onTypeAhead : function(){
51363          
51364     },
51365
51366     // private
51367     onSelect : function(record, index){
51368         Roo.log('on select?');
51369         return;
51370         if(this.fireEvent('beforeselect', this, record, index) !== false){
51371             this.setFromData(index > -1 ? record.data : false);
51372             this.collapse();
51373             this.fireEvent('select', this, record, index);
51374         }
51375     },
51376
51377     /**
51378      * Returns the currently selected field value or empty string if no value is set.
51379      * @return {String} value The selected value
51380      */
51381     getValue : function(){
51382         var dom = this.el.dom;
51383         this.value = dom.options[dom.selectedIndex].value;
51384         return this.value;
51385         
51386     },
51387
51388     /**
51389      * Clears any text/value currently set in the field
51390      */
51391     clearValue : function(){
51392         this.value = '';
51393         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51394         
51395     },
51396
51397     /**
51398      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51399      * will be displayed in the field.  If the value does not match the data value of an existing item,
51400      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51401      * Otherwise the field will be blank (although the value will still be set).
51402      * @param {String} value The value to match
51403      */
51404     setValue : function(v){
51405         var d = this.el.dom;
51406         for (var i =0; i < d.options.length;i++) {
51407             if (v == d.options[i].value) {
51408                 d.selectedIndex = i;
51409                 this.value = v;
51410                 return;
51411             }
51412         }
51413         this.clearValue();
51414     },
51415     /**
51416      * @property {Object} the last set data for the element
51417      */
51418     
51419     lastData : false,
51420     /**
51421      * Sets the value of the field based on a object which is related to the record format for the store.
51422      * @param {Object} value the value to set as. or false on reset?
51423      */
51424     setFromData : function(o){
51425         Roo.log('setfrom data?');
51426          
51427         
51428         
51429     },
51430     // private
51431     reset : function(){
51432         this.clearValue();
51433     },
51434     // private
51435     findRecord : function(prop, value){
51436         
51437         return false;
51438     
51439         var record;
51440         if(this.store.getCount() > 0){
51441             this.store.each(function(r){
51442                 if(r.data[prop] == value){
51443                     record = r;
51444                     return false;
51445                 }
51446                 return true;
51447             });
51448         }
51449         return record;
51450     },
51451     
51452     getName: function()
51453     {
51454         // returns hidden if it's set..
51455         if (!this.rendered) {return ''};
51456         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51457         
51458     },
51459      
51460
51461     
51462
51463     // private
51464     onEmptyResults : function(){
51465         Roo.log('empty results');
51466         //this.collapse();
51467     },
51468
51469     /**
51470      * Returns true if the dropdown list is expanded, else false.
51471      */
51472     isExpanded : function(){
51473         return false;
51474     },
51475
51476     /**
51477      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51478      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51479      * @param {String} value The data value of the item to select
51480      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51481      * selected item if it is not currently in view (defaults to true)
51482      * @return {Boolean} True if the value matched an item in the list, else false
51483      */
51484     selectByValue : function(v, scrollIntoView){
51485         Roo.log('select By Value');
51486         return false;
51487     
51488         if(v !== undefined && v !== null){
51489             var r = this.findRecord(this.valueField || this.displayField, v);
51490             if(r){
51491                 this.select(this.store.indexOf(r), scrollIntoView);
51492                 return true;
51493             }
51494         }
51495         return false;
51496     },
51497
51498     /**
51499      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51500      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51501      * @param {Number} index The zero-based index of the list item to select
51502      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51503      * selected item if it is not currently in view (defaults to true)
51504      */
51505     select : function(index, scrollIntoView){
51506         Roo.log('select ');
51507         return  ;
51508         
51509         this.selectedIndex = index;
51510         this.view.select(index);
51511         if(scrollIntoView !== false){
51512             var el = this.view.getNode(index);
51513             if(el){
51514                 this.innerList.scrollChildIntoView(el, false);
51515             }
51516         }
51517     },
51518
51519       
51520
51521     // private
51522     validateBlur : function(){
51523         
51524         return;
51525         
51526     },
51527
51528     // private
51529     initQuery : function(){
51530         this.doQuery(this.getRawValue());
51531     },
51532
51533     // private
51534     doForce : function(){
51535         if(this.el.dom.value.length > 0){
51536             this.el.dom.value =
51537                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51538              
51539         }
51540     },
51541
51542     /**
51543      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51544      * query allowing the query action to be canceled if needed.
51545      * @param {String} query The SQL query to execute
51546      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51547      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51548      * saved in the current store (defaults to false)
51549      */
51550     doQuery : function(q, forceAll){
51551         
51552         Roo.log('doQuery?');
51553         if(q === undefined || q === null){
51554             q = '';
51555         }
51556         var qe = {
51557             query: q,
51558             forceAll: forceAll,
51559             combo: this,
51560             cancel:false
51561         };
51562         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51563             return false;
51564         }
51565         q = qe.query;
51566         forceAll = qe.forceAll;
51567         if(forceAll === true || (q.length >= this.minChars)){
51568             if(this.lastQuery != q || this.alwaysQuery){
51569                 this.lastQuery = q;
51570                 if(this.mode == 'local'){
51571                     this.selectedIndex = -1;
51572                     if(forceAll){
51573                         this.store.clearFilter();
51574                     }else{
51575                         this.store.filter(this.displayField, q);
51576                     }
51577                     this.onLoad();
51578                 }else{
51579                     this.store.baseParams[this.queryParam] = q;
51580                     this.store.load({
51581                         params: this.getParams(q)
51582                     });
51583                     this.expand();
51584                 }
51585             }else{
51586                 this.selectedIndex = -1;
51587                 this.onLoad();   
51588             }
51589         }
51590     },
51591
51592     // private
51593     getParams : function(q){
51594         var p = {};
51595         //p[this.queryParam] = q;
51596         if(this.pageSize){
51597             p.start = 0;
51598             p.limit = this.pageSize;
51599         }
51600         return p;
51601     },
51602
51603     /**
51604      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51605      */
51606     collapse : function(){
51607         
51608     },
51609
51610     // private
51611     collapseIf : function(e){
51612         
51613     },
51614
51615     /**
51616      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51617      */
51618     expand : function(){
51619         
51620     } ,
51621
51622     // private
51623      
51624
51625     /** 
51626     * @cfg {Boolean} grow 
51627     * @hide 
51628     */
51629     /** 
51630     * @cfg {Number} growMin 
51631     * @hide 
51632     */
51633     /** 
51634     * @cfg {Number} growMax 
51635     * @hide 
51636     */
51637     /**
51638      * @hide
51639      * @method autoSize
51640      */
51641     
51642     setWidth : function()
51643     {
51644         
51645     },
51646     getResizeEl : function(){
51647         return this.el;
51648     }
51649 });//<script type="text/javasscript">
51650  
51651
51652 /**
51653  * @class Roo.DDView
51654  * A DnD enabled version of Roo.View.
51655  * @param {Element/String} container The Element in which to create the View.
51656  * @param {String} tpl The template string used to create the markup for each element of the View
51657  * @param {Object} config The configuration properties. These include all the config options of
51658  * {@link Roo.View} plus some specific to this class.<br>
51659  * <p>
51660  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51661  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51662  * <p>
51663  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51664 .x-view-drag-insert-above {
51665         border-top:1px dotted #3366cc;
51666 }
51667 .x-view-drag-insert-below {
51668         border-bottom:1px dotted #3366cc;
51669 }
51670 </code></pre>
51671  * 
51672  */
51673  
51674 Roo.DDView = function(container, tpl, config) {
51675     Roo.DDView.superclass.constructor.apply(this, arguments);
51676     this.getEl().setStyle("outline", "0px none");
51677     this.getEl().unselectable();
51678     if (this.dragGroup) {
51679         this.setDraggable(this.dragGroup.split(","));
51680     }
51681     if (this.dropGroup) {
51682         this.setDroppable(this.dropGroup.split(","));
51683     }
51684     if (this.deletable) {
51685         this.setDeletable();
51686     }
51687     this.isDirtyFlag = false;
51688         this.addEvents({
51689                 "drop" : true
51690         });
51691 };
51692
51693 Roo.extend(Roo.DDView, Roo.View, {
51694 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51695 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51696 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51697 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51698
51699         isFormField: true,
51700
51701         reset: Roo.emptyFn,
51702         
51703         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51704
51705         validate: function() {
51706                 return true;
51707         },
51708         
51709         destroy: function() {
51710                 this.purgeListeners();
51711                 this.getEl.removeAllListeners();
51712                 this.getEl().remove();
51713                 if (this.dragZone) {
51714                         if (this.dragZone.destroy) {
51715                                 this.dragZone.destroy();
51716                         }
51717                 }
51718                 if (this.dropZone) {
51719                         if (this.dropZone.destroy) {
51720                                 this.dropZone.destroy();
51721                         }
51722                 }
51723         },
51724
51725 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51726         getName: function() {
51727                 return this.name;
51728         },
51729
51730 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51731         setValue: function(v) {
51732                 if (!this.store) {
51733                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51734                 }
51735                 var data = {};
51736                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51737                 this.store.proxy = new Roo.data.MemoryProxy(data);
51738                 this.store.load();
51739         },
51740
51741 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51742         getValue: function() {
51743                 var result = '(';
51744                 this.store.each(function(rec) {
51745                         result += rec.id + ',';
51746                 });
51747                 return result.substr(0, result.length - 1) + ')';
51748         },
51749         
51750         getIds: function() {
51751                 var i = 0, result = new Array(this.store.getCount());
51752                 this.store.each(function(rec) {
51753                         result[i++] = rec.id;
51754                 });
51755                 return result;
51756         },
51757         
51758         isDirty: function() {
51759                 return this.isDirtyFlag;
51760         },
51761
51762 /**
51763  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51764  *      whole Element becomes the target, and this causes the drop gesture to append.
51765  */
51766     getTargetFromEvent : function(e) {
51767                 var target = e.getTarget();
51768                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51769                 target = target.parentNode;
51770                 }
51771                 if (!target) {
51772                         target = this.el.dom.lastChild || this.el.dom;
51773                 }
51774                 return target;
51775     },
51776
51777 /**
51778  *      Create the drag data which consists of an object which has the property "ddel" as
51779  *      the drag proxy element. 
51780  */
51781     getDragData : function(e) {
51782         var target = this.findItemFromChild(e.getTarget());
51783                 if(target) {
51784                         this.handleSelection(e);
51785                         var selNodes = this.getSelectedNodes();
51786             var dragData = {
51787                 source: this,
51788                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51789                 nodes: selNodes,
51790                 records: []
51791                         };
51792                         var selectedIndices = this.getSelectedIndexes();
51793                         for (var i = 0; i < selectedIndices.length; i++) {
51794                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51795                         }
51796                         if (selNodes.length == 1) {
51797                                 dragData.ddel = target.cloneNode(true); // the div element
51798                         } else {
51799                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51800                                 div.className = 'multi-proxy';
51801                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51802                                         div.appendChild(selNodes[i].cloneNode(true));
51803                                 }
51804                                 dragData.ddel = div;
51805                         }
51806             //console.log(dragData)
51807             //console.log(dragData.ddel.innerHTML)
51808                         return dragData;
51809                 }
51810         //console.log('nodragData')
51811                 return false;
51812     },
51813     
51814 /**     Specify to which ddGroup items in this DDView may be dragged. */
51815     setDraggable: function(ddGroup) {
51816         if (ddGroup instanceof Array) {
51817                 Roo.each(ddGroup, this.setDraggable, this);
51818                 return;
51819         }
51820         if (this.dragZone) {
51821                 this.dragZone.addToGroup(ddGroup);
51822         } else {
51823                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51824                                 containerScroll: true,
51825                                 ddGroup: ddGroup 
51826
51827                         });
51828 //                      Draggability implies selection. DragZone's mousedown selects the element.
51829                         if (!this.multiSelect) { this.singleSelect = true; }
51830
51831 //                      Wire the DragZone's handlers up to methods in *this*
51832                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51833                 }
51834     },
51835
51836 /**     Specify from which ddGroup this DDView accepts drops. */
51837     setDroppable: function(ddGroup) {
51838         if (ddGroup instanceof Array) {
51839                 Roo.each(ddGroup, this.setDroppable, this);
51840                 return;
51841         }
51842         if (this.dropZone) {
51843                 this.dropZone.addToGroup(ddGroup);
51844         } else {
51845                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51846                                 containerScroll: true,
51847                                 ddGroup: ddGroup
51848                         });
51849
51850 //                      Wire the DropZone's handlers up to methods in *this*
51851                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51852                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51853                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51854                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51855                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51856                 }
51857     },
51858
51859 /**     Decide whether to drop above or below a View node. */
51860     getDropPoint : function(e, n, dd){
51861         if (n == this.el.dom) { return "above"; }
51862                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51863                 var c = t + (b - t) / 2;
51864                 var y = Roo.lib.Event.getPageY(e);
51865                 if(y <= c) {
51866                         return "above";
51867                 }else{
51868                         return "below";
51869                 }
51870     },
51871
51872     onNodeEnter : function(n, dd, e, data){
51873                 return false;
51874     },
51875     
51876     onNodeOver : function(n, dd, e, data){
51877                 var pt = this.getDropPoint(e, n, dd);
51878                 // set the insert point style on the target node
51879                 var dragElClass = this.dropNotAllowed;
51880                 if (pt) {
51881                         var targetElClass;
51882                         if (pt == "above"){
51883                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51884                                 targetElClass = "x-view-drag-insert-above";
51885                         } else {
51886                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51887                                 targetElClass = "x-view-drag-insert-below";
51888                         }
51889                         if (this.lastInsertClass != targetElClass){
51890                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51891                                 this.lastInsertClass = targetElClass;
51892                         }
51893                 }
51894                 return dragElClass;
51895         },
51896
51897     onNodeOut : function(n, dd, e, data){
51898                 this.removeDropIndicators(n);
51899     },
51900
51901     onNodeDrop : function(n, dd, e, data){
51902         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51903                 return false;
51904         }
51905         var pt = this.getDropPoint(e, n, dd);
51906                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51907                 if (pt == "below") { insertAt++; }
51908                 for (var i = 0; i < data.records.length; i++) {
51909                         var r = data.records[i];
51910                         var dup = this.store.getById(r.id);
51911                         if (dup && (dd != this.dragZone)) {
51912                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51913                         } else {
51914                                 if (data.copy) {
51915                                         this.store.insert(insertAt++, r.copy());
51916                                 } else {
51917                                         data.source.isDirtyFlag = true;
51918                                         r.store.remove(r);
51919                                         this.store.insert(insertAt++, r);
51920                                 }
51921                                 this.isDirtyFlag = true;
51922                         }
51923                 }
51924                 this.dragZone.cachedTarget = null;
51925                 return true;
51926     },
51927
51928     removeDropIndicators : function(n){
51929                 if(n){
51930                         Roo.fly(n).removeClass([
51931                                 "x-view-drag-insert-above",
51932                                 "x-view-drag-insert-below"]);
51933                         this.lastInsertClass = "_noclass";
51934                 }
51935     },
51936
51937 /**
51938  *      Utility method. Add a delete option to the DDView's context menu.
51939  *      @param {String} imageUrl The URL of the "delete" icon image.
51940  */
51941         setDeletable: function(imageUrl) {
51942                 if (!this.singleSelect && !this.multiSelect) {
51943                         this.singleSelect = true;
51944                 }
51945                 var c = this.getContextMenu();
51946                 this.contextMenu.on("itemclick", function(item) {
51947                         switch (item.id) {
51948                                 case "delete":
51949                                         this.remove(this.getSelectedIndexes());
51950                                         break;
51951                         }
51952                 }, this);
51953                 this.contextMenu.add({
51954                         icon: imageUrl,
51955                         id: "delete",
51956                         text: 'Delete'
51957                 });
51958         },
51959         
51960 /**     Return the context menu for this DDView. */
51961         getContextMenu: function() {
51962                 if (!this.contextMenu) {
51963 //                      Create the View's context menu
51964                         this.contextMenu = new Roo.menu.Menu({
51965                                 id: this.id + "-contextmenu"
51966                         });
51967                         this.el.on("contextmenu", this.showContextMenu, this);
51968                 }
51969                 return this.contextMenu;
51970         },
51971         
51972         disableContextMenu: function() {
51973                 if (this.contextMenu) {
51974                         this.el.un("contextmenu", this.showContextMenu, this);
51975                 }
51976         },
51977
51978         showContextMenu: function(e, item) {
51979         item = this.findItemFromChild(e.getTarget());
51980                 if (item) {
51981                         e.stopEvent();
51982                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51983                         this.contextMenu.showAt(e.getXY());
51984             }
51985     },
51986
51987 /**
51988  *      Remove {@link Roo.data.Record}s at the specified indices.
51989  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51990  */
51991     remove: function(selectedIndices) {
51992                 selectedIndices = [].concat(selectedIndices);
51993                 for (var i = 0; i < selectedIndices.length; i++) {
51994                         var rec = this.store.getAt(selectedIndices[i]);
51995                         this.store.remove(rec);
51996                 }
51997     },
51998
51999 /**
52000  *      Double click fires the event, but also, if this is draggable, and there is only one other
52001  *      related DropZone, it transfers the selected node.
52002  */
52003     onDblClick : function(e){
52004         var item = this.findItemFromChild(e.getTarget());
52005         if(item){
52006             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
52007                 return false;
52008             }
52009             if (this.dragGroup) {
52010                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
52011                     while (targets.indexOf(this.dropZone) > -1) {
52012                             targets.remove(this.dropZone);
52013                                 }
52014                     if (targets.length == 1) {
52015                                         this.dragZone.cachedTarget = null;
52016                         var el = Roo.get(targets[0].getEl());
52017                         var box = el.getBox(true);
52018                         targets[0].onNodeDrop(el.dom, {
52019                                 target: el.dom,
52020                                 xy: [box.x, box.y + box.height - 1]
52021                         }, null, this.getDragData(e));
52022                     }
52023                 }
52024         }
52025     },
52026     
52027     handleSelection: function(e) {
52028                 this.dragZone.cachedTarget = null;
52029         var item = this.findItemFromChild(e.getTarget());
52030         if (!item) {
52031                 this.clearSelections(true);
52032                 return;
52033         }
52034                 if (item && (this.multiSelect || this.singleSelect)){
52035                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
52036                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
52037                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
52038                                 this.unselect(item);
52039                         } else {
52040                                 this.select(item, this.multiSelect && e.ctrlKey);
52041                                 this.lastSelection = item;
52042                         }
52043                 }
52044     },
52045
52046     onItemClick : function(item, index, e){
52047                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
52048                         return false;
52049                 }
52050                 return true;
52051     },
52052
52053     unselect : function(nodeInfo, suppressEvent){
52054                 var node = this.getNode(nodeInfo);
52055                 if(node && this.isSelected(node)){
52056                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
52057                                 Roo.fly(node).removeClass(this.selectedClass);
52058                                 this.selections.remove(node);
52059                                 if(!suppressEvent){
52060                                         this.fireEvent("selectionchange", this, this.selections);
52061                                 }
52062                         }
52063                 }
52064     }
52065 });
52066 /*
52067  * Based on:
52068  * Ext JS Library 1.1.1
52069  * Copyright(c) 2006-2007, Ext JS, LLC.
52070  *
52071  * Originally Released Under LGPL - original licence link has changed is not relivant.
52072  *
52073  * Fork - LGPL
52074  * <script type="text/javascript">
52075  */
52076  
52077 /**
52078  * @class Roo.LayoutManager
52079  * @extends Roo.util.Observable
52080  * Base class for layout managers.
52081  */
52082 Roo.LayoutManager = function(container, config){
52083     Roo.LayoutManager.superclass.constructor.call(this);
52084     this.el = Roo.get(container);
52085     // ie scrollbar fix
52086     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
52087         document.body.scroll = "no";
52088     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
52089         this.el.position('relative');
52090     }
52091     this.id = this.el.id;
52092     this.el.addClass("x-layout-container");
52093     /** false to disable window resize monitoring @type Boolean */
52094     this.monitorWindowResize = true;
52095     this.regions = {};
52096     this.addEvents({
52097         /**
52098          * @event layout
52099          * Fires when a layout is performed. 
52100          * @param {Roo.LayoutManager} this
52101          */
52102         "layout" : true,
52103         /**
52104          * @event regionresized
52105          * Fires when the user resizes a region. 
52106          * @param {Roo.LayoutRegion} region The resized region
52107          * @param {Number} newSize The new size (width for east/west, height for north/south)
52108          */
52109         "regionresized" : true,
52110         /**
52111          * @event regioncollapsed
52112          * Fires when a region is collapsed. 
52113          * @param {Roo.LayoutRegion} region The collapsed region
52114          */
52115         "regioncollapsed" : true,
52116         /**
52117          * @event regionexpanded
52118          * Fires when a region is expanded.  
52119          * @param {Roo.LayoutRegion} region The expanded region
52120          */
52121         "regionexpanded" : true
52122     });
52123     this.updating = false;
52124     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
52125 };
52126
52127 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
52128     /**
52129      * Returns true if this layout is currently being updated
52130      * @return {Boolean}
52131      */
52132     isUpdating : function(){
52133         return this.updating; 
52134     },
52135     
52136     /**
52137      * Suspend the LayoutManager from doing auto-layouts while
52138      * making multiple add or remove calls
52139      */
52140     beginUpdate : function(){
52141         this.updating = true;    
52142     },
52143     
52144     /**
52145      * Restore auto-layouts and optionally disable the manager from performing a layout
52146      * @param {Boolean} noLayout true to disable a layout update 
52147      */
52148     endUpdate : function(noLayout){
52149         this.updating = false;
52150         if(!noLayout){
52151             this.layout();
52152         }    
52153     },
52154     
52155     layout: function(){
52156         
52157     },
52158     
52159     onRegionResized : function(region, newSize){
52160         this.fireEvent("regionresized", region, newSize);
52161         this.layout();
52162     },
52163     
52164     onRegionCollapsed : function(region){
52165         this.fireEvent("regioncollapsed", region);
52166     },
52167     
52168     onRegionExpanded : function(region){
52169         this.fireEvent("regionexpanded", region);
52170     },
52171         
52172     /**
52173      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
52174      * performs box-model adjustments.
52175      * @return {Object} The size as an object {width: (the width), height: (the height)}
52176      */
52177     getViewSize : function(){
52178         var size;
52179         if(this.el.dom != document.body){
52180             size = this.el.getSize();
52181         }else{
52182             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
52183         }
52184         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
52185         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
52186         return size;
52187     },
52188     
52189     /**
52190      * Returns the Element this layout is bound to.
52191      * @return {Roo.Element}
52192      */
52193     getEl : function(){
52194         return this.el;
52195     },
52196     
52197     /**
52198      * Returns the specified region.
52199      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
52200      * @return {Roo.LayoutRegion}
52201      */
52202     getRegion : function(target){
52203         return this.regions[target.toLowerCase()];
52204     },
52205     
52206     onWindowResize : function(){
52207         if(this.monitorWindowResize){
52208             this.layout();
52209         }
52210     }
52211 });/*
52212  * Based on:
52213  * Ext JS Library 1.1.1
52214  * Copyright(c) 2006-2007, Ext JS, LLC.
52215  *
52216  * Originally Released Under LGPL - original licence link has changed is not relivant.
52217  *
52218  * Fork - LGPL
52219  * <script type="text/javascript">
52220  */
52221 /**
52222  * @class Roo.BorderLayout
52223  * @extends Roo.LayoutManager
52224  * @children Roo.ContentPanel
52225  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52226  * please see: <br><br>
52227  * <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>
52228  * <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>
52229  * Example:
52230  <pre><code>
52231  var layout = new Roo.BorderLayout(document.body, {
52232     north: {
52233         initialSize: 25,
52234         titlebar: false
52235     },
52236     west: {
52237         split:true,
52238         initialSize: 200,
52239         minSize: 175,
52240         maxSize: 400,
52241         titlebar: true,
52242         collapsible: true
52243     },
52244     east: {
52245         split:true,
52246         initialSize: 202,
52247         minSize: 175,
52248         maxSize: 400,
52249         titlebar: true,
52250         collapsible: true
52251     },
52252     south: {
52253         split:true,
52254         initialSize: 100,
52255         minSize: 100,
52256         maxSize: 200,
52257         titlebar: true,
52258         collapsible: true
52259     },
52260     center: {
52261         titlebar: true,
52262         autoScroll:true,
52263         resizeTabs: true,
52264         minTabWidth: 50,
52265         preferredTabWidth: 150
52266     }
52267 });
52268
52269 // shorthand
52270 var CP = Roo.ContentPanel;
52271
52272 layout.beginUpdate();
52273 layout.add("north", new CP("north", "North"));
52274 layout.add("south", new CP("south", {title: "South", closable: true}));
52275 layout.add("west", new CP("west", {title: "West"}));
52276 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52277 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52278 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52279 layout.getRegion("center").showPanel("center1");
52280 layout.endUpdate();
52281 </code></pre>
52282
52283 <b>The container the layout is rendered into can be either the body element or any other element.
52284 If it is not the body element, the container needs to either be an absolute positioned element,
52285 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52286 the container size if it is not the body element.</b>
52287
52288 * @constructor
52289 * Create a new BorderLayout
52290 * @param {String/HTMLElement/Element} container The container this layout is bound to
52291 * @param {Object} config Configuration options
52292  */
52293 Roo.BorderLayout = function(container, config){
52294     config = config || {};
52295     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52296     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52297     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52298         var target = this.factory.validRegions[i];
52299         if(config[target]){
52300             this.addRegion(target, config[target]);
52301         }
52302     }
52303 };
52304
52305 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52306         
52307         /**
52308          * @cfg {Roo.LayoutRegion} east
52309          */
52310         /**
52311          * @cfg {Roo.LayoutRegion} west
52312          */
52313         /**
52314          * @cfg {Roo.LayoutRegion} north
52315          */
52316         /**
52317          * @cfg {Roo.LayoutRegion} south
52318          */
52319         /**
52320          * @cfg {Roo.LayoutRegion} center
52321          */
52322     /**
52323      * Creates and adds a new region if it doesn't already exist.
52324      * @param {String} target The target region key (north, south, east, west or center).
52325      * @param {Object} config The regions config object
52326      * @return {BorderLayoutRegion} The new region
52327      */
52328     addRegion : function(target, config){
52329         if(!this.regions[target]){
52330             var r = this.factory.create(target, this, config);
52331             this.bindRegion(target, r);
52332         }
52333         return this.regions[target];
52334     },
52335
52336     // private (kinda)
52337     bindRegion : function(name, r){
52338         this.regions[name] = r;
52339         r.on("visibilitychange", this.layout, this);
52340         r.on("paneladded", this.layout, this);
52341         r.on("panelremoved", this.layout, this);
52342         r.on("invalidated", this.layout, this);
52343         r.on("resized", this.onRegionResized, this);
52344         r.on("collapsed", this.onRegionCollapsed, this);
52345         r.on("expanded", this.onRegionExpanded, this);
52346     },
52347
52348     /**
52349      * Performs a layout update.
52350      */
52351     layout : function(){
52352         if(this.updating) {
52353             return;
52354         }
52355         var size = this.getViewSize();
52356         var w = size.width;
52357         var h = size.height;
52358         var centerW = w;
52359         var centerH = h;
52360         var centerY = 0;
52361         var centerX = 0;
52362         //var x = 0, y = 0;
52363
52364         var rs = this.regions;
52365         var north = rs["north"];
52366         var south = rs["south"]; 
52367         var west = rs["west"];
52368         var east = rs["east"];
52369         var center = rs["center"];
52370         //if(this.hideOnLayout){ // not supported anymore
52371             //c.el.setStyle("display", "none");
52372         //}
52373         if(north && north.isVisible()){
52374             var b = north.getBox();
52375             var m = north.getMargins();
52376             b.width = w - (m.left+m.right);
52377             b.x = m.left;
52378             b.y = m.top;
52379             centerY = b.height + b.y + m.bottom;
52380             centerH -= centerY;
52381             north.updateBox(this.safeBox(b));
52382         }
52383         if(south && south.isVisible()){
52384             var b = south.getBox();
52385             var m = south.getMargins();
52386             b.width = w - (m.left+m.right);
52387             b.x = m.left;
52388             var totalHeight = (b.height + m.top + m.bottom);
52389             b.y = h - totalHeight + m.top;
52390             centerH -= totalHeight;
52391             south.updateBox(this.safeBox(b));
52392         }
52393         if(west && west.isVisible()){
52394             var b = west.getBox();
52395             var m = west.getMargins();
52396             b.height = centerH - (m.top+m.bottom);
52397             b.x = m.left;
52398             b.y = centerY + m.top;
52399             var totalWidth = (b.width + m.left + m.right);
52400             centerX += totalWidth;
52401             centerW -= totalWidth;
52402             west.updateBox(this.safeBox(b));
52403         }
52404         if(east && east.isVisible()){
52405             var b = east.getBox();
52406             var m = east.getMargins();
52407             b.height = centerH - (m.top+m.bottom);
52408             var totalWidth = (b.width + m.left + m.right);
52409             b.x = w - totalWidth + m.left;
52410             b.y = centerY + m.top;
52411             centerW -= totalWidth;
52412             east.updateBox(this.safeBox(b));
52413         }
52414         if(center){
52415             var m = center.getMargins();
52416             var centerBox = {
52417                 x: centerX + m.left,
52418                 y: centerY + m.top,
52419                 width: centerW - (m.left+m.right),
52420                 height: centerH - (m.top+m.bottom)
52421             };
52422             //if(this.hideOnLayout){
52423                 //center.el.setStyle("display", "block");
52424             //}
52425             center.updateBox(this.safeBox(centerBox));
52426         }
52427         this.el.repaint();
52428         this.fireEvent("layout", this);
52429     },
52430
52431     // private
52432     safeBox : function(box){
52433         box.width = Math.max(0, box.width);
52434         box.height = Math.max(0, box.height);
52435         return box;
52436     },
52437
52438     /**
52439      * Adds a ContentPanel (or subclass) to this layout.
52440      * @param {String} target The target region key (north, south, east, west or center).
52441      * @param {Roo.ContentPanel} panel The panel to add
52442      * @return {Roo.ContentPanel} The added panel
52443      */
52444     add : function(target, panel){
52445          
52446         target = target.toLowerCase();
52447         return this.regions[target].add(panel);
52448     },
52449
52450     /**
52451      * Remove a ContentPanel (or subclass) to this layout.
52452      * @param {String} target The target region key (north, south, east, west or center).
52453      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52454      * @return {Roo.ContentPanel} The removed panel
52455      */
52456     remove : function(target, panel){
52457         target = target.toLowerCase();
52458         return this.regions[target].remove(panel);
52459     },
52460
52461     /**
52462      * Searches all regions for a panel with the specified id
52463      * @param {String} panelId
52464      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52465      */
52466     findPanel : function(panelId){
52467         var rs = this.regions;
52468         for(var target in rs){
52469             if(typeof rs[target] != "function"){
52470                 var p = rs[target].getPanel(panelId);
52471                 if(p){
52472                     return p;
52473                 }
52474             }
52475         }
52476         return null;
52477     },
52478
52479     /**
52480      * Searches all regions for a panel with the specified id and activates (shows) it.
52481      * @param {String/ContentPanel} panelId The panels id or the panel itself
52482      * @return {Roo.ContentPanel} The shown panel or null
52483      */
52484     showPanel : function(panelId) {
52485       var rs = this.regions;
52486       for(var target in rs){
52487          var r = rs[target];
52488          if(typeof r != "function"){
52489             if(r.hasPanel(panelId)){
52490                return r.showPanel(panelId);
52491             }
52492          }
52493       }
52494       return null;
52495    },
52496
52497    /**
52498      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52499      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52500      */
52501     restoreState : function(provider){
52502         if(!provider){
52503             provider = Roo.state.Manager;
52504         }
52505         var sm = new Roo.LayoutStateManager();
52506         sm.init(this, provider);
52507     },
52508
52509     /**
52510      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52511      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52512      * a valid ContentPanel config object.  Example:
52513      * <pre><code>
52514 // Create the main layout
52515 var layout = new Roo.BorderLayout('main-ct', {
52516     west: {
52517         split:true,
52518         minSize: 175,
52519         titlebar: true
52520     },
52521     center: {
52522         title:'Components'
52523     }
52524 }, 'main-ct');
52525
52526 // Create and add multiple ContentPanels at once via configs
52527 layout.batchAdd({
52528    west: {
52529        id: 'source-files',
52530        autoCreate:true,
52531        title:'Ext Source Files',
52532        autoScroll:true,
52533        fitToFrame:true
52534    },
52535    center : {
52536        el: cview,
52537        autoScroll:true,
52538        fitToFrame:true,
52539        toolbar: tb,
52540        resizeEl:'cbody'
52541    }
52542 });
52543 </code></pre>
52544      * @param {Object} regions An object containing ContentPanel configs by region name
52545      */
52546     batchAdd : function(regions){
52547         this.beginUpdate();
52548         for(var rname in regions){
52549             var lr = this.regions[rname];
52550             if(lr){
52551                 this.addTypedPanels(lr, regions[rname]);
52552             }
52553         }
52554         this.endUpdate();
52555     },
52556
52557     // private
52558     addTypedPanels : function(lr, ps){
52559         if(typeof ps == 'string'){
52560             lr.add(new Roo.ContentPanel(ps));
52561         }
52562         else if(ps instanceof Array){
52563             for(var i =0, len = ps.length; i < len; i++){
52564                 this.addTypedPanels(lr, ps[i]);
52565             }
52566         }
52567         else if(!ps.events){ // raw config?
52568             var el = ps.el;
52569             delete ps.el; // prevent conflict
52570             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52571         }
52572         else {  // panel object assumed!
52573             lr.add(ps);
52574         }
52575     },
52576     /**
52577      * Adds a xtype elements to the layout.
52578      * <pre><code>
52579
52580 layout.addxtype({
52581        xtype : 'ContentPanel',
52582        region: 'west',
52583        items: [ .... ]
52584    }
52585 );
52586
52587 layout.addxtype({
52588         xtype : 'NestedLayoutPanel',
52589         region: 'west',
52590         layout: {
52591            center: { },
52592            west: { }   
52593         },
52594         items : [ ... list of content panels or nested layout panels.. ]
52595    }
52596 );
52597 </code></pre>
52598      * @param {Object} cfg Xtype definition of item to add.
52599      */
52600     addxtype : function(cfg)
52601     {
52602         // basically accepts a pannel...
52603         // can accept a layout region..!?!?
52604         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52605         
52606         if (!cfg.xtype.match(/Panel$/)) {
52607             return false;
52608         }
52609         var ret = false;
52610         
52611         if (typeof(cfg.region) == 'undefined') {
52612             Roo.log("Failed to add Panel, region was not set");
52613             Roo.log(cfg);
52614             return false;
52615         }
52616         var region = cfg.region;
52617         delete cfg.region;
52618         
52619           
52620         var xitems = [];
52621         if (cfg.items) {
52622             xitems = cfg.items;
52623             delete cfg.items;
52624         }
52625         var nb = false;
52626         
52627         switch(cfg.xtype) 
52628         {
52629             case 'ContentPanel':  // ContentPanel (el, cfg)
52630             case 'ScrollPanel':  // ContentPanel (el, cfg)
52631             case 'ViewPanel': 
52632                 if(cfg.autoCreate) {
52633                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52634                 } else {
52635                     var el = this.el.createChild();
52636                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52637                 }
52638                 
52639                 this.add(region, ret);
52640                 break;
52641             
52642             
52643             case 'TreePanel': // our new panel!
52644                 cfg.el = this.el.createChild();
52645                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52646                 this.add(region, ret);
52647                 break;
52648             
52649             case 'NestedLayoutPanel': 
52650                 // create a new Layout (which is  a Border Layout...
52651                 var el = this.el.createChild();
52652                 var clayout = cfg.layout;
52653                 delete cfg.layout;
52654                 clayout.items   = clayout.items  || [];
52655                 // replace this exitems with the clayout ones..
52656                 xitems = clayout.items;
52657                  
52658                 
52659                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52660                     cfg.background = false;
52661                 }
52662                 var layout = new Roo.BorderLayout(el, clayout);
52663                 
52664                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52665                 //console.log('adding nested layout panel '  + cfg.toSource());
52666                 this.add(region, ret);
52667                 nb = {}; /// find first...
52668                 break;
52669                 
52670             case 'GridPanel': 
52671             
52672                 // needs grid and region
52673                 
52674                 //var el = this.getRegion(region).el.createChild();
52675                 var el = this.el.createChild();
52676                 // create the grid first...
52677                 
52678                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52679                 delete cfg.grid;
52680                 if (region == 'center' && this.active ) {
52681                     cfg.background = false;
52682                 }
52683                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52684                 
52685                 this.add(region, ret);
52686                 if (cfg.background) {
52687                     ret.on('activate', function(gp) {
52688                         if (!gp.grid.rendered) {
52689                             gp.grid.render();
52690                         }
52691                     });
52692                 } else {
52693                     grid.render();
52694                 }
52695                 break;
52696            
52697            
52698            
52699                 
52700                 
52701                 
52702             default:
52703                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52704                     
52705                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52706                     this.add(region, ret);
52707                 } else {
52708                 
52709                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52710                     return null;
52711                 }
52712                 
52713              // GridPanel (grid, cfg)
52714             
52715         }
52716         this.beginUpdate();
52717         // add children..
52718         var region = '';
52719         var abn = {};
52720         Roo.each(xitems, function(i)  {
52721             region = nb && i.region ? i.region : false;
52722             
52723             var add = ret.addxtype(i);
52724            
52725             if (region) {
52726                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52727                 if (!i.background) {
52728                     abn[region] = nb[region] ;
52729                 }
52730             }
52731             
52732         });
52733         this.endUpdate();
52734
52735         // make the last non-background panel active..
52736         //if (nb) { Roo.log(abn); }
52737         if (nb) {
52738             
52739             for(var r in abn) {
52740                 region = this.getRegion(r);
52741                 if (region) {
52742                     // tried using nb[r], but it does not work..
52743                      
52744                     region.showPanel(abn[r]);
52745                    
52746                 }
52747             }
52748         }
52749         return ret;
52750         
52751     }
52752 });
52753
52754 /**
52755  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52756  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52757  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52758  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52759  * <pre><code>
52760 // shorthand
52761 var CP = Roo.ContentPanel;
52762
52763 var layout = Roo.BorderLayout.create({
52764     north: {
52765         initialSize: 25,
52766         titlebar: false,
52767         panels: [new CP("north", "North")]
52768     },
52769     west: {
52770         split:true,
52771         initialSize: 200,
52772         minSize: 175,
52773         maxSize: 400,
52774         titlebar: true,
52775         collapsible: true,
52776         panels: [new CP("west", {title: "West"})]
52777     },
52778     east: {
52779         split:true,
52780         initialSize: 202,
52781         minSize: 175,
52782         maxSize: 400,
52783         titlebar: true,
52784         collapsible: true,
52785         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52786     },
52787     south: {
52788         split:true,
52789         initialSize: 100,
52790         minSize: 100,
52791         maxSize: 200,
52792         titlebar: true,
52793         collapsible: true,
52794         panels: [new CP("south", {title: "South", closable: true})]
52795     },
52796     center: {
52797         titlebar: true,
52798         autoScroll:true,
52799         resizeTabs: true,
52800         minTabWidth: 50,
52801         preferredTabWidth: 150,
52802         panels: [
52803             new CP("center1", {title: "Close Me", closable: true}),
52804             new CP("center2", {title: "Center Panel", closable: false})
52805         ]
52806     }
52807 }, document.body);
52808
52809 layout.getRegion("center").showPanel("center1");
52810 </code></pre>
52811  * @param config
52812  * @param targetEl
52813  */
52814 Roo.BorderLayout.create = function(config, targetEl){
52815     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52816     layout.beginUpdate();
52817     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52818     for(var j = 0, jlen = regions.length; j < jlen; j++){
52819         var lr = regions[j];
52820         if(layout.regions[lr] && config[lr].panels){
52821             var r = layout.regions[lr];
52822             var ps = config[lr].panels;
52823             layout.addTypedPanels(r, ps);
52824         }
52825     }
52826     layout.endUpdate();
52827     return layout;
52828 };
52829
52830 // private
52831 Roo.BorderLayout.RegionFactory = {
52832     // private
52833     validRegions : ["north","south","east","west","center"],
52834
52835     // private
52836     create : function(target, mgr, config){
52837         target = target.toLowerCase();
52838         if(config.lightweight || config.basic){
52839             return new Roo.BasicLayoutRegion(mgr, config, target);
52840         }
52841         switch(target){
52842             case "north":
52843                 return new Roo.NorthLayoutRegion(mgr, config);
52844             case "south":
52845                 return new Roo.SouthLayoutRegion(mgr, config);
52846             case "east":
52847                 return new Roo.EastLayoutRegion(mgr, config);
52848             case "west":
52849                 return new Roo.WestLayoutRegion(mgr, config);
52850             case "center":
52851                 return new Roo.CenterLayoutRegion(mgr, config);
52852         }
52853         throw 'Layout region "'+target+'" not supported.';
52854     }
52855 };/*
52856  * Based on:
52857  * Ext JS Library 1.1.1
52858  * Copyright(c) 2006-2007, Ext JS, LLC.
52859  *
52860  * Originally Released Under LGPL - original licence link has changed is not relivant.
52861  *
52862  * Fork - LGPL
52863  * <script type="text/javascript">
52864  */
52865  
52866 /**
52867  * @class Roo.BasicLayoutRegion
52868  * @extends Roo.util.Observable
52869  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52870  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52871  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52872  */
52873 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52874     this.mgr = mgr;
52875     this.position  = pos;
52876     this.events = {
52877         /**
52878          * @scope Roo.BasicLayoutRegion
52879          */
52880         
52881         /**
52882          * @event beforeremove
52883          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52884          * @param {Roo.LayoutRegion} this
52885          * @param {Roo.ContentPanel} panel The panel
52886          * @param {Object} e The cancel event object
52887          */
52888         "beforeremove" : true,
52889         /**
52890          * @event invalidated
52891          * Fires when the layout for this region is changed.
52892          * @param {Roo.LayoutRegion} this
52893          */
52894         "invalidated" : true,
52895         /**
52896          * @event visibilitychange
52897          * Fires when this region is shown or hidden 
52898          * @param {Roo.LayoutRegion} this
52899          * @param {Boolean} visibility true or false
52900          */
52901         "visibilitychange" : true,
52902         /**
52903          * @event paneladded
52904          * Fires when a panel is added. 
52905          * @param {Roo.LayoutRegion} this
52906          * @param {Roo.ContentPanel} panel The panel
52907          */
52908         "paneladded" : true,
52909         /**
52910          * @event panelremoved
52911          * Fires when a panel is removed. 
52912          * @param {Roo.LayoutRegion} this
52913          * @param {Roo.ContentPanel} panel The panel
52914          */
52915         "panelremoved" : true,
52916         /**
52917          * @event beforecollapse
52918          * Fires when this region before collapse.
52919          * @param {Roo.LayoutRegion} this
52920          */
52921         "beforecollapse" : true,
52922         /**
52923          * @event collapsed
52924          * Fires when this region is collapsed.
52925          * @param {Roo.LayoutRegion} this
52926          */
52927         "collapsed" : true,
52928         /**
52929          * @event expanded
52930          * Fires when this region is expanded.
52931          * @param {Roo.LayoutRegion} this
52932          */
52933         "expanded" : true,
52934         /**
52935          * @event slideshow
52936          * Fires when this region is slid into view.
52937          * @param {Roo.LayoutRegion} this
52938          */
52939         "slideshow" : true,
52940         /**
52941          * @event slidehide
52942          * Fires when this region slides out of view. 
52943          * @param {Roo.LayoutRegion} this
52944          */
52945         "slidehide" : true,
52946         /**
52947          * @event panelactivated
52948          * Fires when a panel is activated. 
52949          * @param {Roo.LayoutRegion} this
52950          * @param {Roo.ContentPanel} panel The activated panel
52951          */
52952         "panelactivated" : true,
52953         /**
52954          * @event resized
52955          * Fires when the user resizes this region. 
52956          * @param {Roo.LayoutRegion} this
52957          * @param {Number} newSize The new size (width for east/west, height for north/south)
52958          */
52959         "resized" : true
52960     };
52961     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52962     this.panels = new Roo.util.MixedCollection();
52963     this.panels.getKey = this.getPanelId.createDelegate(this);
52964     this.box = null;
52965     this.activePanel = null;
52966     // ensure listeners are added...
52967     
52968     if (config.listeners || config.events) {
52969         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52970             listeners : config.listeners || {},
52971             events : config.events || {}
52972         });
52973     }
52974     
52975     if(skipConfig !== true){
52976         this.applyConfig(config);
52977     }
52978 };
52979
52980 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52981     getPanelId : function(p){
52982         return p.getId();
52983     },
52984     
52985     applyConfig : function(config){
52986         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52987         this.config = config;
52988         
52989     },
52990     
52991     /**
52992      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52993      * the width, for horizontal (north, south) the height.
52994      * @param {Number} newSize The new width or height
52995      */
52996     resizeTo : function(newSize){
52997         var el = this.el ? this.el :
52998                  (this.activePanel ? this.activePanel.getEl() : null);
52999         if(el){
53000             switch(this.position){
53001                 case "east":
53002                 case "west":
53003                     el.setWidth(newSize);
53004                     this.fireEvent("resized", this, newSize);
53005                 break;
53006                 case "north":
53007                 case "south":
53008                     el.setHeight(newSize);
53009                     this.fireEvent("resized", this, newSize);
53010                 break;                
53011             }
53012         }
53013     },
53014     
53015     getBox : function(){
53016         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
53017     },
53018     
53019     getMargins : function(){
53020         return this.margins;
53021     },
53022     
53023     updateBox : function(box){
53024         this.box = box;
53025         var el = this.activePanel.getEl();
53026         el.dom.style.left = box.x + "px";
53027         el.dom.style.top = box.y + "px";
53028         this.activePanel.setSize(box.width, box.height);
53029     },
53030     
53031     /**
53032      * Returns the container element for this region.
53033      * @return {Roo.Element}
53034      */
53035     getEl : function(){
53036         return this.activePanel;
53037     },
53038     
53039     /**
53040      * Returns true if this region is currently visible.
53041      * @return {Boolean}
53042      */
53043     isVisible : function(){
53044         return this.activePanel ? true : false;
53045     },
53046     
53047     setActivePanel : function(panel){
53048         panel = this.getPanel(panel);
53049         if(this.activePanel && this.activePanel != panel){
53050             this.activePanel.setActiveState(false);
53051             this.activePanel.getEl().setLeftTop(-10000,-10000);
53052         }
53053         this.activePanel = panel;
53054         panel.setActiveState(true);
53055         if(this.box){
53056             panel.setSize(this.box.width, this.box.height);
53057         }
53058         this.fireEvent("panelactivated", this, panel);
53059         this.fireEvent("invalidated");
53060     },
53061     
53062     /**
53063      * Show the specified panel.
53064      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
53065      * @return {Roo.ContentPanel} The shown panel or null
53066      */
53067     showPanel : function(panel){
53068         if(panel = this.getPanel(panel)){
53069             this.setActivePanel(panel);
53070         }
53071         return panel;
53072     },
53073     
53074     /**
53075      * Get the active panel for this region.
53076      * @return {Roo.ContentPanel} The active panel or null
53077      */
53078     getActivePanel : function(){
53079         return this.activePanel;
53080     },
53081     
53082     /**
53083      * Add the passed ContentPanel(s)
53084      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53085      * @return {Roo.ContentPanel} The panel added (if only one was added)
53086      */
53087     add : function(panel){
53088         if(arguments.length > 1){
53089             for(var i = 0, len = arguments.length; i < len; i++) {
53090                 this.add(arguments[i]);
53091             }
53092             return null;
53093         }
53094         if(this.hasPanel(panel)){
53095             this.showPanel(panel);
53096             return panel;
53097         }
53098         var el = panel.getEl();
53099         if(el.dom.parentNode != this.mgr.el.dom){
53100             this.mgr.el.dom.appendChild(el.dom);
53101         }
53102         if(panel.setRegion){
53103             panel.setRegion(this);
53104         }
53105         this.panels.add(panel);
53106         el.setStyle("position", "absolute");
53107         if(!panel.background){
53108             this.setActivePanel(panel);
53109             if(this.config.initialSize && this.panels.getCount()==1){
53110                 this.resizeTo(this.config.initialSize);
53111             }
53112         }
53113         this.fireEvent("paneladded", this, panel);
53114         return panel;
53115     },
53116     
53117     /**
53118      * Returns true if the panel is in this region.
53119      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53120      * @return {Boolean}
53121      */
53122     hasPanel : function(panel){
53123         if(typeof panel == "object"){ // must be panel obj
53124             panel = panel.getId();
53125         }
53126         return this.getPanel(panel) ? true : false;
53127     },
53128     
53129     /**
53130      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53131      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53132      * @param {Boolean} preservePanel Overrides the config preservePanel option
53133      * @return {Roo.ContentPanel} The panel that was removed
53134      */
53135     remove : function(panel, preservePanel){
53136         panel = this.getPanel(panel);
53137         if(!panel){
53138             return null;
53139         }
53140         var e = {};
53141         this.fireEvent("beforeremove", this, panel, e);
53142         if(e.cancel === true){
53143             return null;
53144         }
53145         var panelId = panel.getId();
53146         this.panels.removeKey(panelId);
53147         return panel;
53148     },
53149     
53150     /**
53151      * Returns the panel specified or null if it's not in this region.
53152      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53153      * @return {Roo.ContentPanel}
53154      */
53155     getPanel : function(id){
53156         if(typeof id == "object"){ // must be panel obj
53157             return id;
53158         }
53159         return this.panels.get(id);
53160     },
53161     
53162     /**
53163      * Returns this regions position (north/south/east/west/center).
53164      * @return {String} 
53165      */
53166     getPosition: function(){
53167         return this.position;    
53168     }
53169 });/*
53170  * Based on:
53171  * Ext JS Library 1.1.1
53172  * Copyright(c) 2006-2007, Ext JS, LLC.
53173  *
53174  * Originally Released Under LGPL - original licence link has changed is not relivant.
53175  *
53176  * Fork - LGPL
53177  * <script type="text/javascript">
53178  */
53179  
53180 /**
53181  * @class Roo.LayoutRegion
53182  * @extends Roo.BasicLayoutRegion
53183  * This class represents a region in a layout manager.
53184  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
53185  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
53186  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
53187  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
53188  * @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})
53189  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
53190  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
53191  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
53192  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
53193  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
53194  * @cfg {String}    title           The title for the region (overrides panel titles)
53195  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
53196  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
53197  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
53198  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
53199  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
53200  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
53201  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
53202  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
53203  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
53204  * @cfg {Boolean}   showPin         True to show a pin button
53205  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
53206  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
53207  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
53208  * @cfg {Number}    width           For East/West panels
53209  * @cfg {Number}    height          For North/South panels
53210  * @cfg {Boolean}   split           To show the splitter
53211  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
53212  */
53213 Roo.LayoutRegion = function(mgr, config, pos){
53214     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
53215     var dh = Roo.DomHelper;
53216     /** This region's container element 
53217     * @type Roo.Element */
53218     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53219     /** This region's title element 
53220     * @type Roo.Element */
53221
53222     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53223         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53224         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53225     ]}, true);
53226     this.titleEl.enableDisplayMode();
53227     /** This region's title text element 
53228     * @type HTMLElement */
53229     this.titleTextEl = this.titleEl.dom.firstChild;
53230     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53231     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53232     this.closeBtn.enableDisplayMode();
53233     this.closeBtn.on("click", this.closeClicked, this);
53234     this.closeBtn.hide();
53235
53236     this.createBody(config);
53237     this.visible = true;
53238     this.collapsed = false;
53239
53240     if(config.hideWhenEmpty){
53241         this.hide();
53242         this.on("paneladded", this.validateVisibility, this);
53243         this.on("panelremoved", this.validateVisibility, this);
53244     }
53245     this.applyConfig(config);
53246 };
53247
53248 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53249
53250     createBody : function(){
53251         /** This region's body element 
53252         * @type Roo.Element */
53253         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53254     },
53255
53256     applyConfig : function(c){
53257         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53258             var dh = Roo.DomHelper;
53259             if(c.titlebar !== false){
53260                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53261                 this.collapseBtn.on("click", this.collapse, this);
53262                 this.collapseBtn.enableDisplayMode();
53263
53264                 if(c.showPin === true || this.showPin){
53265                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53266                     this.stickBtn.enableDisplayMode();
53267                     this.stickBtn.on("click", this.expand, this);
53268                     this.stickBtn.hide();
53269                 }
53270             }
53271             /** This region's collapsed element
53272             * @type Roo.Element */
53273             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53274                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53275             ]}, true);
53276             if(c.floatable !== false){
53277                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53278                this.collapsedEl.on("click", this.collapseClick, this);
53279             }
53280
53281             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53282                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53283                    id: "message", unselectable: "on", style:{"float":"left"}});
53284                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53285              }
53286             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53287             this.expandBtn.on("click", this.expand, this);
53288         }
53289         if(this.collapseBtn){
53290             this.collapseBtn.setVisible(c.collapsible == true);
53291         }
53292         this.cmargins = c.cmargins || this.cmargins ||
53293                          (this.position == "west" || this.position == "east" ?
53294                              {top: 0, left: 2, right:2, bottom: 0} :
53295                              {top: 2, left: 0, right:0, bottom: 2});
53296         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53297         this.bottomTabs = c.tabPosition != "top";
53298         this.autoScroll = c.autoScroll || false;
53299         if(this.autoScroll){
53300             this.bodyEl.setStyle("overflow", "auto");
53301         }else{
53302             this.bodyEl.setStyle("overflow", "hidden");
53303         }
53304         //if(c.titlebar !== false){
53305             if((!c.titlebar && !c.title) || c.titlebar === false){
53306                 this.titleEl.hide();
53307             }else{
53308                 this.titleEl.show();
53309                 if(c.title){
53310                     this.titleTextEl.innerHTML = c.title;
53311                 }
53312             }
53313         //}
53314         this.duration = c.duration || .30;
53315         this.slideDuration = c.slideDuration || .45;
53316         this.config = c;
53317         if(c.collapsed){
53318             this.collapse(true);
53319         }
53320         if(c.hidden){
53321             this.hide();
53322         }
53323     },
53324     /**
53325      * Returns true if this region is currently visible.
53326      * @return {Boolean}
53327      */
53328     isVisible : function(){
53329         return this.visible;
53330     },
53331
53332     /**
53333      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53334      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53335      */
53336     setCollapsedTitle : function(title){
53337         title = title || "&#160;";
53338         if(this.collapsedTitleTextEl){
53339             this.collapsedTitleTextEl.innerHTML = title;
53340         }
53341     },
53342
53343     getBox : function(){
53344         var b;
53345         if(!this.collapsed){
53346             b = this.el.getBox(false, true);
53347         }else{
53348             b = this.collapsedEl.getBox(false, true);
53349         }
53350         return b;
53351     },
53352
53353     getMargins : function(){
53354         return this.collapsed ? this.cmargins : this.margins;
53355     },
53356
53357     highlight : function(){
53358         this.el.addClass("x-layout-panel-dragover");
53359     },
53360
53361     unhighlight : function(){
53362         this.el.removeClass("x-layout-panel-dragover");
53363     },
53364
53365     updateBox : function(box){
53366         this.box = box;
53367         if(!this.collapsed){
53368             this.el.dom.style.left = box.x + "px";
53369             this.el.dom.style.top = box.y + "px";
53370             this.updateBody(box.width, box.height);
53371         }else{
53372             this.collapsedEl.dom.style.left = box.x + "px";
53373             this.collapsedEl.dom.style.top = box.y + "px";
53374             this.collapsedEl.setSize(box.width, box.height);
53375         }
53376         if(this.tabs){
53377             this.tabs.autoSizeTabs();
53378         }
53379     },
53380
53381     updateBody : function(w, h){
53382         if(w !== null){
53383             this.el.setWidth(w);
53384             w -= this.el.getBorderWidth("rl");
53385             if(this.config.adjustments){
53386                 w += this.config.adjustments[0];
53387             }
53388         }
53389         if(h !== null){
53390             this.el.setHeight(h);
53391             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53392             h -= this.el.getBorderWidth("tb");
53393             if(this.config.adjustments){
53394                 h += this.config.adjustments[1];
53395             }
53396             this.bodyEl.setHeight(h);
53397             if(this.tabs){
53398                 h = this.tabs.syncHeight(h);
53399             }
53400         }
53401         if(this.panelSize){
53402             w = w !== null ? w : this.panelSize.width;
53403             h = h !== null ? h : this.panelSize.height;
53404         }
53405         if(this.activePanel){
53406             var el = this.activePanel.getEl();
53407             w = w !== null ? w : el.getWidth();
53408             h = h !== null ? h : el.getHeight();
53409             this.panelSize = {width: w, height: h};
53410             this.activePanel.setSize(w, h);
53411         }
53412         if(Roo.isIE && this.tabs){
53413             this.tabs.el.repaint();
53414         }
53415     },
53416
53417     /**
53418      * Returns the container element for this region.
53419      * @return {Roo.Element}
53420      */
53421     getEl : function(){
53422         return this.el;
53423     },
53424
53425     /**
53426      * Hides this region.
53427      */
53428     hide : function(){
53429         if(!this.collapsed){
53430             this.el.dom.style.left = "-2000px";
53431             this.el.hide();
53432         }else{
53433             this.collapsedEl.dom.style.left = "-2000px";
53434             this.collapsedEl.hide();
53435         }
53436         this.visible = false;
53437         this.fireEvent("visibilitychange", this, false);
53438     },
53439
53440     /**
53441      * Shows this region if it was previously hidden.
53442      */
53443     show : function(){
53444         if(!this.collapsed){
53445             this.el.show();
53446         }else{
53447             this.collapsedEl.show();
53448         }
53449         this.visible = true;
53450         this.fireEvent("visibilitychange", this, true);
53451     },
53452
53453     closeClicked : function(){
53454         if(this.activePanel){
53455             this.remove(this.activePanel);
53456         }
53457     },
53458
53459     collapseClick : function(e){
53460         if(this.isSlid){
53461            e.stopPropagation();
53462            this.slideIn();
53463         }else{
53464            e.stopPropagation();
53465            this.slideOut();
53466         }
53467     },
53468
53469     /**
53470      * Collapses this region.
53471      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53472      */
53473     collapse : function(skipAnim, skipCheck){
53474         if(this.collapsed) {
53475             return;
53476         }
53477         
53478         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53479             
53480             this.collapsed = true;
53481             if(this.split){
53482                 this.split.el.hide();
53483             }
53484             if(this.config.animate && skipAnim !== true){
53485                 this.fireEvent("invalidated", this);
53486                 this.animateCollapse();
53487             }else{
53488                 this.el.setLocation(-20000,-20000);
53489                 this.el.hide();
53490                 this.collapsedEl.show();
53491                 this.fireEvent("collapsed", this);
53492                 this.fireEvent("invalidated", this);
53493             }
53494         }
53495         
53496     },
53497
53498     animateCollapse : function(){
53499         // overridden
53500     },
53501
53502     /**
53503      * Expands this region if it was previously collapsed.
53504      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53505      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53506      */
53507     expand : function(e, skipAnim){
53508         if(e) {
53509             e.stopPropagation();
53510         }
53511         if(!this.collapsed || this.el.hasActiveFx()) {
53512             return;
53513         }
53514         if(this.isSlid){
53515             this.afterSlideIn();
53516             skipAnim = true;
53517         }
53518         this.collapsed = false;
53519         if(this.config.animate && skipAnim !== true){
53520             this.animateExpand();
53521         }else{
53522             this.el.show();
53523             if(this.split){
53524                 this.split.el.show();
53525             }
53526             this.collapsedEl.setLocation(-2000,-2000);
53527             this.collapsedEl.hide();
53528             this.fireEvent("invalidated", this);
53529             this.fireEvent("expanded", this);
53530         }
53531     },
53532
53533     animateExpand : function(){
53534         // overridden
53535     },
53536
53537     initTabs : function()
53538     {
53539         this.bodyEl.setStyle("overflow", "hidden");
53540         var ts = new Roo.TabPanel(
53541                 this.bodyEl.dom,
53542                 {
53543                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53544                     disableTooltips: this.config.disableTabTips,
53545                     toolbar : this.config.toolbar
53546                 }
53547         );
53548         if(this.config.hideTabs){
53549             ts.stripWrap.setDisplayed(false);
53550         }
53551         this.tabs = ts;
53552         ts.resizeTabs = this.config.resizeTabs === true;
53553         ts.minTabWidth = this.config.minTabWidth || 40;
53554         ts.maxTabWidth = this.config.maxTabWidth || 250;
53555         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53556         ts.monitorResize = false;
53557         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53558         ts.bodyEl.addClass('x-layout-tabs-body');
53559         this.panels.each(this.initPanelAsTab, this);
53560     },
53561
53562     initPanelAsTab : function(panel){
53563         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53564                     this.config.closeOnTab && panel.isClosable());
53565         if(panel.tabTip !== undefined){
53566             ti.setTooltip(panel.tabTip);
53567         }
53568         ti.on("activate", function(){
53569               this.setActivePanel(panel);
53570         }, this);
53571         if(this.config.closeOnTab){
53572             ti.on("beforeclose", function(t, e){
53573                 e.cancel = true;
53574                 this.remove(panel);
53575             }, this);
53576         }
53577         return ti;
53578     },
53579
53580     updatePanelTitle : function(panel, title){
53581         if(this.activePanel == panel){
53582             this.updateTitle(title);
53583         }
53584         if(this.tabs){
53585             var ti = this.tabs.getTab(panel.getEl().id);
53586             ti.setText(title);
53587             if(panel.tabTip !== undefined){
53588                 ti.setTooltip(panel.tabTip);
53589             }
53590         }
53591     },
53592
53593     updateTitle : function(title){
53594         if(this.titleTextEl && !this.config.title){
53595             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53596         }
53597     },
53598
53599     setActivePanel : function(panel){
53600         panel = this.getPanel(panel);
53601         if(this.activePanel && this.activePanel != panel){
53602             this.activePanel.setActiveState(false);
53603         }
53604         this.activePanel = panel;
53605         panel.setActiveState(true);
53606         if(this.panelSize){
53607             panel.setSize(this.panelSize.width, this.panelSize.height);
53608         }
53609         if(this.closeBtn){
53610             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53611         }
53612         this.updateTitle(panel.getTitle());
53613         if(this.tabs){
53614             this.fireEvent("invalidated", this);
53615         }
53616         this.fireEvent("panelactivated", this, panel);
53617     },
53618
53619     /**
53620      * Shows the specified panel.
53621      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53622      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53623      */
53624     showPanel : function(panel)
53625     {
53626         panel = this.getPanel(panel);
53627         if(panel){
53628             if(this.tabs){
53629                 var tab = this.tabs.getTab(panel.getEl().id);
53630                 if(tab.isHidden()){
53631                     this.tabs.unhideTab(tab.id);
53632                 }
53633                 tab.activate();
53634             }else{
53635                 this.setActivePanel(panel);
53636             }
53637         }
53638         return panel;
53639     },
53640
53641     /**
53642      * Get the active panel for this region.
53643      * @return {Roo.ContentPanel} The active panel or null
53644      */
53645     getActivePanel : function(){
53646         return this.activePanel;
53647     },
53648
53649     validateVisibility : function(){
53650         if(this.panels.getCount() < 1){
53651             this.updateTitle("&#160;");
53652             this.closeBtn.hide();
53653             this.hide();
53654         }else{
53655             if(!this.isVisible()){
53656                 this.show();
53657             }
53658         }
53659     },
53660
53661     /**
53662      * Adds the passed ContentPanel(s) to this region.
53663      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53664      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53665      */
53666     add : function(panel){
53667         if(arguments.length > 1){
53668             for(var i = 0, len = arguments.length; i < len; i++) {
53669                 this.add(arguments[i]);
53670             }
53671             return null;
53672         }
53673         if(this.hasPanel(panel)){
53674             this.showPanel(panel);
53675             return panel;
53676         }
53677         panel.setRegion(this);
53678         this.panels.add(panel);
53679         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53680             this.bodyEl.dom.appendChild(panel.getEl().dom);
53681             if(panel.background !== true){
53682                 this.setActivePanel(panel);
53683             }
53684             this.fireEvent("paneladded", this, panel);
53685             return panel;
53686         }
53687         if(!this.tabs){
53688             this.initTabs();
53689         }else{
53690             this.initPanelAsTab(panel);
53691         }
53692         if(panel.background !== true){
53693             this.tabs.activate(panel.getEl().id);
53694         }
53695         this.fireEvent("paneladded", this, panel);
53696         return panel;
53697     },
53698
53699     /**
53700      * Hides the tab for the specified panel.
53701      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53702      */
53703     hidePanel : function(panel){
53704         if(this.tabs && (panel = this.getPanel(panel))){
53705             this.tabs.hideTab(panel.getEl().id);
53706         }
53707     },
53708
53709     /**
53710      * Unhides the tab for a previously hidden panel.
53711      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53712      */
53713     unhidePanel : function(panel){
53714         if(this.tabs && (panel = this.getPanel(panel))){
53715             this.tabs.unhideTab(panel.getEl().id);
53716         }
53717     },
53718
53719     clearPanels : function(){
53720         while(this.panels.getCount() > 0){
53721              this.remove(this.panels.first());
53722         }
53723     },
53724
53725     /**
53726      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53727      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53728      * @param {Boolean} preservePanel Overrides the config preservePanel option
53729      * @return {Roo.ContentPanel} The panel that was removed
53730      */
53731     remove : function(panel, preservePanel){
53732         panel = this.getPanel(panel);
53733         if(!panel){
53734             return null;
53735         }
53736         var e = {};
53737         this.fireEvent("beforeremove", this, panel, e);
53738         if(e.cancel === true){
53739             return null;
53740         }
53741         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53742         var panelId = panel.getId();
53743         this.panels.removeKey(panelId);
53744         if(preservePanel){
53745             document.body.appendChild(panel.getEl().dom);
53746         }
53747         if(this.tabs){
53748             this.tabs.removeTab(panel.getEl().id);
53749         }else if (!preservePanel){
53750             this.bodyEl.dom.removeChild(panel.getEl().dom);
53751         }
53752         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53753             var p = this.panels.first();
53754             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53755             tempEl.appendChild(p.getEl().dom);
53756             this.bodyEl.update("");
53757             this.bodyEl.dom.appendChild(p.getEl().dom);
53758             tempEl = null;
53759             this.updateTitle(p.getTitle());
53760             this.tabs = null;
53761             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53762             this.setActivePanel(p);
53763         }
53764         panel.setRegion(null);
53765         if(this.activePanel == panel){
53766             this.activePanel = null;
53767         }
53768         if(this.config.autoDestroy !== false && preservePanel !== true){
53769             try{panel.destroy();}catch(e){}
53770         }
53771         this.fireEvent("panelremoved", this, panel);
53772         return panel;
53773     },
53774
53775     /**
53776      * Returns the TabPanel component used by this region
53777      * @return {Roo.TabPanel}
53778      */
53779     getTabs : function(){
53780         return this.tabs;
53781     },
53782
53783     createTool : function(parentEl, className){
53784         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53785             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53786         btn.addClassOnOver("x-layout-tools-button-over");
53787         return btn;
53788     }
53789 });/*
53790  * Based on:
53791  * Ext JS Library 1.1.1
53792  * Copyright(c) 2006-2007, Ext JS, LLC.
53793  *
53794  * Originally Released Under LGPL - original licence link has changed is not relivant.
53795  *
53796  * Fork - LGPL
53797  * <script type="text/javascript">
53798  */
53799  
53800
53801
53802 /**
53803  * @class Roo.SplitLayoutRegion
53804  * @extends Roo.LayoutRegion
53805  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53806  */
53807 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53808     this.cursor = cursor;
53809     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53810 };
53811
53812 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53813     splitTip : "Drag to resize.",
53814     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53815     useSplitTips : false,
53816
53817     applyConfig : function(config){
53818         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53819         if(config.split){
53820             if(!this.split){
53821                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53822                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53823                 /** The SplitBar for this region 
53824                 * @type Roo.SplitBar */
53825                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53826                 this.split.on("moved", this.onSplitMove, this);
53827                 this.split.useShim = config.useShim === true;
53828                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53829                 if(this.useSplitTips){
53830                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53831                 }
53832                 if(config.collapsible){
53833                     this.split.el.on("dblclick", this.collapse,  this);
53834                 }
53835             }
53836             if(typeof config.minSize != "undefined"){
53837                 this.split.minSize = config.minSize;
53838             }
53839             if(typeof config.maxSize != "undefined"){
53840                 this.split.maxSize = config.maxSize;
53841             }
53842             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53843                 this.hideSplitter();
53844             }
53845         }
53846     },
53847
53848     getHMaxSize : function(){
53849          var cmax = this.config.maxSize || 10000;
53850          var center = this.mgr.getRegion("center");
53851          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53852     },
53853
53854     getVMaxSize : function(){
53855          var cmax = this.config.maxSize || 10000;
53856          var center = this.mgr.getRegion("center");
53857          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53858     },
53859
53860     onSplitMove : function(split, newSize){
53861         this.fireEvent("resized", this, newSize);
53862     },
53863     
53864     /** 
53865      * Returns the {@link Roo.SplitBar} for this region.
53866      * @return {Roo.SplitBar}
53867      */
53868     getSplitBar : function(){
53869         return this.split;
53870     },
53871     
53872     hide : function(){
53873         this.hideSplitter();
53874         Roo.SplitLayoutRegion.superclass.hide.call(this);
53875     },
53876
53877     hideSplitter : function(){
53878         if(this.split){
53879             this.split.el.setLocation(-2000,-2000);
53880             this.split.el.hide();
53881         }
53882     },
53883
53884     show : function(){
53885         if(this.split){
53886             this.split.el.show();
53887         }
53888         Roo.SplitLayoutRegion.superclass.show.call(this);
53889     },
53890     
53891     beforeSlide: function(){
53892         if(Roo.isGecko){// firefox overflow auto bug workaround
53893             this.bodyEl.clip();
53894             if(this.tabs) {
53895                 this.tabs.bodyEl.clip();
53896             }
53897             if(this.activePanel){
53898                 this.activePanel.getEl().clip();
53899                 
53900                 if(this.activePanel.beforeSlide){
53901                     this.activePanel.beforeSlide();
53902                 }
53903             }
53904         }
53905     },
53906     
53907     afterSlide : function(){
53908         if(Roo.isGecko){// firefox overflow auto bug workaround
53909             this.bodyEl.unclip();
53910             if(this.tabs) {
53911                 this.tabs.bodyEl.unclip();
53912             }
53913             if(this.activePanel){
53914                 this.activePanel.getEl().unclip();
53915                 if(this.activePanel.afterSlide){
53916                     this.activePanel.afterSlide();
53917                 }
53918             }
53919         }
53920     },
53921
53922     initAutoHide : function(){
53923         if(this.autoHide !== false){
53924             if(!this.autoHideHd){
53925                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53926                 this.autoHideHd = {
53927                     "mouseout": function(e){
53928                         if(!e.within(this.el, true)){
53929                             st.delay(500);
53930                         }
53931                     },
53932                     "mouseover" : function(e){
53933                         st.cancel();
53934                     },
53935                     scope : this
53936                 };
53937             }
53938             this.el.on(this.autoHideHd);
53939         }
53940     },
53941
53942     clearAutoHide : function(){
53943         if(this.autoHide !== false){
53944             this.el.un("mouseout", this.autoHideHd.mouseout);
53945             this.el.un("mouseover", this.autoHideHd.mouseover);
53946         }
53947     },
53948
53949     clearMonitor : function(){
53950         Roo.get(document).un("click", this.slideInIf, this);
53951     },
53952
53953     // these names are backwards but not changed for compat
53954     slideOut : function(){
53955         if(this.isSlid || this.el.hasActiveFx()){
53956             return;
53957         }
53958         this.isSlid = true;
53959         if(this.collapseBtn){
53960             this.collapseBtn.hide();
53961         }
53962         this.closeBtnState = this.closeBtn.getStyle('display');
53963         this.closeBtn.hide();
53964         if(this.stickBtn){
53965             this.stickBtn.show();
53966         }
53967         this.el.show();
53968         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53969         this.beforeSlide();
53970         this.el.setStyle("z-index", 10001);
53971         this.el.slideIn(this.getSlideAnchor(), {
53972             callback: function(){
53973                 this.afterSlide();
53974                 this.initAutoHide();
53975                 Roo.get(document).on("click", this.slideInIf, this);
53976                 this.fireEvent("slideshow", this);
53977             },
53978             scope: this,
53979             block: true
53980         });
53981     },
53982
53983     afterSlideIn : function(){
53984         this.clearAutoHide();
53985         this.isSlid = false;
53986         this.clearMonitor();
53987         this.el.setStyle("z-index", "");
53988         if(this.collapseBtn){
53989             this.collapseBtn.show();
53990         }
53991         this.closeBtn.setStyle('display', this.closeBtnState);
53992         if(this.stickBtn){
53993             this.stickBtn.hide();
53994         }
53995         this.fireEvent("slidehide", this);
53996     },
53997
53998     slideIn : function(cb){
53999         if(!this.isSlid || this.el.hasActiveFx()){
54000             Roo.callback(cb);
54001             return;
54002         }
54003         this.isSlid = false;
54004         this.beforeSlide();
54005         this.el.slideOut(this.getSlideAnchor(), {
54006             callback: function(){
54007                 this.el.setLeftTop(-10000, -10000);
54008                 this.afterSlide();
54009                 this.afterSlideIn();
54010                 Roo.callback(cb);
54011             },
54012             scope: this,
54013             block: true
54014         });
54015     },
54016     
54017     slideInIf : function(e){
54018         if(!e.within(this.el)){
54019             this.slideIn();
54020         }
54021     },
54022
54023     animateCollapse : function(){
54024         this.beforeSlide();
54025         this.el.setStyle("z-index", 20000);
54026         var anchor = this.getSlideAnchor();
54027         this.el.slideOut(anchor, {
54028             callback : function(){
54029                 this.el.setStyle("z-index", "");
54030                 this.collapsedEl.slideIn(anchor, {duration:.3});
54031                 this.afterSlide();
54032                 this.el.setLocation(-10000,-10000);
54033                 this.el.hide();
54034                 this.fireEvent("collapsed", this);
54035             },
54036             scope: this,
54037             block: true
54038         });
54039     },
54040
54041     animateExpand : function(){
54042         this.beforeSlide();
54043         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
54044         this.el.setStyle("z-index", 20000);
54045         this.collapsedEl.hide({
54046             duration:.1
54047         });
54048         this.el.slideIn(this.getSlideAnchor(), {
54049             callback : function(){
54050                 this.el.setStyle("z-index", "");
54051                 this.afterSlide();
54052                 if(this.split){
54053                     this.split.el.show();
54054                 }
54055                 this.fireEvent("invalidated", this);
54056                 this.fireEvent("expanded", this);
54057             },
54058             scope: this,
54059             block: true
54060         });
54061     },
54062
54063     anchors : {
54064         "west" : "left",
54065         "east" : "right",
54066         "north" : "top",
54067         "south" : "bottom"
54068     },
54069
54070     sanchors : {
54071         "west" : "l",
54072         "east" : "r",
54073         "north" : "t",
54074         "south" : "b"
54075     },
54076
54077     canchors : {
54078         "west" : "tl-tr",
54079         "east" : "tr-tl",
54080         "north" : "tl-bl",
54081         "south" : "bl-tl"
54082     },
54083
54084     getAnchor : function(){
54085         return this.anchors[this.position];
54086     },
54087
54088     getCollapseAnchor : function(){
54089         return this.canchors[this.position];
54090     },
54091
54092     getSlideAnchor : function(){
54093         return this.sanchors[this.position];
54094     },
54095
54096     getAlignAdj : function(){
54097         var cm = this.cmargins;
54098         switch(this.position){
54099             case "west":
54100                 return [0, 0];
54101             break;
54102             case "east":
54103                 return [0, 0];
54104             break;
54105             case "north":
54106                 return [0, 0];
54107             break;
54108             case "south":
54109                 return [0, 0];
54110             break;
54111         }
54112     },
54113
54114     getExpandAdj : function(){
54115         var c = this.collapsedEl, cm = this.cmargins;
54116         switch(this.position){
54117             case "west":
54118                 return [-(cm.right+c.getWidth()+cm.left), 0];
54119             break;
54120             case "east":
54121                 return [cm.right+c.getWidth()+cm.left, 0];
54122             break;
54123             case "north":
54124                 return [0, -(cm.top+cm.bottom+c.getHeight())];
54125             break;
54126             case "south":
54127                 return [0, cm.top+cm.bottom+c.getHeight()];
54128             break;
54129         }
54130     }
54131 });/*
54132  * Based on:
54133  * Ext JS Library 1.1.1
54134  * Copyright(c) 2006-2007, Ext JS, LLC.
54135  *
54136  * Originally Released Under LGPL - original licence link has changed is not relivant.
54137  *
54138  * Fork - LGPL
54139  * <script type="text/javascript">
54140  */
54141 /*
54142  * These classes are private internal classes
54143  */
54144 Roo.CenterLayoutRegion = function(mgr, config){
54145     Roo.LayoutRegion.call(this, mgr, config, "center");
54146     this.visible = true;
54147     this.minWidth = config.minWidth || 20;
54148     this.minHeight = config.minHeight || 20;
54149 };
54150
54151 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
54152     hide : function(){
54153         // center panel can't be hidden
54154     },
54155     
54156     show : function(){
54157         // center panel can't be hidden
54158     },
54159     
54160     getMinWidth: function(){
54161         return this.minWidth;
54162     },
54163     
54164     getMinHeight: function(){
54165         return this.minHeight;
54166     }
54167 });
54168
54169
54170 Roo.NorthLayoutRegion = function(mgr, config){
54171     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
54172     if(this.split){
54173         this.split.placement = Roo.SplitBar.TOP;
54174         this.split.orientation = Roo.SplitBar.VERTICAL;
54175         this.split.el.addClass("x-layout-split-v");
54176     }
54177     var size = config.initialSize || config.height;
54178     if(typeof size != "undefined"){
54179         this.el.setHeight(size);
54180     }
54181 };
54182 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
54183     orientation: Roo.SplitBar.VERTICAL,
54184     getBox : function(){
54185         if(this.collapsed){
54186             return this.collapsedEl.getBox();
54187         }
54188         var box = this.el.getBox();
54189         if(this.split){
54190             box.height += this.split.el.getHeight();
54191         }
54192         return box;
54193     },
54194     
54195     updateBox : function(box){
54196         if(this.split && !this.collapsed){
54197             box.height -= this.split.el.getHeight();
54198             this.split.el.setLeft(box.x);
54199             this.split.el.setTop(box.y+box.height);
54200             this.split.el.setWidth(box.width);
54201         }
54202         if(this.collapsed){
54203             this.updateBody(box.width, null);
54204         }
54205         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54206     }
54207 });
54208
54209 Roo.SouthLayoutRegion = function(mgr, config){
54210     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
54211     if(this.split){
54212         this.split.placement = Roo.SplitBar.BOTTOM;
54213         this.split.orientation = Roo.SplitBar.VERTICAL;
54214         this.split.el.addClass("x-layout-split-v");
54215     }
54216     var size = config.initialSize || config.height;
54217     if(typeof size != "undefined"){
54218         this.el.setHeight(size);
54219     }
54220 };
54221 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54222     orientation: Roo.SplitBar.VERTICAL,
54223     getBox : function(){
54224         if(this.collapsed){
54225             return this.collapsedEl.getBox();
54226         }
54227         var box = this.el.getBox();
54228         if(this.split){
54229             var sh = this.split.el.getHeight();
54230             box.height += sh;
54231             box.y -= sh;
54232         }
54233         return box;
54234     },
54235     
54236     updateBox : function(box){
54237         if(this.split && !this.collapsed){
54238             var sh = this.split.el.getHeight();
54239             box.height -= sh;
54240             box.y += sh;
54241             this.split.el.setLeft(box.x);
54242             this.split.el.setTop(box.y-sh);
54243             this.split.el.setWidth(box.width);
54244         }
54245         if(this.collapsed){
54246             this.updateBody(box.width, null);
54247         }
54248         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54249     }
54250 });
54251
54252 Roo.EastLayoutRegion = function(mgr, config){
54253     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54254     if(this.split){
54255         this.split.placement = Roo.SplitBar.RIGHT;
54256         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54257         this.split.el.addClass("x-layout-split-h");
54258     }
54259     var size = config.initialSize || config.width;
54260     if(typeof size != "undefined"){
54261         this.el.setWidth(size);
54262     }
54263 };
54264 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54265     orientation: Roo.SplitBar.HORIZONTAL,
54266     getBox : function(){
54267         if(this.collapsed){
54268             return this.collapsedEl.getBox();
54269         }
54270         var box = this.el.getBox();
54271         if(this.split){
54272             var sw = this.split.el.getWidth();
54273             box.width += sw;
54274             box.x -= sw;
54275         }
54276         return box;
54277     },
54278
54279     updateBox : function(box){
54280         if(this.split && !this.collapsed){
54281             var sw = this.split.el.getWidth();
54282             box.width -= sw;
54283             this.split.el.setLeft(box.x);
54284             this.split.el.setTop(box.y);
54285             this.split.el.setHeight(box.height);
54286             box.x += sw;
54287         }
54288         if(this.collapsed){
54289             this.updateBody(null, box.height);
54290         }
54291         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54292     }
54293 });
54294
54295 Roo.WestLayoutRegion = function(mgr, config){
54296     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54297     if(this.split){
54298         this.split.placement = Roo.SplitBar.LEFT;
54299         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54300         this.split.el.addClass("x-layout-split-h");
54301     }
54302     var size = config.initialSize || config.width;
54303     if(typeof size != "undefined"){
54304         this.el.setWidth(size);
54305     }
54306 };
54307 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54308     orientation: Roo.SplitBar.HORIZONTAL,
54309     getBox : function(){
54310         if(this.collapsed){
54311             return this.collapsedEl.getBox();
54312         }
54313         var box = this.el.getBox();
54314         if(this.split){
54315             box.width += this.split.el.getWidth();
54316         }
54317         return box;
54318     },
54319     
54320     updateBox : function(box){
54321         if(this.split && !this.collapsed){
54322             var sw = this.split.el.getWidth();
54323             box.width -= sw;
54324             this.split.el.setLeft(box.x+box.width);
54325             this.split.el.setTop(box.y);
54326             this.split.el.setHeight(box.height);
54327         }
54328         if(this.collapsed){
54329             this.updateBody(null, box.height);
54330         }
54331         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54332     }
54333 });
54334 /*
54335  * Based on:
54336  * Ext JS Library 1.1.1
54337  * Copyright(c) 2006-2007, Ext JS, LLC.
54338  *
54339  * Originally Released Under LGPL - original licence link has changed is not relivant.
54340  *
54341  * Fork - LGPL
54342  * <script type="text/javascript">
54343  */
54344  
54345  
54346 /*
54347  * Private internal class for reading and applying state
54348  */
54349 Roo.LayoutStateManager = function(layout){
54350      // default empty state
54351      this.state = {
54352         north: {},
54353         south: {},
54354         east: {},
54355         west: {}       
54356     };
54357 };
54358
54359 Roo.LayoutStateManager.prototype = {
54360     init : function(layout, provider){
54361         this.provider = provider;
54362         var state = provider.get(layout.id+"-layout-state");
54363         if(state){
54364             var wasUpdating = layout.isUpdating();
54365             if(!wasUpdating){
54366                 layout.beginUpdate();
54367             }
54368             for(var key in state){
54369                 if(typeof state[key] != "function"){
54370                     var rstate = state[key];
54371                     var r = layout.getRegion(key);
54372                     if(r && rstate){
54373                         if(rstate.size){
54374                             r.resizeTo(rstate.size);
54375                         }
54376                         if(rstate.collapsed == true){
54377                             r.collapse(true);
54378                         }else{
54379                             r.expand(null, true);
54380                         }
54381                     }
54382                 }
54383             }
54384             if(!wasUpdating){
54385                 layout.endUpdate();
54386             }
54387             this.state = state; 
54388         }
54389         this.layout = layout;
54390         layout.on("regionresized", this.onRegionResized, this);
54391         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54392         layout.on("regionexpanded", this.onRegionExpanded, this);
54393     },
54394     
54395     storeState : function(){
54396         this.provider.set(this.layout.id+"-layout-state", this.state);
54397     },
54398     
54399     onRegionResized : function(region, newSize){
54400         this.state[region.getPosition()].size = newSize;
54401         this.storeState();
54402     },
54403     
54404     onRegionCollapsed : function(region){
54405         this.state[region.getPosition()].collapsed = true;
54406         this.storeState();
54407     },
54408     
54409     onRegionExpanded : function(region){
54410         this.state[region.getPosition()].collapsed = false;
54411         this.storeState();
54412     }
54413 };/*
54414  * Based on:
54415  * Ext JS Library 1.1.1
54416  * Copyright(c) 2006-2007, Ext JS, LLC.
54417  *
54418  * Originally Released Under LGPL - original licence link has changed is not relivant.
54419  *
54420  * Fork - LGPL
54421  * <script type="text/javascript">
54422  */
54423 /**
54424  * @class Roo.ContentPanel
54425  * @extends Roo.util.Observable
54426  * @children Roo.form.Form Roo.JsonView Roo.View
54427  * @builder-top
54428  * A basic ContentPanel element.
54429  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54430  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54431  * @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
54432  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54433  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54434  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54435  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
54436  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54437  * @cfg {String} title          The title for this panel
54438  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54439  * @cfg {String} url            Calls {@link #setUrl} with this value
54440  * @cfg {String} region [required]   (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54441  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54442  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54443  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54444  * @cfg {String}    style  Extra style to add to the content panel
54445  * @cfg {Roo.menu.Menu} menu  popup menu
54446
54447  * @constructor
54448  * Create a new ContentPanel.
54449  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54450  * @param {String/Object} config A string to set only the title or a config object
54451  * @param {String} content (optional) Set the HTML content for this panel
54452  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54453  */
54454 Roo.ContentPanel = function(el, config, content){
54455     
54456      
54457     /*
54458     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54459         config = el;
54460         el = Roo.id();
54461     }
54462     if (config && config.parentLayout) { 
54463         el = config.parentLayout.el.createChild(); 
54464     }
54465     */
54466     if(el.autoCreate){ // xtype is available if this is called from factory
54467         config = el;
54468         el = Roo.id();
54469     }
54470     this.el = Roo.get(el);
54471     if(!this.el && config && config.autoCreate){
54472         if(typeof config.autoCreate == "object"){
54473             if(!config.autoCreate.id){
54474                 config.autoCreate.id = config.id||el;
54475             }
54476             this.el = Roo.DomHelper.append(document.body,
54477                         config.autoCreate, true);
54478         }else{
54479             this.el = Roo.DomHelper.append(document.body,
54480                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54481         }
54482     }
54483     
54484     
54485     this.closable = false;
54486     this.loaded = false;
54487     this.active = false;
54488     if(typeof config == "string"){
54489         this.title = config;
54490     }else{
54491         Roo.apply(this, config);
54492     }
54493     
54494     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54495         this.wrapEl = this.el.wrap();
54496         this.toolbar.container = this.el.insertSibling(false, 'before');
54497         this.toolbar = new Roo.Toolbar(this.toolbar);
54498     }
54499     
54500     // xtype created footer. - not sure if will work as we normally have to render first..
54501     if (this.footer && !this.footer.el && this.footer.xtype) {
54502         if (!this.wrapEl) {
54503             this.wrapEl = this.el.wrap();
54504         }
54505     
54506         this.footer.container = this.wrapEl.createChild();
54507          
54508         this.footer = Roo.factory(this.footer, Roo);
54509         
54510     }
54511     
54512     if(this.resizeEl){
54513         this.resizeEl = Roo.get(this.resizeEl, true);
54514     }else{
54515         this.resizeEl = this.el;
54516     }
54517     // handle view.xtype
54518     
54519  
54520     
54521     
54522     this.addEvents({
54523         /**
54524          * @event activate
54525          * Fires when this panel is activated. 
54526          * @param {Roo.ContentPanel} this
54527          */
54528         "activate" : true,
54529         /**
54530          * @event deactivate
54531          * Fires when this panel is activated. 
54532          * @param {Roo.ContentPanel} this
54533          */
54534         "deactivate" : true,
54535
54536         /**
54537          * @event resize
54538          * Fires when this panel is resized if fitToFrame is true.
54539          * @param {Roo.ContentPanel} this
54540          * @param {Number} width The width after any component adjustments
54541          * @param {Number} height The height after any component adjustments
54542          */
54543         "resize" : true,
54544         
54545          /**
54546          * @event render
54547          * Fires when this tab is created
54548          * @param {Roo.ContentPanel} this
54549          */
54550         "render" : true
54551          
54552         
54553     });
54554     
54555
54556     
54557     
54558     if(this.autoScroll){
54559         this.resizeEl.setStyle("overflow", "auto");
54560     } else {
54561         // fix randome scrolling
54562         this.el.on('scroll', function() {
54563             Roo.log('fix random scolling');
54564             this.scrollTo('top',0); 
54565         });
54566     }
54567     content = content || this.content;
54568     if(content){
54569         this.setContent(content);
54570     }
54571     if(config && config.url){
54572         this.setUrl(this.url, this.params, this.loadOnce);
54573     }
54574     
54575     
54576     
54577     Roo.ContentPanel.superclass.constructor.call(this);
54578     
54579     if (this.view && typeof(this.view.xtype) != 'undefined') {
54580         this.view.el = this.el.appendChild(document.createElement("div"));
54581         this.view = Roo.factory(this.view); 
54582         this.view.render  &&  this.view.render(false, '');  
54583     }
54584     
54585     
54586     this.fireEvent('render', this);
54587 };
54588
54589 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54590     tabTip:'',
54591     setRegion : function(region){
54592         this.region = region;
54593         if(region){
54594            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54595         }else{
54596            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54597         } 
54598     },
54599     
54600     /**
54601      * Returns the toolbar for this Panel if one was configured. 
54602      * @return {Roo.Toolbar} 
54603      */
54604     getToolbar : function(){
54605         return this.toolbar;
54606     },
54607     
54608     setActiveState : function(active){
54609         this.active = active;
54610         if(!active){
54611             this.fireEvent("deactivate", this);
54612         }else{
54613             this.fireEvent("activate", this);
54614         }
54615     },
54616     /**
54617      * Updates this panel's element
54618      * @param {String} content The new content
54619      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54620     */
54621     setContent : function(content, loadScripts){
54622         this.el.update(content, loadScripts);
54623     },
54624
54625     ignoreResize : function(w, h){
54626         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54627             return true;
54628         }else{
54629             this.lastSize = {width: w, height: h};
54630             return false;
54631         }
54632     },
54633     /**
54634      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54635      * @return {Roo.UpdateManager} The UpdateManager
54636      */
54637     getUpdateManager : function(){
54638         return this.el.getUpdateManager();
54639     },
54640      /**
54641      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54642      * @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:
54643 <pre><code>
54644 panel.load({
54645     url: "your-url.php",
54646     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54647     callback: yourFunction,
54648     scope: yourObject, //(optional scope)
54649     discardUrl: false,
54650     nocache: false,
54651     text: "Loading...",
54652     timeout: 30,
54653     scripts: false
54654 });
54655 </code></pre>
54656      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54657      * 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.
54658      * @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}
54659      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54660      * @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.
54661      * @return {Roo.ContentPanel} this
54662      */
54663     load : function(){
54664         var um = this.el.getUpdateManager();
54665         um.update.apply(um, arguments);
54666         return this;
54667     },
54668
54669
54670     /**
54671      * 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.
54672      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54673      * @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)
54674      * @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)
54675      * @return {Roo.UpdateManager} The UpdateManager
54676      */
54677     setUrl : function(url, params, loadOnce){
54678         if(this.refreshDelegate){
54679             this.removeListener("activate", this.refreshDelegate);
54680         }
54681         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54682         this.on("activate", this.refreshDelegate);
54683         return this.el.getUpdateManager();
54684     },
54685     
54686     _handleRefresh : function(url, params, loadOnce){
54687         if(!loadOnce || !this.loaded){
54688             var updater = this.el.getUpdateManager();
54689             updater.update(url, params, this._setLoaded.createDelegate(this));
54690         }
54691     },
54692     
54693     _setLoaded : function(){
54694         this.loaded = true;
54695     }, 
54696     
54697     /**
54698      * Returns this panel's id
54699      * @return {String} 
54700      */
54701     getId : function(){
54702         return this.el.id;
54703     },
54704     
54705     /** 
54706      * Returns this panel's element - used by regiosn to add.
54707      * @return {Roo.Element} 
54708      */
54709     getEl : function(){
54710         return this.wrapEl || this.el;
54711     },
54712     
54713     adjustForComponents : function(width, height)
54714     {
54715         //Roo.log('adjustForComponents ');
54716         if(this.resizeEl != this.el){
54717             width -= this.el.getFrameWidth('lr');
54718             height -= this.el.getFrameWidth('tb');
54719         }
54720         if(this.toolbar){
54721             var te = this.toolbar.getEl();
54722             height -= te.getHeight();
54723             te.setWidth(width);
54724         }
54725         if(this.footer){
54726             var te = this.footer.getEl();
54727             //Roo.log("footer:" + te.getHeight());
54728             
54729             height -= te.getHeight();
54730             te.setWidth(width);
54731         }
54732         
54733         
54734         if(this.adjustments){
54735             width += this.adjustments[0];
54736             height += this.adjustments[1];
54737         }
54738         return {"width": width, "height": height};
54739     },
54740     
54741     setSize : function(width, height){
54742         if(this.fitToFrame && !this.ignoreResize(width, height)){
54743             if(this.fitContainer && this.resizeEl != this.el){
54744                 this.el.setSize(width, height);
54745             }
54746             var size = this.adjustForComponents(width, height);
54747             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54748             this.fireEvent('resize', this, size.width, size.height);
54749         }
54750     },
54751     
54752     /**
54753      * Returns this panel's title
54754      * @return {String} 
54755      */
54756     getTitle : function(){
54757         return this.title;
54758     },
54759     
54760     /**
54761      * Set this panel's title
54762      * @param {String} title
54763      */
54764     setTitle : function(title){
54765         this.title = title;
54766         if(this.region){
54767             this.region.updatePanelTitle(this, title);
54768         }
54769     },
54770     
54771     /**
54772      * Returns true is this panel was configured to be closable
54773      * @return {Boolean} 
54774      */
54775     isClosable : function(){
54776         return this.closable;
54777     },
54778     
54779     beforeSlide : function(){
54780         this.el.clip();
54781         this.resizeEl.clip();
54782     },
54783     
54784     afterSlide : function(){
54785         this.el.unclip();
54786         this.resizeEl.unclip();
54787     },
54788     
54789     /**
54790      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54791      *   Will fail silently if the {@link #setUrl} method has not been called.
54792      *   This does not activate the panel, just updates its content.
54793      */
54794     refresh : function(){
54795         if(this.refreshDelegate){
54796            this.loaded = false;
54797            this.refreshDelegate();
54798         }
54799     },
54800     
54801     /**
54802      * Destroys this panel
54803      */
54804     destroy : function(){
54805         this.el.removeAllListeners();
54806         var tempEl = document.createElement("span");
54807         tempEl.appendChild(this.el.dom);
54808         tempEl.innerHTML = "";
54809         this.el.remove();
54810         this.el = null;
54811     },
54812     
54813     /**
54814      * form - if the content panel contains a form - this is a reference to it.
54815      * @type {Roo.form.Form}
54816      */
54817     form : false,
54818     /**
54819      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54820      *    This contains a reference to it.
54821      * @type {Roo.View}
54822      */
54823     view : false,
54824     
54825       /**
54826      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54827      * <pre><code>
54828
54829 layout.addxtype({
54830        xtype : 'Form',
54831        items: [ .... ]
54832    }
54833 );
54834
54835 </code></pre>
54836      * @param {Object} cfg Xtype definition of item to add.
54837      */
54838     
54839     addxtype : function(cfg) {
54840         // add form..
54841         if (cfg.xtype.match(/^Form$/)) {
54842             
54843             var el;
54844             //if (this.footer) {
54845             //    el = this.footer.container.insertSibling(false, 'before');
54846             //} else {
54847                 el = this.el.createChild();
54848             //}
54849
54850             this.form = new  Roo.form.Form(cfg);
54851             
54852             
54853             if ( this.form.allItems.length) {
54854                 this.form.render(el.dom);
54855             }
54856             return this.form;
54857         }
54858         // should only have one of theses..
54859         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54860             // views.. should not be just added - used named prop 'view''
54861             
54862             cfg.el = this.el.appendChild(document.createElement("div"));
54863             // factory?
54864             
54865             var ret = new Roo.factory(cfg);
54866              
54867              ret.render && ret.render(false, ''); // render blank..
54868             this.view = ret;
54869             return ret;
54870         }
54871         return false;
54872     }
54873 });
54874
54875 /**
54876  * @class Roo.GridPanel
54877  * @extends Roo.ContentPanel
54878  * @constructor
54879  * Create a new GridPanel.
54880  * @param {Roo.grid.Grid} grid The grid for this panel
54881  * @param {String/Object} config A string to set only the panel's title, or a config object
54882  */
54883 Roo.GridPanel = function(grid, config){
54884     
54885   
54886     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54887         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54888         
54889     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54890     
54891     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54892     
54893     if(this.toolbar){
54894         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54895     }
54896     // xtype created footer. - not sure if will work as we normally have to render first..
54897     if (this.footer && !this.footer.el && this.footer.xtype) {
54898         
54899         this.footer.container = this.grid.getView().getFooterPanel(true);
54900         this.footer.dataSource = this.grid.dataSource;
54901         this.footer = Roo.factory(this.footer, Roo);
54902         
54903     }
54904     
54905     grid.monitorWindowResize = false; // turn off autosizing
54906     grid.autoHeight = false;
54907     grid.autoWidth = false;
54908     this.grid = grid;
54909     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54910 };
54911
54912 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54913     getId : function(){
54914         return this.grid.id;
54915     },
54916     
54917     /**
54918      * Returns the grid for this panel
54919      * @return {Roo.grid.Grid} 
54920      */
54921     getGrid : function(){
54922         return this.grid;    
54923     },
54924     
54925     setSize : function(width, height){
54926         if(!this.ignoreResize(width, height)){
54927             var grid = this.grid;
54928             var size = this.adjustForComponents(width, height);
54929             grid.getGridEl().setSize(size.width, size.height);
54930             grid.autoSize();
54931         }
54932     },
54933     
54934     beforeSlide : function(){
54935         this.grid.getView().scroller.clip();
54936     },
54937     
54938     afterSlide : function(){
54939         this.grid.getView().scroller.unclip();
54940     },
54941     
54942     destroy : function(){
54943         this.grid.destroy();
54944         delete this.grid;
54945         Roo.GridPanel.superclass.destroy.call(this); 
54946     }
54947 });
54948
54949
54950 /**
54951  * @class Roo.NestedLayoutPanel
54952  * @extends Roo.ContentPanel
54953  * @constructor
54954  * Create a new NestedLayoutPanel.
54955  * 
54956  * 
54957  * @param {Roo.BorderLayout} layout [required] The layout for this panel
54958  * @param {String/Object} config A string to set only the title or a config object
54959  */
54960 Roo.NestedLayoutPanel = function(layout, config)
54961 {
54962     // construct with only one argument..
54963     /* FIXME - implement nicer consturctors
54964     if (layout.layout) {
54965         config = layout;
54966         layout = config.layout;
54967         delete config.layout;
54968     }
54969     if (layout.xtype && !layout.getEl) {
54970         // then layout needs constructing..
54971         layout = Roo.factory(layout, Roo);
54972     }
54973     */
54974     
54975     
54976     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54977     
54978     layout.monitorWindowResize = false; // turn off autosizing
54979     this.layout = layout;
54980     this.layout.getEl().addClass("x-layout-nested-layout");
54981     
54982     
54983     
54984     
54985 };
54986
54987 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54988
54989     setSize : function(width, height){
54990         if(!this.ignoreResize(width, height)){
54991             var size = this.adjustForComponents(width, height);
54992             var el = this.layout.getEl();
54993             el.setSize(size.width, size.height);
54994             var touch = el.dom.offsetWidth;
54995             this.layout.layout();
54996             // ie requires a double layout on the first pass
54997             if(Roo.isIE && !this.initialized){
54998                 this.initialized = true;
54999                 this.layout.layout();
55000             }
55001         }
55002     },
55003     
55004     // activate all subpanels if not currently active..
55005     
55006     setActiveState : function(active){
55007         this.active = active;
55008         if(!active){
55009             this.fireEvent("deactivate", this);
55010             return;
55011         }
55012         
55013         this.fireEvent("activate", this);
55014         // not sure if this should happen before or after..
55015         if (!this.layout) {
55016             return; // should not happen..
55017         }
55018         var reg = false;
55019         for (var r in this.layout.regions) {
55020             reg = this.layout.getRegion(r);
55021             if (reg.getActivePanel()) {
55022                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
55023                 reg.setActivePanel(reg.getActivePanel());
55024                 continue;
55025             }
55026             if (!reg.panels.length) {
55027                 continue;
55028             }
55029             reg.showPanel(reg.getPanel(0));
55030         }
55031         
55032         
55033         
55034         
55035     },
55036     
55037     /**
55038      * Returns the nested BorderLayout for this panel
55039      * @return {Roo.BorderLayout} 
55040      */
55041     getLayout : function(){
55042         return this.layout;
55043     },
55044     
55045      /**
55046      * Adds a xtype elements to the layout of the nested panel
55047      * <pre><code>
55048
55049 panel.addxtype({
55050        xtype : 'ContentPanel',
55051        region: 'west',
55052        items: [ .... ]
55053    }
55054 );
55055
55056 panel.addxtype({
55057         xtype : 'NestedLayoutPanel',
55058         region: 'west',
55059         layout: {
55060            center: { },
55061            west: { }   
55062         },
55063         items : [ ... list of content panels or nested layout panels.. ]
55064    }
55065 );
55066 </code></pre>
55067      * @param {Object} cfg Xtype definition of item to add.
55068      */
55069     addxtype : function(cfg) {
55070         return this.layout.addxtype(cfg);
55071     
55072     }
55073 });
55074
55075 Roo.ScrollPanel = function(el, config, content){
55076     config = config || {};
55077     config.fitToFrame = true;
55078     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
55079     
55080     this.el.dom.style.overflow = "hidden";
55081     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
55082     this.el.removeClass("x-layout-inactive-content");
55083     this.el.on("mousewheel", this.onWheel, this);
55084
55085     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
55086     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
55087     up.unselectable(); down.unselectable();
55088     up.on("click", this.scrollUp, this);
55089     down.on("click", this.scrollDown, this);
55090     up.addClassOnOver("x-scroller-btn-over");
55091     down.addClassOnOver("x-scroller-btn-over");
55092     up.addClassOnClick("x-scroller-btn-click");
55093     down.addClassOnClick("x-scroller-btn-click");
55094     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
55095
55096     this.resizeEl = this.el;
55097     this.el = wrap; this.up = up; this.down = down;
55098 };
55099
55100 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
55101     increment : 100,
55102     wheelIncrement : 5,
55103     scrollUp : function(){
55104         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
55105     },
55106
55107     scrollDown : function(){
55108         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
55109     },
55110
55111     afterScroll : function(){
55112         var el = this.resizeEl;
55113         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
55114         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
55115         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
55116     },
55117
55118     setSize : function(){
55119         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
55120         this.afterScroll();
55121     },
55122
55123     onWheel : function(e){
55124         var d = e.getWheelDelta();
55125         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
55126         this.afterScroll();
55127         e.stopEvent();
55128     },
55129
55130     setContent : function(content, loadScripts){
55131         this.resizeEl.update(content, loadScripts);
55132     }
55133
55134 });
55135
55136
55137
55138 /**
55139  * @class Roo.TreePanel
55140  * @extends Roo.ContentPanel
55141  * Treepanel component
55142  * 
55143  * @constructor
55144  * Create a new TreePanel. - defaults to fit/scoll contents.
55145  * @param {String/Object} config A string to set only the panel's title, or a config object
55146  */
55147 Roo.TreePanel = function(config){
55148     var el = config.el;
55149     var tree = config.tree;
55150     delete config.tree; 
55151     delete config.el; // hopefull!
55152     
55153     // wrapper for IE7 strict & safari scroll issue
55154     
55155     var treeEl = el.createChild();
55156     config.resizeEl = treeEl;
55157     
55158     
55159     
55160     Roo.TreePanel.superclass.constructor.call(this, el, config);
55161  
55162  
55163     this.tree = new Roo.tree.TreePanel(treeEl , tree);
55164     //console.log(tree);
55165     this.on('activate', function()
55166     {
55167         if (this.tree.rendered) {
55168             return;
55169         }
55170         //console.log('render tree');
55171         this.tree.render();
55172     });
55173     // this should not be needed.. - it's actually the 'el' that resizes?
55174     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
55175     
55176     //this.on('resize',  function (cp, w, h) {
55177     //        this.tree.innerCt.setWidth(w);
55178     //        this.tree.innerCt.setHeight(h);
55179     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
55180     //});
55181
55182         
55183     
55184 };
55185
55186 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
55187     fitToFrame : true,
55188     autoScroll : true,
55189     /*
55190      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
55191      */
55192     tree : false
55193
55194 });
55195
55196
55197
55198
55199
55200
55201
55202
55203
55204
55205
55206 /*
55207  * Based on:
55208  * Ext JS Library 1.1.1
55209  * Copyright(c) 2006-2007, Ext JS, LLC.
55210  *
55211  * Originally Released Under LGPL - original licence link has changed is not relivant.
55212  *
55213  * Fork - LGPL
55214  * <script type="text/javascript">
55215  */
55216  
55217
55218 /**
55219  * @class Roo.ReaderLayout
55220  * @extends Roo.BorderLayout
55221  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55222  * center region containing two nested regions (a top one for a list view and one for item preview below),
55223  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55224  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55225  * expedites the setup of the overall layout and regions for this common application style.
55226  * Example:
55227  <pre><code>
55228 var reader = new Roo.ReaderLayout();
55229 var CP = Roo.ContentPanel;  // shortcut for adding
55230
55231 reader.beginUpdate();
55232 reader.add("north", new CP("north", "North"));
55233 reader.add("west", new CP("west", {title: "West"}));
55234 reader.add("east", new CP("east", {title: "East"}));
55235
55236 reader.regions.listView.add(new CP("listView", "List"));
55237 reader.regions.preview.add(new CP("preview", "Preview"));
55238 reader.endUpdate();
55239 </code></pre>
55240 * @constructor
55241 * Create a new ReaderLayout
55242 * @param {Object} config Configuration options
55243 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55244 * document.body if omitted)
55245 */
55246 Roo.ReaderLayout = function(config, renderTo){
55247     var c = config || {size:{}};
55248     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55249         north: c.north !== false ? Roo.apply({
55250             split:false,
55251             initialSize: 32,
55252             titlebar: false
55253         }, c.north) : false,
55254         west: c.west !== false ? Roo.apply({
55255             split:true,
55256             initialSize: 200,
55257             minSize: 175,
55258             maxSize: 400,
55259             titlebar: true,
55260             collapsible: true,
55261             animate: true,
55262             margins:{left:5,right:0,bottom:5,top:5},
55263             cmargins:{left:5,right:5,bottom:5,top:5}
55264         }, c.west) : false,
55265         east: c.east !== false ? Roo.apply({
55266             split:true,
55267             initialSize: 200,
55268             minSize: 175,
55269             maxSize: 400,
55270             titlebar: true,
55271             collapsible: true,
55272             animate: true,
55273             margins:{left:0,right:5,bottom:5,top:5},
55274             cmargins:{left:5,right:5,bottom:5,top:5}
55275         }, c.east) : false,
55276         center: Roo.apply({
55277             tabPosition: 'top',
55278             autoScroll:false,
55279             closeOnTab: true,
55280             titlebar:false,
55281             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55282         }, c.center)
55283     });
55284
55285     this.el.addClass('x-reader');
55286
55287     this.beginUpdate();
55288
55289     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55290         south: c.preview !== false ? Roo.apply({
55291             split:true,
55292             initialSize: 200,
55293             minSize: 100,
55294             autoScroll:true,
55295             collapsible:true,
55296             titlebar: true,
55297             cmargins:{top:5,left:0, right:0, bottom:0}
55298         }, c.preview) : false,
55299         center: Roo.apply({
55300             autoScroll:false,
55301             titlebar:false,
55302             minHeight:200
55303         }, c.listView)
55304     });
55305     this.add('center', new Roo.NestedLayoutPanel(inner,
55306             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55307
55308     this.endUpdate();
55309
55310     this.regions.preview = inner.getRegion('south');
55311     this.regions.listView = inner.getRegion('center');
55312 };
55313
55314 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55315  * Based on:
55316  * Ext JS Library 1.1.1
55317  * Copyright(c) 2006-2007, Ext JS, LLC.
55318  *
55319  * Originally Released Under LGPL - original licence link has changed is not relivant.
55320  *
55321  * Fork - LGPL
55322  * <script type="text/javascript">
55323  */
55324  
55325 /**
55326  * @class Roo.grid.Grid
55327  * @extends Roo.util.Observable
55328  * This class represents the primary interface of a component based grid control.
55329  * <br><br>Usage:<pre><code>
55330  var grid = new Roo.grid.Grid("my-container-id", {
55331      ds: myDataStore,
55332      cm: myColModel,
55333      selModel: mySelectionModel,
55334      autoSizeColumns: true,
55335      monitorWindowResize: false,
55336      trackMouseOver: true
55337  });
55338  // set any options
55339  grid.render();
55340  * </code></pre>
55341  * <b>Common Problems:</b><br/>
55342  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55343  * element will correct this<br/>
55344  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55345  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55346  * are unpredictable.<br/>
55347  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55348  * grid to calculate dimensions/offsets.<br/>
55349   * @constructor
55350  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55351  * The container MUST have some type of size defined for the grid to fill. The container will be
55352  * automatically set to position relative if it isn't already.
55353  * @param {Object} config A config object that sets properties on this grid.
55354  */
55355 Roo.grid.Grid = function(container, config){
55356         // initialize the container
55357         this.container = Roo.get(container);
55358         this.container.update("");
55359         this.container.setStyle("overflow", "hidden");
55360     this.container.addClass('x-grid-container');
55361
55362     this.id = this.container.id;
55363
55364     Roo.apply(this, config);
55365     // check and correct shorthanded configs
55366     if(this.ds){
55367         this.dataSource = this.ds;
55368         delete this.ds;
55369     }
55370     if(this.cm){
55371         this.colModel = this.cm;
55372         delete this.cm;
55373     }
55374     if(this.sm){
55375         this.selModel = this.sm;
55376         delete this.sm;
55377     }
55378
55379     if (this.selModel) {
55380         this.selModel = Roo.factory(this.selModel, Roo.grid);
55381         this.sm = this.selModel;
55382         this.sm.xmodule = this.xmodule || false;
55383     }
55384     if (typeof(this.colModel.config) == 'undefined') {
55385         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55386         this.cm = this.colModel;
55387         this.cm.xmodule = this.xmodule || false;
55388     }
55389     if (this.dataSource) {
55390         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55391         this.ds = this.dataSource;
55392         this.ds.xmodule = this.xmodule || false;
55393          
55394     }
55395     
55396     
55397     
55398     if(this.width){
55399         this.container.setWidth(this.width);
55400     }
55401
55402     if(this.height){
55403         this.container.setHeight(this.height);
55404     }
55405     /** @private */
55406         this.addEvents({
55407         // raw events
55408         /**
55409          * @event click
55410          * The raw click event for the entire grid.
55411          * @param {Roo.EventObject} e
55412          */
55413         "click" : true,
55414         /**
55415          * @event dblclick
55416          * The raw dblclick event for the entire grid.
55417          * @param {Roo.EventObject} e
55418          */
55419         "dblclick" : true,
55420         /**
55421          * @event contextmenu
55422          * The raw contextmenu event for the entire grid.
55423          * @param {Roo.EventObject} e
55424          */
55425         "contextmenu" : true,
55426         /**
55427          * @event mousedown
55428          * The raw mousedown event for the entire grid.
55429          * @param {Roo.EventObject} e
55430          */
55431         "mousedown" : true,
55432         /**
55433          * @event mouseup
55434          * The raw mouseup event for the entire grid.
55435          * @param {Roo.EventObject} e
55436          */
55437         "mouseup" : true,
55438         /**
55439          * @event mouseover
55440          * The raw mouseover event for the entire grid.
55441          * @param {Roo.EventObject} e
55442          */
55443         "mouseover" : true,
55444         /**
55445          * @event mouseout
55446          * The raw mouseout event for the entire grid.
55447          * @param {Roo.EventObject} e
55448          */
55449         "mouseout" : true,
55450         /**
55451          * @event keypress
55452          * The raw keypress event for the entire grid.
55453          * @param {Roo.EventObject} e
55454          */
55455         "keypress" : true,
55456         /**
55457          * @event keydown
55458          * The raw keydown event for the entire grid.
55459          * @param {Roo.EventObject} e
55460          */
55461         "keydown" : true,
55462
55463         // custom events
55464
55465         /**
55466          * @event cellclick
55467          * Fires when a cell is clicked
55468          * @param {Grid} this
55469          * @param {Number} rowIndex
55470          * @param {Number} columnIndex
55471          * @param {Roo.EventObject} e
55472          */
55473         "cellclick" : true,
55474         /**
55475          * @event celldblclick
55476          * Fires when a cell is double clicked
55477          * @param {Grid} this
55478          * @param {Number} rowIndex
55479          * @param {Number} columnIndex
55480          * @param {Roo.EventObject} e
55481          */
55482         "celldblclick" : true,
55483         /**
55484          * @event rowclick
55485          * Fires when a row is clicked
55486          * @param {Grid} this
55487          * @param {Number} rowIndex
55488          * @param {Roo.EventObject} e
55489          */
55490         "rowclick" : true,
55491         /**
55492          * @event rowdblclick
55493          * Fires when a row is double clicked
55494          * @param {Grid} this
55495          * @param {Number} rowIndex
55496          * @param {Roo.EventObject} e
55497          */
55498         "rowdblclick" : true,
55499         /**
55500          * @event headerclick
55501          * Fires when a header is clicked
55502          * @param {Grid} this
55503          * @param {Number} columnIndex
55504          * @param {Roo.EventObject} e
55505          */
55506         "headerclick" : true,
55507         /**
55508          * @event headerdblclick
55509          * Fires when a header cell is double clicked
55510          * @param {Grid} this
55511          * @param {Number} columnIndex
55512          * @param {Roo.EventObject} e
55513          */
55514         "headerdblclick" : true,
55515         /**
55516          * @event rowcontextmenu
55517          * Fires when a row is right clicked
55518          * @param {Grid} this
55519          * @param {Number} rowIndex
55520          * @param {Roo.EventObject} e
55521          */
55522         "rowcontextmenu" : true,
55523         /**
55524          * @event cellcontextmenu
55525          * Fires when a cell is right clicked
55526          * @param {Grid} this
55527          * @param {Number} rowIndex
55528          * @param {Number} cellIndex
55529          * @param {Roo.EventObject} e
55530          */
55531          "cellcontextmenu" : true,
55532         /**
55533          * @event headercontextmenu
55534          * Fires when a header is right clicked
55535          * @param {Grid} this
55536          * @param {Number} columnIndex
55537          * @param {Roo.EventObject} e
55538          */
55539         "headercontextmenu" : true,
55540         /**
55541          * @event bodyscroll
55542          * Fires when the body element is scrolled
55543          * @param {Number} scrollLeft
55544          * @param {Number} scrollTop
55545          */
55546         "bodyscroll" : true,
55547         /**
55548          * @event columnresize
55549          * Fires when the user resizes a column
55550          * @param {Number} columnIndex
55551          * @param {Number} newSize
55552          */
55553         "columnresize" : true,
55554         /**
55555          * @event columnmove
55556          * Fires when the user moves a column
55557          * @param {Number} oldIndex
55558          * @param {Number} newIndex
55559          */
55560         "columnmove" : true,
55561         /**
55562          * @event startdrag
55563          * Fires when row(s) start being dragged
55564          * @param {Grid} this
55565          * @param {Roo.GridDD} dd The drag drop object
55566          * @param {event} e The raw browser event
55567          */
55568         "startdrag" : true,
55569         /**
55570          * @event enddrag
55571          * Fires when a drag operation is complete
55572          * @param {Grid} this
55573          * @param {Roo.GridDD} dd The drag drop object
55574          * @param {event} e The raw browser event
55575          */
55576         "enddrag" : true,
55577         /**
55578          * @event dragdrop
55579          * Fires when dragged row(s) are dropped on a valid DD target
55580          * @param {Grid} this
55581          * @param {Roo.GridDD} dd The drag drop object
55582          * @param {String} targetId The target drag drop object
55583          * @param {event} e The raw browser event
55584          */
55585         "dragdrop" : true,
55586         /**
55587          * @event dragover
55588          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55589          * @param {Grid} this
55590          * @param {Roo.GridDD} dd The drag drop object
55591          * @param {String} targetId The target drag drop object
55592          * @param {event} e The raw browser event
55593          */
55594         "dragover" : true,
55595         /**
55596          * @event dragenter
55597          *  Fires when the dragged row(s) first cross another DD target while being dragged
55598          * @param {Grid} this
55599          * @param {Roo.GridDD} dd The drag drop object
55600          * @param {String} targetId The target drag drop object
55601          * @param {event} e The raw browser event
55602          */
55603         "dragenter" : true,
55604         /**
55605          * @event dragout
55606          * Fires when the dragged row(s) leave another DD target while being dragged
55607          * @param {Grid} this
55608          * @param {Roo.GridDD} dd The drag drop object
55609          * @param {String} targetId The target drag drop object
55610          * @param {event} e The raw browser event
55611          */
55612         "dragout" : true,
55613         /**
55614          * @event rowclass
55615          * Fires when a row is rendered, so you can change add a style to it.
55616          * @param {GridView} gridview   The grid view
55617          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55618          */
55619         'rowclass' : true,
55620
55621         /**
55622          * @event render
55623          * Fires when the grid is rendered
55624          * @param {Grid} grid
55625          */
55626         'render' : true
55627     });
55628
55629     Roo.grid.Grid.superclass.constructor.call(this);
55630 };
55631 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55632     
55633     /**
55634          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
55635          */
55636         /**
55637          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
55638          */
55639         /**
55640          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
55641          */
55642         /**
55643          * @cfg {Roo.grid.Store} ds The data store for the grid
55644          */
55645         /**
55646          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
55647          */
55648         /**
55649      * @cfg {String} ddGroup - drag drop group.
55650      */
55651       /**
55652      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55653      */
55654
55655     /**
55656      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55657      */
55658     minColumnWidth : 25,
55659
55660     /**
55661      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55662      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55663      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55664      */
55665     autoSizeColumns : false,
55666
55667     /**
55668      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55669      */
55670     autoSizeHeaders : true,
55671
55672     /**
55673      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55674      */
55675     monitorWindowResize : true,
55676
55677     /**
55678      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55679      * rows measured to get a columns size. Default is 0 (all rows).
55680      */
55681     maxRowsToMeasure : 0,
55682
55683     /**
55684      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55685      */
55686     trackMouseOver : true,
55687
55688     /**
55689     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55690     */
55691       /**
55692     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55693     */
55694     
55695     /**
55696     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55697     */
55698     enableDragDrop : false,
55699     
55700     /**
55701     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55702     */
55703     enableColumnMove : true,
55704     
55705     /**
55706     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55707     */
55708     enableColumnHide : true,
55709     
55710     /**
55711     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55712     */
55713     enableRowHeightSync : false,
55714     
55715     /**
55716     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55717     */
55718     stripeRows : true,
55719     
55720     /**
55721     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55722     */
55723     autoHeight : false,
55724
55725     /**
55726      * @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.
55727      */
55728     autoExpandColumn : false,
55729
55730     /**
55731     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55732     * Default is 50.
55733     */
55734     autoExpandMin : 50,
55735
55736     /**
55737     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55738     */
55739     autoExpandMax : 1000,
55740
55741     /**
55742     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55743     */
55744     view : null,
55745
55746     /**
55747     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55748     */
55749     loadMask : false,
55750     /**
55751     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55752     */
55753     dropTarget: false,
55754     
55755    
55756     
55757     // private
55758     rendered : false,
55759
55760     /**
55761     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55762     * of a fixed width. Default is false.
55763     */
55764     /**
55765     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55766     */
55767     
55768     
55769     /**
55770     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55771     * %0 is replaced with the number of selected rows.
55772     */
55773     ddText : "{0} selected row{1}",
55774     
55775     
55776     /**
55777      * Called once after all setup has been completed and the grid is ready to be rendered.
55778      * @return {Roo.grid.Grid} this
55779      */
55780     render : function()
55781     {
55782         var c = this.container;
55783         // try to detect autoHeight/width mode
55784         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55785             this.autoHeight = true;
55786         }
55787         var view = this.getView();
55788         view.init(this);
55789
55790         c.on("click", this.onClick, this);
55791         c.on("dblclick", this.onDblClick, this);
55792         c.on("contextmenu", this.onContextMenu, this);
55793         c.on("keydown", this.onKeyDown, this);
55794         if (Roo.isTouch) {
55795             c.on("touchstart", this.onTouchStart, this);
55796         }
55797
55798         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55799
55800         this.getSelectionModel().init(this);
55801
55802         view.render();
55803
55804         if(this.loadMask){
55805             this.loadMask = new Roo.LoadMask(this.container,
55806                     Roo.apply({store:this.dataSource}, this.loadMask));
55807         }
55808         
55809         
55810         if (this.toolbar && this.toolbar.xtype) {
55811             this.toolbar.container = this.getView().getHeaderPanel(true);
55812             this.toolbar = new Roo.Toolbar(this.toolbar);
55813         }
55814         if (this.footer && this.footer.xtype) {
55815             this.footer.dataSource = this.getDataSource();
55816             this.footer.container = this.getView().getFooterPanel(true);
55817             this.footer = Roo.factory(this.footer, Roo);
55818         }
55819         if (this.dropTarget && this.dropTarget.xtype) {
55820             delete this.dropTarget.xtype;
55821             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55822         }
55823         
55824         
55825         this.rendered = true;
55826         this.fireEvent('render', this);
55827         return this;
55828     },
55829
55830     /**
55831      * Reconfigures the grid to use a different Store and Column Model.
55832      * The View will be bound to the new objects and refreshed.
55833      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55834      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55835      */
55836     reconfigure : function(dataSource, colModel){
55837         if(this.loadMask){
55838             this.loadMask.destroy();
55839             this.loadMask = new Roo.LoadMask(this.container,
55840                     Roo.apply({store:dataSource}, this.loadMask));
55841         }
55842         this.view.bind(dataSource, colModel);
55843         this.dataSource = dataSource;
55844         this.colModel = colModel;
55845         this.view.refresh(true);
55846     },
55847     /**
55848      * addColumns
55849      * Add's a column, default at the end..
55850      
55851      * @param {int} position to add (default end)
55852      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55853      */
55854     addColumns : function(pos, ar)
55855     {
55856         
55857         for (var i =0;i< ar.length;i++) {
55858             var cfg = ar[i];
55859             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55860             this.cm.lookup[cfg.id] = cfg;
55861         }
55862         
55863         
55864         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55865             pos = this.cm.config.length; //this.cm.config.push(cfg);
55866         } 
55867         pos = Math.max(0,pos);
55868         ar.unshift(0);
55869         ar.unshift(pos);
55870         this.cm.config.splice.apply(this.cm.config, ar);
55871         
55872         
55873         
55874         this.view.generateRules(this.cm);
55875         this.view.refresh(true);
55876         
55877     },
55878     
55879     
55880     
55881     
55882     // private
55883     onKeyDown : function(e){
55884         this.fireEvent("keydown", e);
55885     },
55886
55887     /**
55888      * Destroy this grid.
55889      * @param {Boolean} removeEl True to remove the element
55890      */
55891     destroy : function(removeEl, keepListeners){
55892         if(this.loadMask){
55893             this.loadMask.destroy();
55894         }
55895         var c = this.container;
55896         c.removeAllListeners();
55897         this.view.destroy();
55898         this.colModel.purgeListeners();
55899         if(!keepListeners){
55900             this.purgeListeners();
55901         }
55902         c.update("");
55903         if(removeEl === true){
55904             c.remove();
55905         }
55906     },
55907
55908     // private
55909     processEvent : function(name, e){
55910         // does this fire select???
55911         //Roo.log('grid:processEvent '  + name);
55912         
55913         if (name != 'touchstart' ) {
55914             this.fireEvent(name, e);    
55915         }
55916         
55917         var t = e.getTarget();
55918         var v = this.view;
55919         var header = v.findHeaderIndex(t);
55920         if(header !== false){
55921             var ename = name == 'touchstart' ? 'click' : name;
55922              
55923             this.fireEvent("header" + ename, this, header, e);
55924         }else{
55925             var row = v.findRowIndex(t);
55926             var cell = v.findCellIndex(t);
55927             if (name == 'touchstart') {
55928                 // first touch is always a click.
55929                 // hopefull this happens after selection is updated.?
55930                 name = false;
55931                 
55932                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55933                     var cs = this.selModel.getSelectedCell();
55934                     if (row == cs[0] && cell == cs[1]){
55935                         name = 'dblclick';
55936                     }
55937                 }
55938                 if (typeof(this.selModel.getSelections) != 'undefined') {
55939                     var cs = this.selModel.getSelections();
55940                     var ds = this.dataSource;
55941                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55942                         name = 'dblclick';
55943                     }
55944                 }
55945                 if (!name) {
55946                     return;
55947                 }
55948             }
55949             
55950             
55951             if(row !== false){
55952                 this.fireEvent("row" + name, this, row, e);
55953                 if(cell !== false){
55954                     this.fireEvent("cell" + name, this, row, cell, e);
55955                 }
55956             }
55957         }
55958     },
55959
55960     // private
55961     onClick : function(e){
55962         this.processEvent("click", e);
55963     },
55964    // private
55965     onTouchStart : function(e){
55966         this.processEvent("touchstart", e);
55967     },
55968
55969     // private
55970     onContextMenu : function(e, t){
55971         this.processEvent("contextmenu", e);
55972     },
55973
55974     // private
55975     onDblClick : function(e){
55976         this.processEvent("dblclick", e);
55977     },
55978
55979     // private
55980     walkCells : function(row, col, step, fn, scope){
55981         var cm = this.colModel, clen = cm.getColumnCount();
55982         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55983         if(step < 0){
55984             if(col < 0){
55985                 row--;
55986                 first = false;
55987             }
55988             while(row >= 0){
55989                 if(!first){
55990                     col = clen-1;
55991                 }
55992                 first = false;
55993                 while(col >= 0){
55994                     if(fn.call(scope || this, row, col, cm) === true){
55995                         return [row, col];
55996                     }
55997                     col--;
55998                 }
55999                 row--;
56000             }
56001         } else {
56002             if(col >= clen){
56003                 row++;
56004                 first = false;
56005             }
56006             while(row < rlen){
56007                 if(!first){
56008                     col = 0;
56009                 }
56010                 first = false;
56011                 while(col < clen){
56012                     if(fn.call(scope || this, row, col, cm) === true){
56013                         return [row, col];
56014                     }
56015                     col++;
56016                 }
56017                 row++;
56018             }
56019         }
56020         return null;
56021     },
56022
56023     // private
56024     getSelections : function(){
56025         return this.selModel.getSelections();
56026     },
56027
56028     /**
56029      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
56030      * but if manual update is required this method will initiate it.
56031      */
56032     autoSize : function(){
56033         if(this.rendered){
56034             this.view.layout();
56035             if(this.view.adjustForScroll){
56036                 this.view.adjustForScroll();
56037             }
56038         }
56039     },
56040
56041     /**
56042      * Returns the grid's underlying element.
56043      * @return {Element} The element
56044      */
56045     getGridEl : function(){
56046         return this.container;
56047     },
56048
56049     // private for compatibility, overridden by editor grid
56050     stopEditing : function(){},
56051
56052     /**
56053      * Returns the grid's SelectionModel.
56054      * @return {SelectionModel}
56055      */
56056     getSelectionModel : function(){
56057         if(!this.selModel){
56058             this.selModel = new Roo.grid.RowSelectionModel();
56059         }
56060         return this.selModel;
56061     },
56062
56063     /**
56064      * Returns the grid's DataSource.
56065      * @return {DataSource}
56066      */
56067     getDataSource : function(){
56068         return this.dataSource;
56069     },
56070
56071     /**
56072      * Returns the grid's ColumnModel.
56073      * @return {ColumnModel}
56074      */
56075     getColumnModel : function(){
56076         return this.colModel;
56077     },
56078
56079     /**
56080      * Returns the grid's GridView object.
56081      * @return {GridView}
56082      */
56083     getView : function(){
56084         if(!this.view){
56085             this.view = new Roo.grid.GridView(this.viewConfig);
56086             this.relayEvents(this.view, [
56087                 "beforerowremoved", "beforerowsinserted",
56088                 "beforerefresh", "rowremoved",
56089                 "rowsinserted", "rowupdated" ,"refresh"
56090             ]);
56091         }
56092         return this.view;
56093     },
56094     /**
56095      * Called to get grid's drag proxy text, by default returns this.ddText.
56096      * Override this to put something different in the dragged text.
56097      * @return {String}
56098      */
56099     getDragDropText : function(){
56100         var count = this.selModel.getCount();
56101         return String.format(this.ddText, count, count == 1 ? '' : 's');
56102     }
56103 });
56104 /*
56105  * Based on:
56106  * Ext JS Library 1.1.1
56107  * Copyright(c) 2006-2007, Ext JS, LLC.
56108  *
56109  * Originally Released Under LGPL - original licence link has changed is not relivant.
56110  *
56111  * Fork - LGPL
56112  * <script type="text/javascript">
56113  */
56114  /**
56115  * @class Roo.grid.AbstractGridView
56116  * @extends Roo.util.Observable
56117  * @abstract
56118  * Abstract base class for grid Views
56119  * @constructor
56120  */
56121 Roo.grid.AbstractGridView = function(){
56122         this.grid = null;
56123         
56124         this.events = {
56125             "beforerowremoved" : true,
56126             "beforerowsinserted" : true,
56127             "beforerefresh" : true,
56128             "rowremoved" : true,
56129             "rowsinserted" : true,
56130             "rowupdated" : true,
56131             "refresh" : true
56132         };
56133     Roo.grid.AbstractGridView.superclass.constructor.call(this);
56134 };
56135
56136 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
56137     rowClass : "x-grid-row",
56138     cellClass : "x-grid-cell",
56139     tdClass : "x-grid-td",
56140     hdClass : "x-grid-hd",
56141     splitClass : "x-grid-hd-split",
56142     
56143     init: function(grid){
56144         this.grid = grid;
56145                 var cid = this.grid.getGridEl().id;
56146         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
56147         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
56148         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
56149         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
56150         },
56151         
56152     getColumnRenderers : function(){
56153         var renderers = [];
56154         var cm = this.grid.colModel;
56155         var colCount = cm.getColumnCount();
56156         for(var i = 0; i < colCount; i++){
56157             renderers[i] = cm.getRenderer(i);
56158         }
56159         return renderers;
56160     },
56161     
56162     getColumnIds : function(){
56163         var ids = [];
56164         var cm = this.grid.colModel;
56165         var colCount = cm.getColumnCount();
56166         for(var i = 0; i < colCount; i++){
56167             ids[i] = cm.getColumnId(i);
56168         }
56169         return ids;
56170     },
56171     
56172     getDataIndexes : function(){
56173         if(!this.indexMap){
56174             this.indexMap = this.buildIndexMap();
56175         }
56176         return this.indexMap.colToData;
56177     },
56178     
56179     getColumnIndexByDataIndex : function(dataIndex){
56180         if(!this.indexMap){
56181             this.indexMap = this.buildIndexMap();
56182         }
56183         return this.indexMap.dataToCol[dataIndex];
56184     },
56185     
56186     /**
56187      * Set a css style for a column dynamically. 
56188      * @param {Number} colIndex The index of the column
56189      * @param {String} name The css property name
56190      * @param {String} value The css value
56191      */
56192     setCSSStyle : function(colIndex, name, value){
56193         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
56194         Roo.util.CSS.updateRule(selector, name, value);
56195     },
56196     
56197     generateRules : function(cm){
56198         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
56199         Roo.util.CSS.removeStyleSheet(rulesId);
56200         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56201             var cid = cm.getColumnId(i);
56202             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
56203                          this.tdSelector, cid, " {\n}\n",
56204                          this.hdSelector, cid, " {\n}\n",
56205                          this.splitSelector, cid, " {\n}\n");
56206         }
56207         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56208     }
56209 });/*
56210  * Based on:
56211  * Ext JS Library 1.1.1
56212  * Copyright(c) 2006-2007, Ext JS, LLC.
56213  *
56214  * Originally Released Under LGPL - original licence link has changed is not relivant.
56215  *
56216  * Fork - LGPL
56217  * <script type="text/javascript">
56218  */
56219
56220 // private
56221 // This is a support class used internally by the Grid components
56222 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
56223     this.grid = grid;
56224     this.view = grid.getView();
56225     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56226     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
56227     if(hd2){
56228         this.setHandleElId(Roo.id(hd));
56229         this.setOuterHandleElId(Roo.id(hd2));
56230     }
56231     this.scroll = false;
56232 };
56233 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
56234     maxDragWidth: 120,
56235     getDragData : function(e){
56236         var t = Roo.lib.Event.getTarget(e);
56237         var h = this.view.findHeaderCell(t);
56238         if(h){
56239             return {ddel: h.firstChild, header:h};
56240         }
56241         return false;
56242     },
56243
56244     onInitDrag : function(e){
56245         this.view.headersDisabled = true;
56246         var clone = this.dragData.ddel.cloneNode(true);
56247         clone.id = Roo.id();
56248         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56249         this.proxy.update(clone);
56250         return true;
56251     },
56252
56253     afterValidDrop : function(){
56254         var v = this.view;
56255         setTimeout(function(){
56256             v.headersDisabled = false;
56257         }, 50);
56258     },
56259
56260     afterInvalidDrop : function(){
56261         var v = this.view;
56262         setTimeout(function(){
56263             v.headersDisabled = false;
56264         }, 50);
56265     }
56266 });
56267 /*
56268  * Based on:
56269  * Ext JS Library 1.1.1
56270  * Copyright(c) 2006-2007, Ext JS, LLC.
56271  *
56272  * Originally Released Under LGPL - original licence link has changed is not relivant.
56273  *
56274  * Fork - LGPL
56275  * <script type="text/javascript">
56276  */
56277 // private
56278 // This is a support class used internally by the Grid components
56279 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56280     this.grid = grid;
56281     this.view = grid.getView();
56282     // split the proxies so they don't interfere with mouse events
56283     this.proxyTop = Roo.DomHelper.append(document.body, {
56284         cls:"col-move-top", html:"&#160;"
56285     }, true);
56286     this.proxyBottom = Roo.DomHelper.append(document.body, {
56287         cls:"col-move-bottom", html:"&#160;"
56288     }, true);
56289     this.proxyTop.hide = this.proxyBottom.hide = function(){
56290         this.setLeftTop(-100,-100);
56291         this.setStyle("visibility", "hidden");
56292     };
56293     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56294     // temporarily disabled
56295     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56296     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56297 };
56298 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56299     proxyOffsets : [-4, -9],
56300     fly: Roo.Element.fly,
56301
56302     getTargetFromEvent : function(e){
56303         var t = Roo.lib.Event.getTarget(e);
56304         var cindex = this.view.findCellIndex(t);
56305         if(cindex !== false){
56306             return this.view.getHeaderCell(cindex);
56307         }
56308         return null;
56309     },
56310
56311     nextVisible : function(h){
56312         var v = this.view, cm = this.grid.colModel;
56313         h = h.nextSibling;
56314         while(h){
56315             if(!cm.isHidden(v.getCellIndex(h))){
56316                 return h;
56317             }
56318             h = h.nextSibling;
56319         }
56320         return null;
56321     },
56322
56323     prevVisible : function(h){
56324         var v = this.view, cm = this.grid.colModel;
56325         h = h.prevSibling;
56326         while(h){
56327             if(!cm.isHidden(v.getCellIndex(h))){
56328                 return h;
56329             }
56330             h = h.prevSibling;
56331         }
56332         return null;
56333     },
56334
56335     positionIndicator : function(h, n, e){
56336         var x = Roo.lib.Event.getPageX(e);
56337         var r = Roo.lib.Dom.getRegion(n.firstChild);
56338         var px, pt, py = r.top + this.proxyOffsets[1];
56339         if((r.right - x) <= (r.right-r.left)/2){
56340             px = r.right+this.view.borderWidth;
56341             pt = "after";
56342         }else{
56343             px = r.left;
56344             pt = "before";
56345         }
56346         var oldIndex = this.view.getCellIndex(h);
56347         var newIndex = this.view.getCellIndex(n);
56348
56349         if(this.grid.colModel.isFixed(newIndex)){
56350             return false;
56351         }
56352
56353         var locked = this.grid.colModel.isLocked(newIndex);
56354
56355         if(pt == "after"){
56356             newIndex++;
56357         }
56358         if(oldIndex < newIndex){
56359             newIndex--;
56360         }
56361         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56362             return false;
56363         }
56364         px +=  this.proxyOffsets[0];
56365         this.proxyTop.setLeftTop(px, py);
56366         this.proxyTop.show();
56367         if(!this.bottomOffset){
56368             this.bottomOffset = this.view.mainHd.getHeight();
56369         }
56370         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56371         this.proxyBottom.show();
56372         return pt;
56373     },
56374
56375     onNodeEnter : function(n, dd, e, data){
56376         if(data.header != n){
56377             this.positionIndicator(data.header, n, e);
56378         }
56379     },
56380
56381     onNodeOver : function(n, dd, e, data){
56382         var result = false;
56383         if(data.header != n){
56384             result = this.positionIndicator(data.header, n, e);
56385         }
56386         if(!result){
56387             this.proxyTop.hide();
56388             this.proxyBottom.hide();
56389         }
56390         return result ? this.dropAllowed : this.dropNotAllowed;
56391     },
56392
56393     onNodeOut : function(n, dd, e, data){
56394         this.proxyTop.hide();
56395         this.proxyBottom.hide();
56396     },
56397
56398     onNodeDrop : function(n, dd, e, data){
56399         var h = data.header;
56400         if(h != n){
56401             var cm = this.grid.colModel;
56402             var x = Roo.lib.Event.getPageX(e);
56403             var r = Roo.lib.Dom.getRegion(n.firstChild);
56404             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56405             var oldIndex = this.view.getCellIndex(h);
56406             var newIndex = this.view.getCellIndex(n);
56407             var locked = cm.isLocked(newIndex);
56408             if(pt == "after"){
56409                 newIndex++;
56410             }
56411             if(oldIndex < newIndex){
56412                 newIndex--;
56413             }
56414             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56415                 return false;
56416             }
56417             cm.setLocked(oldIndex, locked, true);
56418             cm.moveColumn(oldIndex, newIndex);
56419             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56420             return true;
56421         }
56422         return false;
56423     }
56424 });
56425 /*
56426  * Based on:
56427  * Ext JS Library 1.1.1
56428  * Copyright(c) 2006-2007, Ext JS, LLC.
56429  *
56430  * Originally Released Under LGPL - original licence link has changed is not relivant.
56431  *
56432  * Fork - LGPL
56433  * <script type="text/javascript">
56434  */
56435   
56436 /**
56437  * @class Roo.grid.GridView
56438  * @extends Roo.util.Observable
56439  *
56440  * @constructor
56441  * @param {Object} config
56442  */
56443 Roo.grid.GridView = function(config){
56444     Roo.grid.GridView.superclass.constructor.call(this);
56445     this.el = null;
56446
56447     Roo.apply(this, config);
56448 };
56449
56450 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56451
56452     unselectable :  'unselectable="on"',
56453     unselectableCls :  'x-unselectable',
56454     
56455     
56456     rowClass : "x-grid-row",
56457
56458     cellClass : "x-grid-col",
56459
56460     tdClass : "x-grid-td",
56461
56462     hdClass : "x-grid-hd",
56463
56464     splitClass : "x-grid-split",
56465
56466     sortClasses : ["sort-asc", "sort-desc"],
56467
56468     enableMoveAnim : false,
56469
56470     hlColor: "C3DAF9",
56471
56472     dh : Roo.DomHelper,
56473
56474     fly : Roo.Element.fly,
56475
56476     css : Roo.util.CSS,
56477
56478     borderWidth: 1,
56479
56480     splitOffset: 3,
56481
56482     scrollIncrement : 22,
56483
56484     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56485
56486     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56487
56488     bind : function(ds, cm){
56489         if(this.ds){
56490             this.ds.un("load", this.onLoad, this);
56491             this.ds.un("datachanged", this.onDataChange, this);
56492             this.ds.un("add", this.onAdd, this);
56493             this.ds.un("remove", this.onRemove, this);
56494             this.ds.un("update", this.onUpdate, this);
56495             this.ds.un("clear", this.onClear, this);
56496         }
56497         if(ds){
56498             ds.on("load", this.onLoad, this);
56499             ds.on("datachanged", this.onDataChange, this);
56500             ds.on("add", this.onAdd, this);
56501             ds.on("remove", this.onRemove, this);
56502             ds.on("update", this.onUpdate, this);
56503             ds.on("clear", this.onClear, this);
56504         }
56505         this.ds = ds;
56506
56507         if(this.cm){
56508             this.cm.un("widthchange", this.onColWidthChange, this);
56509             this.cm.un("headerchange", this.onHeaderChange, this);
56510             this.cm.un("hiddenchange", this.onHiddenChange, this);
56511             this.cm.un("columnmoved", this.onColumnMove, this);
56512             this.cm.un("columnlockchange", this.onColumnLock, this);
56513         }
56514         if(cm){
56515             this.generateRules(cm);
56516             cm.on("widthchange", this.onColWidthChange, this);
56517             cm.on("headerchange", this.onHeaderChange, this);
56518             cm.on("hiddenchange", this.onHiddenChange, this);
56519             cm.on("columnmoved", this.onColumnMove, this);
56520             cm.on("columnlockchange", this.onColumnLock, this);
56521         }
56522         this.cm = cm;
56523     },
56524
56525     init: function(grid){
56526         Roo.grid.GridView.superclass.init.call(this, grid);
56527
56528         this.bind(grid.dataSource, grid.colModel);
56529
56530         grid.on("headerclick", this.handleHeaderClick, this);
56531
56532         if(grid.trackMouseOver){
56533             grid.on("mouseover", this.onRowOver, this);
56534             grid.on("mouseout", this.onRowOut, this);
56535         }
56536         grid.cancelTextSelection = function(){};
56537         this.gridId = grid.id;
56538
56539         var tpls = this.templates || {};
56540
56541         if(!tpls.master){
56542             tpls.master = new Roo.Template(
56543                '<div class="x-grid" hidefocus="true">',
56544                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56545                   '<div class="x-grid-topbar"></div>',
56546                   '<div class="x-grid-scroller"><div></div></div>',
56547                   '<div class="x-grid-locked">',
56548                       '<div class="x-grid-header">{lockedHeader}</div>',
56549                       '<div class="x-grid-body">{lockedBody}</div>',
56550                   "</div>",
56551                   '<div class="x-grid-viewport">',
56552                       '<div class="x-grid-header">{header}</div>',
56553                       '<div class="x-grid-body">{body}</div>',
56554                   "</div>",
56555                   '<div class="x-grid-bottombar"></div>',
56556                  
56557                   '<div class="x-grid-resize-proxy">&#160;</div>',
56558                "</div>"
56559             );
56560             tpls.master.disableformats = true;
56561         }
56562
56563         if(!tpls.header){
56564             tpls.header = new Roo.Template(
56565                '<table border="0" cellspacing="0" cellpadding="0">',
56566                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56567                "</table>{splits}"
56568             );
56569             tpls.header.disableformats = true;
56570         }
56571         tpls.header.compile();
56572
56573         if(!tpls.hcell){
56574             tpls.hcell = new Roo.Template(
56575                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56576                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56577                 "</div></td>"
56578              );
56579              tpls.hcell.disableFormats = true;
56580         }
56581         tpls.hcell.compile();
56582
56583         if(!tpls.hsplit){
56584             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56585                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56586             tpls.hsplit.disableFormats = true;
56587         }
56588         tpls.hsplit.compile();
56589
56590         if(!tpls.body){
56591             tpls.body = new Roo.Template(
56592                '<table border="0" cellspacing="0" cellpadding="0">',
56593                "<tbody>{rows}</tbody>",
56594                "</table>"
56595             );
56596             tpls.body.disableFormats = true;
56597         }
56598         tpls.body.compile();
56599
56600         if(!tpls.row){
56601             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56602             tpls.row.disableFormats = true;
56603         }
56604         tpls.row.compile();
56605
56606         if(!tpls.cell){
56607             tpls.cell = new Roo.Template(
56608                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56609                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56610                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56611                 "</td>"
56612             );
56613             tpls.cell.disableFormats = true;
56614         }
56615         tpls.cell.compile();
56616
56617         this.templates = tpls;
56618     },
56619
56620     // remap these for backwards compat
56621     onColWidthChange : function(){
56622         this.updateColumns.apply(this, arguments);
56623     },
56624     onHeaderChange : function(){
56625         this.updateHeaders.apply(this, arguments);
56626     }, 
56627     onHiddenChange : function(){
56628         this.handleHiddenChange.apply(this, arguments);
56629     },
56630     onColumnMove : function(){
56631         this.handleColumnMove.apply(this, arguments);
56632     },
56633     onColumnLock : function(){
56634         this.handleLockChange.apply(this, arguments);
56635     },
56636
56637     onDataChange : function(){
56638         this.refresh();
56639         this.updateHeaderSortState();
56640     },
56641
56642     onClear : function(){
56643         this.refresh();
56644     },
56645
56646     onUpdate : function(ds, record){
56647         this.refreshRow(record);
56648     },
56649
56650     refreshRow : function(record){
56651         var ds = this.ds, index;
56652         if(typeof record == 'number'){
56653             index = record;
56654             record = ds.getAt(index);
56655         }else{
56656             index = ds.indexOf(record);
56657         }
56658         this.insertRows(ds, index, index, true);
56659         this.onRemove(ds, record, index+1, true);
56660         this.syncRowHeights(index, index);
56661         this.layout();
56662         this.fireEvent("rowupdated", this, index, record);
56663     },
56664
56665     onAdd : function(ds, records, index){
56666         this.insertRows(ds, index, index + (records.length-1));
56667     },
56668
56669     onRemove : function(ds, record, index, isUpdate){
56670         if(isUpdate !== true){
56671             this.fireEvent("beforerowremoved", this, index, record);
56672         }
56673         var bt = this.getBodyTable(), lt = this.getLockedTable();
56674         if(bt.rows[index]){
56675             bt.firstChild.removeChild(bt.rows[index]);
56676         }
56677         if(lt.rows[index]){
56678             lt.firstChild.removeChild(lt.rows[index]);
56679         }
56680         if(isUpdate !== true){
56681             this.stripeRows(index);
56682             this.syncRowHeights(index, index);
56683             this.layout();
56684             this.fireEvent("rowremoved", this, index, record);
56685         }
56686     },
56687
56688     onLoad : function(){
56689         this.scrollToTop();
56690     },
56691
56692     /**
56693      * Scrolls the grid to the top
56694      */
56695     scrollToTop : function(){
56696         if(this.scroller){
56697             this.scroller.dom.scrollTop = 0;
56698             this.syncScroll();
56699         }
56700     },
56701
56702     /**
56703      * Gets a panel in the header of the grid that can be used for toolbars etc.
56704      * After modifying the contents of this panel a call to grid.autoSize() may be
56705      * required to register any changes in size.
56706      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56707      * @return Roo.Element
56708      */
56709     getHeaderPanel : function(doShow){
56710         if(doShow){
56711             this.headerPanel.show();
56712         }
56713         return this.headerPanel;
56714     },
56715
56716     /**
56717      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56718      * After modifying the contents of this panel a call to grid.autoSize() may be
56719      * required to register any changes in size.
56720      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56721      * @return Roo.Element
56722      */
56723     getFooterPanel : function(doShow){
56724         if(doShow){
56725             this.footerPanel.show();
56726         }
56727         return this.footerPanel;
56728     },
56729
56730     initElements : function(){
56731         var E = Roo.Element;
56732         var el = this.grid.getGridEl().dom.firstChild;
56733         var cs = el.childNodes;
56734
56735         this.el = new E(el);
56736         
56737          this.focusEl = new E(el.firstChild);
56738         this.focusEl.swallowEvent("click", true);
56739         
56740         this.headerPanel = new E(cs[1]);
56741         this.headerPanel.enableDisplayMode("block");
56742
56743         this.scroller = new E(cs[2]);
56744         this.scrollSizer = new E(this.scroller.dom.firstChild);
56745
56746         this.lockedWrap = new E(cs[3]);
56747         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56748         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56749
56750         this.mainWrap = new E(cs[4]);
56751         this.mainHd = new E(this.mainWrap.dom.firstChild);
56752         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56753
56754         this.footerPanel = new E(cs[5]);
56755         this.footerPanel.enableDisplayMode("block");
56756
56757         this.resizeProxy = new E(cs[6]);
56758
56759         this.headerSelector = String.format(
56760            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56761            this.lockedHd.id, this.mainHd.id
56762         );
56763
56764         this.splitterSelector = String.format(
56765            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56766            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56767         );
56768     },
56769     idToCssName : function(s)
56770     {
56771         return s.replace(/[^a-z0-9]+/ig, '-');
56772     },
56773
56774     getHeaderCell : function(index){
56775         return Roo.DomQuery.select(this.headerSelector)[index];
56776     },
56777
56778     getHeaderCellMeasure : function(index){
56779         return this.getHeaderCell(index).firstChild;
56780     },
56781
56782     getHeaderCellText : function(index){
56783         return this.getHeaderCell(index).firstChild.firstChild;
56784     },
56785
56786     getLockedTable : function(){
56787         return this.lockedBody.dom.firstChild;
56788     },
56789
56790     getBodyTable : function(){
56791         return this.mainBody.dom.firstChild;
56792     },
56793
56794     getLockedRow : function(index){
56795         return this.getLockedTable().rows[index];
56796     },
56797
56798     getRow : function(index){
56799         return this.getBodyTable().rows[index];
56800     },
56801
56802     getRowComposite : function(index){
56803         if(!this.rowEl){
56804             this.rowEl = new Roo.CompositeElementLite();
56805         }
56806         var els = [], lrow, mrow;
56807         if(lrow = this.getLockedRow(index)){
56808             els.push(lrow);
56809         }
56810         if(mrow = this.getRow(index)){
56811             els.push(mrow);
56812         }
56813         this.rowEl.elements = els;
56814         return this.rowEl;
56815     },
56816     /**
56817      * Gets the 'td' of the cell
56818      * 
56819      * @param {Integer} rowIndex row to select
56820      * @param {Integer} colIndex column to select
56821      * 
56822      * @return {Object} 
56823      */
56824     getCell : function(rowIndex, colIndex){
56825         var locked = this.cm.getLockedCount();
56826         var source;
56827         if(colIndex < locked){
56828             source = this.lockedBody.dom.firstChild;
56829         }else{
56830             source = this.mainBody.dom.firstChild;
56831             colIndex -= locked;
56832         }
56833         return source.rows[rowIndex].childNodes[colIndex];
56834     },
56835
56836     getCellText : function(rowIndex, colIndex){
56837         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56838     },
56839
56840     getCellBox : function(cell){
56841         var b = this.fly(cell).getBox();
56842         if(Roo.isOpera){ // opera fails to report the Y
56843             b.y = cell.offsetTop + this.mainBody.getY();
56844         }
56845         return b;
56846     },
56847
56848     getCellIndex : function(cell){
56849         var id = String(cell.className).match(this.cellRE);
56850         if(id){
56851             return parseInt(id[1], 10);
56852         }
56853         return 0;
56854     },
56855
56856     findHeaderIndex : function(n){
56857         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56858         return r ? this.getCellIndex(r) : false;
56859     },
56860
56861     findHeaderCell : function(n){
56862         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56863         return r ? r : false;
56864     },
56865
56866     findRowIndex : function(n){
56867         if(!n){
56868             return false;
56869         }
56870         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56871         return r ? r.rowIndex : false;
56872     },
56873
56874     findCellIndex : function(node){
56875         var stop = this.el.dom;
56876         while(node && node != stop){
56877             if(this.findRE.test(node.className)){
56878                 return this.getCellIndex(node);
56879             }
56880             node = node.parentNode;
56881         }
56882         return false;
56883     },
56884
56885     getColumnId : function(index){
56886         return this.cm.getColumnId(index);
56887     },
56888
56889     getSplitters : function()
56890     {
56891         if(this.splitterSelector){
56892            return Roo.DomQuery.select(this.splitterSelector);
56893         }else{
56894             return null;
56895       }
56896     },
56897
56898     getSplitter : function(index){
56899         return this.getSplitters()[index];
56900     },
56901
56902     onRowOver : function(e, t){
56903         var row;
56904         if((row = this.findRowIndex(t)) !== false){
56905             this.getRowComposite(row).addClass("x-grid-row-over");
56906         }
56907     },
56908
56909     onRowOut : function(e, t){
56910         var row;
56911         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56912             this.getRowComposite(row).removeClass("x-grid-row-over");
56913         }
56914     },
56915
56916     renderHeaders : function(){
56917         var cm = this.cm;
56918         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56919         var cb = [], lb = [], sb = [], lsb = [], p = {};
56920         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56921             p.cellId = "x-grid-hd-0-" + i;
56922             p.splitId = "x-grid-csplit-0-" + i;
56923             p.id = cm.getColumnId(i);
56924             p.value = cm.getColumnHeader(i) || "";
56925             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56926             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56927             if(!cm.isLocked(i)){
56928                 cb[cb.length] = ct.apply(p);
56929                 sb[sb.length] = st.apply(p);
56930             }else{
56931                 lb[lb.length] = ct.apply(p);
56932                 lsb[lsb.length] = st.apply(p);
56933             }
56934         }
56935         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56936                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56937     },
56938
56939     updateHeaders : function(){
56940         var html = this.renderHeaders();
56941         this.lockedHd.update(html[0]);
56942         this.mainHd.update(html[1]);
56943     },
56944
56945     /**
56946      * Focuses the specified row.
56947      * @param {Number} row The row index
56948      */
56949     focusRow : function(row)
56950     {
56951         //Roo.log('GridView.focusRow');
56952         var x = this.scroller.dom.scrollLeft;
56953         this.focusCell(row, 0, false);
56954         this.scroller.dom.scrollLeft = x;
56955     },
56956
56957     /**
56958      * Focuses the specified cell.
56959      * @param {Number} row The row index
56960      * @param {Number} col The column index
56961      * @param {Boolean} hscroll false to disable horizontal scrolling
56962      */
56963     focusCell : function(row, col, hscroll)
56964     {
56965         //Roo.log('GridView.focusCell');
56966         var el = this.ensureVisible(row, col, hscroll);
56967         this.focusEl.alignTo(el, "tl-tl");
56968         if(Roo.isGecko){
56969             this.focusEl.focus();
56970         }else{
56971             this.focusEl.focus.defer(1, this.focusEl);
56972         }
56973     },
56974
56975     /**
56976      * Scrolls the specified cell into view
56977      * @param {Number} row The row index
56978      * @param {Number} col The column index
56979      * @param {Boolean} hscroll false to disable horizontal scrolling
56980      */
56981     ensureVisible : function(row, col, hscroll)
56982     {
56983         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56984         //return null; //disable for testing.
56985         if(typeof row != "number"){
56986             row = row.rowIndex;
56987         }
56988         if(row < 0 && row >= this.ds.getCount()){
56989             return  null;
56990         }
56991         col = (col !== undefined ? col : 0);
56992         var cm = this.grid.colModel;
56993         while(cm.isHidden(col)){
56994             col++;
56995         }
56996
56997         var el = this.getCell(row, col);
56998         if(!el){
56999             return null;
57000         }
57001         var c = this.scroller.dom;
57002
57003         var ctop = parseInt(el.offsetTop, 10);
57004         var cleft = parseInt(el.offsetLeft, 10);
57005         var cbot = ctop + el.offsetHeight;
57006         var cright = cleft + el.offsetWidth;
57007         
57008         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
57009         var stop = parseInt(c.scrollTop, 10);
57010         var sleft = parseInt(c.scrollLeft, 10);
57011         var sbot = stop + ch;
57012         var sright = sleft + c.clientWidth;
57013         /*
57014         Roo.log('GridView.ensureVisible:' +
57015                 ' ctop:' + ctop +
57016                 ' c.clientHeight:' + c.clientHeight +
57017                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
57018                 ' stop:' + stop +
57019                 ' cbot:' + cbot +
57020                 ' sbot:' + sbot +
57021                 ' ch:' + ch  
57022                 );
57023         */
57024         if(ctop < stop){
57025             c.scrollTop = ctop;
57026             //Roo.log("set scrolltop to ctop DISABLE?");
57027         }else if(cbot > sbot){
57028             //Roo.log("set scrolltop to cbot-ch");
57029             c.scrollTop = cbot-ch;
57030         }
57031         
57032         if(hscroll !== false){
57033             if(cleft < sleft){
57034                 c.scrollLeft = cleft;
57035             }else if(cright > sright){
57036                 c.scrollLeft = cright-c.clientWidth;
57037             }
57038         }
57039          
57040         return el;
57041     },
57042
57043     updateColumns : function(){
57044         this.grid.stopEditing();
57045         var cm = this.grid.colModel, colIds = this.getColumnIds();
57046         //var totalWidth = cm.getTotalWidth();
57047         var pos = 0;
57048         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
57049             //if(cm.isHidden(i)) continue;
57050             var w = cm.getColumnWidth(i);
57051             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
57052             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
57053         }
57054         this.updateSplitters();
57055     },
57056
57057     generateRules : function(cm){
57058         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
57059         Roo.util.CSS.removeStyleSheet(rulesId);
57060         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
57061             var cid = cm.getColumnId(i);
57062             var align = '';
57063             if(cm.config[i].align){
57064                 align = 'text-align:'+cm.config[i].align+';';
57065             }
57066             var hidden = '';
57067             if(cm.isHidden(i)){
57068                 hidden = 'display:none;';
57069             }
57070             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
57071             ruleBuf.push(
57072                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
57073                     this.hdSelector, cid, " {\n", align, width, "}\n",
57074                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
57075                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
57076         }
57077         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
57078     },
57079
57080     updateSplitters : function(){
57081         var cm = this.cm, s = this.getSplitters();
57082         if(s){ // splitters not created yet
57083             var pos = 0, locked = true;
57084             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
57085                 if(cm.isHidden(i)) {
57086                     continue;
57087                 }
57088                 var w = cm.getColumnWidth(i); // make sure it's a number
57089                 if(!cm.isLocked(i) && locked){
57090                     pos = 0;
57091                     locked = false;
57092                 }
57093                 pos += w;
57094                 s[i].style.left = (pos-this.splitOffset) + "px";
57095             }
57096         }
57097     },
57098
57099     handleHiddenChange : function(colModel, colIndex, hidden){
57100         if(hidden){
57101             this.hideColumn(colIndex);
57102         }else{
57103             this.unhideColumn(colIndex);
57104         }
57105     },
57106
57107     hideColumn : function(colIndex){
57108         var cid = this.getColumnId(colIndex);
57109         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
57110         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
57111         if(Roo.isSafari){
57112             this.updateHeaders();
57113         }
57114         this.updateSplitters();
57115         this.layout();
57116     },
57117
57118     unhideColumn : function(colIndex){
57119         var cid = this.getColumnId(colIndex);
57120         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
57121         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
57122
57123         if(Roo.isSafari){
57124             this.updateHeaders();
57125         }
57126         this.updateSplitters();
57127         this.layout();
57128     },
57129
57130     insertRows : function(dm, firstRow, lastRow, isUpdate){
57131         if(firstRow == 0 && lastRow == dm.getCount()-1){
57132             this.refresh();
57133         }else{
57134             if(!isUpdate){
57135                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
57136             }
57137             var s = this.getScrollState();
57138             var markup = this.renderRows(firstRow, lastRow);
57139             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
57140             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
57141             this.restoreScroll(s);
57142             if(!isUpdate){
57143                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
57144                 this.syncRowHeights(firstRow, lastRow);
57145                 this.stripeRows(firstRow);
57146                 this.layout();
57147             }
57148         }
57149     },
57150
57151     bufferRows : function(markup, target, index){
57152         var before = null, trows = target.rows, tbody = target.tBodies[0];
57153         if(index < trows.length){
57154             before = trows[index];
57155         }
57156         var b = document.createElement("div");
57157         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
57158         var rows = b.firstChild.rows;
57159         for(var i = 0, len = rows.length; i < len; i++){
57160             if(before){
57161                 tbody.insertBefore(rows[0], before);
57162             }else{
57163                 tbody.appendChild(rows[0]);
57164             }
57165         }
57166         b.innerHTML = "";
57167         b = null;
57168     },
57169
57170     deleteRows : function(dm, firstRow, lastRow){
57171         if(dm.getRowCount()<1){
57172             this.fireEvent("beforerefresh", this);
57173             this.mainBody.update("");
57174             this.lockedBody.update("");
57175             this.fireEvent("refresh", this);
57176         }else{
57177             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
57178             var bt = this.getBodyTable();
57179             var tbody = bt.firstChild;
57180             var rows = bt.rows;
57181             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
57182                 tbody.removeChild(rows[firstRow]);
57183             }
57184             this.stripeRows(firstRow);
57185             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
57186         }
57187     },
57188
57189     updateRows : function(dataSource, firstRow, lastRow){
57190         var s = this.getScrollState();
57191         this.refresh();
57192         this.restoreScroll(s);
57193     },
57194
57195     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
57196         if(!noRefresh){
57197            this.refresh();
57198         }
57199         this.updateHeaderSortState();
57200     },
57201
57202     getScrollState : function(){
57203         
57204         var sb = this.scroller.dom;
57205         return {left: sb.scrollLeft, top: sb.scrollTop};
57206     },
57207
57208     stripeRows : function(startRow){
57209         if(!this.grid.stripeRows || this.ds.getCount() < 1){
57210             return;
57211         }
57212         startRow = startRow || 0;
57213         var rows = this.getBodyTable().rows;
57214         var lrows = this.getLockedTable().rows;
57215         var cls = ' x-grid-row-alt ';
57216         for(var i = startRow, len = rows.length; i < len; i++){
57217             var row = rows[i], lrow = lrows[i];
57218             var isAlt = ((i+1) % 2 == 0);
57219             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
57220             if(isAlt == hasAlt){
57221                 continue;
57222             }
57223             if(isAlt){
57224                 row.className += " x-grid-row-alt";
57225             }else{
57226                 row.className = row.className.replace("x-grid-row-alt", "");
57227             }
57228             if(lrow){
57229                 lrow.className = row.className;
57230             }
57231         }
57232     },
57233
57234     restoreScroll : function(state){
57235         //Roo.log('GridView.restoreScroll');
57236         var sb = this.scroller.dom;
57237         sb.scrollLeft = state.left;
57238         sb.scrollTop = state.top;
57239         this.syncScroll();
57240     },
57241
57242     syncScroll : function(){
57243         //Roo.log('GridView.syncScroll');
57244         var sb = this.scroller.dom;
57245         var sh = this.mainHd.dom;
57246         var bs = this.mainBody.dom;
57247         var lv = this.lockedBody.dom;
57248         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57249         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57250     },
57251
57252     handleScroll : function(e){
57253         this.syncScroll();
57254         var sb = this.scroller.dom;
57255         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57256         e.stopEvent();
57257     },
57258
57259     handleWheel : function(e){
57260         var d = e.getWheelDelta();
57261         this.scroller.dom.scrollTop -= d*22;
57262         // set this here to prevent jumpy scrolling on large tables
57263         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57264         e.stopEvent();
57265     },
57266
57267     renderRows : function(startRow, endRow){
57268         // pull in all the crap needed to render rows
57269         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57270         var colCount = cm.getColumnCount();
57271
57272         if(ds.getCount() < 1){
57273             return ["", ""];
57274         }
57275
57276         // build a map for all the columns
57277         var cs = [];
57278         for(var i = 0; i < colCount; i++){
57279             var name = cm.getDataIndex(i);
57280             cs[i] = {
57281                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57282                 renderer : cm.getRenderer(i),
57283                 id : cm.getColumnId(i),
57284                 locked : cm.isLocked(i),
57285                 has_editor : cm.isCellEditable(i)
57286             };
57287         }
57288
57289         startRow = startRow || 0;
57290         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57291
57292         // records to render
57293         var rs = ds.getRange(startRow, endRow);
57294
57295         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57296     },
57297
57298     // As much as I hate to duplicate code, this was branched because FireFox really hates
57299     // [].join("") on strings. The performance difference was substantial enough to
57300     // branch this function
57301     doRender : Roo.isGecko ?
57302             function(cs, rs, ds, startRow, colCount, stripe){
57303                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57304                 // buffers
57305                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57306                 
57307                 var hasListener = this.grid.hasListener('rowclass');
57308                 var rowcfg = {};
57309                 for(var j = 0, len = rs.length; j < len; j++){
57310                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57311                     for(var i = 0; i < colCount; i++){
57312                         c = cs[i];
57313                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57314                         p.id = c.id;
57315                         p.css = p.attr = "";
57316                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57317                         if(p.value == undefined || p.value === "") {
57318                             p.value = "&#160;";
57319                         }
57320                         if(c.has_editor){
57321                             p.css += ' x-grid-editable-cell';
57322                         }
57323                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57324                             p.css +=  ' x-grid-dirty-cell';
57325                         }
57326                         var markup = ct.apply(p);
57327                         if(!c.locked){
57328                             cb+= markup;
57329                         }else{
57330                             lcb+= markup;
57331                         }
57332                     }
57333                     var alt = [];
57334                     if(stripe && ((rowIndex+1) % 2 == 0)){
57335                         alt.push("x-grid-row-alt")
57336                     }
57337                     if(r.dirty){
57338                         alt.push(  " x-grid-dirty-row");
57339                     }
57340                     rp.cells = lcb;
57341                     if(this.getRowClass){
57342                         alt.push(this.getRowClass(r, rowIndex));
57343                     }
57344                     if (hasListener) {
57345                         rowcfg = {
57346                              
57347                             record: r,
57348                             rowIndex : rowIndex,
57349                             rowClass : ''
57350                         };
57351                         this.grid.fireEvent('rowclass', this, rowcfg);
57352                         alt.push(rowcfg.rowClass);
57353                     }
57354                     rp.alt = alt.join(" ");
57355                     lbuf+= rt.apply(rp);
57356                     rp.cells = cb;
57357                     buf+=  rt.apply(rp);
57358                 }
57359                 return [lbuf, buf];
57360             } :
57361             function(cs, rs, ds, startRow, colCount, stripe){
57362                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57363                 // buffers
57364                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57365                 var hasListener = this.grid.hasListener('rowclass');
57366  
57367                 var rowcfg = {};
57368                 for(var j = 0, len = rs.length; j < len; j++){
57369                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57370                     for(var i = 0; i < colCount; i++){
57371                         c = cs[i];
57372                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57373                         p.id = c.id;
57374                         p.css = p.attr = "";
57375                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57376                         if(p.value == undefined || p.value === "") {
57377                             p.value = "&#160;";
57378                         }
57379                         //Roo.log(c);
57380                          if(c.has_editor){
57381                             p.css += ' x-grid-editable-cell';
57382                         }
57383                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57384                             p.css += ' x-grid-dirty-cell' 
57385                         }
57386                         
57387                         var markup = ct.apply(p);
57388                         if(!c.locked){
57389                             cb[cb.length] = markup;
57390                         }else{
57391                             lcb[lcb.length] = markup;
57392                         }
57393                     }
57394                     var alt = [];
57395                     if(stripe && ((rowIndex+1) % 2 == 0)){
57396                         alt.push( "x-grid-row-alt");
57397                     }
57398                     if(r.dirty){
57399                         alt.push(" x-grid-dirty-row");
57400                     }
57401                     rp.cells = lcb;
57402                     if(this.getRowClass){
57403                         alt.push( this.getRowClass(r, rowIndex));
57404                     }
57405                     if (hasListener) {
57406                         rowcfg = {
57407                              
57408                             record: r,
57409                             rowIndex : rowIndex,
57410                             rowClass : ''
57411                         };
57412                         this.grid.fireEvent('rowclass', this, rowcfg);
57413                         alt.push(rowcfg.rowClass);
57414                     }
57415                     
57416                     rp.alt = alt.join(" ");
57417                     rp.cells = lcb.join("");
57418                     lbuf[lbuf.length] = rt.apply(rp);
57419                     rp.cells = cb.join("");
57420                     buf[buf.length] =  rt.apply(rp);
57421                 }
57422                 return [lbuf.join(""), buf.join("")];
57423             },
57424
57425     renderBody : function(){
57426         var markup = this.renderRows();
57427         var bt = this.templates.body;
57428         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57429     },
57430
57431     /**
57432      * Refreshes the grid
57433      * @param {Boolean} headersToo
57434      */
57435     refresh : function(headersToo){
57436         this.fireEvent("beforerefresh", this);
57437         this.grid.stopEditing();
57438         var result = this.renderBody();
57439         this.lockedBody.update(result[0]);
57440         this.mainBody.update(result[1]);
57441         if(headersToo === true){
57442             this.updateHeaders();
57443             this.updateColumns();
57444             this.updateSplitters();
57445             this.updateHeaderSortState();
57446         }
57447         this.syncRowHeights();
57448         this.layout();
57449         this.fireEvent("refresh", this);
57450     },
57451
57452     handleColumnMove : function(cm, oldIndex, newIndex){
57453         this.indexMap = null;
57454         var s = this.getScrollState();
57455         this.refresh(true);
57456         this.restoreScroll(s);
57457         this.afterMove(newIndex);
57458     },
57459
57460     afterMove : function(colIndex){
57461         if(this.enableMoveAnim && Roo.enableFx){
57462             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57463         }
57464         // if multisort - fix sortOrder, and reload..
57465         if (this.grid.dataSource.multiSort) {
57466             // the we can call sort again..
57467             var dm = this.grid.dataSource;
57468             var cm = this.grid.colModel;
57469             var so = [];
57470             for(var i = 0; i < cm.config.length; i++ ) {
57471                 
57472                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57473                     continue; // dont' bother, it's not in sort list or being set.
57474                 }
57475                 
57476                 so.push(cm.config[i].dataIndex);
57477             };
57478             dm.sortOrder = so;
57479             dm.load(dm.lastOptions);
57480             
57481             
57482         }
57483         
57484     },
57485
57486     updateCell : function(dm, rowIndex, dataIndex){
57487         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57488         if(typeof colIndex == "undefined"){ // not present in grid
57489             return;
57490         }
57491         var cm = this.grid.colModel;
57492         var cell = this.getCell(rowIndex, colIndex);
57493         var cellText = this.getCellText(rowIndex, colIndex);
57494
57495         var p = {
57496             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57497             id : cm.getColumnId(colIndex),
57498             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57499         };
57500         var renderer = cm.getRenderer(colIndex);
57501         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57502         if(typeof val == "undefined" || val === "") {
57503             val = "&#160;";
57504         }
57505         cellText.innerHTML = val;
57506         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57507         this.syncRowHeights(rowIndex, rowIndex);
57508     },
57509
57510     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57511         var maxWidth = 0;
57512         if(this.grid.autoSizeHeaders){
57513             var h = this.getHeaderCellMeasure(colIndex);
57514             maxWidth = Math.max(maxWidth, h.scrollWidth);
57515         }
57516         var tb, index;
57517         if(this.cm.isLocked(colIndex)){
57518             tb = this.getLockedTable();
57519             index = colIndex;
57520         }else{
57521             tb = this.getBodyTable();
57522             index = colIndex - this.cm.getLockedCount();
57523         }
57524         if(tb && tb.rows){
57525             var rows = tb.rows;
57526             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57527             for(var i = 0; i < stopIndex; i++){
57528                 var cell = rows[i].childNodes[index].firstChild;
57529                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57530             }
57531         }
57532         return maxWidth + /*margin for error in IE*/ 5;
57533     },
57534     /**
57535      * Autofit a column to its content.
57536      * @param {Number} colIndex
57537      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57538      */
57539      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57540          if(this.cm.isHidden(colIndex)){
57541              return; // can't calc a hidden column
57542          }
57543         if(forceMinSize){
57544             var cid = this.cm.getColumnId(colIndex);
57545             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57546            if(this.grid.autoSizeHeaders){
57547                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57548            }
57549         }
57550         var newWidth = this.calcColumnWidth(colIndex);
57551         this.cm.setColumnWidth(colIndex,
57552             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57553         if(!suppressEvent){
57554             this.grid.fireEvent("columnresize", colIndex, newWidth);
57555         }
57556     },
57557
57558     /**
57559      * Autofits all columns to their content and then expands to fit any extra space in the grid
57560      */
57561      autoSizeColumns : function(){
57562         var cm = this.grid.colModel;
57563         var colCount = cm.getColumnCount();
57564         for(var i = 0; i < colCount; i++){
57565             this.autoSizeColumn(i, true, true);
57566         }
57567         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57568             this.fitColumns();
57569         }else{
57570             this.updateColumns();
57571             this.layout();
57572         }
57573     },
57574
57575     /**
57576      * Autofits all columns to the grid's width proportionate with their current size
57577      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57578      */
57579     fitColumns : function(reserveScrollSpace){
57580         var cm = this.grid.colModel;
57581         var colCount = cm.getColumnCount();
57582         var cols = [];
57583         var width = 0;
57584         var i, w;
57585         for (i = 0; i < colCount; i++){
57586             if(!cm.isHidden(i) && !cm.isFixed(i)){
57587                 w = cm.getColumnWidth(i);
57588                 cols.push(i);
57589                 cols.push(w);
57590                 width += w;
57591             }
57592         }
57593         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57594         if(reserveScrollSpace){
57595             avail -= 17;
57596         }
57597         var frac = (avail - cm.getTotalWidth())/width;
57598         while (cols.length){
57599             w = cols.pop();
57600             i = cols.pop();
57601             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57602         }
57603         this.updateColumns();
57604         this.layout();
57605     },
57606
57607     onRowSelect : function(rowIndex){
57608         var row = this.getRowComposite(rowIndex);
57609         row.addClass("x-grid-row-selected");
57610     },
57611
57612     onRowDeselect : function(rowIndex){
57613         var row = this.getRowComposite(rowIndex);
57614         row.removeClass("x-grid-row-selected");
57615     },
57616
57617     onCellSelect : function(row, col){
57618         var cell = this.getCell(row, col);
57619         if(cell){
57620             Roo.fly(cell).addClass("x-grid-cell-selected");
57621         }
57622     },
57623
57624     onCellDeselect : function(row, col){
57625         var cell = this.getCell(row, col);
57626         if(cell){
57627             Roo.fly(cell).removeClass("x-grid-cell-selected");
57628         }
57629     },
57630
57631     updateHeaderSortState : function(){
57632         
57633         // sort state can be single { field: xxx, direction : yyy}
57634         // or   { xxx=>ASC , yyy : DESC ..... }
57635         
57636         var mstate = {};
57637         if (!this.ds.multiSort) { 
57638             var state = this.ds.getSortState();
57639             if(!state){
57640                 return;
57641             }
57642             mstate[state.field] = state.direction;
57643             // FIXME... - this is not used here.. but might be elsewhere..
57644             this.sortState = state;
57645             
57646         } else {
57647             mstate = this.ds.sortToggle;
57648         }
57649         //remove existing sort classes..
57650         
57651         var sc = this.sortClasses;
57652         var hds = this.el.select(this.headerSelector).removeClass(sc);
57653         
57654         for(var f in mstate) {
57655         
57656             var sortColumn = this.cm.findColumnIndex(f);
57657             
57658             if(sortColumn != -1){
57659                 var sortDir = mstate[f];        
57660                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57661             }
57662         }
57663         
57664          
57665         
57666     },
57667
57668
57669     handleHeaderClick : function(g, index,e){
57670         
57671         Roo.log("header click");
57672         
57673         if (Roo.isTouch) {
57674             // touch events on header are handled by context
57675             this.handleHdCtx(g,index,e);
57676             return;
57677         }
57678         
57679         
57680         if(this.headersDisabled){
57681             return;
57682         }
57683         var dm = g.dataSource, cm = g.colModel;
57684         if(!cm.isSortable(index)){
57685             return;
57686         }
57687         g.stopEditing();
57688         
57689         if (dm.multiSort) {
57690             // update the sortOrder
57691             var so = [];
57692             for(var i = 0; i < cm.config.length; i++ ) {
57693                 
57694                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57695                     continue; // dont' bother, it's not in sort list or being set.
57696                 }
57697                 
57698                 so.push(cm.config[i].dataIndex);
57699             };
57700             dm.sortOrder = so;
57701         }
57702         
57703         
57704         dm.sort(cm.getDataIndex(index));
57705     },
57706
57707
57708     destroy : function(){
57709         if(this.colMenu){
57710             this.colMenu.removeAll();
57711             Roo.menu.MenuMgr.unregister(this.colMenu);
57712             this.colMenu.getEl().remove();
57713             delete this.colMenu;
57714         }
57715         if(this.hmenu){
57716             this.hmenu.removeAll();
57717             Roo.menu.MenuMgr.unregister(this.hmenu);
57718             this.hmenu.getEl().remove();
57719             delete this.hmenu;
57720         }
57721         if(this.grid.enableColumnMove){
57722             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57723             if(dds){
57724                 for(var dd in dds){
57725                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57726                         var elid = dds[dd].dragElId;
57727                         dds[dd].unreg();
57728                         Roo.get(elid).remove();
57729                     } else if(dds[dd].config.isTarget){
57730                         dds[dd].proxyTop.remove();
57731                         dds[dd].proxyBottom.remove();
57732                         dds[dd].unreg();
57733                     }
57734                     if(Roo.dd.DDM.locationCache[dd]){
57735                         delete Roo.dd.DDM.locationCache[dd];
57736                     }
57737                 }
57738                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57739             }
57740         }
57741         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57742         this.bind(null, null);
57743         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57744     },
57745
57746     handleLockChange : function(){
57747         this.refresh(true);
57748     },
57749
57750     onDenyColumnLock : function(){
57751
57752     },
57753
57754     onDenyColumnHide : function(){
57755
57756     },
57757
57758     handleHdMenuClick : function(item){
57759         var index = this.hdCtxIndex;
57760         var cm = this.cm, ds = this.ds;
57761         switch(item.id){
57762             case "asc":
57763                 ds.sort(cm.getDataIndex(index), "ASC");
57764                 break;
57765             case "desc":
57766                 ds.sort(cm.getDataIndex(index), "DESC");
57767                 break;
57768             case "lock":
57769                 var lc = cm.getLockedCount();
57770                 if(cm.getColumnCount(true) <= lc+1){
57771                     this.onDenyColumnLock();
57772                     return;
57773                 }
57774                 if(lc != index){
57775                     cm.setLocked(index, true, true);
57776                     cm.moveColumn(index, lc);
57777                     this.grid.fireEvent("columnmove", index, lc);
57778                 }else{
57779                     cm.setLocked(index, true);
57780                 }
57781             break;
57782             case "unlock":
57783                 var lc = cm.getLockedCount();
57784                 if((lc-1) != index){
57785                     cm.setLocked(index, false, true);
57786                     cm.moveColumn(index, lc-1);
57787                     this.grid.fireEvent("columnmove", index, lc-1);
57788                 }else{
57789                     cm.setLocked(index, false);
57790                 }
57791             break;
57792             case 'wider': // used to expand cols on touch..
57793             case 'narrow':
57794                 var cw = cm.getColumnWidth(index);
57795                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57796                 cw = Math.max(0, cw);
57797                 cw = Math.min(cw,4000);
57798                 cm.setColumnWidth(index, cw);
57799                 break;
57800                 
57801             default:
57802                 index = cm.getIndexById(item.id.substr(4));
57803                 if(index != -1){
57804                     if(item.checked && cm.getColumnCount(true) <= 1){
57805                         this.onDenyColumnHide();
57806                         return false;
57807                     }
57808                     cm.setHidden(index, item.checked);
57809                 }
57810         }
57811         return true;
57812     },
57813
57814     beforeColMenuShow : function(){
57815         var cm = this.cm,  colCount = cm.getColumnCount();
57816         this.colMenu.removeAll();
57817         for(var i = 0; i < colCount; i++){
57818             this.colMenu.add(new Roo.menu.CheckItem({
57819                 id: "col-"+cm.getColumnId(i),
57820                 text: cm.getColumnHeader(i),
57821                 checked: !cm.isHidden(i),
57822                 hideOnClick:false
57823             }));
57824         }
57825     },
57826
57827     handleHdCtx : function(g, index, e){
57828         e.stopEvent();
57829         var hd = this.getHeaderCell(index);
57830         this.hdCtxIndex = index;
57831         var ms = this.hmenu.items, cm = this.cm;
57832         ms.get("asc").setDisabled(!cm.isSortable(index));
57833         ms.get("desc").setDisabled(!cm.isSortable(index));
57834         if(this.grid.enableColLock !== false){
57835             ms.get("lock").setDisabled(cm.isLocked(index));
57836             ms.get("unlock").setDisabled(!cm.isLocked(index));
57837         }
57838         this.hmenu.show(hd, "tl-bl");
57839     },
57840
57841     handleHdOver : function(e){
57842         var hd = this.findHeaderCell(e.getTarget());
57843         if(hd && !this.headersDisabled){
57844             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57845                this.fly(hd).addClass("x-grid-hd-over");
57846             }
57847         }
57848     },
57849
57850     handleHdOut : function(e){
57851         var hd = this.findHeaderCell(e.getTarget());
57852         if(hd){
57853             this.fly(hd).removeClass("x-grid-hd-over");
57854         }
57855     },
57856
57857     handleSplitDblClick : function(e, t){
57858         var i = this.getCellIndex(t);
57859         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57860             this.autoSizeColumn(i, true);
57861             this.layout();
57862         }
57863     },
57864
57865     render : function(){
57866
57867         var cm = this.cm;
57868         var colCount = cm.getColumnCount();
57869
57870         if(this.grid.monitorWindowResize === true){
57871             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57872         }
57873         var header = this.renderHeaders();
57874         var body = this.templates.body.apply({rows:""});
57875         var html = this.templates.master.apply({
57876             lockedBody: body,
57877             body: body,
57878             lockedHeader: header[0],
57879             header: header[1]
57880         });
57881
57882         //this.updateColumns();
57883
57884         this.grid.getGridEl().dom.innerHTML = html;
57885
57886         this.initElements();
57887         
57888         // a kludge to fix the random scolling effect in webkit
57889         this.el.on("scroll", function() {
57890             this.el.dom.scrollTop=0; // hopefully not recursive..
57891         },this);
57892
57893         this.scroller.on("scroll", this.handleScroll, this);
57894         this.lockedBody.on("mousewheel", this.handleWheel, this);
57895         this.mainBody.on("mousewheel", this.handleWheel, this);
57896
57897         this.mainHd.on("mouseover", this.handleHdOver, this);
57898         this.mainHd.on("mouseout", this.handleHdOut, this);
57899         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57900                 {delegate: "."+this.splitClass});
57901
57902         this.lockedHd.on("mouseover", this.handleHdOver, this);
57903         this.lockedHd.on("mouseout", this.handleHdOut, this);
57904         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57905                 {delegate: "."+this.splitClass});
57906
57907         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57908             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57909         }
57910
57911         this.updateSplitters();
57912
57913         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57914             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57915             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57916         }
57917
57918         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57919             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57920             this.hmenu.add(
57921                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57922                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57923             );
57924             if(this.grid.enableColLock !== false){
57925                 this.hmenu.add('-',
57926                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57927                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57928                 );
57929             }
57930             if (Roo.isTouch) {
57931                  this.hmenu.add('-',
57932                     {id:"wider", text: this.columnsWiderText},
57933                     {id:"narrow", text: this.columnsNarrowText }
57934                 );
57935                 
57936                  
57937             }
57938             
57939             if(this.grid.enableColumnHide !== false){
57940
57941                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57942                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57943                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57944
57945                 this.hmenu.add('-',
57946                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57947                 );
57948             }
57949             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57950
57951             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57952         }
57953
57954         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57955             this.dd = new Roo.grid.GridDragZone(this.grid, {
57956                 ddGroup : this.grid.ddGroup || 'GridDD'
57957             });
57958             
57959         }
57960
57961         /*
57962         for(var i = 0; i < colCount; i++){
57963             if(cm.isHidden(i)){
57964                 this.hideColumn(i);
57965             }
57966             if(cm.config[i].align){
57967                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57968                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57969             }
57970         }*/
57971         
57972         this.updateHeaderSortState();
57973
57974         this.beforeInitialResize();
57975         this.layout(true);
57976
57977         // two part rendering gives faster view to the user
57978         this.renderPhase2.defer(1, this);
57979     },
57980
57981     renderPhase2 : function(){
57982         // render the rows now
57983         this.refresh();
57984         if(this.grid.autoSizeColumns){
57985             this.autoSizeColumns();
57986         }
57987     },
57988
57989     beforeInitialResize : function(){
57990
57991     },
57992
57993     onColumnSplitterMoved : function(i, w){
57994         this.userResized = true;
57995         var cm = this.grid.colModel;
57996         cm.setColumnWidth(i, w, true);
57997         var cid = cm.getColumnId(i);
57998         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57999         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
58000         this.updateSplitters();
58001         this.layout();
58002         this.grid.fireEvent("columnresize", i, w);
58003     },
58004
58005     syncRowHeights : function(startIndex, endIndex){
58006         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
58007             startIndex = startIndex || 0;
58008             var mrows = this.getBodyTable().rows;
58009             var lrows = this.getLockedTable().rows;
58010             var len = mrows.length-1;
58011             endIndex = Math.min(endIndex || len, len);
58012             for(var i = startIndex; i <= endIndex; i++){
58013                 var m = mrows[i], l = lrows[i];
58014                 var h = Math.max(m.offsetHeight, l.offsetHeight);
58015                 m.style.height = l.style.height = h + "px";
58016             }
58017         }
58018     },
58019
58020     layout : function(initialRender, is2ndPass)
58021     {
58022         var g = this.grid;
58023         var auto = g.autoHeight;
58024         var scrollOffset = 16;
58025         var c = g.getGridEl(), cm = this.cm,
58026                 expandCol = g.autoExpandColumn,
58027                 gv = this;
58028         //c.beginMeasure();
58029
58030         if(!c.dom.offsetWidth){ // display:none?
58031             if(initialRender){
58032                 this.lockedWrap.show();
58033                 this.mainWrap.show();
58034             }
58035             return;
58036         }
58037
58038         var hasLock = this.cm.isLocked(0);
58039
58040         var tbh = this.headerPanel.getHeight();
58041         var bbh = this.footerPanel.getHeight();
58042
58043         if(auto){
58044             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
58045             var newHeight = ch + c.getBorderWidth("tb");
58046             if(g.maxHeight){
58047                 newHeight = Math.min(g.maxHeight, newHeight);
58048             }
58049             c.setHeight(newHeight);
58050         }
58051
58052         if(g.autoWidth){
58053             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
58054         }
58055
58056         var s = this.scroller;
58057
58058         var csize = c.getSize(true);
58059
58060         this.el.setSize(csize.width, csize.height);
58061
58062         this.headerPanel.setWidth(csize.width);
58063         this.footerPanel.setWidth(csize.width);
58064
58065         var hdHeight = this.mainHd.getHeight();
58066         var vw = csize.width;
58067         var vh = csize.height - (tbh + bbh);
58068
58069         s.setSize(vw, vh);
58070
58071         var bt = this.getBodyTable();
58072         
58073         if(cm.getLockedCount() == cm.config.length){
58074             bt = this.getLockedTable();
58075         }
58076         
58077         var ltWidth = hasLock ?
58078                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
58079
58080         var scrollHeight = bt.offsetHeight;
58081         var scrollWidth = ltWidth + bt.offsetWidth;
58082         var vscroll = false, hscroll = false;
58083
58084         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
58085
58086         var lw = this.lockedWrap, mw = this.mainWrap;
58087         var lb = this.lockedBody, mb = this.mainBody;
58088
58089         setTimeout(function(){
58090             var t = s.dom.offsetTop;
58091             var w = s.dom.clientWidth,
58092                 h = s.dom.clientHeight;
58093
58094             lw.setTop(t);
58095             lw.setSize(ltWidth, h);
58096
58097             mw.setLeftTop(ltWidth, t);
58098             mw.setSize(w-ltWidth, h);
58099
58100             lb.setHeight(h-hdHeight);
58101             mb.setHeight(h-hdHeight);
58102
58103             if(is2ndPass !== true && !gv.userResized && expandCol){
58104                 // high speed resize without full column calculation
58105                 
58106                 var ci = cm.getIndexById(expandCol);
58107                 if (ci < 0) {
58108                     ci = cm.findColumnIndex(expandCol);
58109                 }
58110                 ci = Math.max(0, ci); // make sure it's got at least the first col.
58111                 var expandId = cm.getColumnId(ci);
58112                 var  tw = cm.getTotalWidth(false);
58113                 var currentWidth = cm.getColumnWidth(ci);
58114                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
58115                 if(currentWidth != cw){
58116                     cm.setColumnWidth(ci, cw, true);
58117                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
58118                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
58119                     gv.updateSplitters();
58120                     gv.layout(false, true);
58121                 }
58122             }
58123
58124             if(initialRender){
58125                 lw.show();
58126                 mw.show();
58127             }
58128             //c.endMeasure();
58129         }, 10);
58130     },
58131
58132     onWindowResize : function(){
58133         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
58134             return;
58135         }
58136         this.layout();
58137     },
58138
58139     appendFooter : function(parentEl){
58140         return null;
58141     },
58142
58143     sortAscText : "Sort Ascending",
58144     sortDescText : "Sort Descending",
58145     lockText : "Lock Column",
58146     unlockText : "Unlock Column",
58147     columnsText : "Columns",
58148  
58149     columnsWiderText : "Wider",
58150     columnsNarrowText : "Thinner"
58151 });
58152
58153
58154 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
58155     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
58156     this.proxy.el.addClass('x-grid3-col-dd');
58157 };
58158
58159 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
58160     handleMouseDown : function(e){
58161
58162     },
58163
58164     callHandleMouseDown : function(e){
58165         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
58166     }
58167 });
58168 /*
58169  * Based on:
58170  * Ext JS Library 1.1.1
58171  * Copyright(c) 2006-2007, Ext JS, LLC.
58172  *
58173  * Originally Released Under LGPL - original licence link has changed is not relivant.
58174  *
58175  * Fork - LGPL
58176  * <script type="text/javascript">
58177  */
58178  /**
58179  * @extends Roo.dd.DDProxy
58180  * @class Roo.grid.SplitDragZone
58181  * Support for Column Header resizing
58182  * @constructor
58183  * @param {Object} config
58184  */
58185 // private
58186 // This is a support class used internally by the Grid components
58187 Roo.grid.SplitDragZone = function(grid, hd, hd2){
58188     this.grid = grid;
58189     this.view = grid.getView();
58190     this.proxy = this.view.resizeProxy;
58191     Roo.grid.SplitDragZone.superclass.constructor.call(
58192         this,
58193         hd, // ID
58194         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
58195         {  // CONFIG
58196             dragElId : Roo.id(this.proxy.dom),
58197             resizeFrame:false
58198         }
58199     );
58200     
58201     this.setHandleElId(Roo.id(hd));
58202     if (hd2 !== false) {
58203         this.setOuterHandleElId(Roo.id(hd2));
58204     }
58205     
58206     this.scroll = false;
58207 };
58208 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
58209     fly: Roo.Element.fly,
58210
58211     b4StartDrag : function(x, y){
58212         this.view.headersDisabled = true;
58213         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
58214                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
58215         );
58216         this.proxy.setHeight(h);
58217         
58218         // for old system colWidth really stored the actual width?
58219         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
58220         // which in reality did not work.. - it worked only for fixed sizes
58221         // for resizable we need to use actual sizes.
58222         var w = this.cm.getColumnWidth(this.cellIndex);
58223         if (!this.view.mainWrap) {
58224             // bootstrap.
58225             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
58226         }
58227         
58228         
58229         
58230         // this was w-this.grid.minColumnWidth;
58231         // doesnt really make sense? - w = thie curren width or the rendered one?
58232         var minw = Math.max(w-this.grid.minColumnWidth, 0);
58233         this.resetConstraints();
58234         this.setXConstraint(minw, 1000);
58235         this.setYConstraint(0, 0);
58236         this.minX = x - minw;
58237         this.maxX = x + 1000;
58238         this.startPos = x;
58239         if (!this.view.mainWrap) { // this is Bootstrap code..
58240             this.getDragEl().style.display='block';
58241         }
58242         
58243         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
58244     },
58245
58246
58247     handleMouseDown : function(e){
58248         ev = Roo.EventObject.setEvent(e);
58249         var t = this.fly(ev.getTarget());
58250         if(t.hasClass("x-grid-split")){
58251             this.cellIndex = this.view.getCellIndex(t.dom);
58252             this.split = t.dom;
58253             this.cm = this.grid.colModel;
58254             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
58255                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
58256             }
58257         }
58258     },
58259
58260     endDrag : function(e){
58261         this.view.headersDisabled = false;
58262         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
58263         var diff = endX - this.startPos;
58264         // 
58265         var w = this.cm.getColumnWidth(this.cellIndex);
58266         if (!this.view.mainWrap) {
58267             w = 0;
58268         }
58269         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
58270     },
58271
58272     autoOffset : function(){
58273         this.setDelta(0,0);
58274     }
58275 });/*
58276  * Based on:
58277  * Ext JS Library 1.1.1
58278  * Copyright(c) 2006-2007, Ext JS, LLC.
58279  *
58280  * Originally Released Under LGPL - original licence link has changed is not relivant.
58281  *
58282  * Fork - LGPL
58283  * <script type="text/javascript">
58284  */
58285  
58286 // private
58287 // This is a support class used internally by the Grid components
58288 Roo.grid.GridDragZone = function(grid, config){
58289     this.view = grid.getView();
58290     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58291     if(this.view.lockedBody){
58292         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58293         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58294     }
58295     this.scroll = false;
58296     this.grid = grid;
58297     this.ddel = document.createElement('div');
58298     this.ddel.className = 'x-grid-dd-wrap';
58299 };
58300
58301 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58302     ddGroup : "GridDD",
58303
58304     getDragData : function(e){
58305         var t = Roo.lib.Event.getTarget(e);
58306         var rowIndex = this.view.findRowIndex(t);
58307         var sm = this.grid.selModel;
58308             
58309         //Roo.log(rowIndex);
58310         
58311         if (sm.getSelectedCell) {
58312             // cell selection..
58313             if (!sm.getSelectedCell()) {
58314                 return false;
58315             }
58316             if (rowIndex != sm.getSelectedCell()[0]) {
58317                 return false;
58318             }
58319         
58320         }
58321         if (sm.getSelections && sm.getSelections().length < 1) {
58322             return false;
58323         }
58324         
58325         
58326         // before it used to all dragging of unseleted... - now we dont do that.
58327         if(rowIndex !== false){
58328             
58329             // if editorgrid.. 
58330             
58331             
58332             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58333                
58334             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58335               //  
58336             //}
58337             if (e.hasModifier()){
58338                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58339             }
58340             
58341             Roo.log("getDragData");
58342             
58343             return {
58344                 grid: this.grid,
58345                 ddel: this.ddel,
58346                 rowIndex: rowIndex,
58347                 selections: sm.getSelections ? sm.getSelections() : (
58348                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58349             };
58350         }
58351         return false;
58352     },
58353     
58354     
58355     onInitDrag : function(e){
58356         var data = this.dragData;
58357         this.ddel.innerHTML = this.grid.getDragDropText();
58358         this.proxy.update(this.ddel);
58359         // fire start drag?
58360     },
58361
58362     afterRepair : function(){
58363         this.dragging = false;
58364     },
58365
58366     getRepairXY : function(e, data){
58367         return false;
58368     },
58369
58370     onEndDrag : function(data, e){
58371         // fire end drag?
58372     },
58373
58374     onValidDrop : function(dd, e, id){
58375         // fire drag drop?
58376         this.hideProxy();
58377     },
58378
58379     beforeInvalidDrop : function(e, id){
58380
58381     }
58382 });/*
58383  * Based on:
58384  * Ext JS Library 1.1.1
58385  * Copyright(c) 2006-2007, Ext JS, LLC.
58386  *
58387  * Originally Released Under LGPL - original licence link has changed is not relivant.
58388  *
58389  * Fork - LGPL
58390  * <script type="text/javascript">
58391  */
58392  
58393
58394 /**
58395  * @class Roo.grid.ColumnModel
58396  * @extends Roo.util.Observable
58397  * This is the default implementation of a ColumnModel used by the Grid. It defines
58398  * the columns in the grid.
58399  * <br>Usage:<br>
58400  <pre><code>
58401  var colModel = new Roo.grid.ColumnModel([
58402         {header: "Ticker", width: 60, sortable: true, locked: true},
58403         {header: "Company Name", width: 150, sortable: true},
58404         {header: "Market Cap.", width: 100, sortable: true},
58405         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58406         {header: "Employees", width: 100, sortable: true, resizable: false}
58407  ]);
58408  </code></pre>
58409  * <p>
58410  
58411  * The config options listed for this class are options which may appear in each
58412  * individual column definition.
58413  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58414  * @constructor
58415  * @param {Object} config An Array of column config objects. See this class's
58416  * config objects for details.
58417 */
58418 Roo.grid.ColumnModel = function(config){
58419         /**
58420      * The config passed into the constructor
58421      */
58422     this.config = []; //config;
58423     this.lookup = {};
58424
58425     // if no id, create one
58426     // if the column does not have a dataIndex mapping,
58427     // map it to the order it is in the config
58428     for(var i = 0, len = config.length; i < len; i++){
58429         this.addColumn(config[i]);
58430         
58431     }
58432
58433     /**
58434      * The width of columns which have no width specified (defaults to 100)
58435      * @type Number
58436      */
58437     this.defaultWidth = 100;
58438
58439     /**
58440      * Default sortable of columns which have no sortable specified (defaults to false)
58441      * @type Boolean
58442      */
58443     this.defaultSortable = false;
58444
58445     this.addEvents({
58446         /**
58447              * @event widthchange
58448              * Fires when the width of a column changes.
58449              * @param {ColumnModel} this
58450              * @param {Number} columnIndex The column index
58451              * @param {Number} newWidth The new width
58452              */
58453             "widthchange": true,
58454         /**
58455              * @event headerchange
58456              * Fires when the text of a header changes.
58457              * @param {ColumnModel} this
58458              * @param {Number} columnIndex The column index
58459              * @param {Number} newText The new header text
58460              */
58461             "headerchange": true,
58462         /**
58463              * @event hiddenchange
58464              * Fires when a column is hidden or "unhidden".
58465              * @param {ColumnModel} this
58466              * @param {Number} columnIndex The column index
58467              * @param {Boolean} hidden true if hidden, false otherwise
58468              */
58469             "hiddenchange": true,
58470             /**
58471          * @event columnmoved
58472          * Fires when a column is moved.
58473          * @param {ColumnModel} this
58474          * @param {Number} oldIndex
58475          * @param {Number} newIndex
58476          */
58477         "columnmoved" : true,
58478         /**
58479          * @event columlockchange
58480          * Fires when a column's locked state is changed
58481          * @param {ColumnModel} this
58482          * @param {Number} colIndex
58483          * @param {Boolean} locked true if locked
58484          */
58485         "columnlockchange" : true
58486     });
58487     Roo.grid.ColumnModel.superclass.constructor.call(this);
58488 };
58489 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58490     /**
58491      * @cfg {String} header The header text to display in the Grid view.
58492      */
58493         /**
58494      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
58495      */
58496         /**
58497      * @cfg {String} smHeader Header at Bootsrap Small width
58498      */
58499         /**
58500      * @cfg {String} mdHeader Header at Bootsrap Medium width
58501      */
58502         /**
58503      * @cfg {String} lgHeader Header at Bootsrap Large width
58504      */
58505         /**
58506      * @cfg {String} xlHeader Header at Bootsrap extra Large width
58507      */
58508     /**
58509      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58510      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58511      * specified, the column's index is used as an index into the Record's data Array.
58512      */
58513     /**
58514      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58515      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58516      */
58517     /**
58518      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58519      * Defaults to the value of the {@link #defaultSortable} property.
58520      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58521      */
58522     /**
58523      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58524      */
58525     /**
58526      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58527      */
58528     /**
58529      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58530      */
58531     /**
58532      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58533      */
58534     /**
58535      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58536      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58537      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58538      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58539      */
58540        /**
58541      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58542      */
58543     /**
58544      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58545      */
58546     /**
58547      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58548      */
58549     /**
58550      * @cfg {String} cursor (Optional)
58551      */
58552     /**
58553      * @cfg {String} tooltip (Optional)
58554      */
58555     /**
58556      * @cfg {Number} xs (Optional) can be '0' for hidden at this size (number less than 12)
58557      */
58558     /**
58559      * @cfg {Number} sm (Optional) can be '0' for hidden at this size (number less than 12)
58560      */
58561     /**
58562      * @cfg {Number} md (Optional) can be '0' for hidden at this size (number less than 12)
58563      */
58564     /**
58565      * @cfg {Number} lg (Optional) can be '0' for hidden at this size (number less than 12)
58566      */
58567         /**
58568      * @cfg {Number} xl (Optional) can be '0' for hidden at this size (number less than 12)
58569      */
58570     /**
58571      * Returns the id of the column at the specified index.
58572      * @param {Number} index The column index
58573      * @return {String} the id
58574      */
58575     getColumnId : function(index){
58576         return this.config[index].id;
58577     },
58578
58579     /**
58580      * Returns the column for a specified id.
58581      * @param {String} id The column id
58582      * @return {Object} the column
58583      */
58584     getColumnById : function(id){
58585         return this.lookup[id];
58586     },
58587
58588     
58589     /**
58590      * Returns the column Object for a specified dataIndex.
58591      * @param {String} dataIndex The column dataIndex
58592      * @return {Object|Boolean} the column or false if not found
58593      */
58594     getColumnByDataIndex: function(dataIndex){
58595         var index = this.findColumnIndex(dataIndex);
58596         return index > -1 ? this.config[index] : false;
58597     },
58598     
58599     /**
58600      * Returns the index for a specified column id.
58601      * @param {String} id The column id
58602      * @return {Number} the index, or -1 if not found
58603      */
58604     getIndexById : function(id){
58605         for(var i = 0, len = this.config.length; i < len; i++){
58606             if(this.config[i].id == id){
58607                 return i;
58608             }
58609         }
58610         return -1;
58611     },
58612     
58613     /**
58614      * Returns the index for a specified column dataIndex.
58615      * @param {String} dataIndex The column dataIndex
58616      * @return {Number} the index, or -1 if not found
58617      */
58618     
58619     findColumnIndex : function(dataIndex){
58620         for(var i = 0, len = this.config.length; i < len; i++){
58621             if(this.config[i].dataIndex == dataIndex){
58622                 return i;
58623             }
58624         }
58625         return -1;
58626     },
58627     
58628     
58629     moveColumn : function(oldIndex, newIndex){
58630         var c = this.config[oldIndex];
58631         this.config.splice(oldIndex, 1);
58632         this.config.splice(newIndex, 0, c);
58633         this.dataMap = null;
58634         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58635     },
58636
58637     isLocked : function(colIndex){
58638         return this.config[colIndex].locked === true;
58639     },
58640
58641     setLocked : function(colIndex, value, suppressEvent){
58642         if(this.isLocked(colIndex) == value){
58643             return;
58644         }
58645         this.config[colIndex].locked = value;
58646         if(!suppressEvent){
58647             this.fireEvent("columnlockchange", this, colIndex, value);
58648         }
58649     },
58650
58651     getTotalLockedWidth : function(){
58652         var totalWidth = 0;
58653         for(var i = 0; i < this.config.length; i++){
58654             if(this.isLocked(i) && !this.isHidden(i)){
58655                 this.totalWidth += this.getColumnWidth(i);
58656             }
58657         }
58658         return totalWidth;
58659     },
58660
58661     getLockedCount : function(){
58662         for(var i = 0, len = this.config.length; i < len; i++){
58663             if(!this.isLocked(i)){
58664                 return i;
58665             }
58666         }
58667         
58668         return this.config.length;
58669     },
58670
58671     /**
58672      * Returns the number of columns.
58673      * @return {Number}
58674      */
58675     getColumnCount : function(visibleOnly){
58676         if(visibleOnly === true){
58677             var c = 0;
58678             for(var i = 0, len = this.config.length; i < len; i++){
58679                 if(!this.isHidden(i)){
58680                     c++;
58681                 }
58682             }
58683             return c;
58684         }
58685         return this.config.length;
58686     },
58687
58688     /**
58689      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58690      * @param {Function} fn
58691      * @param {Object} scope (optional)
58692      * @return {Array} result
58693      */
58694     getColumnsBy : function(fn, scope){
58695         var r = [];
58696         for(var i = 0, len = this.config.length; i < len; i++){
58697             var c = this.config[i];
58698             if(fn.call(scope||this, c, i) === true){
58699                 r[r.length] = c;
58700             }
58701         }
58702         return r;
58703     },
58704
58705     /**
58706      * Returns true if the specified column is sortable.
58707      * @param {Number} col The column index
58708      * @return {Boolean}
58709      */
58710     isSortable : function(col){
58711         if(typeof this.config[col].sortable == "undefined"){
58712             return this.defaultSortable;
58713         }
58714         return this.config[col].sortable;
58715     },
58716
58717     /**
58718      * Returns the rendering (formatting) function defined for the column.
58719      * @param {Number} col The column index.
58720      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58721      */
58722     getRenderer : function(col){
58723         if(!this.config[col].renderer){
58724             return Roo.grid.ColumnModel.defaultRenderer;
58725         }
58726         return this.config[col].renderer;
58727     },
58728
58729     /**
58730      * Sets the rendering (formatting) function for a column.
58731      * @param {Number} col The column index
58732      * @param {Function} fn The function to use to process the cell's raw data
58733      * to return HTML markup for the grid view. The render function is called with
58734      * the following parameters:<ul>
58735      * <li>Data value.</li>
58736      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58737      * <li>css A CSS style string to apply to the table cell.</li>
58738      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58739      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58740      * <li>Row index</li>
58741      * <li>Column index</li>
58742      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58743      */
58744     setRenderer : function(col, fn){
58745         this.config[col].renderer = fn;
58746     },
58747
58748     /**
58749      * Returns the width for the specified column.
58750      * @param {Number} col The column index
58751      * @param (optional) {String} gridSize bootstrap width size.
58752      * @return {Number}
58753      */
58754     getColumnWidth : function(col, gridSize)
58755         {
58756                 var cfg = this.config[col];
58757                 
58758                 if (typeof(gridSize) == 'undefined') {
58759                         return cfg.width * 1 || this.defaultWidth;
58760                 }
58761                 if (gridSize === false) { // if we set it..
58762                         return cfg.width || false;
58763                 }
58764                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
58765                 
58766                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
58767                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
58768                                 continue;
58769                         }
58770                         return cfg[ sizes[i] ];
58771                 }
58772                 return 1;
58773                 
58774     },
58775
58776     /**
58777      * Sets the width for a column.
58778      * @param {Number} col The column index
58779      * @param {Number} width The new width
58780      */
58781     setColumnWidth : function(col, width, suppressEvent){
58782         this.config[col].width = width;
58783         this.totalWidth = null;
58784         if(!suppressEvent){
58785              this.fireEvent("widthchange", this, col, width);
58786         }
58787     },
58788
58789     /**
58790      * Returns the total width of all columns.
58791      * @param {Boolean} includeHidden True to include hidden column widths
58792      * @return {Number}
58793      */
58794     getTotalWidth : function(includeHidden){
58795         if(!this.totalWidth){
58796             this.totalWidth = 0;
58797             for(var i = 0, len = this.config.length; i < len; i++){
58798                 if(includeHidden || !this.isHidden(i)){
58799                     this.totalWidth += this.getColumnWidth(i);
58800                 }
58801             }
58802         }
58803         return this.totalWidth;
58804     },
58805
58806     /**
58807      * Returns the header for the specified column.
58808      * @param {Number} col The column index
58809      * @return {String}
58810      */
58811     getColumnHeader : function(col){
58812         return this.config[col].header;
58813     },
58814
58815     /**
58816      * Sets the header for a column.
58817      * @param {Number} col The column index
58818      * @param {String} header The new header
58819      */
58820     setColumnHeader : function(col, header){
58821         this.config[col].header = header;
58822         this.fireEvent("headerchange", this, col, header);
58823     },
58824
58825     /**
58826      * Returns the tooltip for the specified column.
58827      * @param {Number} col The column index
58828      * @return {String}
58829      */
58830     getColumnTooltip : function(col){
58831             return this.config[col].tooltip;
58832     },
58833     /**
58834      * Sets the tooltip for a column.
58835      * @param {Number} col The column index
58836      * @param {String} tooltip The new tooltip
58837      */
58838     setColumnTooltip : function(col, tooltip){
58839             this.config[col].tooltip = tooltip;
58840     },
58841
58842     /**
58843      * Returns the dataIndex for the specified column.
58844      * @param {Number} col The column index
58845      * @return {Number}
58846      */
58847     getDataIndex : function(col){
58848         return this.config[col].dataIndex;
58849     },
58850
58851     /**
58852      * Sets the dataIndex for a column.
58853      * @param {Number} col The column index
58854      * @param {Number} dataIndex The new dataIndex
58855      */
58856     setDataIndex : function(col, dataIndex){
58857         this.config[col].dataIndex = dataIndex;
58858     },
58859
58860     
58861     
58862     /**
58863      * Returns true if the cell is editable.
58864      * @param {Number} colIndex The column index
58865      * @param {Number} rowIndex The row index - this is nto actually used..?
58866      * @return {Boolean}
58867      */
58868     isCellEditable : function(colIndex, rowIndex){
58869         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58870     },
58871
58872     /**
58873      * Returns the editor defined for the cell/column.
58874      * return false or null to disable editing.
58875      * @param {Number} colIndex The column index
58876      * @param {Number} rowIndex The row index
58877      * @return {Object}
58878      */
58879     getCellEditor : function(colIndex, rowIndex){
58880         return this.config[colIndex].editor;
58881     },
58882
58883     /**
58884      * Sets if a column is editable.
58885      * @param {Number} col The column index
58886      * @param {Boolean} editable True if the column is editable
58887      */
58888     setEditable : function(col, editable){
58889         this.config[col].editable = editable;
58890     },
58891
58892
58893     /**
58894      * Returns true if the column is hidden.
58895      * @param {Number} colIndex The column index
58896      * @return {Boolean}
58897      */
58898     isHidden : function(colIndex){
58899         return this.config[colIndex].hidden;
58900     },
58901
58902
58903     /**
58904      * Returns true if the column width cannot be changed
58905      */
58906     isFixed : function(colIndex){
58907         return this.config[colIndex].fixed;
58908     },
58909
58910     /**
58911      * Returns true if the column can be resized
58912      * @return {Boolean}
58913      */
58914     isResizable : function(colIndex){
58915         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58916     },
58917     /**
58918      * Sets if a column is hidden.
58919      * @param {Number} colIndex The column index
58920      * @param {Boolean} hidden True if the column is hidden
58921      */
58922     setHidden : function(colIndex, hidden){
58923         this.config[colIndex].hidden = hidden;
58924         this.totalWidth = null;
58925         this.fireEvent("hiddenchange", this, colIndex, hidden);
58926     },
58927
58928     /**
58929      * Sets the editor for a column.
58930      * @param {Number} col The column index
58931      * @param {Object} editor The editor object
58932      */
58933     setEditor : function(col, editor){
58934         this.config[col].editor = editor;
58935     },
58936     /**
58937      * Add a column (experimental...) - defaults to adding to the end..
58938      * @param {Object} config 
58939     */
58940     addColumn : function(c)
58941     {
58942     
58943         var i = this.config.length;
58944         this.config[i] = c;
58945         
58946         if(typeof c.dataIndex == "undefined"){
58947             c.dataIndex = i;
58948         }
58949         if(typeof c.renderer == "string"){
58950             c.renderer = Roo.util.Format[c.renderer];
58951         }
58952         if(typeof c.id == "undefined"){
58953             c.id = Roo.id();
58954         }
58955         if(c.editor && c.editor.xtype){
58956             c.editor  = Roo.factory(c.editor, Roo.grid);
58957         }
58958         if(c.editor && c.editor.isFormField){
58959             c.editor = new Roo.grid.GridEditor(c.editor);
58960         }
58961         this.lookup[c.id] = c;
58962     }
58963     
58964 });
58965
58966 Roo.grid.ColumnModel.defaultRenderer = function(value)
58967 {
58968     if(typeof value == "object") {
58969         return value;
58970     }
58971         if(typeof value == "string" && value.length < 1){
58972             return "&#160;";
58973         }
58974     
58975         return String.format("{0}", value);
58976 };
58977
58978 // Alias for backwards compatibility
58979 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58980 /*
58981  * Based on:
58982  * Ext JS Library 1.1.1
58983  * Copyright(c) 2006-2007, Ext JS, LLC.
58984  *
58985  * Originally Released Under LGPL - original licence link has changed is not relivant.
58986  *
58987  * Fork - LGPL
58988  * <script type="text/javascript">
58989  */
58990
58991 /**
58992  * @class Roo.grid.AbstractSelectionModel
58993  * @extends Roo.util.Observable
58994  * @abstract
58995  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58996  * implemented by descendant classes.  This class should not be directly instantiated.
58997  * @constructor
58998  */
58999 Roo.grid.AbstractSelectionModel = function(){
59000     this.locked = false;
59001     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
59002 };
59003
59004 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
59005     /** @ignore Called by the grid automatically. Do not call directly. */
59006     init : function(grid){
59007         this.grid = grid;
59008         this.initEvents();
59009     },
59010
59011     /**
59012      * Locks the selections.
59013      */
59014     lock : function(){
59015         this.locked = true;
59016     },
59017
59018     /**
59019      * Unlocks the selections.
59020      */
59021     unlock : function(){
59022         this.locked = false;
59023     },
59024
59025     /**
59026      * Returns true if the selections are locked.
59027      * @return {Boolean}
59028      */
59029     isLocked : function(){
59030         return this.locked;
59031     }
59032 });/*
59033  * Based on:
59034  * Ext JS Library 1.1.1
59035  * Copyright(c) 2006-2007, Ext JS, LLC.
59036  *
59037  * Originally Released Under LGPL - original licence link has changed is not relivant.
59038  *
59039  * Fork - LGPL
59040  * <script type="text/javascript">
59041  */
59042 /**
59043  * @extends Roo.grid.AbstractSelectionModel
59044  * @class Roo.grid.RowSelectionModel
59045  * The default SelectionModel used by {@link Roo.grid.Grid}.
59046  * It supports multiple selections and keyboard selection/navigation. 
59047  * @constructor
59048  * @param {Object} config
59049  */
59050 Roo.grid.RowSelectionModel = function(config){
59051     Roo.apply(this, config);
59052     this.selections = new Roo.util.MixedCollection(false, function(o){
59053         return o.id;
59054     });
59055
59056     this.last = false;
59057     this.lastActive = false;
59058
59059     this.addEvents({
59060         /**
59061         * @event selectionchange
59062         * Fires when the selection changes
59063         * @param {SelectionModel} this
59064         */
59065        "selectionchange" : true,
59066        /**
59067         * @event afterselectionchange
59068         * Fires after the selection changes (eg. by key press or clicking)
59069         * @param {SelectionModel} this
59070         */
59071        "afterselectionchange" : true,
59072        /**
59073         * @event beforerowselect
59074         * Fires when a row is selected being selected, return false to cancel.
59075         * @param {SelectionModel} this
59076         * @param {Number} rowIndex The selected index
59077         * @param {Boolean} keepExisting False if other selections will be cleared
59078         */
59079        "beforerowselect" : true,
59080        /**
59081         * @event rowselect
59082         * Fires when a row is selected.
59083         * @param {SelectionModel} this
59084         * @param {Number} rowIndex The selected index
59085         * @param {Roo.data.Record} r The record
59086         */
59087        "rowselect" : true,
59088        /**
59089         * @event rowdeselect
59090         * Fires when a row is deselected.
59091         * @param {SelectionModel} this
59092         * @param {Number} rowIndex The selected index
59093         */
59094         "rowdeselect" : true
59095     });
59096     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
59097     this.locked = false;
59098 };
59099
59100 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
59101     /**
59102      * @cfg {Boolean} singleSelect
59103      * True to allow selection of only one row at a time (defaults to false)
59104      */
59105     singleSelect : false,
59106
59107     // private
59108     initEvents : function(){
59109
59110         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
59111             this.grid.on("mousedown", this.handleMouseDown, this);
59112         }else{ // allow click to work like normal
59113             this.grid.on("rowclick", this.handleDragableRowClick, this);
59114         }
59115         // bootstrap does not have a view..
59116         var view = this.grid.view ? this.grid.view : this.grid;
59117         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
59118             "up" : function(e){
59119                 if(!e.shiftKey){
59120                     this.selectPrevious(e.shiftKey);
59121                 }else if(this.last !== false && this.lastActive !== false){
59122                     var last = this.last;
59123                     this.selectRange(this.last,  this.lastActive-1);
59124                     view.focusRow(this.lastActive);
59125                     if(last !== false){
59126                         this.last = last;
59127                     }
59128                 }else{
59129                     this.selectFirstRow();
59130                 }
59131                 this.fireEvent("afterselectionchange", this);
59132             },
59133             "down" : function(e){
59134                 if(!e.shiftKey){
59135                     this.selectNext(e.shiftKey);
59136                 }else if(this.last !== false && this.lastActive !== false){
59137                     var last = this.last;
59138                     this.selectRange(this.last,  this.lastActive+1);
59139                     view.focusRow(this.lastActive);
59140                     if(last !== false){
59141                         this.last = last;
59142                     }
59143                 }else{
59144                     this.selectFirstRow();
59145                 }
59146                 this.fireEvent("afterselectionchange", this);
59147             },
59148             scope: this
59149         });
59150
59151          
59152         view.on("refresh", this.onRefresh, this);
59153         view.on("rowupdated", this.onRowUpdated, this);
59154         view.on("rowremoved", this.onRemove, this);
59155     },
59156
59157     // private
59158     onRefresh : function(){
59159         var ds = this.grid.ds, i, v = this.grid.view;
59160         var s = this.selections;
59161         s.each(function(r){
59162             if((i = ds.indexOfId(r.id)) != -1){
59163                 v.onRowSelect(i);
59164                 s.add(ds.getAt(i)); // updating the selection relate data
59165             }else{
59166                 s.remove(r);
59167             }
59168         });
59169     },
59170
59171     // private
59172     onRemove : function(v, index, r){
59173         this.selections.remove(r);
59174     },
59175
59176     // private
59177     onRowUpdated : function(v, index, r){
59178         if(this.isSelected(r)){
59179             v.onRowSelect(index);
59180         }
59181     },
59182
59183     /**
59184      * Select records.
59185      * @param {Array} records The records to select
59186      * @param {Boolean} keepExisting (optional) True to keep existing selections
59187      */
59188     selectRecords : function(records, keepExisting){
59189         if(!keepExisting){
59190             this.clearSelections();
59191         }
59192         var ds = this.grid.ds;
59193         for(var i = 0, len = records.length; i < len; i++){
59194             this.selectRow(ds.indexOf(records[i]), true);
59195         }
59196     },
59197
59198     /**
59199      * Gets the number of selected rows.
59200      * @return {Number}
59201      */
59202     getCount : function(){
59203         return this.selections.length;
59204     },
59205
59206     /**
59207      * Selects the first row in the grid.
59208      */
59209     selectFirstRow : function(){
59210         this.selectRow(0);
59211     },
59212
59213     /**
59214      * Select the last row.
59215      * @param {Boolean} keepExisting (optional) True to keep existing selections
59216      */
59217     selectLastRow : function(keepExisting){
59218         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
59219     },
59220
59221     /**
59222      * Selects the row immediately following the last selected row.
59223      * @param {Boolean} keepExisting (optional) True to keep existing selections
59224      */
59225     selectNext : function(keepExisting){
59226         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
59227             this.selectRow(this.last+1, keepExisting);
59228             var view = this.grid.view ? this.grid.view : this.grid;
59229             view.focusRow(this.last);
59230         }
59231     },
59232
59233     /**
59234      * Selects the row that precedes the last selected row.
59235      * @param {Boolean} keepExisting (optional) True to keep existing selections
59236      */
59237     selectPrevious : function(keepExisting){
59238         if(this.last){
59239             this.selectRow(this.last-1, keepExisting);
59240             var view = this.grid.view ? this.grid.view : this.grid;
59241             view.focusRow(this.last);
59242         }
59243     },
59244
59245     /**
59246      * Returns the selected records
59247      * @return {Array} Array of selected records
59248      */
59249     getSelections : function(){
59250         return [].concat(this.selections.items);
59251     },
59252
59253     /**
59254      * Returns the first selected record.
59255      * @return {Record}
59256      */
59257     getSelected : function(){
59258         return this.selections.itemAt(0);
59259     },
59260
59261
59262     /**
59263      * Clears all selections.
59264      */
59265     clearSelections : function(fast){
59266         if(this.locked) {
59267             return;
59268         }
59269         if(fast !== true){
59270             var ds = this.grid.ds;
59271             var s = this.selections;
59272             s.each(function(r){
59273                 this.deselectRow(ds.indexOfId(r.id));
59274             }, this);
59275             s.clear();
59276         }else{
59277             this.selections.clear();
59278         }
59279         this.last = false;
59280     },
59281
59282
59283     /**
59284      * Selects all rows.
59285      */
59286     selectAll : function(){
59287         if(this.locked) {
59288             return;
59289         }
59290         this.selections.clear();
59291         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
59292             this.selectRow(i, true);
59293         }
59294     },
59295
59296     /**
59297      * Returns True if there is a selection.
59298      * @return {Boolean}
59299      */
59300     hasSelection : function(){
59301         return this.selections.length > 0;
59302     },
59303
59304     /**
59305      * Returns True if the specified row is selected.
59306      * @param {Number/Record} record The record or index of the record to check
59307      * @return {Boolean}
59308      */
59309     isSelected : function(index){
59310         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
59311         return (r && this.selections.key(r.id) ? true : false);
59312     },
59313
59314     /**
59315      * Returns True if the specified record id is selected.
59316      * @param {String} id The id of record to check
59317      * @return {Boolean}
59318      */
59319     isIdSelected : function(id){
59320         return (this.selections.key(id) ? true : false);
59321     },
59322
59323     // private
59324     handleMouseDown : function(e, t)
59325     {
59326         var view = this.grid.view ? this.grid.view : this.grid;
59327         var rowIndex;
59328         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
59329             return;
59330         };
59331         if(e.shiftKey && this.last !== false){
59332             var last = this.last;
59333             this.selectRange(last, rowIndex, e.ctrlKey);
59334             this.last = last; // reset the last
59335             view.focusRow(rowIndex);
59336         }else{
59337             var isSelected = this.isSelected(rowIndex);
59338             if(e.button !== 0 && isSelected){
59339                 view.focusRow(rowIndex);
59340             }else if(e.ctrlKey && isSelected){
59341                 this.deselectRow(rowIndex);
59342             }else if(!isSelected){
59343                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59344                 view.focusRow(rowIndex);
59345             }
59346         }
59347         this.fireEvent("afterselectionchange", this);
59348     },
59349     // private
59350     handleDragableRowClick :  function(grid, rowIndex, e) 
59351     {
59352         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59353             this.selectRow(rowIndex, false);
59354             var view = this.grid.view ? this.grid.view : this.grid;
59355             view.focusRow(rowIndex);
59356              this.fireEvent("afterselectionchange", this);
59357         }
59358     },
59359     
59360     /**
59361      * Selects multiple rows.
59362      * @param {Array} rows Array of the indexes of the row to select
59363      * @param {Boolean} keepExisting (optional) True to keep existing selections
59364      */
59365     selectRows : function(rows, keepExisting){
59366         if(!keepExisting){
59367             this.clearSelections();
59368         }
59369         for(var i = 0, len = rows.length; i < len; i++){
59370             this.selectRow(rows[i], true);
59371         }
59372     },
59373
59374     /**
59375      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59376      * @param {Number} startRow The index of the first row in the range
59377      * @param {Number} endRow The index of the last row in the range
59378      * @param {Boolean} keepExisting (optional) True to retain existing selections
59379      */
59380     selectRange : function(startRow, endRow, keepExisting){
59381         if(this.locked) {
59382             return;
59383         }
59384         if(!keepExisting){
59385             this.clearSelections();
59386         }
59387         if(startRow <= endRow){
59388             for(var i = startRow; i <= endRow; i++){
59389                 this.selectRow(i, true);
59390             }
59391         }else{
59392             for(var i = startRow; i >= endRow; i--){
59393                 this.selectRow(i, true);
59394             }
59395         }
59396     },
59397
59398     /**
59399      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59400      * @param {Number} startRow The index of the first row in the range
59401      * @param {Number} endRow The index of the last row in the range
59402      */
59403     deselectRange : function(startRow, endRow, preventViewNotify){
59404         if(this.locked) {
59405             return;
59406         }
59407         for(var i = startRow; i <= endRow; i++){
59408             this.deselectRow(i, preventViewNotify);
59409         }
59410     },
59411
59412     /**
59413      * Selects a row.
59414      * @param {Number} row The index of the row to select
59415      * @param {Boolean} keepExisting (optional) True to keep existing selections
59416      */
59417     selectRow : function(index, keepExisting, preventViewNotify){
59418         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
59419             return;
59420         }
59421         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59422             if(!keepExisting || this.singleSelect){
59423                 this.clearSelections();
59424             }
59425             var r = this.grid.ds.getAt(index);
59426             this.selections.add(r);
59427             this.last = this.lastActive = index;
59428             if(!preventViewNotify){
59429                 var view = this.grid.view ? this.grid.view : this.grid;
59430                 view.onRowSelect(index);
59431             }
59432             this.fireEvent("rowselect", this, index, r);
59433             this.fireEvent("selectionchange", this);
59434         }
59435     },
59436
59437     /**
59438      * Deselects a row.
59439      * @param {Number} row The index of the row to deselect
59440      */
59441     deselectRow : function(index, preventViewNotify){
59442         if(this.locked) {
59443             return;
59444         }
59445         if(this.last == index){
59446             this.last = false;
59447         }
59448         if(this.lastActive == index){
59449             this.lastActive = false;
59450         }
59451         var r = this.grid.ds.getAt(index);
59452         this.selections.remove(r);
59453         if(!preventViewNotify){
59454             var view = this.grid.view ? this.grid.view : this.grid;
59455             view.onRowDeselect(index);
59456         }
59457         this.fireEvent("rowdeselect", this, index);
59458         this.fireEvent("selectionchange", this);
59459     },
59460
59461     // private
59462     restoreLast : function(){
59463         if(this._last){
59464             this.last = this._last;
59465         }
59466     },
59467
59468     // private
59469     acceptsNav : function(row, col, cm){
59470         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59471     },
59472
59473     // private
59474     onEditorKey : function(field, e){
59475         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59476         if(k == e.TAB){
59477             e.stopEvent();
59478             ed.completeEdit();
59479             if(e.shiftKey){
59480                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59481             }else{
59482                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59483             }
59484         }else if(k == e.ENTER && !e.ctrlKey){
59485             e.stopEvent();
59486             ed.completeEdit();
59487             if(e.shiftKey){
59488                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59489             }else{
59490                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59491             }
59492         }else if(k == e.ESC){
59493             ed.cancelEdit();
59494         }
59495         if(newCell){
59496             g.startEditing(newCell[0], newCell[1]);
59497         }
59498     }
59499 });/*
59500  * Based on:
59501  * Ext JS Library 1.1.1
59502  * Copyright(c) 2006-2007, Ext JS, LLC.
59503  *
59504  * Originally Released Under LGPL - original licence link has changed is not relivant.
59505  *
59506  * Fork - LGPL
59507  * <script type="text/javascript">
59508  */
59509 /**
59510  * @class Roo.grid.CellSelectionModel
59511  * @extends Roo.grid.AbstractSelectionModel
59512  * This class provides the basic implementation for cell selection in a grid.
59513  * @constructor
59514  * @param {Object} config The object containing the configuration of this model.
59515  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59516  */
59517 Roo.grid.CellSelectionModel = function(config){
59518     Roo.apply(this, config);
59519
59520     this.selection = null;
59521
59522     this.addEvents({
59523         /**
59524              * @event beforerowselect
59525              * Fires before a cell is selected.
59526              * @param {SelectionModel} this
59527              * @param {Number} rowIndex The selected row index
59528              * @param {Number} colIndex The selected cell index
59529              */
59530             "beforecellselect" : true,
59531         /**
59532              * @event cellselect
59533              * Fires when a cell is selected.
59534              * @param {SelectionModel} this
59535              * @param {Number} rowIndex The selected row index
59536              * @param {Number} colIndex The selected cell index
59537              */
59538             "cellselect" : true,
59539         /**
59540              * @event selectionchange
59541              * Fires when the active selection changes.
59542              * @param {SelectionModel} this
59543              * @param {Object} selection null for no selection or an object (o) with two properties
59544                 <ul>
59545                 <li>o.record: the record object for the row the selection is in</li>
59546                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59547                 </ul>
59548              */
59549             "selectionchange" : true,
59550         /**
59551              * @event tabend
59552              * Fires when the tab (or enter) was pressed on the last editable cell
59553              * You can use this to trigger add new row.
59554              * @param {SelectionModel} this
59555              */
59556             "tabend" : true,
59557          /**
59558              * @event beforeeditnext
59559              * Fires before the next editable sell is made active
59560              * You can use this to skip to another cell or fire the tabend
59561              *    if you set cell to false
59562              * @param {Object} eventdata object : { cell : [ row, col ] } 
59563              */
59564             "beforeeditnext" : true
59565     });
59566     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59567 };
59568
59569 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59570     
59571     enter_is_tab: false,
59572
59573     /** @ignore */
59574     initEvents : function(){
59575         this.grid.on("mousedown", this.handleMouseDown, this);
59576         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59577         var view = this.grid.view;
59578         view.on("refresh", this.onViewChange, this);
59579         view.on("rowupdated", this.onRowUpdated, this);
59580         view.on("beforerowremoved", this.clearSelections, this);
59581         view.on("beforerowsinserted", this.clearSelections, this);
59582         if(this.grid.isEditor){
59583             this.grid.on("beforeedit", this.beforeEdit,  this);
59584         }
59585     },
59586
59587         //private
59588     beforeEdit : function(e){
59589         this.select(e.row, e.column, false, true, e.record);
59590     },
59591
59592         //private
59593     onRowUpdated : function(v, index, r){
59594         if(this.selection && this.selection.record == r){
59595             v.onCellSelect(index, this.selection.cell[1]);
59596         }
59597     },
59598
59599         //private
59600     onViewChange : function(){
59601         this.clearSelections(true);
59602     },
59603
59604         /**
59605          * Returns the currently selected cell,.
59606          * @return {Array} The selected cell (row, column) or null if none selected.
59607          */
59608     getSelectedCell : function(){
59609         return this.selection ? this.selection.cell : null;
59610     },
59611
59612     /**
59613      * Clears all selections.
59614      * @param {Boolean} true to prevent the gridview from being notified about the change.
59615      */
59616     clearSelections : function(preventNotify){
59617         var s = this.selection;
59618         if(s){
59619             if(preventNotify !== true){
59620                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59621             }
59622             this.selection = null;
59623             this.fireEvent("selectionchange", this, null);
59624         }
59625     },
59626
59627     /**
59628      * Returns true if there is a selection.
59629      * @return {Boolean}
59630      */
59631     hasSelection : function(){
59632         return this.selection ? true : false;
59633     },
59634
59635     /** @ignore */
59636     handleMouseDown : function(e, t){
59637         var v = this.grid.getView();
59638         if(this.isLocked()){
59639             return;
59640         };
59641         var row = v.findRowIndex(t);
59642         var cell = v.findCellIndex(t);
59643         if(row !== false && cell !== false){
59644             this.select(row, cell);
59645         }
59646     },
59647
59648     /**
59649      * Selects a cell.
59650      * @param {Number} rowIndex
59651      * @param {Number} collIndex
59652      */
59653     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59654         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59655             this.clearSelections();
59656             r = r || this.grid.dataSource.getAt(rowIndex);
59657             this.selection = {
59658                 record : r,
59659                 cell : [rowIndex, colIndex]
59660             };
59661             if(!preventViewNotify){
59662                 var v = this.grid.getView();
59663                 v.onCellSelect(rowIndex, colIndex);
59664                 if(preventFocus !== true){
59665                     v.focusCell(rowIndex, colIndex);
59666                 }
59667             }
59668             this.fireEvent("cellselect", this, rowIndex, colIndex);
59669             this.fireEvent("selectionchange", this, this.selection);
59670         }
59671     },
59672
59673         //private
59674     isSelectable : function(rowIndex, colIndex, cm){
59675         return !cm.isHidden(colIndex);
59676     },
59677
59678     /** @ignore */
59679     handleKeyDown : function(e){
59680         //Roo.log('Cell Sel Model handleKeyDown');
59681         if(!e.isNavKeyPress()){
59682             return;
59683         }
59684         var g = this.grid, s = this.selection;
59685         if(!s){
59686             e.stopEvent();
59687             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59688             if(cell){
59689                 this.select(cell[0], cell[1]);
59690             }
59691             return;
59692         }
59693         var sm = this;
59694         var walk = function(row, col, step){
59695             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59696         };
59697         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59698         var newCell;
59699
59700       
59701
59702         switch(k){
59703             case e.TAB:
59704                 // handled by onEditorKey
59705                 if (g.isEditor && g.editing) {
59706                     return;
59707                 }
59708                 if(e.shiftKey) {
59709                     newCell = walk(r, c-1, -1);
59710                 } else {
59711                     newCell = walk(r, c+1, 1);
59712                 }
59713                 break;
59714             
59715             case e.DOWN:
59716                newCell = walk(r+1, c, 1);
59717                 break;
59718             
59719             case e.UP:
59720                 newCell = walk(r-1, c, -1);
59721                 break;
59722             
59723             case e.RIGHT:
59724                 newCell = walk(r, c+1, 1);
59725                 break;
59726             
59727             case e.LEFT:
59728                 newCell = walk(r, c-1, -1);
59729                 break;
59730             
59731             case e.ENTER:
59732                 
59733                 if(g.isEditor && !g.editing){
59734                    g.startEditing(r, c);
59735                    e.stopEvent();
59736                    return;
59737                 }
59738                 
59739                 
59740              break;
59741         };
59742         if(newCell){
59743             this.select(newCell[0], newCell[1]);
59744             e.stopEvent();
59745             
59746         }
59747     },
59748
59749     acceptsNav : function(row, col, cm){
59750         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59751     },
59752     /**
59753      * Selects a cell.
59754      * @param {Number} field (not used) - as it's normally used as a listener
59755      * @param {Number} e - event - fake it by using
59756      *
59757      * var e = Roo.EventObjectImpl.prototype;
59758      * e.keyCode = e.TAB
59759      *
59760      * 
59761      */
59762     onEditorKey : function(field, e){
59763         
59764         var k = e.getKey(),
59765             newCell,
59766             g = this.grid,
59767             ed = g.activeEditor,
59768             forward = false;
59769         ///Roo.log('onEditorKey' + k);
59770         
59771         
59772         if (this.enter_is_tab && k == e.ENTER) {
59773             k = e.TAB;
59774         }
59775         
59776         if(k == e.TAB){
59777             if(e.shiftKey){
59778                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59779             }else{
59780                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59781                 forward = true;
59782             }
59783             
59784             e.stopEvent();
59785             
59786         } else if(k == e.ENTER &&  !e.ctrlKey){
59787             ed.completeEdit();
59788             e.stopEvent();
59789             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59790         
59791                 } else if(k == e.ESC){
59792             ed.cancelEdit();
59793         }
59794                 
59795         if (newCell) {
59796             var ecall = { cell : newCell, forward : forward };
59797             this.fireEvent('beforeeditnext', ecall );
59798             newCell = ecall.cell;
59799                         forward = ecall.forward;
59800         }
59801                 
59802         if(newCell){
59803             //Roo.log('next cell after edit');
59804             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59805         } else if (forward) {
59806             // tabbed past last
59807             this.fireEvent.defer(100, this, ['tabend',this]);
59808         }
59809     }
59810 });/*
59811  * Based on:
59812  * Ext JS Library 1.1.1
59813  * Copyright(c) 2006-2007, Ext JS, LLC.
59814  *
59815  * Originally Released Under LGPL - original licence link has changed is not relivant.
59816  *
59817  * Fork - LGPL
59818  * <script type="text/javascript">
59819  */
59820  
59821 /**
59822  * @class Roo.grid.EditorGrid
59823  * @extends Roo.grid.Grid
59824  * Class for creating and editable grid.
59825  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59826  * The container MUST have some type of size defined for the grid to fill. The container will be 
59827  * automatically set to position relative if it isn't already.
59828  * @param {Object} dataSource The data model to bind to
59829  * @param {Object} colModel The column model with info about this grid's columns
59830  */
59831 Roo.grid.EditorGrid = function(container, config){
59832     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59833     this.getGridEl().addClass("xedit-grid");
59834
59835     if(!this.selModel){
59836         this.selModel = new Roo.grid.CellSelectionModel();
59837     }
59838
59839     this.activeEditor = null;
59840
59841         this.addEvents({
59842             /**
59843              * @event beforeedit
59844              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59845              * <ul style="padding:5px;padding-left:16px;">
59846              * <li>grid - This grid</li>
59847              * <li>record - The record being edited</li>
59848              * <li>field - The field name being edited</li>
59849              * <li>value - The value for the field being edited.</li>
59850              * <li>row - The grid row index</li>
59851              * <li>column - The grid column index</li>
59852              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59853              * </ul>
59854              * @param {Object} e An edit event (see above for description)
59855              */
59856             "beforeedit" : true,
59857             /**
59858              * @event afteredit
59859              * Fires after a cell is edited. <br />
59860              * <ul style="padding:5px;padding-left:16px;">
59861              * <li>grid - This grid</li>
59862              * <li>record - The record being edited</li>
59863              * <li>field - The field name being edited</li>
59864              * <li>value - The value being set</li>
59865              * <li>originalValue - The original value for the field, before the edit.</li>
59866              * <li>row - The grid row index</li>
59867              * <li>column - The grid column index</li>
59868              * </ul>
59869              * @param {Object} e An edit event (see above for description)
59870              */
59871             "afteredit" : true,
59872             /**
59873              * @event validateedit
59874              * Fires after a cell is edited, but before the value is set in the record. 
59875          * You can use this to modify the value being set in the field, Return false
59876              * to cancel the change. The edit event object has the following properties <br />
59877              * <ul style="padding:5px;padding-left:16px;">
59878          * <li>editor - This editor</li>
59879              * <li>grid - This grid</li>
59880              * <li>record - The record being edited</li>
59881              * <li>field - The field name being edited</li>
59882              * <li>value - The value being set</li>
59883              * <li>originalValue - The original value for the field, before the edit.</li>
59884              * <li>row - The grid row index</li>
59885              * <li>column - The grid column index</li>
59886              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59887              * </ul>
59888              * @param {Object} e An edit event (see above for description)
59889              */
59890             "validateedit" : true
59891         });
59892     this.on("bodyscroll", this.stopEditing,  this);
59893     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59894 };
59895
59896 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59897     /**
59898      * @cfg {Number} clicksToEdit
59899      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59900      */
59901     clicksToEdit: 2,
59902
59903     // private
59904     isEditor : true,
59905     // private
59906     trackMouseOver: false, // causes very odd FF errors
59907
59908     onCellDblClick : function(g, row, col){
59909         this.startEditing(row, col);
59910     },
59911
59912     onEditComplete : function(ed, value, startValue){
59913         this.editing = false;
59914         this.activeEditor = null;
59915         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59916         var r = ed.record;
59917         var field = this.colModel.getDataIndex(ed.col);
59918         var e = {
59919             grid: this,
59920             record: r,
59921             field: field,
59922             originalValue: startValue,
59923             value: value,
59924             row: ed.row,
59925             column: ed.col,
59926             cancel:false,
59927             editor: ed
59928         };
59929         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59930         cell.show();
59931           
59932         if(String(value) !== String(startValue)){
59933             
59934             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59935                 r.set(field, e.value);
59936                 // if we are dealing with a combo box..
59937                 // then we also set the 'name' colum to be the displayField
59938                 if (ed.field.displayField && ed.field.name) {
59939                     r.set(ed.field.name, ed.field.el.dom.value);
59940                 }
59941                 
59942                 delete e.cancel; //?? why!!!
59943                 this.fireEvent("afteredit", e);
59944             }
59945         } else {
59946             this.fireEvent("afteredit", e); // always fire it!
59947         }
59948         this.view.focusCell(ed.row, ed.col);
59949     },
59950
59951     /**
59952      * Starts editing the specified for the specified row/column
59953      * @param {Number} rowIndex
59954      * @param {Number} colIndex
59955      */
59956     startEditing : function(row, col){
59957         this.stopEditing();
59958         if(this.colModel.isCellEditable(col, row)){
59959             this.view.ensureVisible(row, col, true);
59960           
59961             var r = this.dataSource.getAt(row);
59962             var field = this.colModel.getDataIndex(col);
59963             var cell = Roo.get(this.view.getCell(row,col));
59964             var e = {
59965                 grid: this,
59966                 record: r,
59967                 field: field,
59968                 value: r.data[field],
59969                 row: row,
59970                 column: col,
59971                 cancel:false 
59972             };
59973             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59974                 this.editing = true;
59975                 var ed = this.colModel.getCellEditor(col, row);
59976                 
59977                 if (!ed) {
59978                     return;
59979                 }
59980                 if(!ed.rendered){
59981                     ed.render(ed.parentEl || document.body);
59982                 }
59983                 ed.field.reset();
59984                
59985                 cell.hide();
59986                 
59987                 (function(){ // complex but required for focus issues in safari, ie and opera
59988                     ed.row = row;
59989                     ed.col = col;
59990                     ed.record = r;
59991                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59992                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59993                     this.activeEditor = ed;
59994                     var v = r.data[field];
59995                     ed.startEdit(this.view.getCell(row, col), v);
59996                     // combo's with 'displayField and name set
59997                     if (ed.field.displayField && ed.field.name) {
59998                         ed.field.el.dom.value = r.data[ed.field.name];
59999                     }
60000                     
60001                     
60002                 }).defer(50, this);
60003             }
60004         }
60005     },
60006         
60007     /**
60008      * Stops any active editing
60009      */
60010     stopEditing : function(){
60011         if(this.activeEditor){
60012             this.activeEditor.completeEdit();
60013         }
60014         this.activeEditor = null;
60015     },
60016         
60017          /**
60018      * Called to get grid's drag proxy text, by default returns this.ddText.
60019      * @return {String}
60020      */
60021     getDragDropText : function(){
60022         var count = this.selModel.getSelectedCell() ? 1 : 0;
60023         return String.format(this.ddText, count, count == 1 ? '' : 's');
60024     }
60025         
60026 });/*
60027  * Based on:
60028  * Ext JS Library 1.1.1
60029  * Copyright(c) 2006-2007, Ext JS, LLC.
60030  *
60031  * Originally Released Under LGPL - original licence link has changed is not relivant.
60032  *
60033  * Fork - LGPL
60034  * <script type="text/javascript">
60035  */
60036
60037 // private - not really -- you end up using it !
60038 // This is a support class used internally by the Grid components
60039
60040 /**
60041  * @class Roo.grid.GridEditor
60042  * @extends Roo.Editor
60043  * Class for creating and editable grid elements.
60044  * @param {Object} config any settings (must include field)
60045  */
60046 Roo.grid.GridEditor = function(field, config){
60047     if (!config && field.field) {
60048         config = field;
60049         field = Roo.factory(config.field, Roo.form);
60050     }
60051     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
60052     field.monitorTab = false;
60053 };
60054
60055 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
60056     
60057     /**
60058      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
60059      */
60060     
60061     alignment: "tl-tl",
60062     autoSize: "width",
60063     hideEl : false,
60064     cls: "x-small-editor x-grid-editor",
60065     shim:false,
60066     shadow:"frame"
60067 });/*
60068  * Based on:
60069  * Ext JS Library 1.1.1
60070  * Copyright(c) 2006-2007, Ext JS, LLC.
60071  *
60072  * Originally Released Under LGPL - original licence link has changed is not relivant.
60073  *
60074  * Fork - LGPL
60075  * <script type="text/javascript">
60076  */
60077   
60078
60079   
60080 Roo.grid.PropertyRecord = Roo.data.Record.create([
60081     {name:'name',type:'string'},  'value'
60082 ]);
60083
60084
60085 Roo.grid.PropertyStore = function(grid, source){
60086     this.grid = grid;
60087     this.store = new Roo.data.Store({
60088         recordType : Roo.grid.PropertyRecord
60089     });
60090     this.store.on('update', this.onUpdate,  this);
60091     if(source){
60092         this.setSource(source);
60093     }
60094     Roo.grid.PropertyStore.superclass.constructor.call(this);
60095 };
60096
60097
60098
60099 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
60100     setSource : function(o){
60101         this.source = o;
60102         this.store.removeAll();
60103         var data = [];
60104         for(var k in o){
60105             if(this.isEditableValue(o[k])){
60106                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
60107             }
60108         }
60109         this.store.loadRecords({records: data}, {}, true);
60110     },
60111
60112     onUpdate : function(ds, record, type){
60113         if(type == Roo.data.Record.EDIT){
60114             var v = record.data['value'];
60115             var oldValue = record.modified['value'];
60116             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
60117                 this.source[record.id] = v;
60118                 record.commit();
60119                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
60120             }else{
60121                 record.reject();
60122             }
60123         }
60124     },
60125
60126     getProperty : function(row){
60127        return this.store.getAt(row);
60128     },
60129
60130     isEditableValue: function(val){
60131         if(val && val instanceof Date){
60132             return true;
60133         }else if(typeof val == 'object' || typeof val == 'function'){
60134             return false;
60135         }
60136         return true;
60137     },
60138
60139     setValue : function(prop, value){
60140         this.source[prop] = value;
60141         this.store.getById(prop).set('value', value);
60142     },
60143
60144     getSource : function(){
60145         return this.source;
60146     }
60147 });
60148
60149 Roo.grid.PropertyColumnModel = function(grid, store){
60150     this.grid = grid;
60151     var g = Roo.grid;
60152     g.PropertyColumnModel.superclass.constructor.call(this, [
60153         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
60154         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
60155     ]);
60156     this.store = store;
60157     this.bselect = Roo.DomHelper.append(document.body, {
60158         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
60159             {tag: 'option', value: 'true', html: 'true'},
60160             {tag: 'option', value: 'false', html: 'false'}
60161         ]
60162     });
60163     Roo.id(this.bselect);
60164     var f = Roo.form;
60165     this.editors = {
60166         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
60167         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
60168         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
60169         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
60170         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
60171     };
60172     this.renderCellDelegate = this.renderCell.createDelegate(this);
60173     this.renderPropDelegate = this.renderProp.createDelegate(this);
60174 };
60175
60176 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
60177     
60178     
60179     nameText : 'Name',
60180     valueText : 'Value',
60181     
60182     dateFormat : 'm/j/Y',
60183     
60184     
60185     renderDate : function(dateVal){
60186         return dateVal.dateFormat(this.dateFormat);
60187     },
60188
60189     renderBool : function(bVal){
60190         return bVal ? 'true' : 'false';
60191     },
60192
60193     isCellEditable : function(colIndex, rowIndex){
60194         return colIndex == 1;
60195     },
60196
60197     getRenderer : function(col){
60198         return col == 1 ?
60199             this.renderCellDelegate : this.renderPropDelegate;
60200     },
60201
60202     renderProp : function(v){
60203         return this.getPropertyName(v);
60204     },
60205
60206     renderCell : function(val){
60207         var rv = val;
60208         if(val instanceof Date){
60209             rv = this.renderDate(val);
60210         }else if(typeof val == 'boolean'){
60211             rv = this.renderBool(val);
60212         }
60213         return Roo.util.Format.htmlEncode(rv);
60214     },
60215
60216     getPropertyName : function(name){
60217         var pn = this.grid.propertyNames;
60218         return pn && pn[name] ? pn[name] : name;
60219     },
60220
60221     getCellEditor : function(colIndex, rowIndex){
60222         var p = this.store.getProperty(rowIndex);
60223         var n = p.data['name'], val = p.data['value'];
60224         
60225         if(typeof(this.grid.customEditors[n]) == 'string'){
60226             return this.editors[this.grid.customEditors[n]];
60227         }
60228         if(typeof(this.grid.customEditors[n]) != 'undefined'){
60229             return this.grid.customEditors[n];
60230         }
60231         if(val instanceof Date){
60232             return this.editors['date'];
60233         }else if(typeof val == 'number'){
60234             return this.editors['number'];
60235         }else if(typeof val == 'boolean'){
60236             return this.editors['boolean'];
60237         }else{
60238             return this.editors['string'];
60239         }
60240     }
60241 });
60242
60243 /**
60244  * @class Roo.grid.PropertyGrid
60245  * @extends Roo.grid.EditorGrid
60246  * This class represents the  interface of a component based property grid control.
60247  * <br><br>Usage:<pre><code>
60248  var grid = new Roo.grid.PropertyGrid("my-container-id", {
60249       
60250  });
60251  // set any options
60252  grid.render();
60253  * </code></pre>
60254   
60255  * @constructor
60256  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60257  * The container MUST have some type of size defined for the grid to fill. The container will be
60258  * automatically set to position relative if it isn't already.
60259  * @param {Object} config A config object that sets properties on this grid.
60260  */
60261 Roo.grid.PropertyGrid = function(container, config){
60262     config = config || {};
60263     var store = new Roo.grid.PropertyStore(this);
60264     this.store = store;
60265     var cm = new Roo.grid.PropertyColumnModel(this, store);
60266     store.store.sort('name', 'ASC');
60267     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
60268         ds: store.store,
60269         cm: cm,
60270         enableColLock:false,
60271         enableColumnMove:false,
60272         stripeRows:false,
60273         trackMouseOver: false,
60274         clicksToEdit:1
60275     }, config));
60276     this.getGridEl().addClass('x-props-grid');
60277     this.lastEditRow = null;
60278     this.on('columnresize', this.onColumnResize, this);
60279     this.addEvents({
60280          /**
60281              * @event beforepropertychange
60282              * Fires before a property changes (return false to stop?)
60283              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60284              * @param {String} id Record Id
60285              * @param {String} newval New Value
60286          * @param {String} oldval Old Value
60287              */
60288         "beforepropertychange": true,
60289         /**
60290              * @event propertychange
60291              * Fires after a property changes
60292              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60293              * @param {String} id Record Id
60294              * @param {String} newval New Value
60295          * @param {String} oldval Old Value
60296              */
60297         "propertychange": true
60298     });
60299     this.customEditors = this.customEditors || {};
60300 };
60301 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
60302     
60303      /**
60304      * @cfg {Object} customEditors map of colnames=> custom editors.
60305      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
60306      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
60307      * false disables editing of the field.
60308          */
60309     
60310       /**
60311      * @cfg {Object} propertyNames map of property Names to their displayed value
60312          */
60313     
60314     render : function(){
60315         Roo.grid.PropertyGrid.superclass.render.call(this);
60316         this.autoSize.defer(100, this);
60317     },
60318
60319     autoSize : function(){
60320         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
60321         if(this.view){
60322             this.view.fitColumns();
60323         }
60324     },
60325
60326     onColumnResize : function(){
60327         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
60328         this.autoSize();
60329     },
60330     /**
60331      * Sets the data for the Grid
60332      * accepts a Key => Value object of all the elements avaiable.
60333      * @param {Object} data  to appear in grid.
60334      */
60335     setSource : function(source){
60336         this.store.setSource(source);
60337         //this.autoSize();
60338     },
60339     /**
60340      * Gets all the data from the grid.
60341      * @return {Object} data  data stored in grid
60342      */
60343     getSource : function(){
60344         return this.store.getSource();
60345     }
60346 });/*
60347   
60348  * Licence LGPL
60349  
60350  */
60351  
60352 /**
60353  * @class Roo.grid.Calendar
60354  * @extends Roo.grid.Grid
60355  * This class extends the Grid to provide a calendar widget
60356  * <br><br>Usage:<pre><code>
60357  var grid = new Roo.grid.Calendar("my-container-id", {
60358      ds: myDataStore,
60359      cm: myColModel,
60360      selModel: mySelectionModel,
60361      autoSizeColumns: true,
60362      monitorWindowResize: false,
60363      trackMouseOver: true
60364      eventstore : real data store..
60365  });
60366  // set any options
60367  grid.render();
60368   
60369   * @constructor
60370  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60371  * The container MUST have some type of size defined for the grid to fill. The container will be
60372  * automatically set to position relative if it isn't already.
60373  * @param {Object} config A config object that sets properties on this grid.
60374  */
60375 Roo.grid.Calendar = function(container, config){
60376         // initialize the container
60377         this.container = Roo.get(container);
60378         this.container.update("");
60379         this.container.setStyle("overflow", "hidden");
60380     this.container.addClass('x-grid-container');
60381
60382     this.id = this.container.id;
60383
60384     Roo.apply(this, config);
60385     // check and correct shorthanded configs
60386     
60387     var rows = [];
60388     var d =1;
60389     for (var r = 0;r < 6;r++) {
60390         
60391         rows[r]=[];
60392         for (var c =0;c < 7;c++) {
60393             rows[r][c]= '';
60394         }
60395     }
60396     if (this.eventStore) {
60397         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60398         this.eventStore.on('load',this.onLoad, this);
60399         this.eventStore.on('beforeload',this.clearEvents, this);
60400          
60401     }
60402     
60403     this.dataSource = new Roo.data.Store({
60404             proxy: new Roo.data.MemoryProxy(rows),
60405             reader: new Roo.data.ArrayReader({}, [
60406                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60407     });
60408
60409     this.dataSource.load();
60410     this.ds = this.dataSource;
60411     this.ds.xmodule = this.xmodule || false;
60412     
60413     
60414     var cellRender = function(v,x,r)
60415     {
60416         return String.format(
60417             '<div class="fc-day  fc-widget-content"><div>' +
60418                 '<div class="fc-event-container"></div>' +
60419                 '<div class="fc-day-number">{0}</div>'+
60420                 
60421                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60422             '</div></div>', v);
60423     
60424     }
60425     
60426     
60427     this.colModel = new Roo.grid.ColumnModel( [
60428         {
60429             xtype: 'ColumnModel',
60430             xns: Roo.grid,
60431             dataIndex : 'weekday0',
60432             header : 'Sunday',
60433             renderer : cellRender
60434         },
60435         {
60436             xtype: 'ColumnModel',
60437             xns: Roo.grid,
60438             dataIndex : 'weekday1',
60439             header : 'Monday',
60440             renderer : cellRender
60441         },
60442         {
60443             xtype: 'ColumnModel',
60444             xns: Roo.grid,
60445             dataIndex : 'weekday2',
60446             header : 'Tuesday',
60447             renderer : cellRender
60448         },
60449         {
60450             xtype: 'ColumnModel',
60451             xns: Roo.grid,
60452             dataIndex : 'weekday3',
60453             header : 'Wednesday',
60454             renderer : cellRender
60455         },
60456         {
60457             xtype: 'ColumnModel',
60458             xns: Roo.grid,
60459             dataIndex : 'weekday4',
60460             header : 'Thursday',
60461             renderer : cellRender
60462         },
60463         {
60464             xtype: 'ColumnModel',
60465             xns: Roo.grid,
60466             dataIndex : 'weekday5',
60467             header : 'Friday',
60468             renderer : cellRender
60469         },
60470         {
60471             xtype: 'ColumnModel',
60472             xns: Roo.grid,
60473             dataIndex : 'weekday6',
60474             header : 'Saturday',
60475             renderer : cellRender
60476         }
60477     ]);
60478     this.cm = this.colModel;
60479     this.cm.xmodule = this.xmodule || false;
60480  
60481         
60482           
60483     //this.selModel = new Roo.grid.CellSelectionModel();
60484     //this.sm = this.selModel;
60485     //this.selModel.init(this);
60486     
60487     
60488     if(this.width){
60489         this.container.setWidth(this.width);
60490     }
60491
60492     if(this.height){
60493         this.container.setHeight(this.height);
60494     }
60495     /** @private */
60496         this.addEvents({
60497         // raw events
60498         /**
60499          * @event click
60500          * The raw click event for the entire grid.
60501          * @param {Roo.EventObject} e
60502          */
60503         "click" : true,
60504         /**
60505          * @event dblclick
60506          * The raw dblclick event for the entire grid.
60507          * @param {Roo.EventObject} e
60508          */
60509         "dblclick" : true,
60510         /**
60511          * @event contextmenu
60512          * The raw contextmenu event for the entire grid.
60513          * @param {Roo.EventObject} e
60514          */
60515         "contextmenu" : true,
60516         /**
60517          * @event mousedown
60518          * The raw mousedown event for the entire grid.
60519          * @param {Roo.EventObject} e
60520          */
60521         "mousedown" : true,
60522         /**
60523          * @event mouseup
60524          * The raw mouseup event for the entire grid.
60525          * @param {Roo.EventObject} e
60526          */
60527         "mouseup" : true,
60528         /**
60529          * @event mouseover
60530          * The raw mouseover event for the entire grid.
60531          * @param {Roo.EventObject} e
60532          */
60533         "mouseover" : true,
60534         /**
60535          * @event mouseout
60536          * The raw mouseout event for the entire grid.
60537          * @param {Roo.EventObject} e
60538          */
60539         "mouseout" : true,
60540         /**
60541          * @event keypress
60542          * The raw keypress event for the entire grid.
60543          * @param {Roo.EventObject} e
60544          */
60545         "keypress" : true,
60546         /**
60547          * @event keydown
60548          * The raw keydown event for the entire grid.
60549          * @param {Roo.EventObject} e
60550          */
60551         "keydown" : true,
60552
60553         // custom events
60554
60555         /**
60556          * @event cellclick
60557          * Fires when a cell is clicked
60558          * @param {Grid} this
60559          * @param {Number} rowIndex
60560          * @param {Number} columnIndex
60561          * @param {Roo.EventObject} e
60562          */
60563         "cellclick" : true,
60564         /**
60565          * @event celldblclick
60566          * Fires when a cell is double clicked
60567          * @param {Grid} this
60568          * @param {Number} rowIndex
60569          * @param {Number} columnIndex
60570          * @param {Roo.EventObject} e
60571          */
60572         "celldblclick" : true,
60573         /**
60574          * @event rowclick
60575          * Fires when a row is clicked
60576          * @param {Grid} this
60577          * @param {Number} rowIndex
60578          * @param {Roo.EventObject} e
60579          */
60580         "rowclick" : true,
60581         /**
60582          * @event rowdblclick
60583          * Fires when a row is double clicked
60584          * @param {Grid} this
60585          * @param {Number} rowIndex
60586          * @param {Roo.EventObject} e
60587          */
60588         "rowdblclick" : true,
60589         /**
60590          * @event headerclick
60591          * Fires when a header is clicked
60592          * @param {Grid} this
60593          * @param {Number} columnIndex
60594          * @param {Roo.EventObject} e
60595          */
60596         "headerclick" : true,
60597         /**
60598          * @event headerdblclick
60599          * Fires when a header cell is double clicked
60600          * @param {Grid} this
60601          * @param {Number} columnIndex
60602          * @param {Roo.EventObject} e
60603          */
60604         "headerdblclick" : true,
60605         /**
60606          * @event rowcontextmenu
60607          * Fires when a row is right clicked
60608          * @param {Grid} this
60609          * @param {Number} rowIndex
60610          * @param {Roo.EventObject} e
60611          */
60612         "rowcontextmenu" : true,
60613         /**
60614          * @event cellcontextmenu
60615          * Fires when a cell is right clicked
60616          * @param {Grid} this
60617          * @param {Number} rowIndex
60618          * @param {Number} cellIndex
60619          * @param {Roo.EventObject} e
60620          */
60621          "cellcontextmenu" : true,
60622         /**
60623          * @event headercontextmenu
60624          * Fires when a header is right clicked
60625          * @param {Grid} this
60626          * @param {Number} columnIndex
60627          * @param {Roo.EventObject} e
60628          */
60629         "headercontextmenu" : true,
60630         /**
60631          * @event bodyscroll
60632          * Fires when the body element is scrolled
60633          * @param {Number} scrollLeft
60634          * @param {Number} scrollTop
60635          */
60636         "bodyscroll" : true,
60637         /**
60638          * @event columnresize
60639          * Fires when the user resizes a column
60640          * @param {Number} columnIndex
60641          * @param {Number} newSize
60642          */
60643         "columnresize" : true,
60644         /**
60645          * @event columnmove
60646          * Fires when the user moves a column
60647          * @param {Number} oldIndex
60648          * @param {Number} newIndex
60649          */
60650         "columnmove" : true,
60651         /**
60652          * @event startdrag
60653          * Fires when row(s) start being dragged
60654          * @param {Grid} this
60655          * @param {Roo.GridDD} dd The drag drop object
60656          * @param {event} e The raw browser event
60657          */
60658         "startdrag" : true,
60659         /**
60660          * @event enddrag
60661          * Fires when a drag operation is complete
60662          * @param {Grid} this
60663          * @param {Roo.GridDD} dd The drag drop object
60664          * @param {event} e The raw browser event
60665          */
60666         "enddrag" : true,
60667         /**
60668          * @event dragdrop
60669          * Fires when dragged row(s) are dropped on a valid DD target
60670          * @param {Grid} this
60671          * @param {Roo.GridDD} dd The drag drop object
60672          * @param {String} targetId The target drag drop object
60673          * @param {event} e The raw browser event
60674          */
60675         "dragdrop" : true,
60676         /**
60677          * @event dragover
60678          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60679          * @param {Grid} this
60680          * @param {Roo.GridDD} dd The drag drop object
60681          * @param {String} targetId The target drag drop object
60682          * @param {event} e The raw browser event
60683          */
60684         "dragover" : true,
60685         /**
60686          * @event dragenter
60687          *  Fires when the dragged row(s) first cross another DD target while being dragged
60688          * @param {Grid} this
60689          * @param {Roo.GridDD} dd The drag drop object
60690          * @param {String} targetId The target drag drop object
60691          * @param {event} e The raw browser event
60692          */
60693         "dragenter" : true,
60694         /**
60695          * @event dragout
60696          * Fires when the dragged row(s) leave another DD target while being dragged
60697          * @param {Grid} this
60698          * @param {Roo.GridDD} dd The drag drop object
60699          * @param {String} targetId The target drag drop object
60700          * @param {event} e The raw browser event
60701          */
60702         "dragout" : true,
60703         /**
60704          * @event rowclass
60705          * Fires when a row is rendered, so you can change add a style to it.
60706          * @param {GridView} gridview   The grid view
60707          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60708          */
60709         'rowclass' : true,
60710
60711         /**
60712          * @event render
60713          * Fires when the grid is rendered
60714          * @param {Grid} grid
60715          */
60716         'render' : true,
60717             /**
60718              * @event select
60719              * Fires when a date is selected
60720              * @param {DatePicker} this
60721              * @param {Date} date The selected date
60722              */
60723         'select': true,
60724         /**
60725              * @event monthchange
60726              * Fires when the displayed month changes 
60727              * @param {DatePicker} this
60728              * @param {Date} date The selected month
60729              */
60730         'monthchange': true,
60731         /**
60732              * @event evententer
60733              * Fires when mouse over an event
60734              * @param {Calendar} this
60735              * @param {event} Event
60736              */
60737         'evententer': true,
60738         /**
60739              * @event eventleave
60740              * Fires when the mouse leaves an
60741              * @param {Calendar} this
60742              * @param {event}
60743              */
60744         'eventleave': true,
60745         /**
60746              * @event eventclick
60747              * Fires when the mouse click an
60748              * @param {Calendar} this
60749              * @param {event}
60750              */
60751         'eventclick': true,
60752         /**
60753              * @event eventrender
60754              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60755              * @param {Calendar} this
60756              * @param {data} data to be modified
60757              */
60758         'eventrender': true
60759         
60760     });
60761
60762     Roo.grid.Grid.superclass.constructor.call(this);
60763     this.on('render', function() {
60764         this.view.el.addClass('x-grid-cal'); 
60765         
60766         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60767
60768     },this);
60769     
60770     if (!Roo.grid.Calendar.style) {
60771         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60772             
60773             
60774             '.x-grid-cal .x-grid-col' :  {
60775                 height: 'auto !important',
60776                 'vertical-align': 'top'
60777             },
60778             '.x-grid-cal  .fc-event-hori' : {
60779                 height: '14px'
60780             }
60781              
60782             
60783         }, Roo.id());
60784     }
60785
60786     
60787     
60788 };
60789 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60790     /**
60791      * @cfg {Store} eventStore The store that loads events.
60792      */
60793     eventStore : 25,
60794
60795      
60796     activeDate : false,
60797     startDay : 0,
60798     autoWidth : true,
60799     monitorWindowResize : false,
60800
60801     
60802     resizeColumns : function() {
60803         var col = (this.view.el.getWidth() / 7) - 3;
60804         // loop through cols, and setWidth
60805         for(var i =0 ; i < 7 ; i++){
60806             this.cm.setColumnWidth(i, col);
60807         }
60808     },
60809      setDate :function(date) {
60810         
60811         Roo.log('setDate?');
60812         
60813         this.resizeColumns();
60814         var vd = this.activeDate;
60815         this.activeDate = date;
60816 //        if(vd && this.el){
60817 //            var t = date.getTime();
60818 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60819 //                Roo.log('using add remove');
60820 //                
60821 //                this.fireEvent('monthchange', this, date);
60822 //                
60823 //                this.cells.removeClass("fc-state-highlight");
60824 //                this.cells.each(function(c){
60825 //                   if(c.dateValue == t){
60826 //                       c.addClass("fc-state-highlight");
60827 //                       setTimeout(function(){
60828 //                            try{c.dom.firstChild.focus();}catch(e){}
60829 //                       }, 50);
60830 //                       return false;
60831 //                   }
60832 //                   return true;
60833 //                });
60834 //                return;
60835 //            }
60836 //        }
60837         
60838         var days = date.getDaysInMonth();
60839         
60840         var firstOfMonth = date.getFirstDateOfMonth();
60841         var startingPos = firstOfMonth.getDay()-this.startDay;
60842         
60843         if(startingPos < this.startDay){
60844             startingPos += 7;
60845         }
60846         
60847         var pm = date.add(Date.MONTH, -1);
60848         var prevStart = pm.getDaysInMonth()-startingPos;
60849 //        
60850         
60851         
60852         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60853         
60854         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60855         //this.cells.addClassOnOver('fc-state-hover');
60856         
60857         var cells = this.cells.elements;
60858         var textEls = this.textNodes;
60859         
60860         //Roo.each(cells, function(cell){
60861         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60862         //});
60863         
60864         days += startingPos;
60865
60866         // convert everything to numbers so it's fast
60867         var day = 86400000;
60868         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60869         //Roo.log(d);
60870         //Roo.log(pm);
60871         //Roo.log(prevStart);
60872         
60873         var today = new Date().clearTime().getTime();
60874         var sel = date.clearTime().getTime();
60875         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60876         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60877         var ddMatch = this.disabledDatesRE;
60878         var ddText = this.disabledDatesText;
60879         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60880         var ddaysText = this.disabledDaysText;
60881         var format = this.format;
60882         
60883         var setCellClass = function(cal, cell){
60884             
60885             //Roo.log('set Cell Class');
60886             cell.title = "";
60887             var t = d.getTime();
60888             
60889             //Roo.log(d);
60890             
60891             
60892             cell.dateValue = t;
60893             if(t == today){
60894                 cell.className += " fc-today";
60895                 cell.className += " fc-state-highlight";
60896                 cell.title = cal.todayText;
60897             }
60898             if(t == sel){
60899                 // disable highlight in other month..
60900                 cell.className += " fc-state-highlight";
60901                 
60902             }
60903             // disabling
60904             if(t < min) {
60905                 //cell.className = " fc-state-disabled";
60906                 cell.title = cal.minText;
60907                 return;
60908             }
60909             if(t > max) {
60910                 //cell.className = " fc-state-disabled";
60911                 cell.title = cal.maxText;
60912                 return;
60913             }
60914             if(ddays){
60915                 if(ddays.indexOf(d.getDay()) != -1){
60916                     // cell.title = ddaysText;
60917                    // cell.className = " fc-state-disabled";
60918                 }
60919             }
60920             if(ddMatch && format){
60921                 var fvalue = d.dateFormat(format);
60922                 if(ddMatch.test(fvalue)){
60923                     cell.title = ddText.replace("%0", fvalue);
60924                    cell.className = " fc-state-disabled";
60925                 }
60926             }
60927             
60928             if (!cell.initialClassName) {
60929                 cell.initialClassName = cell.dom.className;
60930             }
60931             
60932             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60933         };
60934
60935         var i = 0;
60936         
60937         for(; i < startingPos; i++) {
60938             cells[i].dayName =  (++prevStart);
60939             Roo.log(textEls[i]);
60940             d.setDate(d.getDate()+1);
60941             
60942             //cells[i].className = "fc-past fc-other-month";
60943             setCellClass(this, cells[i]);
60944         }
60945         
60946         var intDay = 0;
60947         
60948         for(; i < days; i++){
60949             intDay = i - startingPos + 1;
60950             cells[i].dayName =  (intDay);
60951             d.setDate(d.getDate()+1);
60952             
60953             cells[i].className = ''; // "x-date-active";
60954             setCellClass(this, cells[i]);
60955         }
60956         var extraDays = 0;
60957         
60958         for(; i < 42; i++) {
60959             //textEls[i].innerHTML = (++extraDays);
60960             
60961             d.setDate(d.getDate()+1);
60962             cells[i].dayName = (++extraDays);
60963             cells[i].className = "fc-future fc-other-month";
60964             setCellClass(this, cells[i]);
60965         }
60966         
60967         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60968         
60969         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60970         
60971         // this will cause all the cells to mis
60972         var rows= [];
60973         var i =0;
60974         for (var r = 0;r < 6;r++) {
60975             for (var c =0;c < 7;c++) {
60976                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60977             }    
60978         }
60979         
60980         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60981         for(i=0;i<cells.length;i++) {
60982             
60983             this.cells.elements[i].dayName = cells[i].dayName ;
60984             this.cells.elements[i].className = cells[i].className;
60985             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60986             this.cells.elements[i].title = cells[i].title ;
60987             this.cells.elements[i].dateValue = cells[i].dateValue ;
60988         }
60989         
60990         
60991         
60992         
60993         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60994         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60995         
60996         ////if(totalRows != 6){
60997             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60998            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60999        // }
61000         
61001         this.fireEvent('monthchange', this, date);
61002         
61003         
61004     },
61005  /**
61006      * Returns the grid's SelectionModel.
61007      * @return {SelectionModel}
61008      */
61009     getSelectionModel : function(){
61010         if(!this.selModel){
61011             this.selModel = new Roo.grid.CellSelectionModel();
61012         }
61013         return this.selModel;
61014     },
61015
61016     load: function() {
61017         this.eventStore.load()
61018         
61019         
61020         
61021     },
61022     
61023     findCell : function(dt) {
61024         dt = dt.clearTime().getTime();
61025         var ret = false;
61026         this.cells.each(function(c){
61027             //Roo.log("check " +c.dateValue + '?=' + dt);
61028             if(c.dateValue == dt){
61029                 ret = c;
61030                 return false;
61031             }
61032             return true;
61033         });
61034         
61035         return ret;
61036     },
61037     
61038     findCells : function(rec) {
61039         var s = rec.data.start_dt.clone().clearTime().getTime();
61040        // Roo.log(s);
61041         var e= rec.data.end_dt.clone().clearTime().getTime();
61042        // Roo.log(e);
61043         var ret = [];
61044         this.cells.each(function(c){
61045              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
61046             
61047             if(c.dateValue > e){
61048                 return ;
61049             }
61050             if(c.dateValue < s){
61051                 return ;
61052             }
61053             ret.push(c);
61054         });
61055         
61056         return ret;    
61057     },
61058     
61059     findBestRow: function(cells)
61060     {
61061         var ret = 0;
61062         
61063         for (var i =0 ; i < cells.length;i++) {
61064             ret  = Math.max(cells[i].rows || 0,ret);
61065         }
61066         return ret;
61067         
61068     },
61069     
61070     
61071     addItem : function(rec)
61072     {
61073         // look for vertical location slot in
61074         var cells = this.findCells(rec);
61075         
61076         rec.row = this.findBestRow(cells);
61077         
61078         // work out the location.
61079         
61080         var crow = false;
61081         var rows = [];
61082         for(var i =0; i < cells.length; i++) {
61083             if (!crow) {
61084                 crow = {
61085                     start : cells[i],
61086                     end :  cells[i]
61087                 };
61088                 continue;
61089             }
61090             if (crow.start.getY() == cells[i].getY()) {
61091                 // on same row.
61092                 crow.end = cells[i];
61093                 continue;
61094             }
61095             // different row.
61096             rows.push(crow);
61097             crow = {
61098                 start: cells[i],
61099                 end : cells[i]
61100             };
61101             
61102         }
61103         
61104         rows.push(crow);
61105         rec.els = [];
61106         rec.rows = rows;
61107         rec.cells = cells;
61108         for (var i = 0; i < cells.length;i++) {
61109             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
61110             
61111         }
61112         
61113         
61114     },
61115     
61116     clearEvents: function() {
61117         
61118         if (!this.eventStore.getCount()) {
61119             return;
61120         }
61121         // reset number of rows in cells.
61122         Roo.each(this.cells.elements, function(c){
61123             c.rows = 0;
61124         });
61125         
61126         this.eventStore.each(function(e) {
61127             this.clearEvent(e);
61128         },this);
61129         
61130     },
61131     
61132     clearEvent : function(ev)
61133     {
61134         if (ev.els) {
61135             Roo.each(ev.els, function(el) {
61136                 el.un('mouseenter' ,this.onEventEnter, this);
61137                 el.un('mouseleave' ,this.onEventLeave, this);
61138                 el.remove();
61139             },this);
61140             ev.els = [];
61141         }
61142     },
61143     
61144     
61145     renderEvent : function(ev,ctr) {
61146         if (!ctr) {
61147              ctr = this.view.el.select('.fc-event-container',true).first();
61148         }
61149         
61150          
61151         this.clearEvent(ev);
61152             //code
61153        
61154         
61155         
61156         ev.els = [];
61157         var cells = ev.cells;
61158         var rows = ev.rows;
61159         this.fireEvent('eventrender', this, ev);
61160         
61161         for(var i =0; i < rows.length; i++) {
61162             
61163             cls = '';
61164             if (i == 0) {
61165                 cls += ' fc-event-start';
61166             }
61167             if ((i+1) == rows.length) {
61168                 cls += ' fc-event-end';
61169             }
61170             
61171             //Roo.log(ev.data);
61172             // how many rows should it span..
61173             var cg = this.eventTmpl.append(ctr,Roo.apply({
61174                 fccls : cls
61175                 
61176             }, ev.data) , true);
61177             
61178             
61179             cg.on('mouseenter' ,this.onEventEnter, this, ev);
61180             cg.on('mouseleave' ,this.onEventLeave, this, ev);
61181             cg.on('click', this.onEventClick, this, ev);
61182             
61183             ev.els.push(cg);
61184             
61185             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
61186             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
61187             //Roo.log(cg);
61188              
61189             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
61190             cg.setWidth(ebox.right - sbox.x -2);
61191         }
61192     },
61193     
61194     renderEvents: function()
61195     {   
61196         // first make sure there is enough space..
61197         
61198         if (!this.eventTmpl) {
61199             this.eventTmpl = new Roo.Template(
61200                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
61201                     '<div class="fc-event-inner">' +
61202                         '<span class="fc-event-time">{time}</span>' +
61203                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
61204                     '</div>' +
61205                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
61206                 '</div>'
61207             );
61208                 
61209         }
61210                
61211         
61212         
61213         this.cells.each(function(c) {
61214             //Roo.log(c.select('.fc-day-content div',true).first());
61215             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
61216         });
61217         
61218         var ctr = this.view.el.select('.fc-event-container',true).first();
61219         
61220         var cls;
61221         this.eventStore.each(function(ev){
61222             
61223             this.renderEvent(ev);
61224              
61225              
61226         }, this);
61227         this.view.layout();
61228         
61229     },
61230     
61231     onEventEnter: function (e, el,event,d) {
61232         this.fireEvent('evententer', this, el, event);
61233     },
61234     
61235     onEventLeave: function (e, el,event,d) {
61236         this.fireEvent('eventleave', this, el, event);
61237     },
61238     
61239     onEventClick: function (e, el,event,d) {
61240         this.fireEvent('eventclick', this, el, event);
61241     },
61242     
61243     onMonthChange: function () {
61244         this.store.load();
61245     },
61246     
61247     onLoad: function () {
61248         
61249         //Roo.log('calendar onload');
61250 //         
61251         if(this.eventStore.getCount() > 0){
61252             
61253            
61254             
61255             this.eventStore.each(function(d){
61256                 
61257                 
61258                 // FIXME..
61259                 var add =   d.data;
61260                 if (typeof(add.end_dt) == 'undefined')  {
61261                     Roo.log("Missing End time in calendar data: ");
61262                     Roo.log(d);
61263                     return;
61264                 }
61265                 if (typeof(add.start_dt) == 'undefined')  {
61266                     Roo.log("Missing Start time in calendar data: ");
61267                     Roo.log(d);
61268                     return;
61269                 }
61270                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
61271                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
61272                 add.id = add.id || d.id;
61273                 add.title = add.title || '??';
61274                 
61275                 this.addItem(d);
61276                 
61277              
61278             },this);
61279         }
61280         
61281         this.renderEvents();
61282     }
61283     
61284
61285 });
61286 /*
61287  grid : {
61288                 xtype: 'Grid',
61289                 xns: Roo.grid,
61290                 listeners : {
61291                     render : function ()
61292                     {
61293                         _this.grid = this;
61294                         
61295                         if (!this.view.el.hasClass('course-timesheet')) {
61296                             this.view.el.addClass('course-timesheet');
61297                         }
61298                         if (this.tsStyle) {
61299                             this.ds.load({});
61300                             return; 
61301                         }
61302                         Roo.log('width');
61303                         Roo.log(_this.grid.view.el.getWidth());
61304                         
61305                         
61306                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
61307                             '.course-timesheet .x-grid-row' : {
61308                                 height: '80px'
61309                             },
61310                             '.x-grid-row td' : {
61311                                 'vertical-align' : 0
61312                             },
61313                             '.course-edit-link' : {
61314                                 'color' : 'blue',
61315                                 'text-overflow' : 'ellipsis',
61316                                 'overflow' : 'hidden',
61317                                 'white-space' : 'nowrap',
61318                                 'cursor' : 'pointer'
61319                             },
61320                             '.sub-link' : {
61321                                 'color' : 'green'
61322                             },
61323                             '.de-act-sup-link' : {
61324                                 'color' : 'purple',
61325                                 'text-decoration' : 'line-through'
61326                             },
61327                             '.de-act-link' : {
61328                                 'color' : 'red',
61329                                 'text-decoration' : 'line-through'
61330                             },
61331                             '.course-timesheet .course-highlight' : {
61332                                 'border-top-style': 'dashed !important',
61333                                 'border-bottom-bottom': 'dashed !important'
61334                             },
61335                             '.course-timesheet .course-item' : {
61336                                 'font-family'   : 'tahoma, arial, helvetica',
61337                                 'font-size'     : '11px',
61338                                 'overflow'      : 'hidden',
61339                                 'padding-left'  : '10px',
61340                                 'padding-right' : '10px',
61341                                 'padding-top' : '10px' 
61342                             }
61343                             
61344                         }, Roo.id());
61345                                 this.ds.load({});
61346                     }
61347                 },
61348                 autoWidth : true,
61349                 monitorWindowResize : false,
61350                 cellrenderer : function(v,x,r)
61351                 {
61352                     return v;
61353                 },
61354                 sm : {
61355                     xtype: 'CellSelectionModel',
61356                     xns: Roo.grid
61357                 },
61358                 dataSource : {
61359                     xtype: 'Store',
61360                     xns: Roo.data,
61361                     listeners : {
61362                         beforeload : function (_self, options)
61363                         {
61364                             options.params = options.params || {};
61365                             options.params._month = _this.monthField.getValue();
61366                             options.params.limit = 9999;
61367                             options.params['sort'] = 'when_dt';    
61368                             options.params['dir'] = 'ASC';    
61369                             this.proxy.loadResponse = this.loadResponse;
61370                             Roo.log("load?");
61371                             //this.addColumns();
61372                         },
61373                         load : function (_self, records, options)
61374                         {
61375                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61376                                 // if you click on the translation.. you can edit it...
61377                                 var el = Roo.get(this);
61378                                 var id = el.dom.getAttribute('data-id');
61379                                 var d = el.dom.getAttribute('data-date');
61380                                 var t = el.dom.getAttribute('data-time');
61381                                 //var id = this.child('span').dom.textContent;
61382                                 
61383                                 //Roo.log(this);
61384                                 Pman.Dialog.CourseCalendar.show({
61385                                     id : id,
61386                                     when_d : d,
61387                                     when_t : t,
61388                                     productitem_active : id ? 1 : 0
61389                                 }, function() {
61390                                     _this.grid.ds.load({});
61391                                 });
61392                            
61393                            });
61394                            
61395                            _this.panel.fireEvent('resize', [ '', '' ]);
61396                         }
61397                     },
61398                     loadResponse : function(o, success, response){
61399                             // this is overridden on before load..
61400                             
61401                             Roo.log("our code?");       
61402                             //Roo.log(success);
61403                             //Roo.log(response)
61404                             delete this.activeRequest;
61405                             if(!success){
61406                                 this.fireEvent("loadexception", this, o, response);
61407                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61408                                 return;
61409                             }
61410                             var result;
61411                             try {
61412                                 result = o.reader.read(response);
61413                             }catch(e){
61414                                 Roo.log("load exception?");
61415                                 this.fireEvent("loadexception", this, o, response, e);
61416                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61417                                 return;
61418                             }
61419                             Roo.log("ready...");        
61420                             // loop through result.records;
61421                             // and set this.tdate[date] = [] << array of records..
61422                             _this.tdata  = {};
61423                             Roo.each(result.records, function(r){
61424                                 //Roo.log(r.data);
61425                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61426                                     _this.tdata[r.data.when_dt.format('j')] = [];
61427                                 }
61428                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61429                             });
61430                             
61431                             //Roo.log(_this.tdata);
61432                             
61433                             result.records = [];
61434                             result.totalRecords = 6;
61435                     
61436                             // let's generate some duumy records for the rows.
61437                             //var st = _this.dateField.getValue();
61438                             
61439                             // work out monday..
61440                             //st = st.add(Date.DAY, -1 * st.format('w'));
61441                             
61442                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61443                             
61444                             var firstOfMonth = date.getFirstDayOfMonth();
61445                             var days = date.getDaysInMonth();
61446                             var d = 1;
61447                             var firstAdded = false;
61448                             for (var i = 0; i < result.totalRecords ; i++) {
61449                                 //var d= st.add(Date.DAY, i);
61450                                 var row = {};
61451                                 var added = 0;
61452                                 for(var w = 0 ; w < 7 ; w++){
61453                                     if(!firstAdded && firstOfMonth != w){
61454                                         continue;
61455                                     }
61456                                     if(d > days){
61457                                         continue;
61458                                     }
61459                                     firstAdded = true;
61460                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61461                                     row['weekday'+w] = String.format(
61462                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61463                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61464                                                     d,
61465                                                     date.format('Y-m-')+dd
61466                                                 );
61467                                     added++;
61468                                     if(typeof(_this.tdata[d]) != 'undefined'){
61469                                         Roo.each(_this.tdata[d], function(r){
61470                                             var is_sub = '';
61471                                             var deactive = '';
61472                                             var id = r.id;
61473                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61474                                             if(r.parent_id*1>0){
61475                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61476                                                 id = r.parent_id;
61477                                             }
61478                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61479                                                 deactive = 'de-act-link';
61480                                             }
61481                                             
61482                                             row['weekday'+w] += String.format(
61483                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61484                                                     id, //0
61485                                                     r.product_id_name, //1
61486                                                     r.when_dt.format('h:ia'), //2
61487                                                     is_sub, //3
61488                                                     deactive, //4
61489                                                     desc // 5
61490                                             );
61491                                         });
61492                                     }
61493                                     d++;
61494                                 }
61495                                 
61496                                 // only do this if something added..
61497                                 if(added > 0){ 
61498                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61499                                 }
61500                                 
61501                                 
61502                                 // push it twice. (second one with an hour..
61503                                 
61504                             }
61505                             //Roo.log(result);
61506                             this.fireEvent("load", this, o, o.request.arg);
61507                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61508                         },
61509                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61510                     proxy : {
61511                         xtype: 'HttpProxy',
61512                         xns: Roo.data,
61513                         method : 'GET',
61514                         url : baseURL + '/Roo/Shop_course.php'
61515                     },
61516                     reader : {
61517                         xtype: 'JsonReader',
61518                         xns: Roo.data,
61519                         id : 'id',
61520                         fields : [
61521                             {
61522                                 'name': 'id',
61523                                 'type': 'int'
61524                             },
61525                             {
61526                                 'name': 'when_dt',
61527                                 'type': 'string'
61528                             },
61529                             {
61530                                 'name': 'end_dt',
61531                                 'type': 'string'
61532                             },
61533                             {
61534                                 'name': 'parent_id',
61535                                 'type': 'int'
61536                             },
61537                             {
61538                                 'name': 'product_id',
61539                                 'type': 'int'
61540                             },
61541                             {
61542                                 'name': 'productitem_id',
61543                                 'type': 'int'
61544                             },
61545                             {
61546                                 'name': 'guid',
61547                                 'type': 'int'
61548                             }
61549                         ]
61550                     }
61551                 },
61552                 toolbar : {
61553                     xtype: 'Toolbar',
61554                     xns: Roo,
61555                     items : [
61556                         {
61557                             xtype: 'Button',
61558                             xns: Roo.Toolbar,
61559                             listeners : {
61560                                 click : function (_self, e)
61561                                 {
61562                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61563                                     sd.setMonth(sd.getMonth()-1);
61564                                     _this.monthField.setValue(sd.format('Y-m-d'));
61565                                     _this.grid.ds.load({});
61566                                 }
61567                             },
61568                             text : "Back"
61569                         },
61570                         {
61571                             xtype: 'Separator',
61572                             xns: Roo.Toolbar
61573                         },
61574                         {
61575                             xtype: 'MonthField',
61576                             xns: Roo.form,
61577                             listeners : {
61578                                 render : function (_self)
61579                                 {
61580                                     _this.monthField = _self;
61581                                    // _this.monthField.set  today
61582                                 },
61583                                 select : function (combo, date)
61584                                 {
61585                                     _this.grid.ds.load({});
61586                                 }
61587                             },
61588                             value : (function() { return new Date(); })()
61589                         },
61590                         {
61591                             xtype: 'Separator',
61592                             xns: Roo.Toolbar
61593                         },
61594                         {
61595                             xtype: 'TextItem',
61596                             xns: Roo.Toolbar,
61597                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61598                         },
61599                         {
61600                             xtype: 'Fill',
61601                             xns: Roo.Toolbar
61602                         },
61603                         {
61604                             xtype: 'Button',
61605                             xns: Roo.Toolbar,
61606                             listeners : {
61607                                 click : function (_self, e)
61608                                 {
61609                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61610                                     sd.setMonth(sd.getMonth()+1);
61611                                     _this.monthField.setValue(sd.format('Y-m-d'));
61612                                     _this.grid.ds.load({});
61613                                 }
61614                             },
61615                             text : "Next"
61616                         }
61617                     ]
61618                 },
61619                  
61620             }
61621         };
61622         
61623         *//*
61624  * Based on:
61625  * Ext JS Library 1.1.1
61626  * Copyright(c) 2006-2007, Ext JS, LLC.
61627  *
61628  * Originally Released Under LGPL - original licence link has changed is not relivant.
61629  *
61630  * Fork - LGPL
61631  * <script type="text/javascript">
61632  */
61633  
61634 /**
61635  * @class Roo.LoadMask
61636  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61637  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61638  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61639  * element's UpdateManager load indicator and will be destroyed after the initial load.
61640  * @constructor
61641  * Create a new LoadMask
61642  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61643  * @param {Object} config The config object
61644  */
61645 Roo.LoadMask = function(el, config){
61646     this.el = Roo.get(el);
61647     Roo.apply(this, config);
61648     if(this.store){
61649         this.store.on('beforeload', this.onBeforeLoad, this);
61650         this.store.on('load', this.onLoad, this);
61651         this.store.on('loadexception', this.onLoadException, this);
61652         this.removeMask = false;
61653     }else{
61654         var um = this.el.getUpdateManager();
61655         um.showLoadIndicator = false; // disable the default indicator
61656         um.on('beforeupdate', this.onBeforeLoad, this);
61657         um.on('update', this.onLoad, this);
61658         um.on('failure', this.onLoad, this);
61659         this.removeMask = true;
61660     }
61661 };
61662
61663 Roo.LoadMask.prototype = {
61664     /**
61665      * @cfg {Boolean} removeMask
61666      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61667      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61668      */
61669     removeMask : false,
61670     /**
61671      * @cfg {String} msg
61672      * The text to display in a centered loading message box (defaults to 'Loading...')
61673      */
61674     msg : 'Loading...',
61675     /**
61676      * @cfg {String} msgCls
61677      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61678      */
61679     msgCls : 'x-mask-loading',
61680
61681     /**
61682      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61683      * @type Boolean
61684      */
61685     disabled: false,
61686
61687     /**
61688      * Disables the mask to prevent it from being displayed
61689      */
61690     disable : function(){
61691        this.disabled = true;
61692     },
61693
61694     /**
61695      * Enables the mask so that it can be displayed
61696      */
61697     enable : function(){
61698         this.disabled = false;
61699     },
61700     
61701     onLoadException : function()
61702     {
61703         Roo.log(arguments);
61704         
61705         if (typeof(arguments[3]) != 'undefined') {
61706             Roo.MessageBox.alert("Error loading",arguments[3]);
61707         } 
61708         /*
61709         try {
61710             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61711                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61712             }   
61713         } catch(e) {
61714             
61715         }
61716         */
61717     
61718         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61719     },
61720     // private
61721     onLoad : function()
61722     {
61723         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61724     },
61725
61726     // private
61727     onBeforeLoad : function(){
61728         if(!this.disabled){
61729             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61730         }
61731     },
61732
61733     // private
61734     destroy : function(){
61735         if(this.store){
61736             this.store.un('beforeload', this.onBeforeLoad, this);
61737             this.store.un('load', this.onLoad, this);
61738             this.store.un('loadexception', this.onLoadException, this);
61739         }else{
61740             var um = this.el.getUpdateManager();
61741             um.un('beforeupdate', this.onBeforeLoad, this);
61742             um.un('update', this.onLoad, this);
61743             um.un('failure', this.onLoad, this);
61744         }
61745     }
61746 };/*
61747  * Based on:
61748  * Ext JS Library 1.1.1
61749  * Copyright(c) 2006-2007, Ext JS, LLC.
61750  *
61751  * Originally Released Under LGPL - original licence link has changed is not relivant.
61752  *
61753  * Fork - LGPL
61754  * <script type="text/javascript">
61755  */
61756
61757
61758 /**
61759  * @class Roo.XTemplate
61760  * @extends Roo.Template
61761  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61762 <pre><code>
61763 var t = new Roo.XTemplate(
61764         '&lt;select name="{name}"&gt;',
61765                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61766         '&lt;/select&gt;'
61767 );
61768  
61769 // then append, applying the master template values
61770  </code></pre>
61771  *
61772  * Supported features:
61773  *
61774  *  Tags:
61775
61776 <pre><code>
61777       {a_variable} - output encoded.
61778       {a_variable.format:("Y-m-d")} - call a method on the variable
61779       {a_variable:raw} - unencoded output
61780       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61781       {a_variable:this.method_on_template(...)} - call a method on the template object.
61782  
61783 </code></pre>
61784  *  The tpl tag:
61785 <pre><code>
61786         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61787         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61788         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61789         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61790   
61791         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61792         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61793 </code></pre>
61794  *      
61795  */
61796 Roo.XTemplate = function()
61797 {
61798     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61799     if (this.html) {
61800         this.compile();
61801     }
61802 };
61803
61804
61805 Roo.extend(Roo.XTemplate, Roo.Template, {
61806
61807     /**
61808      * The various sub templates
61809      */
61810     tpls : false,
61811     /**
61812      *
61813      * basic tag replacing syntax
61814      * WORD:WORD()
61815      *
61816      * // you can fake an object call by doing this
61817      *  x.t:(test,tesT) 
61818      * 
61819      */
61820     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61821
61822     /**
61823      * compile the template
61824      *
61825      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61826      *
61827      */
61828     compile: function()
61829     {
61830         var s = this.html;
61831      
61832         s = ['<tpl>', s, '</tpl>'].join('');
61833     
61834         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61835             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61836             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61837             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61838             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61839             m,
61840             id     = 0,
61841             tpls   = [];
61842     
61843         while(true == !!(m = s.match(re))){
61844             var forMatch   = m[0].match(nameRe),
61845                 ifMatch   = m[0].match(ifRe),
61846                 execMatch   = m[0].match(execRe),
61847                 namedMatch   = m[0].match(namedRe),
61848                 
61849                 exp  = null, 
61850                 fn   = null,
61851                 exec = null,
61852                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61853                 
61854             if (ifMatch) {
61855                 // if - puts fn into test..
61856                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61857                 if(exp){
61858                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61859                 }
61860             }
61861             
61862             if (execMatch) {
61863                 // exec - calls a function... returns empty if true is  returned.
61864                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61865                 if(exp){
61866                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61867                 }
61868             }
61869             
61870             
61871             if (name) {
61872                 // for = 
61873                 switch(name){
61874                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61875                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61876                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61877                 }
61878             }
61879             var uid = namedMatch ? namedMatch[1] : id;
61880             
61881             
61882             tpls.push({
61883                 id:     namedMatch ? namedMatch[1] : id,
61884                 target: name,
61885                 exec:   exec,
61886                 test:   fn,
61887                 body:   m[1] || ''
61888             });
61889             if (namedMatch) {
61890                 s = s.replace(m[0], '');
61891             } else { 
61892                 s = s.replace(m[0], '{xtpl'+ id + '}');
61893             }
61894             ++id;
61895         }
61896         this.tpls = [];
61897         for(var i = tpls.length-1; i >= 0; --i){
61898             this.compileTpl(tpls[i]);
61899             this.tpls[tpls[i].id] = tpls[i];
61900         }
61901         this.master = tpls[tpls.length-1];
61902         return this;
61903     },
61904     /**
61905      * same as applyTemplate, except it's done to one of the subTemplates
61906      * when using named templates, you can do:
61907      *
61908      * var str = pl.applySubTemplate('your-name', values);
61909      *
61910      * 
61911      * @param {Number} id of the template
61912      * @param {Object} values to apply to template
61913      * @param {Object} parent (normaly the instance of this object)
61914      */
61915     applySubTemplate : function(id, values, parent)
61916     {
61917         
61918         
61919         var t = this.tpls[id];
61920         
61921         
61922         try { 
61923             if(t.test && !t.test.call(this, values, parent)){
61924                 return '';
61925             }
61926         } catch(e) {
61927             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61928             Roo.log(e.toString());
61929             Roo.log(t.test);
61930             return ''
61931         }
61932         try { 
61933             
61934             if(t.exec && t.exec.call(this, values, parent)){
61935                 return '';
61936             }
61937         } catch(e) {
61938             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61939             Roo.log(e.toString());
61940             Roo.log(t.exec);
61941             return ''
61942         }
61943         try {
61944             var vs = t.target ? t.target.call(this, values, parent) : values;
61945             parent = t.target ? values : parent;
61946             if(t.target && vs instanceof Array){
61947                 var buf = [];
61948                 for(var i = 0, len = vs.length; i < len; i++){
61949                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61950                 }
61951                 return buf.join('');
61952             }
61953             return t.compiled.call(this, vs, parent);
61954         } catch (e) {
61955             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61956             Roo.log(e.toString());
61957             Roo.log(t.compiled);
61958             return '';
61959         }
61960     },
61961
61962     compileTpl : function(tpl)
61963     {
61964         var fm = Roo.util.Format;
61965         var useF = this.disableFormats !== true;
61966         var sep = Roo.isGecko ? "+" : ",";
61967         var undef = function(str) {
61968             Roo.log("Property not found :"  + str);
61969             return '';
61970         };
61971         
61972         var fn = function(m, name, format, args)
61973         {
61974             //Roo.log(arguments);
61975             args = args ? args.replace(/\\'/g,"'") : args;
61976             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61977             if (typeof(format) == 'undefined') {
61978                 format= 'htmlEncode';
61979             }
61980             if (format == 'raw' ) {
61981                 format = false;
61982             }
61983             
61984             if(name.substr(0, 4) == 'xtpl'){
61985                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61986             }
61987             
61988             // build an array of options to determine if value is undefined..
61989             
61990             // basically get 'xxxx.yyyy' then do
61991             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61992             //    (function () { Roo.log("Property not found"); return ''; })() :
61993             //    ......
61994             
61995             var udef_ar = [];
61996             var lookfor = '';
61997             Roo.each(name.split('.'), function(st) {
61998                 lookfor += (lookfor.length ? '.': '') + st;
61999                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
62000             });
62001             
62002             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
62003             
62004             
62005             if(format && useF){
62006                 
62007                 args = args ? ',' + args : "";
62008                  
62009                 if(format.substr(0, 5) != "this."){
62010                     format = "fm." + format + '(';
62011                 }else{
62012                     format = 'this.call("'+ format.substr(5) + '", ';
62013                     args = ", values";
62014                 }
62015                 
62016                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
62017             }
62018              
62019             if (args.length) {
62020                 // called with xxyx.yuu:(test,test)
62021                 // change to ()
62022                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
62023             }
62024             // raw.. - :raw modifier..
62025             return "'"+ sep + udef_st  + name + ")"+sep+"'";
62026             
62027         };
62028         var body;
62029         // branched to use + in gecko and [].join() in others
62030         if(Roo.isGecko){
62031             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
62032                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
62033                     "';};};";
62034         }else{
62035             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
62036             body.push(tpl.body.replace(/(\r\n|\n)/g,
62037                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
62038             body.push("'].join('');};};");
62039             body = body.join('');
62040         }
62041         
62042         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
62043        
62044         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
62045         eval(body);
62046         
62047         return this;
62048     },
62049
62050     applyTemplate : function(values){
62051         return this.master.compiled.call(this, values, {});
62052         //var s = this.subs;
62053     },
62054
62055     apply : function(){
62056         return this.applyTemplate.apply(this, arguments);
62057     }
62058
62059  });
62060
62061 Roo.XTemplate.from = function(el){
62062     el = Roo.getDom(el);
62063     return new Roo.XTemplate(el.value || el.innerHTML);
62064 };