1980b9141308c1ccd56713d94ece6aa462676b9d
[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                );
705 /*
706  * Based on:
707  * Ext JS Library 1.1.1
708  * Copyright(c) 2006-2007, Ext JS, LLC.
709  *
710  * Originally Released Under LGPL - original licence link has changed is not relivant.
711  *
712  * Fork - LGPL
713  * <script type="text/javascript">
714  */
715
716 (function() {    
717     // wrappedn so fnCleanup is not in global scope...
718     if(Roo.isIE) {
719         function fnCleanUp() {
720             var p = Function.prototype;
721             delete p.createSequence;
722             delete p.defer;
723             delete p.createDelegate;
724             delete p.createCallback;
725             delete p.createInterceptor;
726
727             window.detachEvent("onunload", fnCleanUp);
728         }
729         window.attachEvent("onunload", fnCleanUp);
730     }
731 })();
732
733
734 /**
735  * @class Function
736  * These functions are available on every Function object (any JavaScript function).
737  */
738 Roo.apply(Function.prototype, {
739      /**
740      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
741      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
742      * Will create a function that is bound to those 2 args.
743      * @return {Function} The new function
744     */
745     createCallback : function(/*args...*/){
746         // make args available, in function below
747         var args = arguments;
748         var method = this;
749         return function() {
750             return method.apply(window, args);
751         };
752     },
753
754     /**
755      * Creates a delegate (callback) that sets the scope to obj.
756      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
757      * Will create a function that is automatically scoped to this.
758      * @param {Object} obj (optional) The object for which the scope is set
759      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
760      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
761      *                                             if a number the args are inserted at the specified position
762      * @return {Function} The new function
763      */
764     createDelegate : function(obj, args, appendArgs){
765         var method = this;
766         return function() {
767             var callArgs = args || arguments;
768             if(appendArgs === true){
769                 callArgs = Array.prototype.slice.call(arguments, 0);
770                 callArgs = callArgs.concat(args);
771             }else if(typeof appendArgs == "number"){
772                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
773                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
774                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
775             }
776             return method.apply(obj || window, callArgs);
777         };
778     },
779
780     /**
781      * Calls this function after the number of millseconds specified.
782      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
783      * @param {Object} obj (optional) The object for which the scope is set
784      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
785      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
786      *                                             if a number the args are inserted at the specified position
787      * @return {Number} The timeout id that can be used with clearTimeout
788      */
789     defer : function(millis, obj, args, appendArgs){
790         var fn = this.createDelegate(obj, args, appendArgs);
791         if(millis){
792             return setTimeout(fn, millis);
793         }
794         fn();
795         return 0;
796     },
797     /**
798      * Create a combined function call sequence of the original function + the passed function.
799      * The resulting function returns the results of the original function.
800      * The passed fcn is called with the parameters of the original function
801      * @param {Function} fcn The function to sequence
802      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
803      * @return {Function} The new function
804      */
805     createSequence : function(fcn, scope){
806         if(typeof fcn != "function"){
807             return this;
808         }
809         var method = this;
810         return function() {
811             var retval = method.apply(this || window, arguments);
812             fcn.apply(scope || this || window, arguments);
813             return retval;
814         };
815     },
816
817     /**
818      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
819      * The resulting function returns the results of the original function.
820      * The passed fcn is called with the parameters of the original function.
821      * @addon
822      * @param {Function} fcn The function to call before the original
823      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
824      * @return {Function} The new function
825      */
826     createInterceptor : function(fcn, scope){
827         if(typeof fcn != "function"){
828             return this;
829         }
830         var method = this;
831         return function() {
832             fcn.target = this;
833             fcn.method = method;
834             if(fcn.apply(scope || this || window, arguments) === false){
835                 return;
836             }
837             return method.apply(this || window, arguments);
838         };
839     }
840 });
841 /*
842  * Based on:
843  * Ext JS Library 1.1.1
844  * Copyright(c) 2006-2007, Ext JS, LLC.
845  *
846  * Originally Released Under LGPL - original licence link has changed is not relivant.
847  *
848  * Fork - LGPL
849  * <script type="text/javascript">
850  */
851
852 Roo.applyIf(String, {
853     
854     /** @scope String */
855     
856     /**
857      * Escapes the passed string for ' and \
858      * @param {String} string The string to escape
859      * @return {String} The escaped string
860      * @static
861      */
862     escape : function(string) {
863         return string.replace(/('|\\)/g, "\\$1");
864     },
865
866     /**
867      * Pads the left side of a string with a specified character.  This is especially useful
868      * for normalizing number and date strings.  Example usage:
869      * <pre><code>
870 var s = String.leftPad('123', 5, '0');
871 // s now contains the string: '00123'
872 </code></pre>
873      * @param {String} string The original string
874      * @param {Number} size The total length of the output string
875      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
876      * @return {String} The padded string
877      * @static
878      */
879     leftPad : function (val, size, ch) {
880         var result = new String(val);
881         if(ch === null || ch === undefined || ch === '') {
882             ch = " ";
883         }
884         while (result.length < size) {
885             result = ch + result;
886         }
887         return result;
888     },
889
890     /**
891      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
892      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
893      * <pre><code>
894 var cls = 'my-class', text = 'Some text';
895 var s = String.format('<div class="{0}">{1}</div>', cls, text);
896 // s now contains the string: '<div class="my-class">Some text</div>'
897 </code></pre>
898      * @param {String} string The tokenized string to be formatted
899      * @param {String} value1 The value to replace token {0}
900      * @param {String} value2 Etc...
901      * @return {String} The formatted string
902      * @static
903      */
904     format : function(format){
905         var args = Array.prototype.slice.call(arguments, 1);
906         return format.replace(/\{(\d+)\}/g, function(m, i){
907             return Roo.util.Format.htmlEncode(args[i]);
908         });
909     }
910   
911     
912 });
913
914 /**
915  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
916  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
917  * they are already different, the first value passed in is returned.  Note that this method returns the new value
918  * but does not change the current string.
919  * <pre><code>
920 // alternate sort directions
921 sort = sort.toggle('ASC', 'DESC');
922
923 // instead of conditional logic:
924 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
925 </code></pre>
926  * @param {String} value The value to compare to the current string
927  * @param {String} other The new value to use if the string already equals the first value passed in
928  * @return {String} The new value
929  */
930  
931 String.prototype.toggle = function(value, other){
932     return this == value ? other : value;
933 };
934
935
936 /**
937   * Remove invalid unicode characters from a string 
938   *
939   * @return {String} The clean string
940   */
941 String.prototype.unicodeClean = function () {
942     return this.replace(/[\s\S]/g,
943         function(character) {
944             if (character.charCodeAt()< 256) {
945               return character;
946            }
947            try {
948                 encodeURIComponent(character);
949            } catch(e) { 
950               return '';
951            }
952            return character;
953         }
954     );
955 };
956   
957
958 /**
959   * Make the first letter of a string uppercase
960   *
961   * @return {String} The new string.
962   */
963 String.prototype.toUpperCaseFirst = function () {
964     return this.charAt(0).toUpperCase() + this.slice(1);
965 };  
966   
967 /*
968  * Based on:
969  * Ext JS Library 1.1.1
970  * Copyright(c) 2006-2007, Ext JS, LLC.
971  *
972  * Originally Released Under LGPL - original licence link has changed is not relivant.
973  *
974  * Fork - LGPL
975  * <script type="text/javascript">
976  */
977
978  /**
979  * @class Number
980  */
981 Roo.applyIf(Number.prototype, {
982     /**
983      * Checks whether or not the current number is within a desired range.  If the number is already within the
984      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
985      * exceeded.  Note that this method returns the constrained value but does not change the current number.
986      * @param {Number} min The minimum number in the range
987      * @param {Number} max The maximum number in the range
988      * @return {Number} The constrained value if outside the range, otherwise the current value
989      */
990     constrain : function(min, max){
991         return Math.min(Math.max(this, min), max);
992     }
993 });/*
994  * Based on:
995  * Ext JS Library 1.1.1
996  * Copyright(c) 2006-2007, Ext JS, LLC.
997  *
998  * Originally Released Under LGPL - original licence link has changed is not relivant.
999  *
1000  * Fork - LGPL
1001  * <script type="text/javascript">
1002  */
1003  /**
1004  * @class Array
1005  */
1006 Roo.applyIf(Array.prototype, {
1007     /**
1008      * 
1009      * Checks whether or not the specified object exists in the array.
1010      * @param {Object} o The object to check for
1011      * @return {Number} The index of o in the array (or -1 if it is not found)
1012      */
1013     indexOf : function(o){
1014        for (var i = 0, len = this.length; i < len; i++){
1015               if(this[i] == o) { return i; }
1016        }
1017            return -1;
1018     },
1019
1020     /**
1021      * Removes the specified object from the array.  If the object is not found nothing happens.
1022      * @param {Object} o The object to remove
1023      */
1024     remove : function(o){
1025        var index = this.indexOf(o);
1026        if(index != -1){
1027            this.splice(index, 1);
1028        }
1029     },
1030     /**
1031      * Map (JS 1.6 compatibility)
1032      * @param {Function} function  to call
1033      */
1034     map : function(fun )
1035     {
1036         var len = this.length >>> 0;
1037         if (typeof fun != "function") {
1038             throw new TypeError();
1039         }
1040         var res = new Array(len);
1041         var thisp = arguments[1];
1042         for (var i = 0; i < len; i++)
1043         {
1044             if (i in this) {
1045                 res[i] = fun.call(thisp, this[i], i, this);
1046             }
1047         }
1048
1049         return res;
1050     },
1051     /**
1052      * equals
1053      * @param {Array} o The array to compare to
1054      * @returns {Boolean} true if the same
1055      */
1056     equals : function(b)
1057     {
1058             // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1059         if (this === b) {
1060             return true;
1061         }
1062         if (b == null) {
1063             return false;
1064         }
1065         if (this.length !== b.length) {
1066             return false;
1067         }
1068           
1069         // sort?? a.sort().equals(b.sort());
1070           
1071         for (var i = 0; i < this.length; ++i) {
1072             if (this[i] !== b[i]) {
1073             return false;
1074             }
1075         }
1076         return true;
1077     } 
1078     
1079     
1080     
1081     
1082 });
1083
1084 Roo.applyIf(Array, {
1085  /**
1086      * from
1087      * @static
1088      * @param {Array} o Or Array like object (eg. nodelist)
1089      * @returns {Array} 
1090      */
1091     from : function(o)
1092     {
1093         var ret= [];
1094     
1095         for (var i =0; i < o.length; i++) { 
1096             ret[i] = o[i];
1097         }
1098         return ret;
1099       
1100     }
1101 });
1102 /*
1103  * Based on:
1104  * Ext JS Library 1.1.1
1105  * Copyright(c) 2006-2007, Ext JS, LLC.
1106  *
1107  * Originally Released Under LGPL - original licence link has changed is not relivant.
1108  *
1109  * Fork - LGPL
1110  * <script type="text/javascript">
1111  */
1112
1113 /**
1114  * @class Date
1115  *
1116  * The date parsing and format syntax is a subset of
1117  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1118  * supported will provide results equivalent to their PHP versions.
1119  *
1120  * Following is the list of all currently supported formats:
1121  *<pre>
1122 Sample date:
1123 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1124
1125 Format  Output      Description
1126 ------  ----------  --------------------------------------------------------------
1127   d      10         Day of the month, 2 digits with leading zeros
1128   D      Wed        A textual representation of a day, three letters
1129   j      10         Day of the month without leading zeros
1130   l      Wednesday  A full textual representation of the day of the week
1131   S      th         English ordinal day of month suffix, 2 chars (use with j)
1132   w      3          Numeric representation of the day of the week
1133   z      9          The julian date, or day of the year (0-365)
1134   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1135   F      January    A full textual representation of the month
1136   m      01         Numeric representation of a month, with leading zeros
1137   M      Jan        Month name abbreviation, three letters
1138   n      1          Numeric representation of a month, without leading zeros
1139   t      31         Number of days in the given month
1140   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1141   Y      2007       A full numeric representation of a year, 4 digits
1142   y      07         A two digit representation of a year
1143   a      pm         Lowercase Ante meridiem and Post meridiem
1144   A      PM         Uppercase Ante meridiem and Post meridiem
1145   g      3          12-hour format of an hour without leading zeros
1146   G      15         24-hour format of an hour without leading zeros
1147   h      03         12-hour format of an hour with leading zeros
1148   H      15         24-hour format of an hour with leading zeros
1149   i      05         Minutes with leading zeros
1150   s      01         Seconds, with leading zeros
1151   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1152   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1153   T      CST        Timezone setting of the machine running the code
1154   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1155 </pre>
1156  *
1157  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1158  * <pre><code>
1159 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1160 document.write(dt.format('Y-m-d'));                         //2007-01-10
1161 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1162 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
1163  </code></pre>
1164  *
1165  * Here are some standard date/time patterns that you might find helpful.  They
1166  * are not part of the source of Date.js, but to use them you can simply copy this
1167  * block of code into any script that is included after Date.js and they will also become
1168  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1169  * <pre><code>
1170 Date.patterns = {
1171     ISO8601Long:"Y-m-d H:i:s",
1172     ISO8601Short:"Y-m-d",
1173     ShortDate: "n/j/Y",
1174     LongDate: "l, F d, Y",
1175     FullDateTime: "l, F d, Y g:i:s A",
1176     MonthDay: "F d",
1177     ShortTime: "g:i A",
1178     LongTime: "g:i:s A",
1179     SortableDateTime: "Y-m-d\\TH:i:s",
1180     UniversalSortableDateTime: "Y-m-d H:i:sO",
1181     YearMonth: "F, Y"
1182 };
1183 </code></pre>
1184  *
1185  * Example usage:
1186  * <pre><code>
1187 var dt = new Date();
1188 document.write(dt.format(Date.patterns.ShortDate));
1189  </code></pre>
1190  */
1191
1192 /*
1193  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1194  * They generate precompiled functions from date formats instead of parsing and
1195  * processing the pattern every time you format a date.  These functions are available
1196  * on every Date object (any javascript function).
1197  *
1198  * The original article and download are here:
1199  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1200  *
1201  */
1202  
1203  
1204  // was in core
1205 /**
1206  Returns the number of milliseconds between this date and date
1207  @param {Date} date (optional) Defaults to now
1208  @param {String} interval (optional) Default Date.MILLI, A valid date interval enum value (eg. Date.DAY) 
1209  @return {Number} The diff in milliseconds or units of interval
1210  @member Date getElapsed
1211  */
1212 Date.prototype.getElapsed = function(date, interval)
1213 {
1214     date = date ||  new Date();
1215     var ret = Math.abs(date.getTime()-this.getTime());
1216     switch (interval) {
1217        
1218         case  Date.SECOND:
1219             return Math.floor(ret / (1000));
1220         case  Date.MINUTE:
1221             return Math.floor(ret / (1000*60));
1222         case  Date.HOUR:
1223             return Math.floor(ret / (1000*60*60));
1224         case  Date.DAY:
1225             return Math.floor(ret / (1000*60*60*24));
1226         case  Date.MONTH: // this does not give exact number...??
1227             return ((date.format("Y") - this.format("Y")) * 12) + (date.format("m") - this.format("m"));
1228         case  Date.YEAR: // this does not give exact number...??
1229             return (date.format("Y") - this.format("Y"));
1230        
1231         case  Date.MILLI:
1232         default:
1233             return ret;
1234     }
1235 };
1236  
1237 // was in date file..
1238
1239
1240 // private
1241 Date.parseFunctions = {count:0};
1242 // private
1243 Date.parseRegexes = [];
1244 // private
1245 Date.formatFunctions = {count:0};
1246
1247 // private
1248 Date.prototype.dateFormat = function(format) {
1249     if (Date.formatFunctions[format] == null) {
1250         Date.createNewFormat(format);
1251     }
1252     var func = Date.formatFunctions[format];
1253     return this[func]();
1254 };
1255
1256
1257 /**
1258  * Formats a date given the supplied format string
1259  * @param {String} format The format string
1260  * @return {String} The formatted date
1261  * @method
1262  */
1263 Date.prototype.format = Date.prototype.dateFormat;
1264
1265 // private
1266 Date.createNewFormat = function(format) {
1267     var funcName = "format" + Date.formatFunctions.count++;
1268     Date.formatFunctions[format] = funcName;
1269     var code = "Date.prototype." + funcName + " = function(){return ";
1270     var special = false;
1271     var ch = '';
1272     for (var i = 0; i < format.length; ++i) {
1273         ch = format.charAt(i);
1274         if (!special && ch == "\\") {
1275             special = true;
1276         }
1277         else if (special) {
1278             special = false;
1279             code += "'" + String.escape(ch) + "' + ";
1280         }
1281         else {
1282             code += Date.getFormatCode(ch);
1283         }
1284     }
1285     /** eval:var:zzzzzzzzzzzzz */
1286     eval(code.substring(0, code.length - 3) + ";}");
1287 };
1288
1289 // private
1290 Date.getFormatCode = function(character) {
1291     switch (character) {
1292     case "d":
1293         return "String.leftPad(this.getDate(), 2, '0') + ";
1294     case "D":
1295         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1296     case "j":
1297         return "this.getDate() + ";
1298     case "l":
1299         return "Date.dayNames[this.getDay()] + ";
1300     case "S":
1301         return "this.getSuffix() + ";
1302     case "w":
1303         return "this.getDay() + ";
1304     case "z":
1305         return "this.getDayOfYear() + ";
1306     case "W":
1307         return "this.getWeekOfYear() + ";
1308     case "F":
1309         return "Date.monthNames[this.getMonth()] + ";
1310     case "m":
1311         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1312     case "M":
1313         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1314     case "n":
1315         return "(this.getMonth() + 1) + ";
1316     case "t":
1317         return "this.getDaysInMonth() + ";
1318     case "L":
1319         return "(this.isLeapYear() ? 1 : 0) + ";
1320     case "Y":
1321         return "this.getFullYear() + ";
1322     case "y":
1323         return "('' + this.getFullYear()).substring(2, 4) + ";
1324     case "a":
1325         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1326     case "A":
1327         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1328     case "g":
1329         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1330     case "G":
1331         return "this.getHours() + ";
1332     case "h":
1333         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1334     case "H":
1335         return "String.leftPad(this.getHours(), 2, '0') + ";
1336     case "i":
1337         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1338     case "s":
1339         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1340     case "O":
1341         return "this.getGMTOffset() + ";
1342     case "P":
1343         return "this.getGMTColonOffset() + ";
1344     case "T":
1345         return "this.getTimezone() + ";
1346     case "Z":
1347         return "(this.getTimezoneOffset() * -60) + ";
1348     default:
1349         return "'" + String.escape(character) + "' + ";
1350     }
1351 };
1352
1353 /**
1354  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1355  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1356  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1357  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1358  * string or the parse operation will fail.
1359  * Example Usage:
1360 <pre><code>
1361 //dt = Fri May 25 2007 (current date)
1362 var dt = new Date();
1363
1364 //dt = Thu May 25 2006 (today's month/day in 2006)
1365 dt = Date.parseDate("2006", "Y");
1366
1367 //dt = Sun Jan 15 2006 (all date parts specified)
1368 dt = Date.parseDate("2006-1-15", "Y-m-d");
1369
1370 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1371 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1372 </code></pre>
1373  * @param {String} input The unparsed date as a string
1374  * @param {String} format The format the date is in
1375  * @return {Date} The parsed date
1376  * @static
1377  */
1378 Date.parseDate = function(input, format) {
1379     if (Date.parseFunctions[format] == null) {
1380         Date.createParser(format);
1381     }
1382     var func = Date.parseFunctions[format];
1383     return Date[func](input);
1384 };
1385 /**
1386  * @private
1387  */
1388
1389 Date.createParser = function(format) {
1390     var funcName = "parse" + Date.parseFunctions.count++;
1391     var regexNum = Date.parseRegexes.length;
1392     var currentGroup = 1;
1393     Date.parseFunctions[format] = funcName;
1394
1395     var code = "Date." + funcName + " = function(input){\n"
1396         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1397         + "var d = new Date();\n"
1398         + "y = d.getFullYear();\n"
1399         + "m = d.getMonth();\n"
1400         + "d = d.getDate();\n"
1401         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1402         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1403         + "if (results && results.length > 0) {";
1404     var regex = "";
1405
1406     var special = false;
1407     var ch = '';
1408     for (var i = 0; i < format.length; ++i) {
1409         ch = format.charAt(i);
1410         if (!special && ch == "\\") {
1411             special = true;
1412         }
1413         else if (special) {
1414             special = false;
1415             regex += String.escape(ch);
1416         }
1417         else {
1418             var obj = Date.formatCodeToRegex(ch, currentGroup);
1419             currentGroup += obj.g;
1420             regex += obj.s;
1421             if (obj.g && obj.c) {
1422                 code += obj.c;
1423             }
1424         }
1425     }
1426
1427     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1428         + "{v = new Date(y, m, d, h, i, s); v.setFullYear(y);}\n"
1429         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1430         + "{v = new Date(y, m, d, h, i); v.setFullYear(y);}\n"
1431         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1432         + "{v = new Date(y, m, d, h); v.setFullYear(y);}\n"
1433         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1434         + "{v = new Date(y, m, d); v.setFullYear(y);}\n"
1435         + "else if (y >= 0 && m >= 0)\n"
1436         + "{v = new Date(y, m); v.setFullYear(y);}\n"
1437         + "else if (y >= 0)\n"
1438         + "{v = new Date(y); v.setFullYear(y);}\n"
1439         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1440         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1441         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1442         + ";}";
1443
1444     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1445     /** eval:var:zzzzzzzzzzzzz */
1446     eval(code);
1447 };
1448
1449 // private
1450 Date.formatCodeToRegex = function(character, currentGroup) {
1451     switch (character) {
1452     case "D":
1453         return {g:0,
1454         c:null,
1455         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1456     case "j":
1457         return {g:1,
1458             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1459             s:"(\\d{1,2})"}; // day of month without leading zeroes
1460     case "d":
1461         return {g:1,
1462             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; // day of month with leading zeroes
1464     case "l":
1465         return {g:0,
1466             c:null,
1467             s:"(?:" + Date.dayNames.join("|") + ")"};
1468     case "S":
1469         return {g:0,
1470             c:null,
1471             s:"(?:st|nd|rd|th)"};
1472     case "w":
1473         return {g:0,
1474             c:null,
1475             s:"\\d"};
1476     case "z":
1477         return {g:0,
1478             c:null,
1479             s:"(?:\\d{1,3})"};
1480     case "W":
1481         return {g:0,
1482             c:null,
1483             s:"(?:\\d{2})"};
1484     case "F":
1485         return {g:1,
1486             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1487             s:"(" + Date.monthNames.join("|") + ")"};
1488     case "M":
1489         return {g:1,
1490             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1491             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1492     case "n":
1493         return {g:1,
1494             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1495             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1496     case "m":
1497         return {g:1,
1498             c:"m = Math.max(0,parseInt(results[" + currentGroup + "], 10) - 1);\n",
1499             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1500     case "t":
1501         return {g:0,
1502             c:null,
1503             s:"\\d{1,2}"};
1504     case "L":
1505         return {g:0,
1506             c:null,
1507             s:"(?:1|0)"};
1508     case "Y":
1509         return {g:1,
1510             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1511             s:"(\\d{4})"};
1512     case "y":
1513         return {g:1,
1514             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1515                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1516             s:"(\\d{1,2})"};
1517     case "a":
1518         return {g:1,
1519             c:"if (results[" + currentGroup + "] == 'am') {\n"
1520                 + "if (h == 12) { h = 0; }\n"
1521                 + "} else { if (h < 12) { h += 12; }}",
1522             s:"(am|pm)"};
1523     case "A":
1524         return {g:1,
1525             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1526                 + "if (h == 12) { h = 0; }\n"
1527                 + "} else { if (h < 12) { h += 12; }}",
1528             s:"(AM|PM)"};
1529     case "g":
1530     case "G":
1531         return {g:1,
1532             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1533             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1534     case "h":
1535     case "H":
1536         return {g:1,
1537             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1538             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1539     case "i":
1540         return {g:1,
1541             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1542             s:"(\\d{2})"};
1543     case "s":
1544         return {g:1,
1545             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1546             s:"(\\d{2})"};
1547     case "O":
1548         return {g:1,
1549             c:[
1550                 "o = results[", currentGroup, "];\n",
1551                 "var sn = o.substring(0,1);\n", // get + / - sign
1552                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1553                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1554                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1555                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1556             ].join(""),
1557             s:"([+\-]\\d{2,4})"};
1558     
1559     
1560     case "P":
1561         return {g:1,
1562                 c:[
1563                    "o = results[", currentGroup, "];\n",
1564                    "var sn = o.substring(0,1);\n",
1565                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1566                    "var mn = o.substring(4,6) % 60;\n",
1567                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1568                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1569             ].join(""),
1570             s:"([+\-]\\d{4})"};
1571     case "T":
1572         return {g:0,
1573             c:null,
1574             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1575     case "Z":
1576         return {g:1,
1577             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1578                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1579             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1580     default:
1581         return {g:0,
1582             c:null,
1583             s:String.escape(character)};
1584     }
1585 };
1586
1587 /**
1588  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1589  * @return {String} The abbreviated timezone name (e.g. 'CST')
1590  */
1591 Date.prototype.getTimezone = function() {
1592     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1593 };
1594
1595 /**
1596  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1597  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1598  */
1599 Date.prototype.getGMTOffset = function() {
1600     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1601         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1602         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1603 };
1604
1605 /**
1606  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1607  * @return {String} 2-characters representing hours and 2-characters representing minutes
1608  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1609  */
1610 Date.prototype.getGMTColonOffset = function() {
1611         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1612                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1613                 + ":"
1614                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1615 }
1616
1617 /**
1618  * Get the numeric day number of the year, adjusted for leap year.
1619  * @return {Number} 0 through 364 (365 in leap years)
1620  */
1621 Date.prototype.getDayOfYear = function() {
1622     var num = 0;
1623     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1624     for (var i = 0; i < this.getMonth(); ++i) {
1625         num += Date.daysInMonth[i];
1626     }
1627     return num + this.getDate() - 1;
1628 };
1629
1630 /**
1631  * Get the string representation of the numeric week number of the year
1632  * (equivalent to the format specifier 'W').
1633  * @return {String} '00' through '52'
1634  */
1635 Date.prototype.getWeekOfYear = function() {
1636     // Skip to Thursday of this week
1637     var now = this.getDayOfYear() + (4 - this.getDay());
1638     // Find the first Thursday of the year
1639     var jan1 = new Date(this.getFullYear(), 0, 1);
1640     var then = (7 - jan1.getDay() + 4);
1641     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1642 };
1643
1644 /**
1645  * Whether or not the current date is in a leap year.
1646  * @return {Boolean} True if the current date is in a leap year, else false
1647  */
1648 Date.prototype.isLeapYear = function() {
1649     var year = this.getFullYear();
1650     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1651 };
1652
1653 /**
1654  * Get the first day of the current month, adjusted for leap year.  The returned value
1655  * is the numeric day index within the week (0-6) which can be used in conjunction with
1656  * the {@link #monthNames} array to retrieve the textual day name.
1657  * Example:
1658  *<pre><code>
1659 var dt = new Date('1/10/2007');
1660 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1661 </code></pre>
1662  * @return {Number} The day number (0-6)
1663  */
1664 Date.prototype.getFirstDayOfMonth = function() {
1665     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1666     return (day < 0) ? (day + 7) : day;
1667 };
1668
1669 /**
1670  * Get the last day of the current month, adjusted for leap year.  The returned value
1671  * is the numeric day index within the week (0-6) which can be used in conjunction with
1672  * the {@link #monthNames} array to retrieve the textual day name.
1673  * Example:
1674  *<pre><code>
1675 var dt = new Date('1/10/2007');
1676 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1677 </code></pre>
1678  * @return {Number} The day number (0-6)
1679  */
1680 Date.prototype.getLastDayOfMonth = function() {
1681     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1682     return (day < 0) ? (day + 7) : day;
1683 };
1684
1685
1686 /**
1687  * Get the first date of this date's month
1688  * @return {Date}
1689  */
1690 Date.prototype.getFirstDateOfMonth = function() {
1691     return new Date(this.getFullYear(), this.getMonth(), 1);
1692 };
1693
1694 /**
1695  * Get the last date of this date's month
1696  * @return {Date}
1697  */
1698 Date.prototype.getLastDateOfMonth = function() {
1699     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1700 };
1701 /**
1702  * Get the number of days in the current month, adjusted for leap year.
1703  * @return {Number} The number of days in the month
1704  */
1705 Date.prototype.getDaysInMonth = function() {
1706     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1707     return Date.daysInMonth[this.getMonth()];
1708 };
1709
1710 /**
1711  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1712  * @return {String} 'st, 'nd', 'rd' or 'th'
1713  */
1714 Date.prototype.getSuffix = function() {
1715     switch (this.getDate()) {
1716         case 1:
1717         case 21:
1718         case 31:
1719             return "st";
1720         case 2:
1721         case 22:
1722             return "nd";
1723         case 3:
1724         case 23:
1725             return "rd";
1726         default:
1727             return "th";
1728     }
1729 };
1730
1731 // private
1732 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1733
1734 /**
1735  * An array of textual month names.
1736  * Override these values for international dates, for example...
1737  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1738  * @type Array
1739  * @static
1740  */
1741 Date.monthNames =
1742    ["January",
1743     "February",
1744     "March",
1745     "April",
1746     "May",
1747     "June",
1748     "July",
1749     "August",
1750     "September",
1751     "October",
1752     "November",
1753     "December"];
1754
1755 /**
1756  * An array of textual day names.
1757  * Override these values for international dates, for example...
1758  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1759  * @type Array
1760  * @static
1761  */
1762 Date.dayNames =
1763    ["Sunday",
1764     "Monday",
1765     "Tuesday",
1766     "Wednesday",
1767     "Thursday",
1768     "Friday",
1769     "Saturday"];
1770
1771 // private
1772 Date.y2kYear = 50;
1773 // private
1774 Date.monthNumbers = {
1775     Jan:0,
1776     Feb:1,
1777     Mar:2,
1778     Apr:3,
1779     May:4,
1780     Jun:5,
1781     Jul:6,
1782     Aug:7,
1783     Sep:8,
1784     Oct:9,
1785     Nov:10,
1786     Dec:11};
1787
1788 /**
1789  * Creates and returns a new Date instance with the exact same date value as the called instance.
1790  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1791  * variable will also be changed.  When the intention is to create a new variable that will not
1792  * modify the original instance, you should create a clone.
1793  *
1794  * Example of correctly cloning a date:
1795  * <pre><code>
1796 //wrong way:
1797 var orig = new Date('10/1/2006');
1798 var copy = orig;
1799 copy.setDate(5);
1800 document.write(orig);  //returns 'Thu Oct 05 2006'!
1801
1802 //correct way:
1803 var orig = new Date('10/1/2006');
1804 var copy = orig.clone();
1805 copy.setDate(5);
1806 document.write(orig);  //returns 'Thu Oct 01 2006'
1807 </code></pre>
1808  * @return {Date} The new Date instance
1809  */
1810 Date.prototype.clone = function() {
1811         return new Date(this.getTime());
1812 };
1813
1814 /**
1815  * Clears any time information from this date
1816  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1817  @return {Date} this or the clone
1818  */
1819 Date.prototype.clearTime = function(clone){
1820     if(clone){
1821         return this.clone().clearTime();
1822     }
1823     this.setHours(0);
1824     this.setMinutes(0);
1825     this.setSeconds(0);
1826     this.setMilliseconds(0);
1827     return this;
1828 };
1829
1830 // private
1831 // safari setMonth is broken -- check that this is only donw once...
1832 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1833     Date.brokenSetMonth = Date.prototype.setMonth;
1834         Date.prototype.setMonth = function(num){
1835                 if(num <= -1){
1836                         var n = Math.ceil(-num);
1837                         var back_year = Math.ceil(n/12);
1838                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1839                         this.setFullYear(this.getFullYear() - back_year);
1840                         return Date.brokenSetMonth.call(this, month);
1841                 } else {
1842                         return Date.brokenSetMonth.apply(this, arguments);
1843                 }
1844         };
1845 }
1846
1847 /** Date interval constant 
1848 * @static 
1849 * @type String */
1850 Date.MILLI = "ms";
1851 /** Date interval constant 
1852 * @static 
1853 * @type String */
1854 Date.SECOND = "s";
1855 /** Date interval constant 
1856 * @static 
1857 * @type String */
1858 Date.MINUTE = "mi";
1859 /** Date interval constant 
1860 * @static 
1861 * @type String */
1862 Date.HOUR = "h";
1863 /** Date interval constant 
1864 * @static 
1865 * @type String */
1866 Date.DAY = "d";
1867 /** Date interval constant 
1868 * @static 
1869 * @type String */
1870 Date.MONTH = "mo";
1871 /** Date interval constant 
1872 * @static 
1873 * @type String */
1874 Date.YEAR = "y";
1875
1876 /**
1877  * Provides a convenient method of performing basic date arithmetic.  This method
1878  * does not modify the Date instance being called - it creates and returns
1879  * a new Date instance containing the resulting date value.
1880  *
1881  * Examples:
1882  * <pre><code>
1883 //Basic usage:
1884 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1885 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1886
1887 //Negative values will subtract correctly:
1888 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1889 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1890
1891 //You can even chain several calls together in one line!
1892 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1893 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1894  </code></pre>
1895  *
1896  * @param {String} interval   A valid date interval enum value
1897  * @param {Number} value      The amount to add to the current date
1898  * @return {Date} The new Date instance
1899  */
1900 Date.prototype.add = function(interval, value){
1901   var d = this.clone();
1902   if (!interval || value === 0) { return d; }
1903   switch(interval.toLowerCase()){
1904     case Date.MILLI:
1905       d.setMilliseconds(this.getMilliseconds() + value);
1906       break;
1907     case Date.SECOND:
1908       d.setSeconds(this.getSeconds() + value);
1909       break;
1910     case Date.MINUTE:
1911       d.setMinutes(this.getMinutes() + value);
1912       break;
1913     case Date.HOUR:
1914       d.setHours(this.getHours() + value);
1915       break;
1916     case Date.DAY:
1917       d.setDate(this.getDate() + value);
1918       break;
1919     case Date.MONTH:
1920       var day = this.getDate();
1921       if(day > 28){
1922           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1923       }
1924       d.setDate(day);
1925       d.setMonth(this.getMonth() + value);
1926       break;
1927     case Date.YEAR:
1928       d.setFullYear(this.getFullYear() + value);
1929       break;
1930   }
1931   return d;
1932 };
1933 /**
1934  * @class Roo.lib.Dom
1935  * @licence LGPL
1936  * @static
1937  * 
1938  * Dom utils (from YIU afaik)
1939  *
1940  * 
1941  **/
1942 Roo.lib.Dom = {
1943     /**
1944      * Get the view width
1945      * @param {Boolean} full True will get the full document, otherwise it's the view width
1946      * @return {Number} The width
1947      */
1948      
1949     getViewWidth : function(full) {
1950         return full ? this.getDocumentWidth() : this.getViewportWidth();
1951     },
1952     /**
1953      * Get the view height
1954      * @param {Boolean} full True will get the full document, otherwise it's the view height
1955      * @return {Number} The height
1956      */
1957     getViewHeight : function(full) {
1958         return full ? this.getDocumentHeight() : this.getViewportHeight();
1959     },
1960     /**
1961      * Get the Full Document height 
1962      * @return {Number} The height
1963      */
1964     getDocumentHeight: function() {
1965         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1966         return Math.max(scrollHeight, this.getViewportHeight());
1967     },
1968     /**
1969      * Get the Full Document width
1970      * @return {Number} The width
1971      */
1972     getDocumentWidth: function() {
1973         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1974         return Math.max(scrollWidth, this.getViewportWidth());
1975     },
1976     /**
1977      * Get the Window Viewport height
1978      * @return {Number} The height
1979      */
1980     getViewportHeight: function() {
1981         var height = self.innerHeight;
1982         var mode = document.compatMode;
1983
1984         if ((mode || Roo.isIE) && !Roo.isOpera) {
1985             height = (mode == "CSS1Compat") ?
1986                      document.documentElement.clientHeight :
1987                      document.body.clientHeight;
1988         }
1989
1990         return height;
1991     },
1992     /**
1993      * Get the Window Viewport width
1994      * @return {Number} The width
1995      */
1996     getViewportWidth: function() {
1997         var width = self.innerWidth;
1998         var mode = document.compatMode;
1999
2000         if (mode || Roo.isIE) {
2001             width = (mode == "CSS1Compat") ?
2002                     document.documentElement.clientWidth :
2003                     document.body.clientWidth;
2004         }
2005         return width;
2006     },
2007
2008     isAncestor : function(p, c) {
2009         p = Roo.getDom(p);
2010         c = Roo.getDom(c);
2011         if (!p || !c) {
2012             return false;
2013         }
2014
2015         if (p.contains && !Roo.isSafari) {
2016             return p.contains(c);
2017         } else if (p.compareDocumentPosition) {
2018             return !!(p.compareDocumentPosition(c) & 16);
2019         } else {
2020             var parent = c.parentNode;
2021             while (parent) {
2022                 if (parent == p) {
2023                     return true;
2024                 }
2025                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
2026                     return false;
2027                 }
2028                 parent = parent.parentNode;
2029             }
2030             return false;
2031         }
2032     },
2033
2034     getRegion : function(el) {
2035         return Roo.lib.Region.getRegion(el);
2036     },
2037
2038     getY : function(el) {
2039         return this.getXY(el)[1];
2040     },
2041
2042     getX : function(el) {
2043         return this.getXY(el)[0];
2044     },
2045
2046     getXY : function(el) {
2047         var p, pe, b, scroll, bd = document.body;
2048         el = Roo.getDom(el);
2049         var fly = Roo.lib.AnimBase.fly;
2050         if (el.getBoundingClientRect) {
2051             b = el.getBoundingClientRect();
2052             scroll = fly(document).getScroll();
2053             return [b.left + scroll.left, b.top + scroll.top];
2054         }
2055         var x = 0, y = 0;
2056
2057         p = el;
2058
2059         var hasAbsolute = fly(el).getStyle("position") == "absolute";
2060
2061         while (p) {
2062
2063             x += p.offsetLeft;
2064             y += p.offsetTop;
2065
2066             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
2067                 hasAbsolute = true;
2068             }
2069
2070             if (Roo.isGecko) {
2071                 pe = fly(p);
2072
2073                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
2074                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
2075
2076
2077                 x += bl;
2078                 y += bt;
2079
2080
2081                 if (p != el && pe.getStyle('overflow') != 'visible') {
2082                     x += bl;
2083                     y += bt;
2084                 }
2085             }
2086             p = p.offsetParent;
2087         }
2088
2089         if (Roo.isSafari && hasAbsolute) {
2090             x -= bd.offsetLeft;
2091             y -= bd.offsetTop;
2092         }
2093
2094         if (Roo.isGecko && !hasAbsolute) {
2095             var dbd = fly(bd);
2096             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2097             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2098         }
2099
2100         p = el.parentNode;
2101         while (p && p != bd) {
2102             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2103                 x -= p.scrollLeft;
2104                 y -= p.scrollTop;
2105             }
2106             p = p.parentNode;
2107         }
2108         return [x, y];
2109     },
2110  
2111   
2112
2113
2114     setXY : function(el, xy) {
2115         el = Roo.fly(el, '_setXY');
2116         el.position();
2117         var pts = el.translatePoints(xy);
2118         if (xy[0] !== false) {
2119             el.dom.style.left = pts.left + "px";
2120         }
2121         if (xy[1] !== false) {
2122             el.dom.style.top = pts.top + "px";
2123         }
2124     },
2125
2126     setX : function(el, x) {
2127         this.setXY(el, [x, false]);
2128     },
2129
2130     setY : function(el, y) {
2131         this.setXY(el, [false, y]);
2132     }
2133 };
2134 /*
2135  * Portions of this file are based on pieces of Yahoo User Interface Library
2136  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2137  * YUI licensed under the BSD License:
2138  * http://developer.yahoo.net/yui/license.txt
2139  * <script type="text/javascript">
2140  *
2141  */
2142
2143 Roo.lib.Event = function() {
2144     var loadComplete = false;
2145     var listeners = [];
2146     var unloadListeners = [];
2147     var retryCount = 0;
2148     var onAvailStack = [];
2149     var counter = 0;
2150     var lastError = null;
2151
2152     return {
2153         POLL_RETRYS: 200,
2154         POLL_INTERVAL: 20,
2155         EL: 0,
2156         TYPE: 1,
2157         FN: 2,
2158         WFN: 3,
2159         OBJ: 3,
2160         ADJ_SCOPE: 4,
2161         _interval: null,
2162
2163         startInterval: function() {
2164             if (!this._interval) {
2165                 var self = this;
2166                 var callback = function() {
2167                     self._tryPreloadAttach();
2168                 };
2169                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2170
2171             }
2172         },
2173
2174         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2175             onAvailStack.push({ id:         p_id,
2176                 fn:         p_fn,
2177                 obj:        p_obj,
2178                 override:   p_override,
2179                 checkReady: false    });
2180
2181             retryCount = this.POLL_RETRYS;
2182             this.startInterval();
2183         },
2184
2185
2186         addListener: function(el, eventName, fn) {
2187             el = Roo.getDom(el);
2188             if (!el || !fn) {
2189                 return false;
2190             }
2191
2192             if ("unload" == eventName) {
2193                 unloadListeners[unloadListeners.length] =
2194                 [el, eventName, fn];
2195                 return true;
2196             }
2197
2198             var wrappedFn = function(e) {
2199                 return fn(Roo.lib.Event.getEvent(e));
2200             };
2201
2202             var li = [el, eventName, fn, wrappedFn];
2203
2204             var index = listeners.length;
2205             listeners[index] = li;
2206
2207             this.doAdd(el, eventName, wrappedFn, false);
2208             return true;
2209
2210         },
2211
2212
2213         removeListener: function(el, eventName, fn) {
2214             var i, len;
2215
2216             el = Roo.getDom(el);
2217
2218             if(!fn) {
2219                 return this.purgeElement(el, false, eventName);
2220             }
2221
2222
2223             if ("unload" == eventName) {
2224
2225                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2226                     var li = unloadListeners[i];
2227                     if (li &&
2228                         li[0] == el &&
2229                         li[1] == eventName &&
2230                         li[2] == fn) {
2231                         unloadListeners.splice(i, 1);
2232                         return true;
2233                     }
2234                 }
2235
2236                 return false;
2237             }
2238
2239             var cacheItem = null;
2240
2241
2242             var index = arguments[3];
2243
2244             if ("undefined" == typeof index) {
2245                 index = this._getCacheIndex(el, eventName, fn);
2246             }
2247
2248             if (index >= 0) {
2249                 cacheItem = listeners[index];
2250             }
2251
2252             if (!el || !cacheItem) {
2253                 return false;
2254             }
2255
2256             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2257
2258             delete listeners[index][this.WFN];
2259             delete listeners[index][this.FN];
2260             listeners.splice(index, 1);
2261
2262             return true;
2263
2264         },
2265
2266
2267         getTarget: function(ev, resolveTextNode) {
2268             ev = ev.browserEvent || ev;
2269             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2270             var t = ev.target || ev.srcElement;
2271             return this.resolveTextNode(t);
2272         },
2273
2274
2275         resolveTextNode: function(node) {
2276             if (Roo.isSafari && node && 3 == node.nodeType) {
2277                 return node.parentNode;
2278             } else {
2279                 return node;
2280             }
2281         },
2282
2283
2284         getPageX: function(ev) {
2285             ev = ev.browserEvent || ev;
2286             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2287             var x = ev.pageX;
2288             if (!x && 0 !== x) {
2289                 x = ev.clientX || 0;
2290
2291                 if (Roo.isIE) {
2292                     x += this.getScroll()[1];
2293                 }
2294             }
2295
2296             return x;
2297         },
2298
2299
2300         getPageY: function(ev) {
2301             ev = ev.browserEvent || ev;
2302             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2303             var y = ev.pageY;
2304             if (!y && 0 !== y) {
2305                 y = ev.clientY || 0;
2306
2307                 if (Roo.isIE) {
2308                     y += this.getScroll()[0];
2309                 }
2310             }
2311
2312
2313             return y;
2314         },
2315
2316
2317         getXY: function(ev) {
2318             ev = ev.browserEvent || ev;
2319             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2320             return [this.getPageX(ev), this.getPageY(ev)];
2321         },
2322
2323
2324         getRelatedTarget: function(ev) {
2325             ev = ev.browserEvent || ev;
2326             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2327             var t = ev.relatedTarget;
2328             if (!t) {
2329                 if (ev.type == "mouseout") {
2330                     t = ev.toElement;
2331                 } else if (ev.type == "mouseover") {
2332                     t = ev.fromElement;
2333                 }
2334             }
2335
2336             return this.resolveTextNode(t);
2337         },
2338
2339
2340         getTime: function(ev) {
2341             ev = ev.browserEvent || ev;
2342             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2343             if (!ev.time) {
2344                 var t = new Date().getTime();
2345                 try {
2346                     ev.time = t;
2347                 } catch(ex) {
2348                     this.lastError = ex;
2349                     return t;
2350                 }
2351             }
2352
2353             return ev.time;
2354         },
2355
2356
2357         stopEvent: function(ev) {
2358             this.stopPropagation(ev);
2359             this.preventDefault(ev);
2360         },
2361
2362
2363         stopPropagation: function(ev) {
2364             ev = ev.browserEvent || ev;
2365             if (ev.stopPropagation) {
2366                 ev.stopPropagation();
2367             } else {
2368                 ev.cancelBubble = true;
2369             }
2370         },
2371
2372
2373         preventDefault: function(ev) {
2374             ev = ev.browserEvent || ev;
2375             if(ev.preventDefault) {
2376                 ev.preventDefault();
2377             } else {
2378                 ev.returnValue = false;
2379             }
2380         },
2381
2382
2383         getEvent: function(e) {
2384             var ev = e || window.event;
2385             if (!ev) {
2386                 var c = this.getEvent.caller;
2387                 while (c) {
2388                     ev = c.arguments[0];
2389                     if (ev && Event == ev.constructor) {
2390                         break;
2391                     }
2392                     c = c.caller;
2393                 }
2394             }
2395             return ev;
2396         },
2397
2398
2399         getCharCode: function(ev) {
2400             ev = ev.browserEvent || ev;
2401             return ev.charCode || ev.keyCode || 0;
2402         },
2403
2404
2405         _getCacheIndex: function(el, eventName, fn) {
2406             for (var i = 0,len = listeners.length; i < len; ++i) {
2407                 var li = listeners[i];
2408                 if (li &&
2409                     li[this.FN] == fn &&
2410                     li[this.EL] == el &&
2411                     li[this.TYPE] == eventName) {
2412                     return i;
2413                 }
2414             }
2415
2416             return -1;
2417         },
2418
2419
2420         elCache: {},
2421
2422
2423         getEl: function(id) {
2424             return document.getElementById(id);
2425         },
2426
2427
2428         clearCache: function() {
2429         },
2430
2431
2432         _load: function(e) {
2433             loadComplete = true;
2434             var EU = Roo.lib.Event;
2435
2436
2437             if (Roo.isIE) {
2438                 EU.doRemove(window, "load", EU._load);
2439             }
2440         },
2441
2442
2443         _tryPreloadAttach: function() {
2444
2445             if (this.locked) {
2446                 return false;
2447             }
2448
2449             this.locked = true;
2450
2451
2452             var tryAgain = !loadComplete;
2453             if (!tryAgain) {
2454                 tryAgain = (retryCount > 0);
2455             }
2456
2457
2458             var notAvail = [];
2459             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2460                 var item = onAvailStack[i];
2461                 if (item) {
2462                     var el = this.getEl(item.id);
2463
2464                     if (el) {
2465                         if (!item.checkReady ||
2466                             loadComplete ||
2467                             el.nextSibling ||
2468                             (document && document.body)) {
2469
2470                             var scope = el;
2471                             if (item.override) {
2472                                 if (item.override === true) {
2473                                     scope = item.obj;
2474                                 } else {
2475                                     scope = item.override;
2476                                 }
2477                             }
2478                             item.fn.call(scope, item.obj);
2479                             onAvailStack[i] = null;
2480                         }
2481                     } else {
2482                         notAvail.push(item);
2483                     }
2484                 }
2485             }
2486
2487             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2488
2489             if (tryAgain) {
2490
2491                 this.startInterval();
2492             } else {
2493                 clearInterval(this._interval);
2494                 this._interval = null;
2495             }
2496
2497             this.locked = false;
2498
2499             return true;
2500
2501         },
2502
2503
2504         purgeElement: function(el, recurse, eventName) {
2505             var elListeners = this.getListeners(el, eventName);
2506             if (elListeners) {
2507                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2508                     var l = elListeners[i];
2509                     this.removeListener(el, l.type, l.fn);
2510                 }
2511             }
2512
2513             if (recurse && el && el.childNodes) {
2514                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2515                     this.purgeElement(el.childNodes[i], recurse, eventName);
2516                 }
2517             }
2518         },
2519
2520
2521         getListeners: function(el, eventName) {
2522             var results = [], searchLists;
2523             if (!eventName) {
2524                 searchLists = [listeners, unloadListeners];
2525             } else if (eventName == "unload") {
2526                 searchLists = [unloadListeners];
2527             } else {
2528                 searchLists = [listeners];
2529             }
2530
2531             for (var j = 0; j < searchLists.length; ++j) {
2532                 var searchList = searchLists[j];
2533                 if (searchList && searchList.length > 0) {
2534                     for (var i = 0,len = searchList.length; i < len; ++i) {
2535                         var l = searchList[i];
2536                         if (l && l[this.EL] === el &&
2537                             (!eventName || eventName === l[this.TYPE])) {
2538                             results.push({
2539                                 type:   l[this.TYPE],
2540                                 fn:     l[this.FN],
2541                                 obj:    l[this.OBJ],
2542                                 adjust: l[this.ADJ_SCOPE],
2543                                 index:  i
2544                             });
2545                         }
2546                     }
2547                 }
2548             }
2549
2550             return (results.length) ? results : null;
2551         },
2552
2553
2554         _unload: function(e) {
2555
2556             var EU = Roo.lib.Event, i, j, l, len, index;
2557
2558             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2559                 l = unloadListeners[i];
2560                 if (l) {
2561                     var scope = window;
2562                     if (l[EU.ADJ_SCOPE]) {
2563                         if (l[EU.ADJ_SCOPE] === true) {
2564                             scope = l[EU.OBJ];
2565                         } else {
2566                             scope = l[EU.ADJ_SCOPE];
2567                         }
2568                     }
2569                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2570                     unloadListeners[i] = null;
2571                     l = null;
2572                     scope = null;
2573                 }
2574             }
2575
2576             unloadListeners = null;
2577
2578             if (listeners && listeners.length > 0) {
2579                 j = listeners.length;
2580                 while (j) {
2581                     index = j - 1;
2582                     l = listeners[index];
2583                     if (l) {
2584                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2585                                 l[EU.FN], index);
2586                     }
2587                     j = j - 1;
2588                 }
2589                 l = null;
2590
2591                 EU.clearCache();
2592             }
2593
2594             EU.doRemove(window, "unload", EU._unload);
2595
2596         },
2597
2598
2599         getScroll: function() {
2600             var dd = document.documentElement, db = document.body;
2601             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2602                 return [dd.scrollTop, dd.scrollLeft];
2603             } else if (db) {
2604                 return [db.scrollTop, db.scrollLeft];
2605             } else {
2606                 return [0, 0];
2607             }
2608         },
2609
2610
2611         doAdd: function () {
2612             if (window.addEventListener) {
2613                 return function(el, eventName, fn, capture) {
2614                     el.addEventListener(eventName, fn, (capture));
2615                 };
2616             } else if (window.attachEvent) {
2617                 return function(el, eventName, fn, capture) {
2618                     el.attachEvent("on" + eventName, fn);
2619                 };
2620             } else {
2621                 return function() {
2622                 };
2623             }
2624         }(),
2625
2626
2627         doRemove: function() {
2628             if (window.removeEventListener) {
2629                 return function (el, eventName, fn, capture) {
2630                     el.removeEventListener(eventName, fn, (capture));
2631                 };
2632             } else if (window.detachEvent) {
2633                 return function (el, eventName, fn) {
2634                     el.detachEvent("on" + eventName, fn);
2635                 };
2636             } else {
2637                 return function() {
2638                 };
2639             }
2640         }()
2641     };
2642     
2643 }();
2644 (function() {     
2645    
2646     var E = Roo.lib.Event;
2647     E.on = E.addListener;
2648     E.un = E.removeListener;
2649
2650     if (document && document.body) {
2651         E._load();
2652     } else {
2653         E.doAdd(window, "load", E._load);
2654     }
2655     E.doAdd(window, "unload", E._unload);
2656     E._tryPreloadAttach();
2657 })();
2658
2659  
2660
2661 (function() {
2662     /**
2663      * @class Roo.lib.Ajax
2664      *
2665      * provide a simple Ajax request utility functions
2666      * 
2667      * Portions of this file are based on pieces of Yahoo User Interface Library
2668     * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2669     * YUI licensed under the BSD License:
2670     * http://developer.yahoo.net/yui/license.txt
2671     * <script type="text/javascript">
2672     *
2673      *
2674      */
2675     Roo.lib.Ajax = {
2676         /**
2677          * @static 
2678          */
2679         request : function(method, uri, cb, data, options) {
2680             if(options){
2681                 var hs = options.headers;
2682                 if(hs){
2683                     for(var h in hs){
2684                         if(hs.hasOwnProperty(h)){
2685                             this.initHeader(h, hs[h], false);
2686                         }
2687                     }
2688                 }
2689                 if(options.xmlData){
2690                     this.initHeader('Content-Type', 'text/xml', false);
2691                     method = 'POST';
2692                     data = options.xmlData;
2693                 }
2694             }
2695
2696             return this.asyncRequest(method, uri, cb, data);
2697         },
2698         /**
2699          * serialize a form
2700          *
2701          * @static
2702          * @param {DomForm} form element
2703          * @return {String} urlencode form output.
2704          */
2705         serializeForm : function(form) {
2706             if(typeof form == 'string') {
2707                 form = (document.getElementById(form) || document.forms[form]);
2708             }
2709
2710             var el, name, val, disabled, data = '', hasSubmit = false;
2711             for (var i = 0; i < form.elements.length; i++) {
2712                 el = form.elements[i];
2713                 disabled = form.elements[i].disabled;
2714                 name = form.elements[i].name;
2715                 val = form.elements[i].value;
2716
2717                 if (!disabled && name){
2718                     switch (el.type)
2719                             {
2720                         case 'select-one':
2721                         case 'select-multiple':
2722                             for (var j = 0; j < el.options.length; j++) {
2723                                 if (el.options[j].selected) {
2724                                     if (Roo.isIE) {
2725                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2726                                     }
2727                                     else {
2728                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2729                                     }
2730                                 }
2731                             }
2732                             break;
2733                         case 'radio':
2734                         case 'checkbox':
2735                             if (el.checked) {
2736                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2737                             }
2738                             break;
2739                         case 'file':
2740
2741                         case undefined:
2742
2743                         case 'reset':
2744
2745                         case 'button':
2746
2747                             break;
2748                         case 'submit':
2749                             if(hasSubmit == false) {
2750                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2751                                 hasSubmit = true;
2752                             }
2753                             break;
2754                         default:
2755                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2756                             break;
2757                     }
2758                 }
2759             }
2760             data = data.substr(0, data.length - 1);
2761             return data;
2762         },
2763
2764         headers:{},
2765
2766         hasHeaders:false,
2767
2768         useDefaultHeader:true,
2769
2770         defaultPostHeader:'application/x-www-form-urlencoded',
2771
2772         useDefaultXhrHeader:true,
2773
2774         defaultXhrHeader:'XMLHttpRequest',
2775
2776         hasDefaultHeaders:true,
2777
2778         defaultHeaders:{},
2779
2780         poll:{},
2781
2782         timeout:{},
2783
2784         pollInterval:50,
2785
2786         transactionId:0,
2787
2788         setProgId:function(id)
2789         {
2790             this.activeX.unshift(id);
2791         },
2792
2793         setDefaultPostHeader:function(b)
2794         {
2795             this.useDefaultHeader = b;
2796         },
2797
2798         setDefaultXhrHeader:function(b)
2799         {
2800             this.useDefaultXhrHeader = b;
2801         },
2802
2803         setPollingInterval:function(i)
2804         {
2805             if (typeof i == 'number' && isFinite(i)) {
2806                 this.pollInterval = i;
2807             }
2808         },
2809
2810         createXhrObject:function(transactionId)
2811         {
2812             var obj,http;
2813             try
2814             {
2815
2816                 http = new XMLHttpRequest();
2817
2818                 obj = { conn:http, tId:transactionId };
2819             }
2820             catch(e)
2821             {
2822                 for (var i = 0; i < this.activeX.length; ++i) {
2823                     try
2824                     {
2825
2826                         http = new ActiveXObject(this.activeX[i]);
2827
2828                         obj = { conn:http, tId:transactionId };
2829                         break;
2830                     }
2831                     catch(e) {
2832                     }
2833                 }
2834             }
2835             finally
2836             {
2837                 return obj;
2838             }
2839         },
2840
2841         getConnectionObject:function()
2842         {
2843             var o;
2844             var tId = this.transactionId;
2845
2846             try
2847             {
2848                 o = this.createXhrObject(tId);
2849                 if (o) {
2850                     this.transactionId++;
2851                 }
2852             }
2853             catch(e) {
2854             }
2855             finally
2856             {
2857                 return o;
2858             }
2859         },
2860
2861         asyncRequest:function(method, uri, callback, postData)
2862         {
2863             var o = this.getConnectionObject();
2864
2865             if (!o) {
2866                 return null;
2867             }
2868             else {
2869                 o.conn.open(method, uri, true);
2870
2871                 if (this.useDefaultXhrHeader) {
2872                     if (!this.defaultHeaders['X-Requested-With']) {
2873                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2874                     }
2875                 }
2876
2877                 if(postData && this.useDefaultHeader){
2878                     this.initHeader('Content-Type', this.defaultPostHeader);
2879                 }
2880
2881                  if (this.hasDefaultHeaders || this.hasHeaders) {
2882                     this.setHeader(o);
2883                 }
2884
2885                 this.handleReadyState(o, callback);
2886                 o.conn.send(postData || null);
2887
2888                 return o;
2889             }
2890         },
2891
2892         handleReadyState:function(o, callback)
2893         {
2894             var oConn = this;
2895
2896             if (callback && callback.timeout) {
2897                 
2898                 this.timeout[o.tId] = window.setTimeout(function() {
2899                     oConn.abort(o, callback, true);
2900                 }, callback.timeout);
2901             }
2902
2903             this.poll[o.tId] = window.setInterval(
2904                     function() {
2905                         if (o.conn && o.conn.readyState == 4) {
2906                             window.clearInterval(oConn.poll[o.tId]);
2907                             delete oConn.poll[o.tId];
2908
2909                             if(callback && callback.timeout) {
2910                                 window.clearTimeout(oConn.timeout[o.tId]);
2911                                 delete oConn.timeout[o.tId];
2912                             }
2913
2914                             oConn.handleTransactionResponse(o, callback);
2915                         }
2916                     }
2917                     , this.pollInterval);
2918         },
2919
2920         handleTransactionResponse:function(o, callback, isAbort)
2921         {
2922
2923             if (!callback) {
2924                 this.releaseObject(o);
2925                 return;
2926             }
2927
2928             var httpStatus, responseObject;
2929
2930             try
2931             {
2932                 if (o.conn.status !== undefined && o.conn.status != 0) {
2933                     httpStatus = o.conn.status;
2934                 }
2935                 else {
2936                     httpStatus = 13030;
2937                 }
2938             }
2939             catch(e) {
2940
2941
2942                 httpStatus = 13030;
2943             }
2944
2945             if (httpStatus >= 200 && httpStatus < 300) {
2946                 responseObject = this.createResponseObject(o, callback.argument);
2947                 if (callback.success) {
2948                     if (!callback.scope) {
2949                         callback.success(responseObject);
2950                     }
2951                     else {
2952
2953
2954                         callback.success.apply(callback.scope, [responseObject]);
2955                     }
2956                 }
2957             }
2958             else {
2959                 switch (httpStatus) {
2960
2961                     case 12002:
2962                     case 12029:
2963                     case 12030:
2964                     case 12031:
2965                     case 12152:
2966                     case 13030:
2967                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2968                         if (callback.failure) {
2969                             if (!callback.scope) {
2970                                 callback.failure(responseObject);
2971                             }
2972                             else {
2973                                 callback.failure.apply(callback.scope, [responseObject]);
2974                             }
2975                         }
2976                         break;
2977                     default:
2978                         responseObject = this.createResponseObject(o, callback.argument);
2979                         if (callback.failure) {
2980                             if (!callback.scope) {
2981                                 callback.failure(responseObject);
2982                             }
2983                             else {
2984                                 callback.failure.apply(callback.scope, [responseObject]);
2985                             }
2986                         }
2987                 }
2988             }
2989
2990             this.releaseObject(o);
2991             responseObject = null;
2992         },
2993
2994         createResponseObject:function(o, callbackArg)
2995         {
2996             var obj = {};
2997             var headerObj = {};
2998
2999             try
3000             {
3001                 var headerStr = o.conn.getAllResponseHeaders();
3002                 var header = headerStr.split('\n');
3003                 for (var i = 0; i < header.length; i++) {
3004                     var delimitPos = header[i].indexOf(':');
3005                     if (delimitPos != -1) {
3006                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
3007                     }
3008                 }
3009             }
3010             catch(e) {
3011             }
3012
3013             obj.tId = o.tId;
3014             obj.status = o.conn.status;
3015             obj.statusText = o.conn.statusText;
3016             obj.getResponseHeader = headerObj;
3017             obj.getAllResponseHeaders = headerStr;
3018             obj.responseText = o.conn.responseText;
3019             obj.responseXML = o.conn.responseXML;
3020
3021             if (typeof callbackArg !== undefined) {
3022                 obj.argument = callbackArg;
3023             }
3024
3025             return obj;
3026         },
3027
3028         createExceptionObject:function(tId, callbackArg, isAbort)
3029         {
3030             var COMM_CODE = 0;
3031             var COMM_ERROR = 'communication failure';
3032             var ABORT_CODE = -1;
3033             var ABORT_ERROR = 'transaction aborted';
3034
3035             var obj = {};
3036
3037             obj.tId = tId;
3038             if (isAbort) {
3039                 obj.status = ABORT_CODE;
3040                 obj.statusText = ABORT_ERROR;
3041             }
3042             else {
3043                 obj.status = COMM_CODE;
3044                 obj.statusText = COMM_ERROR;
3045             }
3046
3047             if (callbackArg) {
3048                 obj.argument = callbackArg;
3049             }
3050
3051             return obj;
3052         },
3053
3054         initHeader:function(label, value, isDefault)
3055         {
3056             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
3057
3058             if (headerObj[label] === undefined) {
3059                 headerObj[label] = value;
3060             }
3061             else {
3062
3063
3064                 headerObj[label] = value + "," + headerObj[label];
3065             }
3066
3067             if (isDefault) {
3068                 this.hasDefaultHeaders = true;
3069             }
3070             else {
3071                 this.hasHeaders = true;
3072             }
3073         },
3074
3075
3076         setHeader:function(o)
3077         {
3078             if (this.hasDefaultHeaders) {
3079                 for (var prop in this.defaultHeaders) {
3080                     if (this.defaultHeaders.hasOwnProperty(prop)) {
3081                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
3082                     }
3083                 }
3084             }
3085
3086             if (this.hasHeaders) {
3087                 for (var prop in this.headers) {
3088                     if (this.headers.hasOwnProperty(prop)) {
3089                         o.conn.setRequestHeader(prop, this.headers[prop]);
3090                     }
3091                 }
3092                 this.headers = {};
3093                 this.hasHeaders = false;
3094             }
3095         },
3096
3097         resetDefaultHeaders:function() {
3098             delete this.defaultHeaders;
3099             this.defaultHeaders = {};
3100             this.hasDefaultHeaders = false;
3101         },
3102
3103         abort:function(o, callback, isTimeout)
3104         {
3105             if(this.isCallInProgress(o)) {
3106                 o.conn.abort();
3107                 window.clearInterval(this.poll[o.tId]);
3108                 delete this.poll[o.tId];
3109                 if (isTimeout) {
3110                     delete this.timeout[o.tId];
3111                 }
3112
3113                 this.handleTransactionResponse(o, callback, true);
3114
3115                 return true;
3116             }
3117             else {
3118                 return false;
3119             }
3120         },
3121
3122
3123         isCallInProgress:function(o)
3124         {
3125             if (o && o.conn) {
3126                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3127             }
3128             else {
3129
3130                 return false;
3131             }
3132         },
3133
3134
3135         releaseObject:function(o)
3136         {
3137
3138             o.conn = null;
3139
3140             o = null;
3141         },
3142
3143         activeX:[
3144         'MSXML2.XMLHTTP.3.0',
3145         'MSXML2.XMLHTTP',
3146         'Microsoft.XMLHTTP'
3147         ]
3148
3149
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
3160 Roo.lib.Region = function(t, r, b, l) {
3161     this.top = t;
3162     this[1] = t;
3163     this.right = r;
3164     this.bottom = b;
3165     this.left = l;
3166     this[0] = l;
3167 };
3168
3169
3170 Roo.lib.Region.prototype = {
3171     contains : function(region) {
3172         return ( region.left >= this.left &&
3173                  region.right <= this.right &&
3174                  region.top >= this.top &&
3175                  region.bottom <= this.bottom    );
3176
3177     },
3178
3179     getArea : function() {
3180         return ( (this.bottom - this.top) * (this.right - this.left) );
3181     },
3182
3183     intersect : function(region) {
3184         var t = Math.max(this.top, region.top);
3185         var r = Math.min(this.right, region.right);
3186         var b = Math.min(this.bottom, region.bottom);
3187         var l = Math.max(this.left, region.left);
3188
3189         if (b >= t && r >= l) {
3190             return new Roo.lib.Region(t, r, b, l);
3191         } else {
3192             return null;
3193         }
3194     },
3195     union : function(region) {
3196         var t = Math.min(this.top, region.top);
3197         var r = Math.max(this.right, region.right);
3198         var b = Math.max(this.bottom, region.bottom);
3199         var l = Math.min(this.left, region.left);
3200
3201         return new Roo.lib.Region(t, r, b, l);
3202     },
3203
3204     adjust : function(t, l, b, r) {
3205         this.top += t;
3206         this.left += l;
3207         this.right += r;
3208         this.bottom += b;
3209         return this;
3210     }
3211 };
3212
3213 Roo.lib.Region.getRegion = function(el) {
3214     var p = Roo.lib.Dom.getXY(el);
3215
3216     var t = p[1];
3217     var r = p[0] + el.offsetWidth;
3218     var b = p[1] + el.offsetHeight;
3219     var l = p[0];
3220
3221     return new Roo.lib.Region(t, r, b, l);
3222 };
3223 /*
3224  * Portions of this file are based on pieces of Yahoo User Interface Library
3225  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3226  * YUI licensed under the BSD License:
3227  * http://developer.yahoo.net/yui/license.txt
3228  * <script type="text/javascript">
3229  *
3230  */
3231 //@@dep Roo.lib.Region
3232
3233
3234 Roo.lib.Point = function(x, y) {
3235     if (x instanceof Array) {
3236         y = x[1];
3237         x = x[0];
3238     }
3239     this.x = this.right = this.left = this[0] = x;
3240     this.y = this.top = this.bottom = this[1] = y;
3241 };
3242
3243 Roo.lib.Point.prototype = new Roo.lib.Region();
3244 /*
3245  * Portions of this file are based on pieces of Yahoo User Interface Library
3246  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3247  * YUI licensed under the BSD License:
3248  * http://developer.yahoo.net/yui/license.txt
3249  * <script type="text/javascript">
3250  *
3251  */
3252  
3253 (function() {   
3254
3255     Roo.lib.Anim = {
3256         scroll : function(el, args, duration, easing, cb, scope) {
3257             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3258         },
3259
3260         motion : function(el, args, duration, easing, cb, scope) {
3261             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3262         },
3263
3264         color : function(el, args, duration, easing, cb, scope) {
3265             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3266         },
3267
3268         run : function(el, args, duration, easing, cb, scope, type) {
3269             type = type || Roo.lib.AnimBase;
3270             if (typeof easing == "string") {
3271                 easing = Roo.lib.Easing[easing];
3272             }
3273             var anim = new type(el, args, duration, easing);
3274             anim.animateX(function() {
3275                 Roo.callback(cb, scope);
3276             });
3277             return anim;
3278         }
3279     };
3280 })();/*
3281  * Portions of this file are based on pieces of Yahoo User Interface Library
3282  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3283  * YUI licensed under the BSD License:
3284  * http://developer.yahoo.net/yui/license.txt
3285  * <script type="text/javascript">
3286  *
3287  */
3288
3289 (function() {    
3290     var libFlyweight;
3291     
3292     function fly(el) {
3293         if (!libFlyweight) {
3294             libFlyweight = new Roo.Element.Flyweight();
3295         }
3296         libFlyweight.dom = el;
3297         return libFlyweight;
3298     }
3299
3300     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3301     
3302    
3303     
3304     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3305         if (el) {
3306             this.init(el, attributes, duration, method);
3307         }
3308     };
3309
3310     Roo.lib.AnimBase.fly = fly;
3311     
3312     
3313     
3314     Roo.lib.AnimBase.prototype = {
3315
3316         toString: function() {
3317             var el = this.getEl();
3318             var id = el.id || el.tagName;
3319             return ("Anim " + id);
3320         },
3321
3322         patterns: {
3323             noNegatives:        /width|height|opacity|padding/i,
3324             offsetAttribute:  /^((width|height)|(top|left))$/,
3325             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3326             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3327         },
3328
3329
3330         doMethod: function(attr, start, end) {
3331             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3332         },
3333
3334
3335         setAttribute: function(attr, val, unit) {
3336             if (this.patterns.noNegatives.test(attr)) {
3337                 val = (val > 0) ? val : 0;
3338             }
3339
3340             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3341         },
3342
3343
3344         getAttribute: function(attr) {
3345             var el = this.getEl();
3346             var val = fly(el).getStyle(attr);
3347
3348             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3349                 return parseFloat(val);
3350             }
3351
3352             var a = this.patterns.offsetAttribute.exec(attr) || [];
3353             var pos = !!( a[3] );
3354             var box = !!( a[2] );
3355
3356
3357             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3358                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3359             } else {
3360                 val = 0;
3361             }
3362
3363             return val;
3364         },
3365
3366
3367         getDefaultUnit: function(attr) {
3368             if (this.patterns.defaultUnit.test(attr)) {
3369                 return 'px';
3370             }
3371
3372             return '';
3373         },
3374
3375         animateX : function(callback, scope) {
3376             var f = function() {
3377                 this.onComplete.removeListener(f);
3378                 if (typeof callback == "function") {
3379                     callback.call(scope || this, this);
3380                 }
3381             };
3382             this.onComplete.addListener(f, this);
3383             this.animate();
3384         },
3385
3386
3387         setRuntimeAttribute: function(attr) {
3388             var start;
3389             var end;
3390             var attributes = this.attributes;
3391
3392             this.runtimeAttributes[attr] = {};
3393
3394             var isset = function(prop) {
3395                 return (typeof prop !== 'undefined');
3396             };
3397
3398             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3399                 return false;
3400             }
3401
3402             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3403
3404
3405             if (isset(attributes[attr]['to'])) {
3406                 end = attributes[attr]['to'];
3407             } else if (isset(attributes[attr]['by'])) {
3408                 if (start.constructor == Array) {
3409                     end = [];
3410                     for (var i = 0, len = start.length; i < len; ++i) {
3411                         end[i] = start[i] + attributes[attr]['by'][i];
3412                     }
3413                 } else {
3414                     end = start + attributes[attr]['by'];
3415                 }
3416             }
3417
3418             this.runtimeAttributes[attr].start = start;
3419             this.runtimeAttributes[attr].end = end;
3420
3421
3422             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3423         },
3424
3425
3426         init: function(el, attributes, duration, method) {
3427
3428             var isAnimated = false;
3429
3430
3431             var startTime = null;
3432
3433
3434             var actualFrames = 0;
3435
3436
3437             el = Roo.getDom(el);
3438
3439
3440             this.attributes = attributes || {};
3441
3442
3443             this.duration = duration || 1;
3444
3445
3446             this.method = method || Roo.lib.Easing.easeNone;
3447
3448
3449             this.useSeconds = true;
3450
3451
3452             this.currentFrame = 0;
3453
3454
3455             this.totalFrames = Roo.lib.AnimMgr.fps;
3456
3457
3458             this.getEl = function() {
3459                 return el;
3460             };
3461
3462
3463             this.isAnimated = function() {
3464                 return isAnimated;
3465             };
3466
3467
3468             this.getStartTime = function() {
3469                 return startTime;
3470             };
3471
3472             this.runtimeAttributes = {};
3473
3474
3475             this.animate = function() {
3476                 if (this.isAnimated()) {
3477                     return false;
3478                 }
3479
3480                 this.currentFrame = 0;
3481
3482                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3483
3484                 Roo.lib.AnimMgr.registerElement(this);
3485             };
3486
3487
3488             this.stop = function(finish) {
3489                 if (finish) {
3490                     this.currentFrame = this.totalFrames;
3491                     this._onTween.fire();
3492                 }
3493                 Roo.lib.AnimMgr.stop(this);
3494             };
3495
3496             var onStart = function() {
3497                 this.onStart.fire();
3498
3499                 this.runtimeAttributes = {};
3500                 for (var attr in this.attributes) {
3501                     this.setRuntimeAttribute(attr);
3502                 }
3503
3504                 isAnimated = true;
3505                 actualFrames = 0;
3506                 startTime = new Date();
3507             };
3508
3509
3510             var onTween = function() {
3511                 var data = {
3512                     duration: new Date() - this.getStartTime(),
3513                     currentFrame: this.currentFrame
3514                 };
3515
3516                 data.toString = function() {
3517                     return (
3518                             'duration: ' + data.duration +
3519                             ', currentFrame: ' + data.currentFrame
3520                             );
3521                 };
3522
3523                 this.onTween.fire(data);
3524
3525                 var runtimeAttributes = this.runtimeAttributes;
3526
3527                 for (var attr in runtimeAttributes) {
3528                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3529                 }
3530
3531                 actualFrames += 1;
3532             };
3533
3534             var onComplete = function() {
3535                 var actual_duration = (new Date() - startTime) / 1000 ;
3536
3537                 var data = {
3538                     duration: actual_duration,
3539                     frames: actualFrames,
3540                     fps: actualFrames / actual_duration
3541                 };
3542
3543                 data.toString = function() {
3544                     return (
3545                             'duration: ' + data.duration +
3546                             ', frames: ' + data.frames +
3547                             ', fps: ' + data.fps
3548                             );
3549                 };
3550
3551                 isAnimated = false;
3552                 actualFrames = 0;
3553                 this.onComplete.fire(data);
3554             };
3555
3556
3557             this._onStart = new Roo.util.Event(this);
3558             this.onStart = new Roo.util.Event(this);
3559             this.onTween = new Roo.util.Event(this);
3560             this._onTween = new Roo.util.Event(this);
3561             this.onComplete = new Roo.util.Event(this);
3562             this._onComplete = new Roo.util.Event(this);
3563             this._onStart.addListener(onStart);
3564             this._onTween.addListener(onTween);
3565             this._onComplete.addListener(onComplete);
3566         }
3567     };
3568 })();
3569 /*
3570  * Portions of this file are based on pieces of Yahoo User Interface Library
3571  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3572  * YUI licensed under the BSD License:
3573  * http://developer.yahoo.net/yui/license.txt
3574  * <script type="text/javascript">
3575  *
3576  */
3577
3578 Roo.lib.AnimMgr = new function() {
3579
3580     var thread = null;
3581
3582
3583     var queue = [];
3584
3585
3586     var tweenCount = 0;
3587
3588
3589     this.fps = 1000;
3590
3591
3592     this.delay = 1;
3593
3594
3595     this.registerElement = function(tween) {
3596         queue[queue.length] = tween;
3597         tweenCount += 1;
3598         tween._onStart.fire();
3599         this.start();
3600     };
3601
3602
3603     this.unRegister = function(tween, index) {
3604         tween._onComplete.fire();
3605         index = index || getIndex(tween);
3606         if (index != -1) {
3607             queue.splice(index, 1);
3608         }
3609
3610         tweenCount -= 1;
3611         if (tweenCount <= 0) {
3612             this.stop();
3613         }
3614     };
3615
3616
3617     this.start = function() {
3618         if (thread === null) {
3619             thread = setInterval(this.run, this.delay);
3620         }
3621     };
3622
3623
3624     this.stop = function(tween) {
3625         if (!tween) {
3626             clearInterval(thread);
3627
3628             for (var i = 0, len = queue.length; i < len; ++i) {
3629                 if (queue[0].isAnimated()) {
3630                     this.unRegister(queue[0], 0);
3631                 }
3632             }
3633
3634             queue = [];
3635             thread = null;
3636             tweenCount = 0;
3637         }
3638         else {
3639             this.unRegister(tween);
3640         }
3641     };
3642
3643
3644     this.run = function() {
3645         for (var i = 0, len = queue.length; i < len; ++i) {
3646             var tween = queue[i];
3647             if (!tween || !tween.isAnimated()) {
3648                 continue;
3649             }
3650
3651             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3652             {
3653                 tween.currentFrame += 1;
3654
3655                 if (tween.useSeconds) {
3656                     correctFrame(tween);
3657                 }
3658                 tween._onTween.fire();
3659             }
3660             else {
3661                 Roo.lib.AnimMgr.stop(tween, i);
3662             }
3663         }
3664     };
3665
3666     var getIndex = function(anim) {
3667         for (var i = 0, len = queue.length; i < len; ++i) {
3668             if (queue[i] == anim) {
3669                 return i;
3670             }
3671         }
3672         return -1;
3673     };
3674
3675
3676     var correctFrame = function(tween) {
3677         var frames = tween.totalFrames;
3678         var frame = tween.currentFrame;
3679         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3680         var elapsed = (new Date() - tween.getStartTime());
3681         var tweak = 0;
3682
3683         if (elapsed < tween.duration * 1000) {
3684             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3685         } else {
3686             tweak = frames - (frame + 1);
3687         }
3688         if (tweak > 0 && isFinite(tweak)) {
3689             if (tween.currentFrame + tweak >= frames) {
3690                 tweak = frames - (frame + 1);
3691             }
3692
3693             tween.currentFrame += tweak;
3694         }
3695     };
3696 };
3697
3698     /*
3699  * Portions of this file are based on pieces of Yahoo User Interface Library
3700  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3701  * YUI licensed under the BSD License:
3702  * http://developer.yahoo.net/yui/license.txt
3703  * <script type="text/javascript">
3704  *
3705  */
3706 Roo.lib.Bezier = new function() {
3707
3708         this.getPosition = function(points, t) {
3709             var n = points.length;
3710             var tmp = [];
3711
3712             for (var i = 0; i < n; ++i) {
3713                 tmp[i] = [points[i][0], points[i][1]];
3714             }
3715
3716             for (var j = 1; j < n; ++j) {
3717                 for (i = 0; i < n - j; ++i) {
3718                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3719                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3720                 }
3721             }
3722
3723             return [ tmp[0][0], tmp[0][1] ];
3724
3725         };
3726     }; 
3727
3728 /**
3729  * @class Roo.lib.Color
3730  * @constructor
3731  * An abstract Color implementation. Concrete Color implementations should use
3732  * an instance of this function as their prototype, and implement the getRGB and
3733  * getHSL functions. getRGB should return an object representing the RGB
3734  * components of this Color, with the red, green, and blue components in the
3735  * range [0,255] and the alpha component in the range [0,100]. getHSL should
3736  * return an object representing the HSL components of this Color, with the hue
3737  * component in the range [0,360), the saturation and lightness components in
3738  * the range [0,100], and the alpha component in the range [0,1].
3739  *
3740  *
3741  * Color.js
3742  *
3743  * Functions for Color handling and processing.
3744  *
3745  * http://www.safalra.com/web-design/javascript/Color-handling-and-processing/
3746  *
3747  * The author of this program, Safalra (Stephen Morley), irrevocably releases all
3748  * rights to this program, with the intention of it becoming part of the public
3749  * domain. Because this program is released into the public domain, it comes with
3750  * no warranty either expressed or implied, to the extent permitted by law.
3751  * 
3752  * For more free and public domain JavaScript code by the same author, visit:
3753  * http://www.safalra.com/web-design/javascript/
3754  * 
3755  */
3756 Roo.lib.Color = function() { }
3757
3758
3759 Roo.apply(Roo.lib.Color.prototype, {
3760   
3761   rgb : null,
3762   hsv : null,
3763   hsl : null,
3764   
3765   /**
3766    * getIntegerRGB
3767    * @return {Object} an object representing the RGBA components of this Color. The red,
3768    * green, and blue components are converted to integers in the range [0,255].
3769    * The alpha is a value in the range [0,1].
3770    */
3771   getIntegerRGB : function(){
3772
3773     // get the RGB components of this Color
3774     var rgb = this.getRGB();
3775
3776     // return the integer components
3777     return {
3778       'r' : Math.round(rgb.r),
3779       'g' : Math.round(rgb.g),
3780       'b' : Math.round(rgb.b),
3781       'a' : rgb.a
3782     };
3783
3784   },
3785
3786   /**
3787    * getPercentageRGB
3788    * @return {Object} an object representing the RGBA components of this Color. The red,
3789    * green, and blue components are converted to numbers in the range [0,100].
3790    * The alpha is a value in the range [0,1].
3791    */
3792   getPercentageRGB : function(){
3793
3794     // get the RGB components of this Color
3795     var rgb = this.getRGB();
3796
3797     // return the percentage components
3798     return {
3799       'r' : 100 * rgb.r / 255,
3800       'g' : 100 * rgb.g / 255,
3801       'b' : 100 * rgb.b / 255,
3802       'a' : rgb.a
3803     };
3804
3805   },
3806
3807   /**
3808    * getCSSHexadecimalRGB
3809    * @return {String} a string representing this Color as a CSS hexadecimal RGB Color
3810    * value - that is, a string of the form #RRGGBB where each of RR, GG, and BB
3811    * are two-digit hexadecimal numbers.
3812    */
3813   getCSSHexadecimalRGB : function()
3814   {
3815
3816     // get the integer RGB components
3817     var rgb = this.getIntegerRGB();
3818
3819     // determine the hexadecimal equivalents
3820     var r16 = rgb.r.toString(16);
3821     var g16 = rgb.g.toString(16);
3822     var b16 = rgb.b.toString(16);
3823
3824     // return the CSS RGB Color value
3825     return '#'
3826         + (r16.length == 2 ? r16 : '0' + r16)
3827         + (g16.length == 2 ? g16 : '0' + g16)
3828         + (b16.length == 2 ? b16 : '0' + b16);
3829
3830   },
3831
3832   /**
3833    * getCSSIntegerRGB
3834    * @return {String} a string representing this Color as a CSS integer RGB Color
3835    * value - that is, a string of the form rgb(r,g,b) where each of r, g, and b
3836    * are integers in the range [0,255].
3837    */
3838   getCSSIntegerRGB : function(){
3839
3840     // get the integer RGB components
3841     var rgb = this.getIntegerRGB();
3842
3843     // return the CSS RGB Color value
3844     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')';
3845
3846   },
3847
3848   /**
3849    * getCSSIntegerRGBA
3850    * @return {String} Returns a string representing this Color as a CSS integer RGBA Color
3851    * value - that is, a string of the form rgba(r,g,b,a) where each of r, g, and
3852    * b are integers in the range [0,255] and a is in the range [0,1].
3853    */
3854   getCSSIntegerRGBA : function(){
3855
3856     // get the integer RGB components
3857     var rgb = this.getIntegerRGB();
3858
3859     // return the CSS integer RGBA Color value
3860     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + rgb.a + ')';
3861
3862   },
3863
3864   /**
3865    * getCSSPercentageRGB
3866    * @return {String} a string representing this Color as a CSS percentage RGB Color
3867    * value - that is, a string of the form rgb(r%,g%,b%) where each of r, g, and
3868    * b are in the range [0,100].
3869    */
3870   getCSSPercentageRGB : function(){
3871
3872     // get the percentage RGB components
3873     var rgb = this.getPercentageRGB();
3874
3875     // return the CSS RGB Color value
3876     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%)';
3877
3878   },
3879
3880   /**
3881    * getCSSPercentageRGBA
3882    * @return {String} a string representing this Color as a CSS percentage RGBA Color
3883    * value - that is, a string of the form rgba(r%,g%,b%,a) where each of r, g,
3884    * and b are in the range [0,100] and a is in the range [0,1].
3885    */
3886   getCSSPercentageRGBA : function(){
3887
3888     // get the percentage RGB components
3889     var rgb = this.getPercentageRGB();
3890
3891     // return the CSS percentage RGBA Color value
3892     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%,' + rgb.a + ')';
3893
3894   },
3895
3896   /**
3897    * getCSSHSL
3898    * @return {String} a string representing this Color as a CSS HSL Color value - that
3899    * is, a string of the form hsl(h,s%,l%) where h is in the range [0,100] and
3900    * s and l are in the range [0,100].
3901    */
3902   getCSSHSL : function(){
3903
3904     // get the HSL components
3905     var hsl = this.getHSL();
3906
3907     // return the CSS HSL Color value
3908     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%)';
3909
3910   },
3911
3912   /**
3913    * getCSSHSLA
3914    * @return {String} a string representing this Color as a CSS HSLA Color value - that
3915    * is, a string of the form hsla(h,s%,l%,a) where h is in the range [0,100],
3916    * s and l are in the range [0,100], and a is in the range [0,1].
3917    */
3918   getCSSHSLA : function(){
3919
3920     // get the HSL components
3921     var hsl = this.getHSL();
3922
3923     // return the CSS HSL Color value
3924     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%,' + hsl.a + ')';
3925
3926   },
3927
3928   /**
3929    * Sets the Color of the specified node to this Color. This functions sets
3930    * the CSS 'color' property for the node. The parameter is:
3931    * 
3932    * @param {DomElement} node - the node whose Color should be set
3933    */
3934   setNodeColor : function(node){
3935
3936     // set the Color of the node
3937     node.style.color = this.getCSSHexadecimalRGB();
3938
3939   },
3940
3941   /**
3942    * Sets the background Color of the specified node to this Color. This
3943    * functions sets the CSS 'background-color' property for the node. The
3944    * parameter is:
3945    *
3946    * @param {DomElement} node - the node whose background Color should be set
3947    */
3948   setNodeBackgroundColor : function(node){
3949
3950     // set the background Color of the node
3951     node.style.backgroundColor = this.getCSSHexadecimalRGB();
3952
3953   },
3954   // convert between formats..
3955   toRGB: function()
3956   {
3957     var r = this.getIntegerRGB();
3958     return new Roo.lib.RGBColor(r.r,r.g,r.b,r.a);
3959     
3960   },
3961   toHSL : function()
3962   {
3963      var hsl = this.getHSL();
3964   // return the CSS HSL Color value
3965     return new Roo.lib.HSLColor(hsl.h,  hsl.s, hsl.l ,  hsl.a );
3966     
3967   },
3968   
3969   toHSV : function()
3970   {
3971     var rgb = this.toRGB();
3972     var hsv = rgb.getHSV();
3973    // return the CSS HSL Color value
3974     return new Roo.lib.HSVColor(hsv.h,  hsv.s, hsv.v ,  hsv.a );
3975     
3976   },
3977   
3978   // modify  v = 0 ... 1 (eg. 0.5)
3979   saturate : function(v)
3980   {
3981       var rgb = this.toRGB();
3982       var hsv = rgb.getHSV();
3983       return new Roo.lib.HSVColor(hsv.h,  hsv.s * v, hsv.v ,  hsv.a );
3984       
3985   
3986   },
3987   
3988    
3989   /**
3990    * getRGB
3991    * @return {Object} the RGB and alpha components of this Color as an object with r,
3992    * g, b, and a properties. r, g, and b are in the range [0,255] and a is in
3993    * the range [0,1].
3994    */
3995   getRGB: function(){
3996    
3997     // return the RGB components
3998     return {
3999       'r' : this.rgb.r,
4000       'g' : this.rgb.g,
4001       'b' : this.rgb.b,
4002       'a' : this.alpha
4003     };
4004
4005   },
4006
4007   /**
4008    * getHSV
4009    * @return {Object} the HSV and alpha components of this Color as an object with h,
4010    * s, v, and a properties. h is in the range [0,360), s and v are in the range
4011    * [0,100], and a is in the range [0,1].
4012    */
4013   getHSV : function()
4014   {
4015     
4016     // calculate the HSV components if necessary
4017     if (this.hsv == null) {
4018       this.calculateHSV();
4019     }
4020
4021     // return the HSV components
4022     return {
4023       'h' : this.hsv.h,
4024       's' : this.hsv.s,
4025       'v' : this.hsv.v,
4026       'a' : this.alpha
4027     };
4028
4029   },
4030
4031   /**
4032    * getHSL
4033    * @return {Object} the HSL and alpha components of this Color as an object with h,
4034    * s, l, and a properties. h is in the range [0,360), s and l are in the range
4035    * [0,100], and a is in the range [0,1].
4036    */
4037   getHSL : function(){
4038     
4039      
4040     // calculate the HSV components if necessary
4041     if (this.hsl == null) { this.calculateHSL(); }
4042
4043     // return the HSL components
4044     return {
4045       'h' : this.hsl.h,
4046       's' : this.hsl.s,
4047       'l' : this.hsl.l,
4048       'a' : this.alpha
4049     };
4050
4051   }
4052   
4053
4054 });
4055
4056
4057 /**
4058  * @class Roo.lib.RGBColor
4059  * @extends Roo.lib.Color
4060  * Creates a Color specified in the RGB Color space, with an optional alpha
4061  * component. The parameters are:
4062  * @constructor
4063  * 
4064
4065  * @param {Number} r - the red component, clipped to the range [0,255]
4066  * @param {Number} g - the green component, clipped to the range [0,255]
4067  * @param {Number} b - the blue component, clipped to the range [0,255]
4068  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4069  *     optional and defaults to 1
4070  */
4071 Roo.lib.RGBColor = function (r, g, b, a){
4072
4073   // store the alpha component after clipping it if necessary
4074   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4075
4076   // store the RGB components after clipping them if necessary
4077   this.rgb =
4078       {
4079         'r' : Math.max(0, Math.min(255, r)),
4080         'g' : Math.max(0, Math.min(255, g)),
4081         'b' : Math.max(0, Math.min(255, b))
4082       };
4083
4084   // initialise the HSV and HSL components to null
4085   
4086
4087   /* 
4088    * //private returns the HSV or HSL hue component of this RGBColor. The hue is in the
4089    * range [0,360). The parameters are:
4090    *
4091    * maximum - the maximum of the RGB component values
4092    * range   - the range of the RGB component values
4093    */
4094    
4095
4096 }
4097 // this does an 'exteds'
4098 Roo.extend(Roo.lib.RGBColor, Roo.lib.Color, {
4099
4100   
4101     getHue  : function(maximum, range)
4102     {
4103       var rgb = this.rgb;
4104        
4105       // check whether the range is zero
4106       if (range == 0){
4107   
4108         // set the hue to zero (any hue is acceptable as the Color is grey)
4109         var hue = 0;
4110   
4111       }else{
4112   
4113         // determine which of the components has the highest value and set the hue
4114         switch (maximum){
4115   
4116           // red has the highest value
4117           case rgb.r:
4118             var hue = (rgb.g - rgb.b) / range * 60;
4119             if (hue < 0) { hue += 360; }
4120             break;
4121   
4122           // green has the highest value
4123           case rgb.g:
4124             var hue = (rgb.b - rgb.r) / range * 60 + 120;
4125             break;
4126   
4127           // blue has the highest value
4128           case rgb.b:
4129             var hue = (rgb.r - rgb.g) / range * 60 + 240;
4130             break;
4131   
4132         }
4133   
4134       }
4135   
4136       // return the hue
4137       return hue;
4138   
4139     },
4140
4141   /* //private Calculates and stores the HSV components of this RGBColor so that they can
4142    * be returned be the getHSV function.
4143    */
4144    calculateHSV : function(){
4145     var rgb = this.rgb;
4146     // get the maximum and range of the RGB component values
4147     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4148     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4149
4150     // store the HSV components
4151     this.hsv =
4152         {
4153           'h' : this.getHue(maximum, range),
4154           's' : (maximum == 0 ? 0 : 100 * range / maximum),
4155           'v' : maximum / 2.55
4156         };
4157
4158   },
4159
4160   /* //private Calculates and stores the HSL components of this RGBColor so that they can
4161    * be returned be the getHSL function.
4162    */
4163    calculateHSL : function(){
4164     var rgb = this.rgb;
4165     // get the maximum and range of the RGB component values
4166     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4167     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4168
4169     // determine the lightness in the range [0,1]
4170     var l = maximum / 255 - range / 510;
4171
4172     // store the HSL components
4173     this.hsl =
4174         {
4175           'h' : this.getHue(maximum, range),
4176           's' : (range == 0 ? 0 : range / 2.55 / (l < 0.5 ? l * 2 : 2 - l * 2)),
4177           'l' : 100 * l
4178         };
4179
4180   }
4181
4182 });
4183
4184 /**
4185  * @class Roo.lib.HSVColor
4186  * @extends Roo.lib.Color
4187  * Creates a Color specified in the HSV Color space, with an optional alpha
4188  * component. The parameters are:
4189  * @constructor
4190  *
4191  * @param {Number} h - the hue component, wrapped to the range [0,360)
4192  * @param {Number} s - the saturation component, clipped to the range [0,100]
4193  * @param {Number} v - the value component, clipped to the range [0,100]
4194  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4195  *     optional and defaults to 1
4196  */
4197 Roo.lib.HSVColor = function (h, s, v, a){
4198
4199   // store the alpha component after clipping it if necessary
4200   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4201
4202   // store the HSV components after clipping or wrapping them if necessary
4203   this.hsv =
4204       {
4205         'h' : (h % 360 + 360) % 360,
4206         's' : Math.max(0, Math.min(100, s)),
4207         'v' : Math.max(0, Math.min(100, v))
4208       };
4209
4210   // initialise the RGB and HSL components to null
4211   this.rgb = null;
4212   this.hsl = null;
4213 }
4214
4215 Roo.extend(Roo.lib.HSVColor, Roo.lib.Color, {
4216   /* Calculates and stores the RGB components of this HSVColor so that they can
4217    * be returned be the getRGB function.
4218    */
4219   calculateRGB: function ()
4220   {
4221     var hsv = this.hsv;
4222     // check whether the saturation is zero
4223     if (hsv.s == 0){
4224
4225       // set the Color to the appropriate shade of grey
4226       var r = hsv.v;
4227       var g = hsv.v;
4228       var b = hsv.v;
4229
4230     }else{
4231
4232       // set some temporary values
4233       var f  = hsv.h / 60 - Math.floor(hsv.h / 60);
4234       var p  = hsv.v * (1 - hsv.s / 100);
4235       var q  = hsv.v * (1 - hsv.s / 100 * f);
4236       var t  = hsv.v * (1 - hsv.s / 100 * (1 - f));
4237
4238       // set the RGB Color components to their temporary values
4239       switch (Math.floor(hsv.h / 60)){
4240         case 0: var r = hsv.v; var g = t; var b = p; break;
4241         case 1: var r = q; var g = hsv.v; var b = p; break;
4242         case 2: var r = p; var g = hsv.v; var b = t; break;
4243         case 3: var r = p; var g = q; var b = hsv.v; break;
4244         case 4: var r = t; var g = p; var b = hsv.v; break;
4245         case 5: var r = hsv.v; var g = p; var b = q; break;
4246       }
4247
4248     }
4249
4250     // store the RGB components
4251     this.rgb =
4252         {
4253           'r' : r * 2.55,
4254           'g' : g * 2.55,
4255           'b' : b * 2.55
4256         };
4257
4258   },
4259
4260   /* Calculates and stores the HSL components of this HSVColor so that they can
4261    * be returned be the getHSL function.
4262    */
4263   calculateHSL : function (){
4264
4265     var hsv = this.hsv;
4266     // determine the lightness in the range [0,100]
4267     var l = (2 - hsv.s / 100) * hsv.v / 2;
4268
4269     // store the HSL components
4270     this.hsl =
4271         {
4272           'h' : hsv.h,
4273           's' : hsv.s * hsv.v / (l < 50 ? l * 2 : 200 - l * 2),
4274           'l' : l
4275         };
4276
4277     // correct a division-by-zero error
4278     if (isNaN(hsl.s)) { hsl.s = 0; }
4279
4280   } 
4281  
4282
4283 });
4284  
4285
4286 /**
4287  * @class Roo.lib.HSLColor
4288  * @extends Roo.lib.Color
4289  *
4290  * @constructor
4291  * Creates a Color specified in the HSL Color space, with an optional alpha
4292  * component. The parameters are:
4293  *
4294  * @param {Number} h - the hue component, wrapped to the range [0,360)
4295  * @param {Number} s - the saturation component, clipped to the range [0,100]
4296  * @param {Number} l - the lightness component, clipped to the range [0,100]
4297  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4298  *     optional and defaults to 1
4299  */
4300
4301 Roo.lib.HSLColor = function(h, s, l, a){
4302
4303   // store the alpha component after clipping it if necessary
4304   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4305
4306   // store the HSL components after clipping or wrapping them if necessary
4307   this.hsl =
4308       {
4309         'h' : (h % 360 + 360) % 360,
4310         's' : Math.max(0, Math.min(100, s)),
4311         'l' : Math.max(0, Math.min(100, l))
4312       };
4313
4314   // initialise the RGB and HSV components to null
4315 }
4316
4317 Roo.extend(Roo.lib.HSLColor, Roo.lib.Color, {
4318
4319   /* Calculates and stores the RGB components of this HSLColor so that they can
4320    * be returned be the getRGB function.
4321    */
4322   calculateRGB: function (){
4323
4324     // check whether the saturation is zero
4325     if (this.hsl.s == 0){
4326
4327       // store the RGB components representing the appropriate shade of grey
4328       this.rgb =
4329           {
4330             'r' : this.hsl.l * 2.55,
4331             'g' : this.hsl.l * 2.55,
4332             'b' : this.hsl.l * 2.55
4333           };
4334
4335     }else{
4336
4337       // set some temporary values
4338       var p = this.hsl.l < 50
4339             ? this.hsl.l * (1 + hsl.s / 100)
4340             : this.hsl.l + hsl.s - hsl.l * hsl.s / 100;
4341       var q = 2 * hsl.l - p;
4342
4343       // initialise the RGB components
4344       this.rgb =
4345           {
4346             'r' : (h + 120) / 60 % 6,
4347             'g' : h / 60,
4348             'b' : (h + 240) / 60 % 6
4349           };
4350
4351       // loop over the RGB components
4352       for (var key in this.rgb){
4353
4354         // ensure that the property is not inherited from the root object
4355         if (this.rgb.hasOwnProperty(key)){
4356
4357           // set the component to its value in the range [0,100]
4358           if (this.rgb[key] < 1){
4359             this.rgb[key] = q + (p - q) * this.rgb[key];
4360           }else if (this.rgb[key] < 3){
4361             this.rgb[key] = p;
4362           }else if (this.rgb[key] < 4){
4363             this.rgb[key] = q + (p - q) * (4 - this.rgb[key]);
4364           }else{
4365             this.rgb[key] = q;
4366           }
4367
4368           // set the component to its value in the range [0,255]
4369           this.rgb[key] *= 2.55;
4370
4371         }
4372
4373       }
4374
4375     }
4376
4377   },
4378
4379   /* Calculates and stores the HSV components of this HSLColor so that they can
4380    * be returned be the getHSL function.
4381    */
4382    calculateHSV : function(){
4383
4384     // set a temporary value
4385     var t = this.hsl.s * (this.hsl.l < 50 ? this.hsl.l : 100 - this.hsl.l) / 100;
4386
4387     // store the HSV components
4388     this.hsv =
4389         {
4390           'h' : this.hsl.h,
4391           's' : 200 * t / (this.hsl.l + t),
4392           'v' : t + this.hsl.l
4393         };
4394
4395     // correct a division-by-zero error
4396     if (isNaN(this.hsv.s)) { this.hsv.s = 0; }
4397
4398   }
4399  
4400
4401 });
4402 /*
4403  * Portions of this file are based on pieces of Yahoo User Interface Library
4404  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4405  * YUI licensed under the BSD License:
4406  * http://developer.yahoo.net/yui/license.txt
4407  * <script type="text/javascript">
4408  *
4409  */
4410 (function() {
4411
4412     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
4413         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
4414     };
4415
4416     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
4417
4418     var fly = Roo.lib.AnimBase.fly;
4419     var Y = Roo.lib;
4420     var superclass = Y.ColorAnim.superclass;
4421     var proto = Y.ColorAnim.prototype;
4422
4423     proto.toString = function() {
4424         var el = this.getEl();
4425         var id = el.id || el.tagName;
4426         return ("ColorAnim " + id);
4427     };
4428
4429     proto.patterns.color = /color$/i;
4430     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
4431     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
4432     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
4433     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
4434
4435
4436     proto.parseColor = function(s) {
4437         if (s.length == 3) {
4438             return s;
4439         }
4440
4441         var c = this.patterns.hex.exec(s);
4442         if (c && c.length == 4) {
4443             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
4444         }
4445
4446         c = this.patterns.rgb.exec(s);
4447         if (c && c.length == 4) {
4448             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
4449         }
4450
4451         c = this.patterns.hex3.exec(s);
4452         if (c && c.length == 4) {
4453             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
4454         }
4455
4456         return null;
4457     };
4458     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
4459     proto.getAttribute = function(attr) {
4460         var el = this.getEl();
4461         if (this.patterns.color.test(attr)) {
4462             var val = fly(el).getStyle(attr);
4463
4464             if (this.patterns.transparent.test(val)) {
4465                 var parent = el.parentNode;
4466                 val = fly(parent).getStyle(attr);
4467
4468                 while (parent && this.patterns.transparent.test(val)) {
4469                     parent = parent.parentNode;
4470                     val = fly(parent).getStyle(attr);
4471                     if (parent.tagName.toUpperCase() == 'HTML') {
4472                         val = '#fff';
4473                     }
4474                 }
4475             }
4476         } else {
4477             val = superclass.getAttribute.call(this, attr);
4478         }
4479
4480         return val;
4481     };
4482     proto.getAttribute = function(attr) {
4483         var el = this.getEl();
4484         if (this.patterns.color.test(attr)) {
4485             var val = fly(el).getStyle(attr);
4486
4487             if (this.patterns.transparent.test(val)) {
4488                 var parent = el.parentNode;
4489                 val = fly(parent).getStyle(attr);
4490
4491                 while (parent && this.patterns.transparent.test(val)) {
4492                     parent = parent.parentNode;
4493                     val = fly(parent).getStyle(attr);
4494                     if (parent.tagName.toUpperCase() == 'HTML') {
4495                         val = '#fff';
4496                     }
4497                 }
4498             }
4499         } else {
4500             val = superclass.getAttribute.call(this, attr);
4501         }
4502
4503         return val;
4504     };
4505
4506     proto.doMethod = function(attr, start, end) {
4507         var val;
4508
4509         if (this.patterns.color.test(attr)) {
4510             val = [];
4511             for (var i = 0, len = start.length; i < len; ++i) {
4512                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
4513             }
4514
4515             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
4516         }
4517         else {
4518             val = superclass.doMethod.call(this, attr, start, end);
4519         }
4520
4521         return val;
4522     };
4523
4524     proto.setRuntimeAttribute = function(attr) {
4525         superclass.setRuntimeAttribute.call(this, attr);
4526
4527         if (this.patterns.color.test(attr)) {
4528             var attributes = this.attributes;
4529             var start = this.parseColor(this.runtimeAttributes[attr].start);
4530             var end = this.parseColor(this.runtimeAttributes[attr].end);
4531
4532             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
4533                 end = this.parseColor(attributes[attr].by);
4534
4535                 for (var i = 0, len = start.length; i < len; ++i) {
4536                     end[i] = start[i] + end[i];
4537                 }
4538             }
4539
4540             this.runtimeAttributes[attr].start = start;
4541             this.runtimeAttributes[attr].end = end;
4542         }
4543     };
4544 })();
4545
4546 /*
4547  * Portions of this file are based on pieces of Yahoo User Interface Library
4548  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4549  * YUI licensed under the BSD License:
4550  * http://developer.yahoo.net/yui/license.txt
4551  * <script type="text/javascript">
4552  *
4553  */
4554 Roo.lib.Easing = {
4555
4556
4557     easeNone: function (t, b, c, d) {
4558         return c * t / d + b;
4559     },
4560
4561
4562     easeIn: function (t, b, c, d) {
4563         return c * (t /= d) * t + b;
4564     },
4565
4566
4567     easeOut: function (t, b, c, d) {
4568         return -c * (t /= d) * (t - 2) + b;
4569     },
4570
4571
4572     easeBoth: function (t, b, c, d) {
4573         if ((t /= d / 2) < 1) {
4574             return c / 2 * t * t + b;
4575         }
4576
4577         return -c / 2 * ((--t) * (t - 2) - 1) + b;
4578     },
4579
4580
4581     easeInStrong: function (t, b, c, d) {
4582         return c * (t /= d) * t * t * t + b;
4583     },
4584
4585
4586     easeOutStrong: function (t, b, c, d) {
4587         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
4588     },
4589
4590
4591     easeBothStrong: function (t, b, c, d) {
4592         if ((t /= d / 2) < 1) {
4593             return c / 2 * t * t * t * t + b;
4594         }
4595
4596         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
4597     },
4598
4599
4600
4601     elasticIn: function (t, b, c, d, a, p) {
4602         if (t == 0) {
4603             return b;
4604         }
4605         if ((t /= d) == 1) {
4606             return b + c;
4607         }
4608         if (!p) {
4609             p = d * .3;
4610         }
4611
4612         if (!a || a < Math.abs(c)) {
4613             a = c;
4614             var s = p / 4;
4615         }
4616         else {
4617             var s = p / (2 * Math.PI) * Math.asin(c / a);
4618         }
4619
4620         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4621     },
4622
4623
4624     elasticOut: function (t, b, c, d, a, p) {
4625         if (t == 0) {
4626             return b;
4627         }
4628         if ((t /= d) == 1) {
4629             return b + c;
4630         }
4631         if (!p) {
4632             p = d * .3;
4633         }
4634
4635         if (!a || a < Math.abs(c)) {
4636             a = c;
4637             var s = p / 4;
4638         }
4639         else {
4640             var s = p / (2 * Math.PI) * Math.asin(c / a);
4641         }
4642
4643         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
4644     },
4645
4646
4647     elasticBoth: function (t, b, c, d, a, p) {
4648         if (t == 0) {
4649             return b;
4650         }
4651
4652         if ((t /= d / 2) == 2) {
4653             return b + c;
4654         }
4655
4656         if (!p) {
4657             p = d * (.3 * 1.5);
4658         }
4659
4660         if (!a || a < Math.abs(c)) {
4661             a = c;
4662             var s = p / 4;
4663         }
4664         else {
4665             var s = p / (2 * Math.PI) * Math.asin(c / a);
4666         }
4667
4668         if (t < 1) {
4669             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
4670                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4671         }
4672         return a * Math.pow(2, -10 * (t -= 1)) *
4673                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
4674     },
4675
4676
4677
4678     backIn: function (t, b, c, d, s) {
4679         if (typeof s == 'undefined') {
4680             s = 1.70158;
4681         }
4682         return c * (t /= d) * t * ((s + 1) * t - s) + b;
4683     },
4684
4685
4686     backOut: function (t, b, c, d, s) {
4687         if (typeof s == 'undefined') {
4688             s = 1.70158;
4689         }
4690         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
4691     },
4692
4693
4694     backBoth: function (t, b, c, d, s) {
4695         if (typeof s == 'undefined') {
4696             s = 1.70158;
4697         }
4698
4699         if ((t /= d / 2 ) < 1) {
4700             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
4701         }
4702         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
4703     },
4704
4705
4706     bounceIn: function (t, b, c, d) {
4707         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
4708     },
4709
4710
4711     bounceOut: function (t, b, c, d) {
4712         if ((t /= d) < (1 / 2.75)) {
4713             return c * (7.5625 * t * t) + b;
4714         } else if (t < (2 / 2.75)) {
4715             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
4716         } else if (t < (2.5 / 2.75)) {
4717             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
4718         }
4719         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
4720     },
4721
4722
4723     bounceBoth: function (t, b, c, d) {
4724         if (t < d / 2) {
4725             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
4726         }
4727         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
4728     }
4729 };/*
4730  * Portions of this file are based on pieces of Yahoo User Interface Library
4731  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4732  * YUI licensed under the BSD License:
4733  * http://developer.yahoo.net/yui/license.txt
4734  * <script type="text/javascript">
4735  *
4736  */
4737     (function() {
4738         Roo.lib.Motion = function(el, attributes, duration, method) {
4739             if (el) {
4740                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
4741             }
4742         };
4743
4744         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
4745
4746
4747         var Y = Roo.lib;
4748         var superclass = Y.Motion.superclass;
4749         var proto = Y.Motion.prototype;
4750
4751         proto.toString = function() {
4752             var el = this.getEl();
4753             var id = el.id || el.tagName;
4754             return ("Motion " + id);
4755         };
4756
4757         proto.patterns.points = /^points$/i;
4758
4759         proto.setAttribute = function(attr, val, unit) {
4760             if (this.patterns.points.test(attr)) {
4761                 unit = unit || 'px';
4762                 superclass.setAttribute.call(this, 'left', val[0], unit);
4763                 superclass.setAttribute.call(this, 'top', val[1], unit);
4764             } else {
4765                 superclass.setAttribute.call(this, attr, val, unit);
4766             }
4767         };
4768
4769         proto.getAttribute = function(attr) {
4770             if (this.patterns.points.test(attr)) {
4771                 var val = [
4772                         superclass.getAttribute.call(this, 'left'),
4773                         superclass.getAttribute.call(this, 'top')
4774                         ];
4775             } else {
4776                 val = superclass.getAttribute.call(this, attr);
4777             }
4778
4779             return val;
4780         };
4781
4782         proto.doMethod = function(attr, start, end) {
4783             var val = null;
4784
4785             if (this.patterns.points.test(attr)) {
4786                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4787                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4788             } else {
4789                 val = superclass.doMethod.call(this, attr, start, end);
4790             }
4791             return val;
4792         };
4793
4794         proto.setRuntimeAttribute = function(attr) {
4795             if (this.patterns.points.test(attr)) {
4796                 var el = this.getEl();
4797                 var attributes = this.attributes;
4798                 var start;
4799                 var control = attributes['points']['control'] || [];
4800                 var end;
4801                 var i, len;
4802
4803                 if (control.length > 0 && !(control[0] instanceof Array)) {
4804                     control = [control];
4805                 } else {
4806                     var tmp = [];
4807                     for (i = 0,len = control.length; i < len; ++i) {
4808                         tmp[i] = control[i];
4809                     }
4810                     control = tmp;
4811                 }
4812
4813                 Roo.fly(el).position();
4814
4815                 if (isset(attributes['points']['from'])) {
4816                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4817                 }
4818                 else {
4819                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4820                 }
4821
4822                 start = this.getAttribute('points');
4823
4824
4825                 if (isset(attributes['points']['to'])) {
4826                     end = translateValues.call(this, attributes['points']['to'], start);
4827
4828                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4829                     for (i = 0,len = control.length; i < len; ++i) {
4830                         control[i] = translateValues.call(this, control[i], start);
4831                     }
4832
4833
4834                 } else if (isset(attributes['points']['by'])) {
4835                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4836
4837                     for (i = 0,len = control.length; i < len; ++i) {
4838                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4839                     }
4840                 }
4841
4842                 this.runtimeAttributes[attr] = [start];
4843
4844                 if (control.length > 0) {
4845                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4846                 }
4847
4848                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4849             }
4850             else {
4851                 superclass.setRuntimeAttribute.call(this, attr);
4852             }
4853         };
4854
4855         var translateValues = function(val, start) {
4856             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4857             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4858
4859             return val;
4860         };
4861
4862         var isset = function(prop) {
4863             return (typeof prop !== 'undefined');
4864         };
4865     })();
4866 /*
4867  * Portions of this file are based on pieces of Yahoo User Interface Library
4868  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4869  * YUI licensed under the BSD License:
4870  * http://developer.yahoo.net/yui/license.txt
4871  * <script type="text/javascript">
4872  *
4873  */
4874     (function() {
4875         Roo.lib.Scroll = function(el, attributes, duration, method) {
4876             if (el) {
4877                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4878             }
4879         };
4880
4881         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4882
4883
4884         var Y = Roo.lib;
4885         var superclass = Y.Scroll.superclass;
4886         var proto = Y.Scroll.prototype;
4887
4888         proto.toString = function() {
4889             var el = this.getEl();
4890             var id = el.id || el.tagName;
4891             return ("Scroll " + id);
4892         };
4893
4894         proto.doMethod = function(attr, start, end) {
4895             var val = null;
4896
4897             if (attr == 'scroll') {
4898                 val = [
4899                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4900                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4901                         ];
4902
4903             } else {
4904                 val = superclass.doMethod.call(this, attr, start, end);
4905             }
4906             return val;
4907         };
4908
4909         proto.getAttribute = function(attr) {
4910             var val = null;
4911             var el = this.getEl();
4912
4913             if (attr == 'scroll') {
4914                 val = [ el.scrollLeft, el.scrollTop ];
4915             } else {
4916                 val = superclass.getAttribute.call(this, attr);
4917             }
4918
4919             return val;
4920         };
4921
4922         proto.setAttribute = function(attr, val, unit) {
4923             var el = this.getEl();
4924
4925             if (attr == 'scroll') {
4926                 el.scrollLeft = val[0];
4927                 el.scrollTop = val[1];
4928             } else {
4929                 superclass.setAttribute.call(this, attr, val, unit);
4930             }
4931         };
4932     })();
4933 /**
4934  * Originally based of this code... - refactored for Roo...
4935  * https://github.com/aaalsaleh/undo-manager
4936  
4937  * undo-manager.js
4938  * @author  Abdulrahman Alsaleh 
4939  * @copyright 2015 Abdulrahman Alsaleh 
4940  * @license  MIT License (c) 
4941  *
4942  * Hackily modifyed by alan@roojs.com
4943  *
4944  *
4945  *  
4946  *
4947  *  TOTALLY UNTESTED...
4948  *
4949  *  Documentation to be done....
4950  */
4951  
4952
4953 /**
4954 * @class Roo.lib.UndoManager
4955 * An undo manager implementation in JavaScript. It follows the W3C UndoManager and DOM Transaction
4956 * Draft and the undocumented and disabled Mozilla Firefox's UndoManager implementation.
4957
4958  * Usage:
4959  * <pre><code>
4960
4961
4962 editor.undoManager = new Roo.lib.UndoManager(1000, editor);
4963  
4964 </code></pre>
4965
4966 * For more information see this blog post with examples:
4967 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4968      - Create Elements using DOM, HTML fragments and Templates</a>. 
4969 * @constructor
4970 * @param {Number} limit how far back to go ... use 1000?
4971 * @param {Object} scope usually use document..
4972 */
4973
4974 Roo.lib.UndoManager = function (limit, undoScopeHost)
4975 {
4976     this.stack = [];
4977     this.limit = limit;
4978     this.scope = undoScopeHost;
4979     this.fireEvent = typeof CustomEvent != 'undefined' && undoScopeHost && undoScopeHost.dispatchEvent;
4980     if (this.fireEvent) {
4981         this.bindEvents();
4982     }
4983     this.reset();
4984     
4985 };
4986         
4987 Roo.lib.UndoManager.prototype = {
4988     
4989     limit : false,
4990     stack : false,
4991     scope :  false,
4992     fireEvent : false,
4993     position : 0,
4994     length : 0,
4995     
4996     
4997      /**
4998      * To push and execute a transaction, the method undoManager.transact
4999      * must be called by passing a transaction object as the first argument, and a merge
5000      * flag as the second argument. A transaction object has the following properties:
5001      *
5002      * Usage:
5003 <pre><code>
5004 undoManager.transact({
5005     label: 'Typing',
5006     execute: function() { ... },
5007     undo: function() { ... },
5008     // redo same as execute
5009     redo: function() { this.execute(); }
5010 }, false);
5011
5012 // merge transaction
5013 undoManager.transact({
5014     label: 'Typing',
5015     execute: function() { ... },  // this will be run...
5016     undo: function() { ... }, // what to do when undo is run.
5017     // redo same as execute
5018     redo: function() { this.execute(); }
5019 }, true); 
5020 </code></pre> 
5021      *
5022      * 
5023      * @param {Object} transaction The transaction to add to the stack.
5024      * @return {String} The HTML fragment
5025      */
5026     
5027     
5028     transact : function (transaction, merge)
5029     {
5030         if (arguments.length < 2) {
5031             throw new TypeError('Not enough arguments to UndoManager.transact.');
5032         }
5033
5034         transaction.execute();
5035
5036         this.stack.splice(0, this.position);
5037         if (merge && this.length) {
5038             this.stack[0].push(transaction);
5039         } else {
5040             this.stack.unshift([transaction]);
5041         }
5042     
5043         this.position = 0;
5044
5045         if (this.limit && this.stack.length > this.limit) {
5046             this.length = this.stack.length = this.limit;
5047         } else {
5048             this.length = this.stack.length;
5049         }
5050
5051         if (this.fireEvent) {
5052             this.scope.dispatchEvent(
5053                 new CustomEvent('DOMTransaction', {
5054                     detail: {
5055                         transactions: this.stack[0].slice()
5056                     },
5057                     bubbles: true,
5058                     cancelable: false
5059                 })
5060             );
5061         }
5062         
5063         //Roo.log("transaction: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5064       
5065         
5066     },
5067
5068     undo : function ()
5069     {
5070         //Roo.log("undo: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5071         
5072         if (this.position < this.length) {
5073             for (var i = this.stack[this.position].length - 1; i >= 0; i--) {
5074                 this.stack[this.position][i].undo();
5075             }
5076             this.position++;
5077
5078             if (this.fireEvent) {
5079                 this.scope.dispatchEvent(
5080                     new CustomEvent('undo', {
5081                         detail: {
5082                             transactions: this.stack[this.position - 1].slice()
5083                         },
5084                         bubbles: true,
5085                         cancelable: false
5086                     })
5087                 );
5088             }
5089         }
5090     },
5091
5092     redo : function ()
5093     {
5094         if (this.position > 0) {
5095             for (var i = 0, n = this.stack[this.position - 1].length; i < n; i++) {
5096                 this.stack[this.position - 1][i].redo();
5097             }
5098             this.position--;
5099
5100             if (this.fireEvent) {
5101                 this.scope.dispatchEvent(
5102                     new CustomEvent('redo', {
5103                         detail: {
5104                             transactions: this.stack[this.position].slice()
5105                         },
5106                         bubbles: true,
5107                         cancelable: false
5108                     })
5109                 );
5110             }
5111         }
5112     },
5113
5114     item : function (index)
5115     {
5116         if (index >= 0 && index < this.length) {
5117             return this.stack[index].slice();
5118         }
5119         return null;
5120     },
5121
5122     clearUndo : function () {
5123         this.stack.length = this.length = this.position;
5124     },
5125
5126     clearRedo : function () {
5127         this.stack.splice(0, this.position);
5128         this.position = 0;
5129         this.length = this.stack.length;
5130     },
5131     /**
5132      * Reset the undo - probaly done on load to clear all history.
5133      */
5134     reset : function()
5135     {
5136         this.stack = [];
5137         this.position = 0;
5138         this.length = 0;
5139         this.current_html = this.scope.innerHTML;
5140         if (this.timer !== false) {
5141             clearTimeout(this.timer);
5142         }
5143         this.timer = false;
5144         this.merge = false;
5145         this.addEvent();
5146         
5147     },
5148     current_html : '',
5149     timer : false,
5150     merge : false,
5151     
5152     
5153     // this will handle the undo/redo on the element.?
5154     bindEvents : function()
5155     {
5156         var el  = this.scope;
5157         el.undoManager = this;
5158         
5159         
5160         this.scope.addEventListener('keydown', function(e) {
5161             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5162                 if (e.shiftKey) {
5163                     el.undoManager.redo(); // Ctrl/Command + Shift + Z
5164                 } else {
5165                     el.undoManager.undo(); // Ctrl/Command + Z
5166                 }
5167         
5168                 e.preventDefault();
5169             }
5170         });
5171         /// ignore keyup..
5172         this.scope.addEventListener('keyup', function(e) {
5173             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5174                 e.preventDefault();
5175             }
5176         });
5177         
5178         
5179         
5180         var t = this;
5181         
5182         el.addEventListener('input', function(e) {
5183             if(el.innerHTML == t.current_html) {
5184                 return;
5185             }
5186             // only record events every second.
5187             if (t.timer !== false) {
5188                clearTimeout(t.timer);
5189                t.timer = false;
5190             }
5191             t.timer = setTimeout(function() { t.merge = false; }, 1000);
5192             
5193             t.addEvent(t.merge);
5194             t.merge = true; // ignore changes happening every second..
5195         });
5196         },
5197     /**
5198      * Manually add an event.
5199      * Normall called without arguements - and it will just get added to the stack.
5200      * 
5201      */
5202     
5203     addEvent : function(merge)
5204     {
5205         //Roo.log("undomanager +" + (merge ? 'Y':'n'));
5206         // not sure if this should clear the timer 
5207         merge = typeof(merge) == 'undefined' ? false : merge; 
5208         
5209         this.scope.undoManager.transact({
5210             scope : this.scope,
5211             oldHTML: this.current_html,
5212             newHTML: this.scope.innerHTML,
5213             // nothing to execute (content already changed when input is fired)
5214             execute: function() { },
5215             undo: function() {
5216                 this.scope.innerHTML = this.current_html = this.oldHTML;
5217             },
5218             redo: function() {
5219                 this.scope.innerHTML = this.current_html = this.newHTML;
5220             }
5221         }, false); //merge);
5222         
5223         this.merge = merge;
5224         
5225         this.current_html = this.scope.innerHTML;
5226     }
5227     
5228     
5229      
5230     
5231     
5232     
5233 };
5234 /**
5235  * @class Roo.lib.Range
5236  * @constructor
5237  * This is a toolkit, normally used to copy features into a Dom Range element
5238  * Roo.lib.Range.wrap(x);
5239  *
5240  *
5241  *
5242  */
5243 Roo.lib.Range = function() { };
5244
5245 /**
5246  * Wrap a Dom Range object, to give it new features...
5247  * @static
5248  * @param {Range} the range to wrap
5249  */
5250 Roo.lib.Range.wrap = function(r) {
5251     return Roo.apply(r, Roo.lib.Range.prototype);
5252 };
5253 /**
5254  * find a parent node eg. LI / OL
5255  * @param {string|Array} node name or array of nodenames
5256  * @return {DomElement|false}
5257  */
5258 Roo.apply(Roo.lib.Range.prototype,
5259 {
5260     
5261     closest : function(str)
5262     {
5263         if (typeof(str) != 'string') {
5264             // assume it's a array.
5265             for(var i = 0;i < str.length;i++) {
5266                 var r = this.closest(str[i]);
5267                 if (r !== false) {
5268                     return r;
5269                 }
5270                 
5271             }
5272             return false;
5273         }
5274         str = str.toLowerCase();
5275         var n = this.commonAncestorContainer; // might not be a node
5276         while (n.nodeType != 1) {
5277             n = n.parentNode;
5278         }
5279         
5280         if (n.nodeName.toLowerCase() == str ) {
5281             return n;
5282         }
5283         if (n.nodeName.toLowerCase() == 'body') {
5284             return false;
5285         }
5286             
5287         return n.closest(str) || false;
5288         
5289     },
5290     cloneRange : function()
5291     {
5292         return Roo.lib.Range.wrap(Range.prototype.cloneRange.call(this));
5293     }
5294 });/**
5295  * @class Roo.lib.Selection
5296  * @constructor
5297  * This is a toolkit, normally used to copy features into a Dom Selection element
5298  * Roo.lib.Selection.wrap(x);
5299  *
5300  *
5301  *
5302  */
5303 Roo.lib.Selection = function() { };
5304
5305 /**
5306  * Wrap a Dom Range object, to give it new features...
5307  * @static
5308  * @param {Range} the range to wrap
5309  */
5310 Roo.lib.Selection.wrap = function(r, doc) {
5311     Roo.apply(r, Roo.lib.Selection.prototype);
5312     r.ownerDocument = doc; // usefull so we dont have to keep referening to it.
5313     return r;
5314 };
5315 /**
5316  * find a parent node eg. LI / OL
5317  * @param {string|Array} node name or array of nodenames
5318  * @return {DomElement|false}
5319  */
5320 Roo.apply(Roo.lib.Selection.prototype,
5321 {
5322     /**
5323      * the owner document
5324      */
5325     ownerDocument : false,
5326     
5327     getRangeAt : function(n)
5328     {
5329         return Roo.lib.Range.wrap(Selection.prototype.getRangeAt.call(this,n));
5330     },
5331     
5332     /**
5333      * insert node at selection 
5334      * @param {DomElement|string} node
5335      * @param {string} cursor (after|in|none) where to place the cursor after inserting.
5336      */
5337     insertNode: function(node, cursor)
5338     {
5339         if (typeof(node) == 'string') {
5340             node = this.ownerDocument.createElement(node);
5341             if (cursor == 'in') {
5342                 node.innerHTML = '&nbsp;';
5343             }
5344         }
5345         
5346         var range = this.getRangeAt(0);
5347         
5348         if (this.type != 'Caret') {
5349             range.deleteContents();
5350         }
5351         var sn = node.childNodes[0]; // select the contents.
5352
5353         
5354         
5355         range.insertNode(node);
5356         if (cursor == 'after') {
5357             node.insertAdjacentHTML('afterend', '&nbsp;');
5358             sn = node.nextSibling;
5359         }
5360         
5361         if (cursor == 'none') {
5362             return;
5363         }
5364         
5365         this.cursorText(sn);
5366     },
5367     
5368     cursorText : function(n)
5369     {
5370        
5371         //var range = this.getRangeAt(0);
5372         range = Roo.lib.Range.wrap(new Range());
5373         //range.selectNode(n);
5374         
5375         var ix = Array.from(n.parentNode.childNodes).indexOf(n);
5376         range.setStart(n.parentNode,ix);
5377         range.setEnd(n.parentNode,ix+1);
5378         //range.collapse(false);
5379          
5380         this.removeAllRanges();
5381         this.addRange(range);
5382         
5383         Roo.log([n, range, this,this.baseOffset,this.extentOffset, this.type]);
5384     },
5385     cursorAfter : function(n)
5386     {
5387         if (!n.nextSibling || n.nextSibling.nodeValue != '&nbsp;') {
5388             n.insertAdjacentHTML('afterend', '&nbsp;');
5389         }
5390         this.cursorText (n.nextSibling);
5391     }
5392         
5393     
5394 });/*
5395  * Based on:
5396  * Ext JS Library 1.1.1
5397  * Copyright(c) 2006-2007, Ext JS, LLC.
5398  *
5399  * Originally Released Under LGPL - original licence link has changed is not relivant.
5400  *
5401  * Fork - LGPL
5402  * <script type="text/javascript">
5403  */
5404
5405
5406 // nasty IE9 hack - what a pile of crap that is..
5407
5408  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
5409     Range.prototype.createContextualFragment = function (html) {
5410         var doc = window.document;
5411         var container = doc.createElement("div");
5412         container.innerHTML = html;
5413         var frag = doc.createDocumentFragment(), n;
5414         while ((n = container.firstChild)) {
5415             frag.appendChild(n);
5416         }
5417         return frag;
5418     };
5419 }
5420
5421 /**
5422  * @class Roo.DomHelper
5423  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
5424  * 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>.
5425  * @static
5426  */
5427 Roo.DomHelper = function(){
5428     var tempTableEl = null;
5429     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
5430     var tableRe = /^table|tbody|tr|td$/i;
5431     var xmlns = {};
5432     // build as innerHTML where available
5433     /** @ignore */
5434     var createHtml = function(o){
5435         if(typeof o == 'string'){
5436             return o;
5437         }
5438         var b = "";
5439         if(!o.tag){
5440             o.tag = "div";
5441         }
5442         b += "<" + o.tag;
5443         for(var attr in o){
5444             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
5445             if(attr == "style"){
5446                 var s = o["style"];
5447                 if(typeof s == "function"){
5448                     s = s.call();
5449                 }
5450                 if(typeof s == "string"){
5451                     b += ' style="' + s + '"';
5452                 }else if(typeof s == "object"){
5453                     b += ' style="';
5454                     for(var key in s){
5455                         if(typeof s[key] != "function"){
5456                             b += key + ":" + s[key] + ";";
5457                         }
5458                     }
5459                     b += '"';
5460                 }
5461             }else{
5462                 if(attr == "cls"){
5463                     b += ' class="' + o["cls"] + '"';
5464                 }else if(attr == "htmlFor"){
5465                     b += ' for="' + o["htmlFor"] + '"';
5466                 }else{
5467                     b += " " + attr + '="' + o[attr] + '"';
5468                 }
5469             }
5470         }
5471         if(emptyTags.test(o.tag)){
5472             b += "/>";
5473         }else{
5474             b += ">";
5475             var cn = o.children || o.cn;
5476             if(cn){
5477                 //http://bugs.kde.org/show_bug.cgi?id=71506
5478                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5479                     for(var i = 0, len = cn.length; i < len; i++) {
5480                         b += createHtml(cn[i], b);
5481                     }
5482                 }else{
5483                     b += createHtml(cn, b);
5484                 }
5485             }
5486             if(o.html){
5487                 b += o.html;
5488             }
5489             b += "</" + o.tag + ">";
5490         }
5491         return b;
5492     };
5493
5494     // build as dom
5495     /** @ignore */
5496     var createDom = function(o, parentNode){
5497          
5498         // defininition craeted..
5499         var ns = false;
5500         if (o.ns && o.ns != 'html') {
5501                
5502             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
5503                 xmlns[o.ns] = o.xmlns;
5504                 ns = o.xmlns;
5505             }
5506             if (typeof(xmlns[o.ns]) == 'undefined') {
5507                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
5508             }
5509             ns = xmlns[o.ns];
5510         }
5511         
5512         
5513         if (typeof(o) == 'string') {
5514             return parentNode.appendChild(document.createTextNode(o));
5515         }
5516         o.tag = o.tag || div;
5517         if (o.ns && Roo.isIE) {
5518             ns = false;
5519             o.tag = o.ns + ':' + o.tag;
5520             
5521         }
5522         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
5523         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
5524         for(var attr in o){
5525             
5526             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
5527                     attr == "style" || typeof o[attr] == "function") { continue; }
5528                     
5529             if(attr=="cls" && Roo.isIE){
5530                 el.className = o["cls"];
5531             }else{
5532                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
5533                 else { 
5534                     el[attr] = o[attr];
5535                 }
5536             }
5537         }
5538         Roo.DomHelper.applyStyles(el, o.style);
5539         var cn = o.children || o.cn;
5540         if(cn){
5541             //http://bugs.kde.org/show_bug.cgi?id=71506
5542              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5543                 for(var i = 0, len = cn.length; i < len; i++) {
5544                     createDom(cn[i], el);
5545                 }
5546             }else{
5547                 createDom(cn, el);
5548             }
5549         }
5550         if(o.html){
5551             el.innerHTML = o.html;
5552         }
5553         if(parentNode){
5554            parentNode.appendChild(el);
5555         }
5556         return el;
5557     };
5558
5559     var ieTable = function(depth, s, h, e){
5560         tempTableEl.innerHTML = [s, h, e].join('');
5561         var i = -1, el = tempTableEl;
5562         while(++i < depth && el.firstChild){
5563             el = el.firstChild;
5564         }
5565         return el;
5566     };
5567
5568     // kill repeat to save bytes
5569     var ts = '<table>',
5570         te = '</table>',
5571         tbs = ts+'<tbody>',
5572         tbe = '</tbody>'+te,
5573         trs = tbs + '<tr>',
5574         tre = '</tr>'+tbe;
5575
5576     /**
5577      * @ignore
5578      * Nasty code for IE's broken table implementation
5579      */
5580     var insertIntoTable = function(tag, where, el, html){
5581         if(!tempTableEl){
5582             tempTableEl = document.createElement('div');
5583         }
5584         var node;
5585         var before = null;
5586         if(tag == 'td'){
5587             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
5588                 return;
5589             }
5590             if(where == 'beforebegin'){
5591                 before = el;
5592                 el = el.parentNode;
5593             } else{
5594                 before = el.nextSibling;
5595                 el = el.parentNode;
5596             }
5597             node = ieTable(4, trs, html, tre);
5598         }
5599         else if(tag == 'tr'){
5600             if(where == 'beforebegin'){
5601                 before = el;
5602                 el = el.parentNode;
5603                 node = ieTable(3, tbs, html, tbe);
5604             } else if(where == 'afterend'){
5605                 before = el.nextSibling;
5606                 el = el.parentNode;
5607                 node = ieTable(3, tbs, html, tbe);
5608             } else{ // INTO a TR
5609                 if(where == 'afterbegin'){
5610                     before = el.firstChild;
5611                 }
5612                 node = ieTable(4, trs, html, tre);
5613             }
5614         } else if(tag == 'tbody'){
5615             if(where == 'beforebegin'){
5616                 before = el;
5617                 el = el.parentNode;
5618                 node = ieTable(2, ts, html, te);
5619             } else if(where == 'afterend'){
5620                 before = el.nextSibling;
5621                 el = el.parentNode;
5622                 node = ieTable(2, ts, html, te);
5623             } else{
5624                 if(where == 'afterbegin'){
5625                     before = el.firstChild;
5626                 }
5627                 node = ieTable(3, tbs, html, tbe);
5628             }
5629         } else{ // TABLE
5630             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
5631                 return;
5632             }
5633             if(where == 'afterbegin'){
5634                 before = el.firstChild;
5635             }
5636             node = ieTable(2, ts, html, te);
5637         }
5638         el.insertBefore(node, before);
5639         return node;
5640     };
5641     
5642     // this is a bit like the react update code...
5643     // 
5644     
5645     var updateNode = function(from, to)
5646     {
5647         // should we handle non-standard elements?
5648         Roo.log(["UpdateNode" , from, to]);
5649         if (from.nodeType != to.nodeType) {
5650             Roo.log(["ReplaceChild - mismatch notType" , to, from ]);
5651             from.parentNode.replaceChild(to, from);
5652         }
5653         
5654         if (from.nodeType == 3) {
5655             // assume it's text?!
5656             if (from.data == to.data) {
5657                 return;
5658             }
5659             from.data = to.data;
5660             return;
5661         }
5662         if (!from.parentNode) {
5663             // not sure why this is happening?
5664             return;
5665         }
5666         // assume 'to' doesnt have '1/3 nodetypes!
5667         // not sure why, by from, parent node might not exist?
5668         if (from.nodeType !=1 || from.tagName != to.tagName) {
5669             Roo.log(["ReplaceChild" , from, to ]);
5670             
5671             from.parentNode.replaceChild(to, from);
5672             return;
5673         }
5674         // compare attributes
5675         var ar = Array.from(from.attributes);
5676         for(var i = 0; i< ar.length;i++) {
5677             if (to.hasAttribute(ar[i].name)) {
5678                 continue;
5679             }
5680             if (ar[i].name == 'id') { // always keep ids?
5681                continue;
5682             }
5683             //if (ar[i].name == 'style') {
5684             //   throw "style removed?";
5685             //}
5686             Roo.log("removeAttribute" + ar[i].name);
5687             from.removeAttribute(ar[i].name);
5688         }
5689         ar = to.attributes;
5690         for(var i = 0; i< ar.length;i++) {
5691             if (from.getAttribute(ar[i].name) == to.getAttribute(ar[i].name)) {
5692                 Roo.log("skipAttribute " + ar[i].name  + '=' + to.getAttribute(ar[i].name));
5693                 continue;
5694             }
5695             Roo.log("updateAttribute " + ar[i].name + '=>' + to.getAttribute(ar[i].name));
5696             from.setAttribute(ar[i].name, to.getAttribute(ar[i].name));
5697         }
5698         // children
5699         var far = Array.from(from.childNodes);
5700         var tar = Array.from(to.childNodes);
5701         // if the lengths are different.. then it's probably a editable content change, rather than
5702         // a change of the block definition..
5703         
5704         // this did notwork , as our rebuilt nodes did not include ID's so did not match at all.
5705          /*if (from.innerHTML == to.innerHTML) {
5706             return;
5707         }
5708         if (far.length != tar.length) {
5709             from.innerHTML = to.innerHTML;
5710             return;
5711         }
5712         */
5713         
5714         for(var i = 0; i < Math.max(tar.length, far.length); i++) {
5715             if (i >= far.length) {
5716                 from.appendChild(tar[i]);
5717                 Roo.log(["add", tar[i]]);
5718                 
5719             } else if ( i  >= tar.length) {
5720                 from.removeChild(far[i]);
5721                 Roo.log(["remove", far[i]]);
5722             } else {
5723                 
5724                 updateNode(far[i], tar[i]);
5725             }    
5726         }
5727         
5728         
5729         
5730         
5731     };
5732     
5733     
5734
5735     return {
5736         /** True to force the use of DOM instead of html fragments @type Boolean */
5737         useDom : false,
5738     
5739         /**
5740          * Returns the markup for the passed Element(s) config
5741          * @param {Object} o The Dom object spec (and children)
5742          * @return {String}
5743          */
5744         markup : function(o){
5745             return createHtml(o);
5746         },
5747     
5748         /**
5749          * Applies a style specification to an element
5750          * @param {String/HTMLElement} el The element to apply styles to
5751          * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
5752          * a function which returns such a specification.
5753          */
5754         applyStyles : function(el, styles){
5755             if(styles){
5756                el = Roo.fly(el);
5757                if(typeof styles == "string"){
5758                    var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
5759                    var matches;
5760                    while ((matches = re.exec(styles)) != null){
5761                        el.setStyle(matches[1], matches[2]);
5762                    }
5763                }else if (typeof styles == "object"){
5764                    for (var style in styles){
5765                       el.setStyle(style, styles[style]);
5766                    }
5767                }else if (typeof styles == "function"){
5768                     Roo.DomHelper.applyStyles(el, styles.call());
5769                }
5770             }
5771         },
5772     
5773         /**
5774          * Inserts an HTML fragment into the Dom
5775          * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
5776          * @param {HTMLElement} el The context element
5777          * @param {String} html The HTML fragmenet
5778          * @return {HTMLElement} The new node
5779          */
5780         insertHtml : function(where, el, html){
5781             where = where.toLowerCase();
5782             if(el.insertAdjacentHTML){
5783                 if(tableRe.test(el.tagName)){
5784                     var rs;
5785                     if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
5786                         return rs;
5787                     }
5788                 }
5789                 switch(where){
5790                     case "beforebegin":
5791                         el.insertAdjacentHTML('BeforeBegin', html);
5792                         return el.previousSibling;
5793                     case "afterbegin":
5794                         el.insertAdjacentHTML('AfterBegin', html);
5795                         return el.firstChild;
5796                     case "beforeend":
5797                         el.insertAdjacentHTML('BeforeEnd', html);
5798                         return el.lastChild;
5799                     case "afterend":
5800                         el.insertAdjacentHTML('AfterEnd', html);
5801                         return el.nextSibling;
5802                 }
5803                 throw 'Illegal insertion point -> "' + where + '"';
5804             }
5805             var range = el.ownerDocument.createRange();
5806             var frag;
5807             switch(where){
5808                  case "beforebegin":
5809                     range.setStartBefore(el);
5810                     frag = range.createContextualFragment(html);
5811                     el.parentNode.insertBefore(frag, el);
5812                     return el.previousSibling;
5813                  case "afterbegin":
5814                     if(el.firstChild){
5815                         range.setStartBefore(el.firstChild);
5816                         frag = range.createContextualFragment(html);
5817                         el.insertBefore(frag, el.firstChild);
5818                         return el.firstChild;
5819                     }else{
5820                         el.innerHTML = html;
5821                         return el.firstChild;
5822                     }
5823                 case "beforeend":
5824                     if(el.lastChild){
5825                         range.setStartAfter(el.lastChild);
5826                         frag = range.createContextualFragment(html);
5827                         el.appendChild(frag);
5828                         return el.lastChild;
5829                     }else{
5830                         el.innerHTML = html;
5831                         return el.lastChild;
5832                     }
5833                 case "afterend":
5834                     range.setStartAfter(el);
5835                     frag = range.createContextualFragment(html);
5836                     el.parentNode.insertBefore(frag, el.nextSibling);
5837                     return el.nextSibling;
5838                 }
5839                 throw 'Illegal insertion point -> "' + where + '"';
5840         },
5841     
5842         /**
5843          * Creates new Dom element(s) and inserts them before el
5844          * @param {String/HTMLElement/Element} el The context element
5845          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5846          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5847          * @return {HTMLElement/Roo.Element} The new node
5848          */
5849         insertBefore : function(el, o, returnElement){
5850             return this.doInsert(el, o, returnElement, "beforeBegin");
5851         },
5852     
5853         /**
5854          * Creates new Dom element(s) and inserts them after el
5855          * @param {String/HTMLElement/Element} el The context element
5856          * @param {Object} o The Dom object spec (and children)
5857          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5858          * @return {HTMLElement/Roo.Element} The new node
5859          */
5860         insertAfter : function(el, o, returnElement){
5861             return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
5862         },
5863     
5864         /**
5865          * Creates new Dom element(s) and inserts them as the first child of el
5866          * @param {String/HTMLElement/Element} el The context element
5867          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5868          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5869          * @return {HTMLElement/Roo.Element} The new node
5870          */
5871         insertFirst : function(el, o, returnElement){
5872             return this.doInsert(el, o, returnElement, "afterBegin");
5873         },
5874     
5875         // private
5876         doInsert : function(el, o, returnElement, pos, sibling){
5877             el = Roo.getDom(el);
5878             var newNode;
5879             if(this.useDom || o.ns){
5880                 newNode = createDom(o, null);
5881                 el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
5882             }else{
5883                 var html = createHtml(o);
5884                 newNode = this.insertHtml(pos, el, html);
5885             }
5886             return returnElement ? Roo.get(newNode, true) : newNode;
5887         },
5888     
5889         /**
5890          * Creates new Dom element(s) and appends them to el
5891          * @param {String/HTMLElement/Element} el The context element
5892          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5893          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5894          * @return {HTMLElement/Roo.Element} The new node
5895          */
5896         append : function(el, o, returnElement){
5897             el = Roo.getDom(el);
5898             var newNode;
5899             if(this.useDom || o.ns){
5900                 newNode = createDom(o, null);
5901                 el.appendChild(newNode);
5902             }else{
5903                 var html = createHtml(o);
5904                 newNode = this.insertHtml("beforeEnd", el, html);
5905             }
5906             return returnElement ? Roo.get(newNode, true) : newNode;
5907         },
5908     
5909         /**
5910          * Creates new Dom element(s) and overwrites the contents of el with them
5911          * @param {String/HTMLElement/Element} el The context element
5912          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5913          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5914          * @return {HTMLElement/Roo.Element} The new node
5915          */
5916         overwrite : function(el, o, returnElement)
5917         {
5918             el = Roo.getDom(el);
5919             if (o.ns) {
5920               
5921                 while (el.childNodes.length) {
5922                     el.removeChild(el.firstChild);
5923                 }
5924                 createDom(o, el);
5925             } else {
5926                 el.innerHTML = createHtml(o);   
5927             }
5928             
5929             return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
5930         },
5931     
5932         /**
5933          * Creates a new Roo.DomHelper.Template from the Dom object spec
5934          * @param {Object} o The Dom object spec (and children)
5935          * @return {Roo.DomHelper.Template} The new template
5936          */
5937         createTemplate : function(o){
5938             var html = createHtml(o);
5939             return new Roo.Template(html);
5940         },
5941          /**
5942          * Updates the first element with the spec from the o (replacing if necessary)
5943          * This iterates through the children, and updates attributes / children etc..
5944          * @param {String/HTMLElement/Element} el The context element
5945          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5946          */
5947         
5948         update : function(el, o)
5949         {
5950             updateNode(Roo.getDom(el), createDom(o));
5951             
5952         }
5953         
5954         
5955     };
5956 }();
5957 /*
5958  * Based on:
5959  * Ext JS Library 1.1.1
5960  * Copyright(c) 2006-2007, Ext JS, LLC.
5961  *
5962  * Originally Released Under LGPL - original licence link has changed is not relivant.
5963  *
5964  * Fork - LGPL
5965  * <script type="text/javascript">
5966  */
5967  
5968 /**
5969 * @class Roo.Template
5970 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
5971 * For a list of available format functions, see {@link Roo.util.Format}.<br />
5972 * Usage:
5973 <pre><code>
5974 var t = new Roo.Template({
5975     html :  '&lt;div name="{id}"&gt;' + 
5976         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
5977         '&lt;/div&gt;',
5978     myformat: function (value, allValues) {
5979         return 'XX' + value;
5980     }
5981 });
5982 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
5983 </code></pre>
5984 * For more information see this blog post with examples:
5985 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
5986      - Create Elements using DOM, HTML fragments and Templates</a>. 
5987 * @constructor
5988 * @param {Object} cfg - Configuration object.
5989 */
5990 Roo.Template = function(cfg){
5991     // BC!
5992     if(cfg instanceof Array){
5993         cfg = cfg.join("");
5994     }else if(arguments.length > 1){
5995         cfg = Array.prototype.join.call(arguments, "");
5996     }
5997     
5998     
5999     if (typeof(cfg) == 'object') {
6000         Roo.apply(this,cfg)
6001     } else {
6002         // bc
6003         this.html = cfg;
6004     }
6005     if (this.url) {
6006         this.load();
6007     }
6008     
6009 };
6010 Roo.Template.prototype = {
6011     
6012     /**
6013      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
6014      */
6015     onLoad : false,
6016     
6017     
6018     /**
6019      * @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..
6020      *                    it should be fixed so that template is observable...
6021      */
6022     url : false,
6023     /**
6024      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
6025      */
6026     html : '',
6027     
6028     
6029     compiled : false,
6030     loaded : false,
6031     /**
6032      * Returns an HTML fragment of this template with the specified values applied.
6033      * @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'})
6034      * @return {String} The HTML fragment
6035      */
6036     
6037    
6038     
6039     applyTemplate : function(values){
6040         //Roo.log(["applyTemplate", values]);
6041         try {
6042            
6043             if(this.compiled){
6044                 return this.compiled(values);
6045             }
6046             var useF = this.disableFormats !== true;
6047             var fm = Roo.util.Format, tpl = this;
6048             var fn = function(m, name, format, args){
6049                 if(format && useF){
6050                     if(format.substr(0, 5) == "this."){
6051                         return tpl.call(format.substr(5), values[name], values);
6052                     }else{
6053                         if(args){
6054                             // quoted values are required for strings in compiled templates, 
6055                             // but for non compiled we need to strip them
6056                             // quoted reversed for jsmin
6057                             var re = /^\s*['"](.*)["']\s*$/;
6058                             args = args.split(',');
6059                             for(var i = 0, len = args.length; i < len; i++){
6060                                 args[i] = args[i].replace(re, "$1");
6061                             }
6062                             args = [values[name]].concat(args);
6063                         }else{
6064                             args = [values[name]];
6065                         }
6066                         return fm[format].apply(fm, args);
6067                     }
6068                 }else{
6069                     return values[name] !== undefined ? values[name] : "";
6070                 }
6071             };
6072             return this.html.replace(this.re, fn);
6073         } catch (e) {
6074             Roo.log(e);
6075             throw e;
6076         }
6077          
6078     },
6079     
6080     loading : false,
6081       
6082     load : function ()
6083     {
6084          
6085         if (this.loading) {
6086             return;
6087         }
6088         var _t = this;
6089         
6090         this.loading = true;
6091         this.compiled = false;
6092         
6093         var cx = new Roo.data.Connection();
6094         cx.request({
6095             url : this.url,
6096             method : 'GET',
6097             success : function (response) {
6098                 _t.loading = false;
6099                 _t.url = false;
6100                 
6101                 _t.set(response.responseText,true);
6102                 _t.loaded = true;
6103                 if (_t.onLoad) {
6104                     _t.onLoad();
6105                 }
6106              },
6107             failure : function(response) {
6108                 Roo.log("Template failed to load from " + _t.url);
6109                 _t.loading = false;
6110             }
6111         });
6112     },
6113
6114     /**
6115      * Sets the HTML used as the template and optionally compiles it.
6116      * @param {String} html
6117      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
6118      * @return {Roo.Template} this
6119      */
6120     set : function(html, compile){
6121         this.html = html;
6122         this.compiled = false;
6123         if(compile){
6124             this.compile();
6125         }
6126         return this;
6127     },
6128     
6129     /**
6130      * True to disable format functions (defaults to false)
6131      * @type Boolean
6132      */
6133     disableFormats : false,
6134     
6135     /**
6136     * The regular expression used to match template variables 
6137     * @type RegExp
6138     * @property 
6139     */
6140     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
6141     
6142     /**
6143      * Compiles the template into an internal function, eliminating the RegEx overhead.
6144      * @return {Roo.Template} this
6145      */
6146     compile : function(){
6147         var fm = Roo.util.Format;
6148         var useF = this.disableFormats !== true;
6149         var sep = Roo.isGecko ? "+" : ",";
6150         var fn = function(m, name, format, args){
6151             if(format && useF){
6152                 args = args ? ',' + args : "";
6153                 if(format.substr(0, 5) != "this."){
6154                     format = "fm." + format + '(';
6155                 }else{
6156                     format = 'this.call("'+ format.substr(5) + '", ';
6157                     args = ", values";
6158                 }
6159             }else{
6160                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
6161             }
6162             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
6163         };
6164         var body;
6165         // branched to use + in gecko and [].join() in others
6166         if(Roo.isGecko){
6167             body = "this.compiled = function(values){ return '" +
6168                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
6169                     "';};";
6170         }else{
6171             body = ["this.compiled = function(values){ return ['"];
6172             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
6173             body.push("'].join('');};");
6174             body = body.join('');
6175         }
6176         /**
6177          * eval:var:values
6178          * eval:var:fm
6179          */
6180         eval(body);
6181         return this;
6182     },
6183     
6184     // private function used to call members
6185     call : function(fnName, value, allValues){
6186         return this[fnName](value, allValues);
6187     },
6188     
6189     /**
6190      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
6191      * @param {String/HTMLElement/Roo.Element} el The context element
6192      * @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'})
6193      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6194      * @return {HTMLElement/Roo.Element} The new node or Element
6195      */
6196     insertFirst: function(el, values, returnElement){
6197         return this.doInsert('afterBegin', el, values, returnElement);
6198     },
6199
6200     /**
6201      * Applies the supplied values to the template and inserts the new node(s) before el.
6202      * @param {String/HTMLElement/Roo.Element} el The context element
6203      * @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'})
6204      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6205      * @return {HTMLElement/Roo.Element} The new node or Element
6206      */
6207     insertBefore: function(el, values, returnElement){
6208         return this.doInsert('beforeBegin', el, values, returnElement);
6209     },
6210
6211     /**
6212      * Applies the supplied values to the template and inserts the new node(s) after el.
6213      * @param {String/HTMLElement/Roo.Element} el The context element
6214      * @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'})
6215      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6216      * @return {HTMLElement/Roo.Element} The new node or Element
6217      */
6218     insertAfter : function(el, values, returnElement){
6219         return this.doInsert('afterEnd', el, values, returnElement);
6220     },
6221     
6222     /**
6223      * Applies the supplied values to the template and appends the new node(s) to el.
6224      * @param {String/HTMLElement/Roo.Element} el The context element
6225      * @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'})
6226      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6227      * @return {HTMLElement/Roo.Element} The new node or Element
6228      */
6229     append : function(el, values, returnElement){
6230         return this.doInsert('beforeEnd', el, values, returnElement);
6231     },
6232
6233     doInsert : function(where, el, values, returnEl){
6234         el = Roo.getDom(el);
6235         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
6236         return returnEl ? Roo.get(newNode, true) : newNode;
6237     },
6238
6239     /**
6240      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
6241      * @param {String/HTMLElement/Roo.Element} el The context element
6242      * @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'})
6243      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6244      * @return {HTMLElement/Roo.Element} The new node or Element
6245      */
6246     overwrite : function(el, values, returnElement){
6247         el = Roo.getDom(el);
6248         el.innerHTML = this.applyTemplate(values);
6249         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
6250     }
6251 };
6252 /**
6253  * Alias for {@link #applyTemplate}
6254  * @method
6255  */
6256 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
6257
6258 // backwards compat
6259 Roo.DomHelper.Template = Roo.Template;
6260
6261 /**
6262  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
6263  * @param {String/HTMLElement} el A DOM element or its id
6264  * @returns {Roo.Template} The created template
6265  * @static
6266  */
6267 Roo.Template.from = function(el){
6268     el = Roo.getDom(el);
6269     return new Roo.Template(el.value || el.innerHTML);
6270 };/*
6271  * Based on:
6272  * Ext JS Library 1.1.1
6273  * Copyright(c) 2006-2007, Ext JS, LLC.
6274  *
6275  * Originally Released Under LGPL - original licence link has changed is not relivant.
6276  *
6277  * Fork - LGPL
6278  * <script type="text/javascript">
6279  */
6280  
6281
6282 /*
6283  * This is code is also distributed under MIT license for use
6284  * with jQuery and prototype JavaScript libraries.
6285  */
6286 /**
6287  * @class Roo.DomQuery
6288 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).
6289 <p>
6290 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>
6291
6292 <p>
6293 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.
6294 </p>
6295 <h4>Element Selectors:</h4>
6296 <ul class="list">
6297     <li> <b>*</b> any element</li>
6298     <li> <b>E</b> an element with the tag E</li>
6299     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
6300     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
6301     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
6302     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
6303 </ul>
6304 <h4>Attribute Selectors:</h4>
6305 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
6306 <ul class="list">
6307     <li> <b>E[foo]</b> has an attribute "foo"</li>
6308     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
6309     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
6310     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
6311     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
6312     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
6313     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
6314 </ul>
6315 <h4>Pseudo Classes:</h4>
6316 <ul class="list">
6317     <li> <b>E:first-child</b> E is the first child of its parent</li>
6318     <li> <b>E:last-child</b> E is the last child of its parent</li>
6319     <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>
6320     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
6321     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
6322     <li> <b>E:only-child</b> E is the only child of its parent</li>
6323     <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>
6324     <li> <b>E:first</b> the first E in the resultset</li>
6325     <li> <b>E:last</b> the last E in the resultset</li>
6326     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
6327     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
6328     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
6329     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
6330     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
6331     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
6332     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
6333     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
6334     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
6335 </ul>
6336 <h4>CSS Value Selectors:</h4>
6337 <ul class="list">
6338     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
6339     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
6340     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
6341     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
6342     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
6343     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
6344 </ul>
6345  * @static
6346  */
6347 Roo.DomQuery = function(){
6348     var cache = {}, simpleCache = {}, valueCache = {};
6349     var nonSpace = /\S/;
6350     var trimRe = /^\s+|\s+$/g;
6351     var tplRe = /\{(\d+)\}/g;
6352     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
6353     var tagTokenRe = /^(#)?([\w-\*]+)/;
6354     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
6355
6356     function child(p, index){
6357         var i = 0;
6358         var n = p.firstChild;
6359         while(n){
6360             if(n.nodeType == 1){
6361                if(++i == index){
6362                    return n;
6363                }
6364             }
6365             n = n.nextSibling;
6366         }
6367         return null;
6368     };
6369
6370     function next(n){
6371         while((n = n.nextSibling) && n.nodeType != 1);
6372         return n;
6373     };
6374
6375     function prev(n){
6376         while((n = n.previousSibling) && n.nodeType != 1);
6377         return n;
6378     };
6379
6380     function children(d){
6381         var n = d.firstChild, ni = -1;
6382             while(n){
6383                 var nx = n.nextSibling;
6384                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
6385                     d.removeChild(n);
6386                 }else{
6387                     n.nodeIndex = ++ni;
6388                 }
6389                 n = nx;
6390             }
6391             return this;
6392         };
6393
6394     function byClassName(c, a, v){
6395         if(!v){
6396             return c;
6397         }
6398         var r = [], ri = -1, cn;
6399         for(var i = 0, ci; ci = c[i]; i++){
6400             
6401             
6402             if((' '+
6403                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
6404                  +' ').indexOf(v) != -1){
6405                 r[++ri] = ci;
6406             }
6407         }
6408         return r;
6409     };
6410
6411     function attrValue(n, attr){
6412         if(!n.tagName && typeof n.length != "undefined"){
6413             n = n[0];
6414         }
6415         if(!n){
6416             return null;
6417         }
6418         if(attr == "for"){
6419             return n.htmlFor;
6420         }
6421         if(attr == "class" || attr == "className"){
6422             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
6423         }
6424         return n.getAttribute(attr) || n[attr];
6425
6426     };
6427
6428     function getNodes(ns, mode, tagName){
6429         var result = [], ri = -1, cs;
6430         if(!ns){
6431             return result;
6432         }
6433         tagName = tagName || "*";
6434         if(typeof ns.getElementsByTagName != "undefined"){
6435             ns = [ns];
6436         }
6437         if(!mode){
6438             for(var i = 0, ni; ni = ns[i]; i++){
6439                 cs = ni.getElementsByTagName(tagName);
6440                 for(var j = 0, ci; ci = cs[j]; j++){
6441                     result[++ri] = ci;
6442                 }
6443             }
6444         }else if(mode == "/" || mode == ">"){
6445             var utag = tagName.toUpperCase();
6446             for(var i = 0, ni, cn; ni = ns[i]; i++){
6447                 cn = ni.children || ni.childNodes;
6448                 for(var j = 0, cj; cj = cn[j]; j++){
6449                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
6450                         result[++ri] = cj;
6451                     }
6452                 }
6453             }
6454         }else if(mode == "+"){
6455             var utag = tagName.toUpperCase();
6456             for(var i = 0, n; n = ns[i]; i++){
6457                 while((n = n.nextSibling) && n.nodeType != 1);
6458                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
6459                     result[++ri] = n;
6460                 }
6461             }
6462         }else if(mode == "~"){
6463             for(var i = 0, n; n = ns[i]; i++){
6464                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
6465                 if(n){
6466                     result[++ri] = n;
6467                 }
6468             }
6469         }
6470         return result;
6471     };
6472
6473     function concat(a, b){
6474         if(b.slice){
6475             return a.concat(b);
6476         }
6477         for(var i = 0, l = b.length; i < l; i++){
6478             a[a.length] = b[i];
6479         }
6480         return a;
6481     }
6482
6483     function byTag(cs, tagName){
6484         if(cs.tagName || cs == document){
6485             cs = [cs];
6486         }
6487         if(!tagName){
6488             return cs;
6489         }
6490         var r = [], ri = -1;
6491         tagName = tagName.toLowerCase();
6492         for(var i = 0, ci; ci = cs[i]; i++){
6493             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
6494                 r[++ri] = ci;
6495             }
6496         }
6497         return r;
6498     };
6499
6500     function byId(cs, attr, id){
6501         if(cs.tagName || cs == document){
6502             cs = [cs];
6503         }
6504         if(!id){
6505             return cs;
6506         }
6507         var r = [], ri = -1;
6508         for(var i = 0,ci; ci = cs[i]; i++){
6509             if(ci && ci.id == id){
6510                 r[++ri] = ci;
6511                 return r;
6512             }
6513         }
6514         return r;
6515     };
6516
6517     function byAttribute(cs, attr, value, op, custom){
6518         var r = [], ri = -1, st = custom=="{";
6519         var f = Roo.DomQuery.operators[op];
6520         for(var i = 0, ci; ci = cs[i]; i++){
6521             var a;
6522             if(st){
6523                 a = Roo.DomQuery.getStyle(ci, attr);
6524             }
6525             else if(attr == "class" || attr == "className"){
6526                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
6527             }else if(attr == "for"){
6528                 a = ci.htmlFor;
6529             }else if(attr == "href"){
6530                 a = ci.getAttribute("href", 2);
6531             }else{
6532                 a = ci.getAttribute(attr);
6533             }
6534             if((f && f(a, value)) || (!f && a)){
6535                 r[++ri] = ci;
6536             }
6537         }
6538         return r;
6539     };
6540
6541     function byPseudo(cs, name, value){
6542         return Roo.DomQuery.pseudos[name](cs, value);
6543     };
6544
6545     // This is for IE MSXML which does not support expandos.
6546     // IE runs the same speed using setAttribute, however FF slows way down
6547     // and Safari completely fails so they need to continue to use expandos.
6548     var isIE = window.ActiveXObject ? true : false;
6549
6550     // this eval is stop the compressor from
6551     // renaming the variable to something shorter
6552     
6553     /** eval:var:batch */
6554     var batch = 30803; 
6555
6556     var key = 30803;
6557
6558     function nodupIEXml(cs){
6559         var d = ++key;
6560         cs[0].setAttribute("_nodup", d);
6561         var r = [cs[0]];
6562         for(var i = 1, len = cs.length; i < len; i++){
6563             var c = cs[i];
6564             if(!c.getAttribute("_nodup") != d){
6565                 c.setAttribute("_nodup", d);
6566                 r[r.length] = c;
6567             }
6568         }
6569         for(var i = 0, len = cs.length; i < len; i++){
6570             cs[i].removeAttribute("_nodup");
6571         }
6572         return r;
6573     }
6574
6575     function nodup(cs){
6576         if(!cs){
6577             return [];
6578         }
6579         var len = cs.length, c, i, r = cs, cj, ri = -1;
6580         if(!len || typeof cs.nodeType != "undefined" || len == 1){
6581             return cs;
6582         }
6583         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
6584             return nodupIEXml(cs);
6585         }
6586         var d = ++key;
6587         cs[0]._nodup = d;
6588         for(i = 1; c = cs[i]; i++){
6589             if(c._nodup != d){
6590                 c._nodup = d;
6591             }else{
6592                 r = [];
6593                 for(var j = 0; j < i; j++){
6594                     r[++ri] = cs[j];
6595                 }
6596                 for(j = i+1; cj = cs[j]; j++){
6597                     if(cj._nodup != d){
6598                         cj._nodup = d;
6599                         r[++ri] = cj;
6600                     }
6601                 }
6602                 return r;
6603             }
6604         }
6605         return r;
6606     }
6607
6608     function quickDiffIEXml(c1, c2){
6609         var d = ++key;
6610         for(var i = 0, len = c1.length; i < len; i++){
6611             c1[i].setAttribute("_qdiff", d);
6612         }
6613         var r = [];
6614         for(var i = 0, len = c2.length; i < len; i++){
6615             if(c2[i].getAttribute("_qdiff") != d){
6616                 r[r.length] = c2[i];
6617             }
6618         }
6619         for(var i = 0, len = c1.length; i < len; i++){
6620            c1[i].removeAttribute("_qdiff");
6621         }
6622         return r;
6623     }
6624
6625     function quickDiff(c1, c2){
6626         var len1 = c1.length;
6627         if(!len1){
6628             return c2;
6629         }
6630         if(isIE && c1[0].selectSingleNode){
6631             return quickDiffIEXml(c1, c2);
6632         }
6633         var d = ++key;
6634         for(var i = 0; i < len1; i++){
6635             c1[i]._qdiff = d;
6636         }
6637         var r = [];
6638         for(var i = 0, len = c2.length; i < len; i++){
6639             if(c2[i]._qdiff != d){
6640                 r[r.length] = c2[i];
6641             }
6642         }
6643         return r;
6644     }
6645
6646     function quickId(ns, mode, root, id){
6647         if(ns == root){
6648            var d = root.ownerDocument || root;
6649            return d.getElementById(id);
6650         }
6651         ns = getNodes(ns, mode, "*");
6652         return byId(ns, null, id);
6653     }
6654
6655     return {
6656         getStyle : function(el, name){
6657             return Roo.fly(el).getStyle(name);
6658         },
6659         /**
6660          * Compiles a selector/xpath query into a reusable function. The returned function
6661          * takes one parameter "root" (optional), which is the context node from where the query should start.
6662          * @param {String} selector The selector/xpath query
6663          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
6664          * @return {Function}
6665          */
6666         compile : function(path, type){
6667             type = type || "select";
6668             
6669             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
6670             var q = path, mode, lq;
6671             var tk = Roo.DomQuery.matchers;
6672             var tklen = tk.length;
6673             var mm;
6674
6675             // accept leading mode switch
6676             var lmode = q.match(modeRe);
6677             if(lmode && lmode[1]){
6678                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
6679                 q = q.replace(lmode[1], "");
6680             }
6681             // strip leading slashes
6682             while(path.substr(0, 1)=="/"){
6683                 path = path.substr(1);
6684             }
6685
6686             while(q && lq != q){
6687                 lq = q;
6688                 var tm = q.match(tagTokenRe);
6689                 if(type == "select"){
6690                     if(tm){
6691                         if(tm[1] == "#"){
6692                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
6693                         }else{
6694                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
6695                         }
6696                         q = q.replace(tm[0], "");
6697                     }else if(q.substr(0, 1) != '@'){
6698                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
6699                     }
6700                 }else{
6701                     if(tm){
6702                         if(tm[1] == "#"){
6703                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
6704                         }else{
6705                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
6706                         }
6707                         q = q.replace(tm[0], "");
6708                     }
6709                 }
6710                 while(!(mm = q.match(modeRe))){
6711                     var matched = false;
6712                     for(var j = 0; j < tklen; j++){
6713                         var t = tk[j];
6714                         var m = q.match(t.re);
6715                         if(m){
6716                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
6717                                                     return m[i];
6718                                                 });
6719                             q = q.replace(m[0], "");
6720                             matched = true;
6721                             break;
6722                         }
6723                     }
6724                     // prevent infinite loop on bad selector
6725                     if(!matched){
6726                         throw 'Error parsing selector, parsing failed at "' + q + '"';
6727                     }
6728                 }
6729                 if(mm[1]){
6730                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
6731                     q = q.replace(mm[1], "");
6732                 }
6733             }
6734             fn[fn.length] = "return nodup(n);\n}";
6735             
6736              /** 
6737               * list of variables that need from compression as they are used by eval.
6738              *  eval:var:batch 
6739              *  eval:var:nodup
6740              *  eval:var:byTag
6741              *  eval:var:ById
6742              *  eval:var:getNodes
6743              *  eval:var:quickId
6744              *  eval:var:mode
6745              *  eval:var:root
6746              *  eval:var:n
6747              *  eval:var:byClassName
6748              *  eval:var:byPseudo
6749              *  eval:var:byAttribute
6750              *  eval:var:attrValue
6751              * 
6752              **/ 
6753             eval(fn.join(""));
6754             return f;
6755         },
6756
6757         /**
6758          * Selects a group of elements.
6759          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
6760          * @param {Node} root (optional) The start of the query (defaults to document).
6761          * @return {Array}
6762          */
6763         select : function(path, root, type){
6764             if(!root || root == document){
6765                 root = document;
6766             }
6767             if(typeof root == "string"){
6768                 root = document.getElementById(root);
6769             }
6770             var paths = path.split(",");
6771             var results = [];
6772             for(var i = 0, len = paths.length; i < len; i++){
6773                 var p = paths[i].replace(trimRe, "");
6774                 if(!cache[p]){
6775                     cache[p] = Roo.DomQuery.compile(p);
6776                     if(!cache[p]){
6777                         throw p + " is not a valid selector";
6778                     }
6779                 }
6780                 var result = cache[p](root);
6781                 if(result && result != document){
6782                     results = results.concat(result);
6783                 }
6784             }
6785             if(paths.length > 1){
6786                 return nodup(results);
6787             }
6788             return results;
6789         },
6790
6791         /**
6792          * Selects a single element.
6793          * @param {String} selector The selector/xpath query
6794          * @param {Node} root (optional) The start of the query (defaults to document).
6795          * @return {Element}
6796          */
6797         selectNode : function(path, root){
6798             return Roo.DomQuery.select(path, root)[0];
6799         },
6800
6801         /**
6802          * Selects the value of a node, optionally replacing null with the defaultValue.
6803          * @param {String} selector The selector/xpath query
6804          * @param {Node} root (optional) The start of the query (defaults to document).
6805          * @param {String} defaultValue
6806          */
6807         selectValue : function(path, root, defaultValue){
6808             path = path.replace(trimRe, "");
6809             if(!valueCache[path]){
6810                 valueCache[path] = Roo.DomQuery.compile(path, "select");
6811             }
6812             var n = valueCache[path](root);
6813             n = n[0] ? n[0] : n;
6814             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
6815             return ((v === null||v === undefined||v==='') ? defaultValue : v);
6816         },
6817
6818         /**
6819          * Selects the value of a node, parsing integers and floats.
6820          * @param {String} selector The selector/xpath query
6821          * @param {Node} root (optional) The start of the query (defaults to document).
6822          * @param {Number} defaultValue
6823          * @return {Number}
6824          */
6825         selectNumber : function(path, root, defaultValue){
6826             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
6827             return parseFloat(v);
6828         },
6829
6830         /**
6831          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
6832          * @param {String/HTMLElement/Array} el An element id, element or array of elements
6833          * @param {String} selector The simple selector to test
6834          * @return {Boolean}
6835          */
6836         is : function(el, ss){
6837             if(typeof el == "string"){
6838                 el = document.getElementById(el);
6839             }
6840             var isArray = (el instanceof Array);
6841             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
6842             return isArray ? (result.length == el.length) : (result.length > 0);
6843         },
6844
6845         /**
6846          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
6847          * @param {Array} el An array of elements to filter
6848          * @param {String} selector The simple selector to test
6849          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
6850          * the selector instead of the ones that match
6851          * @return {Array}
6852          */
6853         filter : function(els, ss, nonMatches){
6854             ss = ss.replace(trimRe, "");
6855             if(!simpleCache[ss]){
6856                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
6857             }
6858             var result = simpleCache[ss](els);
6859             return nonMatches ? quickDiff(result, els) : result;
6860         },
6861
6862         /**
6863          * Collection of matching regular expressions and code snippets.
6864          */
6865         matchers : [{
6866                 re: /^\.([\w-]+)/,
6867                 select: 'n = byClassName(n, null, " {1} ");'
6868             }, {
6869                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
6870                 select: 'n = byPseudo(n, "{1}", "{2}");'
6871             },{
6872                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
6873                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
6874             }, {
6875                 re: /^#([\w-]+)/,
6876                 select: 'n = byId(n, null, "{1}");'
6877             },{
6878                 re: /^@([\w-]+)/,
6879                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
6880             }
6881         ],
6882
6883         /**
6884          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
6885          * 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;.
6886          */
6887         operators : {
6888             "=" : function(a, v){
6889                 return a == v;
6890             },
6891             "!=" : function(a, v){
6892                 return a != v;
6893             },
6894             "^=" : function(a, v){
6895                 return a && a.substr(0, v.length) == v;
6896             },
6897             "$=" : function(a, v){
6898                 return a && a.substr(a.length-v.length) == v;
6899             },
6900             "*=" : function(a, v){
6901                 return a && a.indexOf(v) !== -1;
6902             },
6903             "%=" : function(a, v){
6904                 return (a % v) == 0;
6905             },
6906             "|=" : function(a, v){
6907                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
6908             },
6909             "~=" : function(a, v){
6910                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
6911             }
6912         },
6913
6914         /**
6915          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
6916          * and the argument (if any) supplied in the selector.
6917          */
6918         pseudos : {
6919             "first-child" : function(c){
6920                 var r = [], ri = -1, n;
6921                 for(var i = 0, ci; ci = n = c[i]; i++){
6922                     while((n = n.previousSibling) && n.nodeType != 1);
6923                     if(!n){
6924                         r[++ri] = ci;
6925                     }
6926                 }
6927                 return r;
6928             },
6929
6930             "last-child" : function(c){
6931                 var r = [], ri = -1, n;
6932                 for(var i = 0, ci; ci = n = c[i]; i++){
6933                     while((n = n.nextSibling) && n.nodeType != 1);
6934                     if(!n){
6935                         r[++ri] = ci;
6936                     }
6937                 }
6938                 return r;
6939             },
6940
6941             "nth-child" : function(c, a) {
6942                 var r = [], ri = -1;
6943                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
6944                 var f = (m[1] || 1) - 0, l = m[2] - 0;
6945                 for(var i = 0, n; n = c[i]; i++){
6946                     var pn = n.parentNode;
6947                     if (batch != pn._batch) {
6948                         var j = 0;
6949                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
6950                             if(cn.nodeType == 1){
6951                                cn.nodeIndex = ++j;
6952                             }
6953                         }
6954                         pn._batch = batch;
6955                     }
6956                     if (f == 1) {
6957                         if (l == 0 || n.nodeIndex == l){
6958                             r[++ri] = n;
6959                         }
6960                     } else if ((n.nodeIndex + l) % f == 0){
6961                         r[++ri] = n;
6962                     }
6963                 }
6964
6965                 return r;
6966             },
6967
6968             "only-child" : function(c){
6969                 var r = [], ri = -1;;
6970                 for(var i = 0, ci; ci = c[i]; i++){
6971                     if(!prev(ci) && !next(ci)){
6972                         r[++ri] = ci;
6973                     }
6974                 }
6975                 return r;
6976             },
6977
6978             "empty" : function(c){
6979                 var r = [], ri = -1;
6980                 for(var i = 0, ci; ci = c[i]; i++){
6981                     var cns = ci.childNodes, j = 0, cn, empty = true;
6982                     while(cn = cns[j]){
6983                         ++j;
6984                         if(cn.nodeType == 1 || cn.nodeType == 3){
6985                             empty = false;
6986                             break;
6987                         }
6988                     }
6989                     if(empty){
6990                         r[++ri] = ci;
6991                     }
6992                 }
6993                 return r;
6994             },
6995
6996             "contains" : function(c, v){
6997                 var r = [], ri = -1;
6998                 for(var i = 0, ci; ci = c[i]; i++){
6999                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
7000                         r[++ri] = ci;
7001                     }
7002                 }
7003                 return r;
7004             },
7005
7006             "nodeValue" : function(c, v){
7007                 var r = [], ri = -1;
7008                 for(var i = 0, ci; ci = c[i]; i++){
7009                     if(ci.firstChild && ci.firstChild.nodeValue == v){
7010                         r[++ri] = ci;
7011                     }
7012                 }
7013                 return r;
7014             },
7015
7016             "checked" : function(c){
7017                 var r = [], ri = -1;
7018                 for(var i = 0, ci; ci = c[i]; i++){
7019                     if(ci.checked == true){
7020                         r[++ri] = ci;
7021                     }
7022                 }
7023                 return r;
7024             },
7025
7026             "not" : function(c, ss){
7027                 return Roo.DomQuery.filter(c, ss, true);
7028             },
7029
7030             "odd" : function(c){
7031                 return this["nth-child"](c, "odd");
7032             },
7033
7034             "even" : function(c){
7035                 return this["nth-child"](c, "even");
7036             },
7037
7038             "nth" : function(c, a){
7039                 return c[a-1] || [];
7040             },
7041
7042             "first" : function(c){
7043                 return c[0] || [];
7044             },
7045
7046             "last" : function(c){
7047                 return c[c.length-1] || [];
7048             },
7049
7050             "has" : function(c, ss){
7051                 var s = Roo.DomQuery.select;
7052                 var r = [], ri = -1;
7053                 for(var i = 0, ci; ci = c[i]; i++){
7054                     if(s(ss, ci).length > 0){
7055                         r[++ri] = ci;
7056                     }
7057                 }
7058                 return r;
7059             },
7060
7061             "next" : function(c, ss){
7062                 var is = Roo.DomQuery.is;
7063                 var r = [], ri = -1;
7064                 for(var i = 0, ci; ci = c[i]; i++){
7065                     var n = next(ci);
7066                     if(n && is(n, ss)){
7067                         r[++ri] = ci;
7068                     }
7069                 }
7070                 return r;
7071             },
7072
7073             "prev" : function(c, ss){
7074                 var is = Roo.DomQuery.is;
7075                 var r = [], ri = -1;
7076                 for(var i = 0, ci; ci = c[i]; i++){
7077                     var n = prev(ci);
7078                     if(n && is(n, ss)){
7079                         r[++ri] = ci;
7080                     }
7081                 }
7082                 return r;
7083             }
7084         }
7085     };
7086 }();
7087
7088 /**
7089  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
7090  * @param {String} path The selector/xpath query
7091  * @param {Node} root (optional) The start of the query (defaults to document).
7092  * @return {Array}
7093  * @member Roo
7094  * @method query
7095  */
7096 Roo.query = Roo.DomQuery.select;
7097 /*
7098  * Based on:
7099  * Ext JS Library 1.1.1
7100  * Copyright(c) 2006-2007, Ext JS, LLC.
7101  *
7102  * Originally Released Under LGPL - original licence link has changed is not relivant.
7103  *
7104  * Fork - LGPL
7105  * <script type="text/javascript">
7106  */
7107
7108 /**
7109  * @class Roo.util.Observable
7110  * Base class that provides a common interface for publishing events. Subclasses are expected to
7111  * to have a property "events" with all the events defined.<br>
7112  * For example:
7113  * <pre><code>
7114  Employee = function(name){
7115     this.name = name;
7116     this.addEvents({
7117         "fired" : true,
7118         "quit" : true
7119     });
7120  }
7121  Roo.extend(Employee, Roo.util.Observable);
7122 </code></pre>
7123  * @param {Object} config properties to use (incuding events / listeners)
7124  */
7125
7126 Roo.util.Observable = function(cfg){
7127     
7128     cfg = cfg|| {};
7129     this.addEvents(cfg.events || {});
7130     if (cfg.events) {
7131         delete cfg.events; // make sure
7132     }
7133      
7134     Roo.apply(this, cfg);
7135     
7136     if(this.listeners){
7137         this.on(this.listeners);
7138         delete this.listeners;
7139     }
7140 };
7141 Roo.util.Observable.prototype = {
7142     /** 
7143  * @cfg {Object} listeners  list of events and functions to call for this object, 
7144  * For example :
7145  * <pre><code>
7146     listeners :  { 
7147        'click' : function(e) {
7148            ..... 
7149         } ,
7150         .... 
7151     } 
7152   </code></pre>
7153  */
7154     
7155     
7156     /**
7157      * Fires the specified event with the passed parameters (minus the event name).
7158      * @param {String} eventName
7159      * @param {Object...} args Variable number of parameters are passed to handlers
7160      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
7161      */
7162     fireEvent : function(){
7163         var ce = this.events[arguments[0].toLowerCase()];
7164         if(typeof ce == "object"){
7165             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
7166         }else{
7167             return true;
7168         }
7169     },
7170
7171     // private
7172     filterOptRe : /^(?:scope|delay|buffer|single)$/,
7173
7174     /**
7175      * Appends an event handler to this component
7176      * @param {String}   eventName The type of event to listen for
7177      * @param {Function} handler The method the event invokes
7178      * @param {Object}   scope (optional) The scope in which to execute the handler
7179      * function. The handler function's "this" context.
7180      * @param {Object}   options (optional) An object containing handler configuration
7181      * properties. This may contain any of the following properties:<ul>
7182      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7183      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7184      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7185      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7186      * by the specified number of milliseconds. If the event fires again within that time, the original
7187      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7188      * </ul><br>
7189      * <p>
7190      * <b>Combining Options</b><br>
7191      * Using the options argument, it is possible to combine different types of listeners:<br>
7192      * <br>
7193      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
7194                 <pre><code>
7195                 el.on('click', this.onClick, this, {
7196                         single: true,
7197                 delay: 100,
7198                 forumId: 4
7199                 });
7200                 </code></pre>
7201      * <p>
7202      * <b>Attaching multiple handlers in 1 call</b><br>
7203      * The method also allows for a single argument to be passed which is a config object containing properties
7204      * which specify multiple handlers.
7205      * <pre><code>
7206                 el.on({
7207                         'click': {
7208                         fn: this.onClick,
7209                         scope: this,
7210                         delay: 100
7211                 }, 
7212                 'mouseover': {
7213                         fn: this.onMouseOver,
7214                         scope: this
7215                 },
7216                 'mouseout': {
7217                         fn: this.onMouseOut,
7218                         scope: this
7219                 }
7220                 });
7221                 </code></pre>
7222      * <p>
7223      * Or a shorthand syntax which passes the same scope object to all handlers:
7224         <pre><code>
7225                 el.on({
7226                         'click': this.onClick,
7227                 'mouseover': this.onMouseOver,
7228                 'mouseout': this.onMouseOut,
7229                 scope: this
7230                 });
7231                 </code></pre>
7232      */
7233     addListener : function(eventName, fn, scope, o){
7234         if(typeof eventName == "object"){
7235             o = eventName;
7236             for(var e in o){
7237                 if(this.filterOptRe.test(e)){
7238                     continue;
7239                 }
7240                 if(typeof o[e] == "function"){
7241                     // shared options
7242                     this.addListener(e, o[e], o.scope,  o);
7243                 }else{
7244                     // individual options
7245                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
7246                 }
7247             }
7248             return;
7249         }
7250         o = (!o || typeof o == "boolean") ? {} : o;
7251         eventName = eventName.toLowerCase();
7252         var ce = this.events[eventName] || true;
7253         if(typeof ce == "boolean"){
7254             ce = new Roo.util.Event(this, eventName);
7255             this.events[eventName] = ce;
7256         }
7257         ce.addListener(fn, scope, o);
7258     },
7259
7260     /**
7261      * Removes a listener
7262      * @param {String}   eventName     The type of event to listen for
7263      * @param {Function} handler        The handler to remove
7264      * @param {Object}   scope  (optional) The scope (this object) for the handler
7265      */
7266     removeListener : function(eventName, fn, scope){
7267         var ce = this.events[eventName.toLowerCase()];
7268         if(typeof ce == "object"){
7269             ce.removeListener(fn, scope);
7270         }
7271     },
7272
7273     /**
7274      * Removes all listeners for this object
7275      */
7276     purgeListeners : function(){
7277         for(var evt in this.events){
7278             if(typeof this.events[evt] == "object"){
7279                  this.events[evt].clearListeners();
7280             }
7281         }
7282     },
7283
7284     relayEvents : function(o, events){
7285         var createHandler = function(ename){
7286             return function(){
7287                  
7288                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
7289             };
7290         };
7291         for(var i = 0, len = events.length; i < len; i++){
7292             var ename = events[i];
7293             if(!this.events[ename]){
7294                 this.events[ename] = true;
7295             };
7296             o.on(ename, createHandler(ename), this);
7297         }
7298     },
7299
7300     /**
7301      * Used to define events on this Observable
7302      * @param {Object} object The object with the events defined
7303      */
7304     addEvents : function(o){
7305         if(!this.events){
7306             this.events = {};
7307         }
7308         Roo.applyIf(this.events, o);
7309     },
7310
7311     /**
7312      * Checks to see if this object has any listeners for a specified event
7313      * @param {String} eventName The name of the event to check for
7314      * @return {Boolean} True if the event is being listened for, else false
7315      */
7316     hasListener : function(eventName){
7317         var e = this.events[eventName];
7318         return typeof e == "object" && e.listeners.length > 0;
7319     }
7320 };
7321 /**
7322  * Appends an event handler to this element (shorthand for addListener)
7323  * @param {String}   eventName     The type of event to listen for
7324  * @param {Function} handler        The method the event invokes
7325  * @param {Object}   scope (optional) The scope in which to execute the handler
7326  * function. The handler function's "this" context.
7327  * @param {Object}   options  (optional)
7328  * @method
7329  */
7330 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
7331 /**
7332  * Removes a listener (shorthand for removeListener)
7333  * @param {String}   eventName     The type of event to listen for
7334  * @param {Function} handler        The handler to remove
7335  * @param {Object}   scope  (optional) The scope (this object) for the handler
7336  * @method
7337  */
7338 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
7339
7340 /**
7341  * Starts capture on the specified Observable. All events will be passed
7342  * to the supplied function with the event name + standard signature of the event
7343  * <b>before</b> the event is fired. If the supplied function returns false,
7344  * the event will not fire.
7345  * @param {Observable} o The Observable to capture
7346  * @param {Function} fn The function to call
7347  * @param {Object} scope (optional) The scope (this object) for the fn
7348  * @static
7349  */
7350 Roo.util.Observable.capture = function(o, fn, scope){
7351     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
7352 };
7353
7354 /**
7355  * Removes <b>all</b> added captures from the Observable.
7356  * @param {Observable} o The Observable to release
7357  * @static
7358  */
7359 Roo.util.Observable.releaseCapture = function(o){
7360     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
7361 };
7362
7363 (function(){
7364
7365     var createBuffered = function(h, o, scope){
7366         var task = new Roo.util.DelayedTask();
7367         return function(){
7368             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
7369         };
7370     };
7371
7372     var createSingle = function(h, e, fn, scope){
7373         return function(){
7374             e.removeListener(fn, scope);
7375             return h.apply(scope, arguments);
7376         };
7377     };
7378
7379     var createDelayed = function(h, o, scope){
7380         return function(){
7381             var args = Array.prototype.slice.call(arguments, 0);
7382             setTimeout(function(){
7383                 h.apply(scope, args);
7384             }, o.delay || 10);
7385         };
7386     };
7387
7388     Roo.util.Event = function(obj, name){
7389         this.name = name;
7390         this.obj = obj;
7391         this.listeners = [];
7392     };
7393
7394     Roo.util.Event.prototype = {
7395         addListener : function(fn, scope, options){
7396             var o = options || {};
7397             scope = scope || this.obj;
7398             if(!this.isListening(fn, scope)){
7399                 var l = {fn: fn, scope: scope, options: o};
7400                 var h = fn;
7401                 if(o.delay){
7402                     h = createDelayed(h, o, scope);
7403                 }
7404                 if(o.single){
7405                     h = createSingle(h, this, fn, scope);
7406                 }
7407                 if(o.buffer){
7408                     h = createBuffered(h, o, scope);
7409                 }
7410                 l.fireFn = h;
7411                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
7412                     this.listeners.push(l);
7413                 }else{
7414                     this.listeners = this.listeners.slice(0);
7415                     this.listeners.push(l);
7416                 }
7417             }
7418         },
7419
7420         findListener : function(fn, scope){
7421             scope = scope || this.obj;
7422             var ls = this.listeners;
7423             for(var i = 0, len = ls.length; i < len; i++){
7424                 var l = ls[i];
7425                 if(l.fn == fn && l.scope == scope){
7426                     return i;
7427                 }
7428             }
7429             return -1;
7430         },
7431
7432         isListening : function(fn, scope){
7433             return this.findListener(fn, scope) != -1;
7434         },
7435
7436         removeListener : function(fn, scope){
7437             var index;
7438             if((index = this.findListener(fn, scope)) != -1){
7439                 if(!this.firing){
7440                     this.listeners.splice(index, 1);
7441                 }else{
7442                     this.listeners = this.listeners.slice(0);
7443                     this.listeners.splice(index, 1);
7444                 }
7445                 return true;
7446             }
7447             return false;
7448         },
7449
7450         clearListeners : function(){
7451             this.listeners = [];
7452         },
7453
7454         fire : function(){
7455             var ls = this.listeners, scope, len = ls.length;
7456             if(len > 0){
7457                 this.firing = true;
7458                 var args = Array.prototype.slice.call(arguments, 0);                
7459                 for(var i = 0; i < len; i++){
7460                     var l = ls[i];
7461                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
7462                         this.firing = false;
7463                         return false;
7464                     }
7465                 }
7466                 this.firing = false;
7467             }
7468             return true;
7469         }
7470     };
7471 })();/*
7472  * RooJS Library 
7473  * Copyright(c) 2007-2017, Roo J Solutions Ltd
7474  *
7475  * Licence LGPL 
7476  *
7477  */
7478  
7479 /**
7480  * @class Roo.Document
7481  * @extends Roo.util.Observable
7482  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
7483  * 
7484  * @param {Object} config the methods and properties of the 'base' class for the application.
7485  * 
7486  *  Generic Page handler - implement this to start your app..
7487  * 
7488  * eg.
7489  *  MyProject = new Roo.Document({
7490         events : {
7491             'load' : true // your events..
7492         },
7493         listeners : {
7494             'ready' : function() {
7495                 // fired on Roo.onReady()
7496             }
7497         }
7498  * 
7499  */
7500 Roo.Document = function(cfg) {
7501      
7502     this.addEvents({ 
7503         'ready' : true
7504     });
7505     Roo.util.Observable.call(this,cfg);
7506     
7507     var _this = this;
7508     
7509     Roo.onReady(function() {
7510         _this.fireEvent('ready');
7511     },null,false);
7512     
7513     
7514 }
7515
7516 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
7517  * Based on:
7518  * Ext JS Library 1.1.1
7519  * Copyright(c) 2006-2007, Ext JS, LLC.
7520  *
7521  * Originally Released Under LGPL - original licence link has changed is not relivant.
7522  *
7523  * Fork - LGPL
7524  * <script type="text/javascript">
7525  */
7526
7527 /**
7528  * @class Roo.EventManager
7529  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
7530  * several useful events directly.
7531  * See {@link Roo.EventObject} for more details on normalized event objects.
7532  * @static
7533  */
7534 Roo.EventManager = function(){
7535     var docReadyEvent, docReadyProcId, docReadyState = false;
7536     var resizeEvent, resizeTask, textEvent, textSize;
7537     var E = Roo.lib.Event;
7538     var D = Roo.lib.Dom;
7539
7540     
7541     
7542
7543     var fireDocReady = function(){
7544         if(!docReadyState){
7545             docReadyState = true;
7546             Roo.isReady = true;
7547             if(docReadyProcId){
7548                 clearInterval(docReadyProcId);
7549             }
7550             if(Roo.isGecko || Roo.isOpera) {
7551                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
7552             }
7553             if(Roo.isIE){
7554                 var defer = document.getElementById("ie-deferred-loader");
7555                 if(defer){
7556                     defer.onreadystatechange = null;
7557                     defer.parentNode.removeChild(defer);
7558                 }
7559             }
7560             if(docReadyEvent){
7561                 docReadyEvent.fire();
7562                 docReadyEvent.clearListeners();
7563             }
7564         }
7565     };
7566     
7567     var initDocReady = function(){
7568         docReadyEvent = new Roo.util.Event();
7569         if(Roo.isGecko || Roo.isOpera) {
7570             document.addEventListener("DOMContentLoaded", fireDocReady, false);
7571         }else if(Roo.isIE){
7572             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
7573             var defer = document.getElementById("ie-deferred-loader");
7574             defer.onreadystatechange = function(){
7575                 if(this.readyState == "complete"){
7576                     fireDocReady();
7577                 }
7578             };
7579         }else if(Roo.isSafari){ 
7580             docReadyProcId = setInterval(function(){
7581                 var rs = document.readyState;
7582                 if(rs == "complete") {
7583                     fireDocReady();     
7584                  }
7585             }, 10);
7586         }
7587         // no matter what, make sure it fires on load
7588         E.on(window, "load", fireDocReady);
7589     };
7590
7591     var createBuffered = function(h, o){
7592         var task = new Roo.util.DelayedTask(h);
7593         return function(e){
7594             // create new event object impl so new events don't wipe out properties
7595             e = new Roo.EventObjectImpl(e);
7596             task.delay(o.buffer, h, null, [e]);
7597         };
7598     };
7599
7600     var createSingle = function(h, el, ename, fn){
7601         return function(e){
7602             Roo.EventManager.removeListener(el, ename, fn);
7603             h(e);
7604         };
7605     };
7606
7607     var createDelayed = function(h, o){
7608         return function(e){
7609             // create new event object impl so new events don't wipe out properties
7610             e = new Roo.EventObjectImpl(e);
7611             setTimeout(function(){
7612                 h(e);
7613             }, o.delay || 10);
7614         };
7615     };
7616     var transitionEndVal = false;
7617     
7618     var transitionEnd = function()
7619     {
7620         if (transitionEndVal) {
7621             return transitionEndVal;
7622         }
7623         var el = document.createElement('div');
7624
7625         var transEndEventNames = {
7626             WebkitTransition : 'webkitTransitionEnd',
7627             MozTransition    : 'transitionend',
7628             OTransition      : 'oTransitionEnd otransitionend',
7629             transition       : 'transitionend'
7630         };
7631     
7632         for (var name in transEndEventNames) {
7633             if (el.style[name] !== undefined) {
7634                 transitionEndVal = transEndEventNames[name];
7635                 return  transitionEndVal ;
7636             }
7637         }
7638     }
7639     
7640   
7641
7642     var listen = function(element, ename, opt, fn, scope)
7643     {
7644         var o = (!opt || typeof opt == "boolean") ? {} : opt;
7645         fn = fn || o.fn; scope = scope || o.scope;
7646         var el = Roo.getDom(element);
7647         
7648         
7649         if(!el){
7650             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
7651         }
7652         
7653         if (ename == 'transitionend') {
7654             ename = transitionEnd();
7655         }
7656         var h = function(e){
7657             e = Roo.EventObject.setEvent(e);
7658             var t;
7659             if(o.delegate){
7660                 t = e.getTarget(o.delegate, el);
7661                 if(!t){
7662                     return;
7663                 }
7664             }else{
7665                 t = e.target;
7666             }
7667             if(o.stopEvent === true){
7668                 e.stopEvent();
7669             }
7670             if(o.preventDefault === true){
7671                e.preventDefault();
7672             }
7673             if(o.stopPropagation === true){
7674                 e.stopPropagation();
7675             }
7676
7677             if(o.normalized === false){
7678                 e = e.browserEvent;
7679             }
7680
7681             fn.call(scope || el, e, t, o);
7682         };
7683         if(o.delay){
7684             h = createDelayed(h, o);
7685         }
7686         if(o.single){
7687             h = createSingle(h, el, ename, fn);
7688         }
7689         if(o.buffer){
7690             h = createBuffered(h, o);
7691         }
7692         
7693         fn._handlers = fn._handlers || [];
7694         
7695         
7696         fn._handlers.push([Roo.id(el), ename, h]);
7697         
7698         
7699          
7700         E.on(el, ename, h); // this adds the actuall listener to the object..
7701         
7702         
7703         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
7704             el.addEventListener("DOMMouseScroll", h, false);
7705             E.on(window, 'unload', function(){
7706                 el.removeEventListener("DOMMouseScroll", h, false);
7707             });
7708         }
7709         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7710             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
7711         }
7712         return h;
7713     };
7714
7715     var stopListening = function(el, ename, fn){
7716         var id = Roo.id(el), hds = fn._handlers, hd = fn;
7717         if(hds){
7718             for(var i = 0, len = hds.length; i < len; i++){
7719                 var h = hds[i];
7720                 if(h[0] == id && h[1] == ename){
7721                     hd = h[2];
7722                     hds.splice(i, 1);
7723                     break;
7724                 }
7725             }
7726         }
7727         E.un(el, ename, hd);
7728         el = Roo.getDom(el);
7729         if(ename == "mousewheel" && el.addEventListener){
7730             el.removeEventListener("DOMMouseScroll", hd, false);
7731         }
7732         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7733             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
7734         }
7735     };
7736
7737     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
7738     
7739     var pub = {
7740         
7741         
7742         /** 
7743          * Fix for doc tools
7744          * @scope Roo.EventManager
7745          */
7746         
7747         
7748         /** 
7749          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
7750          * object with a Roo.EventObject
7751          * @param {Function} fn        The method the event invokes
7752          * @param {Object}   scope    An object that becomes the scope of the handler
7753          * @param {boolean}  override If true, the obj passed in becomes
7754          *                             the execution scope of the listener
7755          * @return {Function} The wrapped function
7756          * @deprecated
7757          */
7758         wrap : function(fn, scope, override){
7759             return function(e){
7760                 Roo.EventObject.setEvent(e);
7761                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
7762             };
7763         },
7764         
7765         /**
7766      * Appends an event handler to an element (shorthand for addListener)
7767      * @param {String/HTMLElement}   element        The html element or id to assign the
7768      * @param {String}   eventName The type of event to listen for
7769      * @param {Function} handler The method the event invokes
7770      * @param {Object}   scope (optional) The scope in which to execute the handler
7771      * function. The handler function's "this" context.
7772      * @param {Object}   options (optional) An object containing handler configuration
7773      * properties. This may contain any of the following properties:<ul>
7774      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7775      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7776      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7777      * <li>preventDefault {Boolean} True to prevent the default action</li>
7778      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7779      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7780      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7781      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7782      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7783      * by the specified number of milliseconds. If the event fires again within that time, the original
7784      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7785      * </ul><br>
7786      * <p>
7787      * <b>Combining Options</b><br>
7788      * Using the options argument, it is possible to combine different types of listeners:<br>
7789      * <br>
7790      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7791      * Code:<pre><code>
7792 el.on('click', this.onClick, this, {
7793     single: true,
7794     delay: 100,
7795     stopEvent : true,
7796     forumId: 4
7797 });</code></pre>
7798      * <p>
7799      * <b>Attaching multiple handlers in 1 call</b><br>
7800       * The method also allows for a single argument to be passed which is a config object containing properties
7801      * which specify multiple handlers.
7802      * <p>
7803      * Code:<pre><code>
7804 el.on({
7805     'click' : {
7806         fn: this.onClick
7807         scope: this,
7808         delay: 100
7809     },
7810     'mouseover' : {
7811         fn: this.onMouseOver
7812         scope: this
7813     },
7814     'mouseout' : {
7815         fn: this.onMouseOut
7816         scope: this
7817     }
7818 });</code></pre>
7819      * <p>
7820      * Or a shorthand syntax:<br>
7821      * Code:<pre><code>
7822 el.on({
7823     'click' : this.onClick,
7824     'mouseover' : this.onMouseOver,
7825     'mouseout' : this.onMouseOut
7826     scope: this
7827 });</code></pre>
7828      */
7829         addListener : function(element, eventName, fn, scope, options){
7830             if(typeof eventName == "object"){
7831                 var o = eventName;
7832                 for(var e in o){
7833                     if(propRe.test(e)){
7834                         continue;
7835                     }
7836                     if(typeof o[e] == "function"){
7837                         // shared options
7838                         listen(element, e, o, o[e], o.scope);
7839                     }else{
7840                         // individual options
7841                         listen(element, e, o[e]);
7842                     }
7843                 }
7844                 return;
7845             }
7846             return listen(element, eventName, options, fn, scope);
7847         },
7848         
7849         /**
7850          * Removes an event handler
7851          *
7852          * @param {String/HTMLElement}   element        The id or html element to remove the 
7853          *                             event from
7854          * @param {String}   eventName     The type of event
7855          * @param {Function} fn
7856          * @return {Boolean} True if a listener was actually removed
7857          */
7858         removeListener : function(element, eventName, fn){
7859             return stopListening(element, eventName, fn);
7860         },
7861         
7862         /**
7863          * Fires when the document is ready (before onload and before images are loaded). Can be 
7864          * accessed shorthanded Roo.onReady().
7865          * @param {Function} fn        The method the event invokes
7866          * @param {Object}   scope    An  object that becomes the scope of the handler
7867          * @param {boolean}  options
7868          */
7869         onDocumentReady : function(fn, scope, options){
7870             if(docReadyState){ // if it already fired
7871                 docReadyEvent.addListener(fn, scope, options);
7872                 docReadyEvent.fire();
7873                 docReadyEvent.clearListeners();
7874                 return;
7875             }
7876             if(!docReadyEvent){
7877                 initDocReady();
7878             }
7879             docReadyEvent.addListener(fn, scope, options);
7880         },
7881         
7882         /**
7883          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
7884          * @param {Function} fn        The method the event invokes
7885          * @param {Object}   scope    An object that becomes the scope of the handler
7886          * @param {boolean}  options
7887          */
7888         onWindowResize : function(fn, scope, options)
7889         {
7890             if(!resizeEvent){
7891                 resizeEvent = new Roo.util.Event();
7892                 resizeTask = new Roo.util.DelayedTask(function(){
7893                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7894                 });
7895                 E.on(window, "resize", function()
7896                 {
7897                     if (Roo.isIE) {
7898                         resizeTask.delay(50);
7899                     } else {
7900                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7901                     }
7902                 });
7903             }
7904             resizeEvent.addListener(fn, scope, options);
7905         },
7906
7907         /**
7908          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
7909          * @param {Function} fn        The method the event invokes
7910          * @param {Object}   scope    An object that becomes the scope of the handler
7911          * @param {boolean}  options
7912          */
7913         onTextResize : function(fn, scope, options){
7914             if(!textEvent){
7915                 textEvent = new Roo.util.Event();
7916                 var textEl = new Roo.Element(document.createElement('div'));
7917                 textEl.dom.className = 'x-text-resize';
7918                 textEl.dom.innerHTML = 'X';
7919                 textEl.appendTo(document.body);
7920                 textSize = textEl.dom.offsetHeight;
7921                 setInterval(function(){
7922                     if(textEl.dom.offsetHeight != textSize){
7923                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
7924                     }
7925                 }, this.textResizeInterval);
7926             }
7927             textEvent.addListener(fn, scope, options);
7928         },
7929
7930         /**
7931          * Removes the passed window resize listener.
7932          * @param {Function} fn        The method the event invokes
7933          * @param {Object}   scope    The scope of handler
7934          */
7935         removeResizeListener : function(fn, scope){
7936             if(resizeEvent){
7937                 resizeEvent.removeListener(fn, scope);
7938             }
7939         },
7940
7941         // private
7942         fireResize : function(){
7943             if(resizeEvent){
7944                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7945             }   
7946         },
7947         /**
7948          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
7949          */
7950         ieDeferSrc : false,
7951         /**
7952          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
7953          */
7954         textResizeInterval : 50
7955     };
7956     
7957     /**
7958      * Fix for doc tools
7959      * @scopeAlias pub=Roo.EventManager
7960      */
7961     
7962      /**
7963      * Appends an event handler to an element (shorthand for addListener)
7964      * @param {String/HTMLElement}   element        The html element or id to assign the
7965      * @param {String}   eventName The type of event to listen for
7966      * @param {Function} handler The method the event invokes
7967      * @param {Object}   scope (optional) The scope in which to execute the handler
7968      * function. The handler function's "this" context.
7969      * @param {Object}   options (optional) An object containing handler configuration
7970      * properties. This may contain any of the following properties:<ul>
7971      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7972      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7973      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7974      * <li>preventDefault {Boolean} True to prevent the default action</li>
7975      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7976      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7977      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7978      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7979      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7980      * by the specified number of milliseconds. If the event fires again within that time, the original
7981      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7982      * </ul><br>
7983      * <p>
7984      * <b>Combining Options</b><br>
7985      * Using the options argument, it is possible to combine different types of listeners:<br>
7986      * <br>
7987      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7988      * Code:<pre><code>
7989 el.on('click', this.onClick, this, {
7990     single: true,
7991     delay: 100,
7992     stopEvent : true,
7993     forumId: 4
7994 });</code></pre>
7995      * <p>
7996      * <b>Attaching multiple handlers in 1 call</b><br>
7997       * The method also allows for a single argument to be passed which is a config object containing properties
7998      * which specify multiple handlers.
7999      * <p>
8000      * Code:<pre><code>
8001 el.on({
8002     'click' : {
8003         fn: this.onClick
8004         scope: this,
8005         delay: 100
8006     },
8007     'mouseover' : {
8008         fn: this.onMouseOver
8009         scope: this
8010     },
8011     'mouseout' : {
8012         fn: this.onMouseOut
8013         scope: this
8014     }
8015 });</code></pre>
8016      * <p>
8017      * Or a shorthand syntax:<br>
8018      * Code:<pre><code>
8019 el.on({
8020     'click' : this.onClick,
8021     'mouseover' : this.onMouseOver,
8022     'mouseout' : this.onMouseOut
8023     scope: this
8024 });</code></pre>
8025      */
8026     pub.on = pub.addListener;
8027     pub.un = pub.removeListener;
8028
8029     pub.stoppedMouseDownEvent = new Roo.util.Event();
8030     return pub;
8031 }();
8032 /**
8033   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
8034   * @param {Function} fn        The method the event invokes
8035   * @param {Object}   scope    An  object that becomes the scope of the handler
8036   * @param {boolean}  override If true, the obj passed in becomes
8037   *                             the execution scope of the listener
8038   * @member Roo
8039   * @method onReady
8040  */
8041 Roo.onReady = Roo.EventManager.onDocumentReady;
8042
8043 Roo.onReady(function(){
8044     var bd = Roo.get(document.body);
8045     if(!bd){ return; }
8046
8047     var cls = [
8048             Roo.isIE ? "roo-ie"
8049             : Roo.isIE11 ? "roo-ie11"
8050             : Roo.isEdge ? "roo-edge"
8051             : Roo.isGecko ? "roo-gecko"
8052             : Roo.isOpera ? "roo-opera"
8053             : Roo.isSafari ? "roo-safari" : ""];
8054
8055     if(Roo.isMac){
8056         cls.push("roo-mac");
8057     }
8058     if(Roo.isLinux){
8059         cls.push("roo-linux");
8060     }
8061     if(Roo.isIOS){
8062         cls.push("roo-ios");
8063     }
8064     if(Roo.isTouch){
8065         cls.push("roo-touch");
8066     }
8067     if(Roo.isBorderBox){
8068         cls.push('roo-border-box');
8069     }
8070     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
8071         var p = bd.dom.parentNode;
8072         if(p){
8073             p.className += ' roo-strict';
8074         }
8075     }
8076     bd.addClass(cls.join(' '));
8077 });
8078
8079 /**
8080  * @class Roo.EventObject
8081  * EventObject exposes the Yahoo! UI Event functionality directly on the object
8082  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
8083  * Example:
8084  * <pre><code>
8085  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
8086     e.preventDefault();
8087     var target = e.getTarget();
8088     ...
8089  }
8090  var myDiv = Roo.get("myDiv");
8091  myDiv.on("click", handleClick);
8092  //or
8093  Roo.EventManager.on("myDiv", 'click', handleClick);
8094  Roo.EventManager.addListener("myDiv", 'click', handleClick);
8095  </code></pre>
8096  * @static
8097  */
8098 Roo.EventObject = function(){
8099     
8100     var E = Roo.lib.Event;
8101     
8102     // safari keypress events for special keys return bad keycodes
8103     var safariKeys = {
8104         63234 : 37, // left
8105         63235 : 39, // right
8106         63232 : 38, // up
8107         63233 : 40, // down
8108         63276 : 33, // page up
8109         63277 : 34, // page down
8110         63272 : 46, // delete
8111         63273 : 36, // home
8112         63275 : 35  // end
8113     };
8114
8115     // normalize button clicks
8116     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
8117                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
8118
8119     Roo.EventObjectImpl = function(e){
8120         if(e){
8121             this.setEvent(e.browserEvent || e);
8122         }
8123     };
8124     Roo.EventObjectImpl.prototype = {
8125         /**
8126          * Used to fix doc tools.
8127          * @scope Roo.EventObject.prototype
8128          */
8129             
8130
8131         
8132         
8133         /** The normal browser event */
8134         browserEvent : null,
8135         /** The button pressed in a mouse event */
8136         button : -1,
8137         /** True if the shift key was down during the event */
8138         shiftKey : false,
8139         /** True if the control key was down during the event */
8140         ctrlKey : false,
8141         /** True if the alt key was down during the event */
8142         altKey : false,
8143
8144         /** Key constant 
8145         * @type Number */
8146         BACKSPACE : 8,
8147         /** Key constant 
8148         * @type Number */
8149         TAB : 9,
8150         /** Key constant 
8151         * @type Number */
8152         RETURN : 13,
8153         /** Key constant 
8154         * @type Number */
8155         ENTER : 13,
8156         /** Key constant 
8157         * @type Number */
8158         SHIFT : 16,
8159         /** Key constant 
8160         * @type Number */
8161         CONTROL : 17,
8162         /** Key constant 
8163         * @type Number */
8164         ESC : 27,
8165         /** Key constant 
8166         * @type Number */
8167         SPACE : 32,
8168         /** Key constant 
8169         * @type Number */
8170         PAGEUP : 33,
8171         /** Key constant 
8172         * @type Number */
8173         PAGEDOWN : 34,
8174         /** Key constant 
8175         * @type Number */
8176         END : 35,
8177         /** Key constant 
8178         * @type Number */
8179         HOME : 36,
8180         /** Key constant 
8181         * @type Number */
8182         LEFT : 37,
8183         /** Key constant 
8184         * @type Number */
8185         UP : 38,
8186         /** Key constant 
8187         * @type Number */
8188         RIGHT : 39,
8189         /** Key constant 
8190         * @type Number */
8191         DOWN : 40,
8192         /** Key constant 
8193         * @type Number */
8194         DELETE : 46,
8195         /** Key constant 
8196         * @type Number */
8197         F5 : 116,
8198
8199            /** @private */
8200         setEvent : function(e){
8201             if(e == this || (e && e.browserEvent)){ // already wrapped
8202                 return e;
8203             }
8204             this.browserEvent = e;
8205             if(e){
8206                 // normalize buttons
8207                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
8208                 if(e.type == 'click' && this.button == -1){
8209                     this.button = 0;
8210                 }
8211                 this.type = e.type;
8212                 this.shiftKey = e.shiftKey;
8213                 // mac metaKey behaves like ctrlKey
8214                 this.ctrlKey = e.ctrlKey || e.metaKey;
8215                 this.altKey = e.altKey;
8216                 // in getKey these will be normalized for the mac
8217                 this.keyCode = e.keyCode;
8218                 // keyup warnings on firefox.
8219                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
8220                 // cache the target for the delayed and or buffered events
8221                 this.target = E.getTarget(e);
8222                 // same for XY
8223                 this.xy = E.getXY(e);
8224             }else{
8225                 this.button = -1;
8226                 this.shiftKey = false;
8227                 this.ctrlKey = false;
8228                 this.altKey = false;
8229                 this.keyCode = 0;
8230                 this.charCode =0;
8231                 this.target = null;
8232                 this.xy = [0, 0];
8233             }
8234             return this;
8235         },
8236
8237         /**
8238          * Stop the event (preventDefault and stopPropagation)
8239          */
8240         stopEvent : function(){
8241             if(this.browserEvent){
8242                 if(this.browserEvent.type == 'mousedown'){
8243                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8244                 }
8245                 E.stopEvent(this.browserEvent);
8246             }
8247         },
8248
8249         /**
8250          * Prevents the browsers default handling of the event.
8251          */
8252         preventDefault : function(){
8253             if(this.browserEvent){
8254                 E.preventDefault(this.browserEvent);
8255             }
8256         },
8257
8258         /** @private */
8259         isNavKeyPress : function(){
8260             var k = this.keyCode;
8261             k = Roo.isSafari ? (safariKeys[k] || k) : k;
8262             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
8263         },
8264
8265         isSpecialKey : function(){
8266             var k = this.keyCode;
8267             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
8268             (k == 16) || (k == 17) ||
8269             (k >= 18 && k <= 20) ||
8270             (k >= 33 && k <= 35) ||
8271             (k >= 36 && k <= 39) ||
8272             (k >= 44 && k <= 45);
8273         },
8274         /**
8275          * Cancels bubbling of the event.
8276          */
8277         stopPropagation : function(){
8278             if(this.browserEvent){
8279                 if(this.type == 'mousedown'){
8280                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8281                 }
8282                 E.stopPropagation(this.browserEvent);
8283             }
8284         },
8285
8286         /**
8287          * Gets the key code for the event.
8288          * @return {Number}
8289          */
8290         getCharCode : function(){
8291             return this.charCode || this.keyCode;
8292         },
8293
8294         /**
8295          * Returns a normalized keyCode for the event.
8296          * @return {Number} The key code
8297          */
8298         getKey : function(){
8299             var k = this.keyCode || this.charCode;
8300             return Roo.isSafari ? (safariKeys[k] || k) : k;
8301         },
8302
8303         /**
8304          * Gets the x coordinate of the event.
8305          * @return {Number}
8306          */
8307         getPageX : function(){
8308             return this.xy[0];
8309         },
8310
8311         /**
8312          * Gets the y coordinate of the event.
8313          * @return {Number}
8314          */
8315         getPageY : function(){
8316             return this.xy[1];
8317         },
8318
8319         /**
8320          * Gets the time of the event.
8321          * @return {Number}
8322          */
8323         getTime : function(){
8324             if(this.browserEvent){
8325                 return E.getTime(this.browserEvent);
8326             }
8327             return null;
8328         },
8329
8330         /**
8331          * Gets the page coordinates of the event.
8332          * @return {Array} The xy values like [x, y]
8333          */
8334         getXY : function(){
8335             return this.xy;
8336         },
8337
8338         /**
8339          * Gets the target for the event.
8340          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
8341          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8342                 search as a number or element (defaults to 10 || document.body)
8343          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8344          * @return {HTMLelement}
8345          */
8346         getTarget : function(selector, maxDepth, returnEl){
8347             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
8348         },
8349         /**
8350          * Gets the related target.
8351          * @return {HTMLElement}
8352          */
8353         getRelatedTarget : function(){
8354             if(this.browserEvent){
8355                 return E.getRelatedTarget(this.browserEvent);
8356             }
8357             return null;
8358         },
8359
8360         /**
8361          * Normalizes mouse wheel delta across browsers
8362          * @return {Number} The delta
8363          */
8364         getWheelDelta : function(){
8365             var e = this.browserEvent;
8366             var delta = 0;
8367             if(e.wheelDelta){ /* IE/Opera. */
8368                 delta = e.wheelDelta/120;
8369             }else if(e.detail){ /* Mozilla case. */
8370                 delta = -e.detail/3;
8371             }
8372             return delta;
8373         },
8374
8375         /**
8376          * Returns true if the control, meta, shift or alt key was pressed during this event.
8377          * @return {Boolean}
8378          */
8379         hasModifier : function(){
8380             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
8381         },
8382
8383         /**
8384          * Returns true if the target of this event equals el or is a child of el
8385          * @param {String/HTMLElement/Element} el
8386          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
8387          * @return {Boolean}
8388          */
8389         within : function(el, related){
8390             var t = this[related ? "getRelatedTarget" : "getTarget"]();
8391             return t && Roo.fly(el).contains(t);
8392         },
8393
8394         getPoint : function(){
8395             return new Roo.lib.Point(this.xy[0], this.xy[1]);
8396         }
8397     };
8398
8399     return new Roo.EventObjectImpl();
8400 }();
8401             
8402     /*
8403  * Based on:
8404  * Ext JS Library 1.1.1
8405  * Copyright(c) 2006-2007, Ext JS, LLC.
8406  *
8407  * Originally Released Under LGPL - original licence link has changed is not relivant.
8408  *
8409  * Fork - LGPL
8410  * <script type="text/javascript">
8411  */
8412
8413  
8414 // was in Composite Element!??!?!
8415  
8416 (function(){
8417     var D = Roo.lib.Dom;
8418     var E = Roo.lib.Event;
8419     var A = Roo.lib.Anim;
8420
8421     // local style camelizing for speed
8422     var propCache = {};
8423     var camelRe = /(-[a-z])/gi;
8424     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
8425     var view = document.defaultView;
8426
8427 /**
8428  * @class Roo.Element
8429  * Represents an Element in the DOM.<br><br>
8430  * Usage:<br>
8431 <pre><code>
8432 var el = Roo.get("my-div");
8433
8434 // or with getEl
8435 var el = getEl("my-div");
8436
8437 // or with a DOM element
8438 var el = Roo.get(myDivElement);
8439 </code></pre>
8440  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
8441  * each call instead of constructing a new one.<br><br>
8442  * <b>Animations</b><br />
8443  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
8444  * should either be a boolean (true) or an object literal with animation options. The animation options are:
8445 <pre>
8446 Option    Default   Description
8447 --------- --------  ---------------------------------------------
8448 duration  .35       The duration of the animation in seconds
8449 easing    easeOut   The YUI easing method
8450 callback  none      A function to execute when the anim completes
8451 scope     this      The scope (this) of the callback function
8452 </pre>
8453 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
8454 * manipulate the animation. Here's an example:
8455 <pre><code>
8456 var el = Roo.get("my-div");
8457
8458 // no animation
8459 el.setWidth(100);
8460
8461 // default animation
8462 el.setWidth(100, true);
8463
8464 // animation with some options set
8465 el.setWidth(100, {
8466     duration: 1,
8467     callback: this.foo,
8468     scope: this
8469 });
8470
8471 // using the "anim" property to get the Anim object
8472 var opt = {
8473     duration: 1,
8474     callback: this.foo,
8475     scope: this
8476 };
8477 el.setWidth(100, opt);
8478 ...
8479 if(opt.anim.isAnimated()){
8480     opt.anim.stop();
8481 }
8482 </code></pre>
8483 * <b> Composite (Collections of) Elements</b><br />
8484  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
8485  * @constructor Create a new Element directly.
8486  * @param {String/HTMLElement} element
8487  * @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).
8488  */
8489     Roo.Element = function(element, forceNew)
8490     {
8491         var dom = typeof element == "string" ?
8492                 document.getElementById(element) : element;
8493         
8494         this.listeners = {};
8495         
8496         if(!dom){ // invalid id/element
8497             return null;
8498         }
8499         var id = dom.id;
8500         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
8501             return Roo.Element.cache[id];
8502         }
8503
8504         /**
8505          * The DOM element
8506          * @type HTMLElement
8507          */
8508         this.dom = dom;
8509
8510         /**
8511          * The DOM element ID
8512          * @type String
8513          */
8514         this.id = id || Roo.id(dom);
8515         
8516         return this; // assumed for cctor?
8517     };
8518
8519     var El = Roo.Element;
8520
8521     El.prototype = {
8522         /**
8523          * The element's default display mode  (defaults to "") 
8524          * @type String
8525          */
8526         originalDisplay : "",
8527
8528         
8529         // note this is overridden in BS version..
8530         visibilityMode : 1, 
8531         /**
8532          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
8533          * @type String
8534          */
8535         defaultUnit : "px",
8536         
8537         /**
8538          * Sets the element's visibility mode. When setVisible() is called it
8539          * will use this to determine whether to set the visibility or the display property.
8540          * @param visMode Element.VISIBILITY or Element.DISPLAY
8541          * @return {Roo.Element} this
8542          */
8543         setVisibilityMode : function(visMode){
8544             this.visibilityMode = visMode;
8545             return this;
8546         },
8547         /**
8548          * Convenience method for setVisibilityMode(Element.DISPLAY)
8549          * @param {String} display (optional) What to set display to when visible
8550          * @return {Roo.Element} this
8551          */
8552         enableDisplayMode : function(display){
8553             this.setVisibilityMode(El.DISPLAY);
8554             if(typeof display != "undefined") { this.originalDisplay = display; }
8555             return this;
8556         },
8557
8558         /**
8559          * 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)
8560          * @param {String} selector The simple selector to test
8561          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8562                 search as a number or element (defaults to 10 || document.body)
8563          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8564          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8565          */
8566         findParent : function(simpleSelector, maxDepth, returnEl){
8567             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
8568             maxDepth = maxDepth || 50;
8569             if(typeof maxDepth != "number"){
8570                 stopEl = Roo.getDom(maxDepth);
8571                 maxDepth = 10;
8572             }
8573             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
8574                 if(dq.is(p, simpleSelector)){
8575                     return returnEl ? Roo.get(p) : p;
8576                 }
8577                 depth++;
8578                 p = p.parentNode;
8579             }
8580             return null;
8581         },
8582
8583
8584         /**
8585          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
8586          * @param {String} selector The simple selector to test
8587          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8588                 search as a number or element (defaults to 10 || document.body)
8589          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8590          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8591          */
8592         findParentNode : function(simpleSelector, maxDepth, returnEl){
8593             var p = Roo.fly(this.dom.parentNode, '_internal');
8594             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
8595         },
8596         
8597         /**
8598          * Looks at  the scrollable parent element
8599          */
8600         findScrollableParent : function()
8601         {
8602             var overflowRegex = /(auto|scroll)/;
8603             
8604             if(this.getStyle('position') === 'fixed'){
8605                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8606             }
8607             
8608             var excludeStaticParent = this.getStyle('position') === "absolute";
8609             
8610             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
8611                 
8612                 if (excludeStaticParent && parent.getStyle('position') === "static") {
8613                     continue;
8614                 }
8615                 
8616                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
8617                     return parent;
8618                 }
8619                 
8620                 if(parent.dom.nodeName.toLowerCase() == 'body'){
8621                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8622                 }
8623             }
8624             
8625             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8626         },
8627
8628         /**
8629          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
8630          * This is a shortcut for findParentNode() that always returns an Roo.Element.
8631          * @param {String} selector The simple selector to test
8632          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8633                 search as a number or element (defaults to 10 || document.body)
8634          * @return {Roo.Element} The matching DOM node (or null if no match was found)
8635          */
8636         up : function(simpleSelector, maxDepth){
8637             return this.findParentNode(simpleSelector, maxDepth, true);
8638         },
8639
8640
8641
8642         /**
8643          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
8644          * @param {String} selector The simple selector to test
8645          * @return {Boolean} True if this element matches the selector, else false
8646          */
8647         is : function(simpleSelector){
8648             return Roo.DomQuery.is(this.dom, simpleSelector);
8649         },
8650
8651         /**
8652          * Perform animation on this element.
8653          * @param {Object} args The YUI animation control args
8654          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
8655          * @param {Function} onComplete (optional) Function to call when animation completes
8656          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
8657          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
8658          * @return {Roo.Element} this
8659          */
8660         animate : function(args, duration, onComplete, easing, animType){
8661             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
8662             return this;
8663         },
8664
8665         /*
8666          * @private Internal animation call
8667          */
8668         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
8669             animType = animType || 'run';
8670             opt = opt || {};
8671             var anim = Roo.lib.Anim[animType](
8672                 this.dom, args,
8673                 (opt.duration || defaultDur) || .35,
8674                 (opt.easing || defaultEase) || 'easeOut',
8675                 function(){
8676                     Roo.callback(cb, this);
8677                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
8678                 },
8679                 this
8680             );
8681             opt.anim = anim;
8682             return anim;
8683         },
8684
8685         // private legacy anim prep
8686         preanim : function(a, i){
8687             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
8688         },
8689
8690         /**
8691          * Removes worthless text nodes
8692          * @param {Boolean} forceReclean (optional) By default the element
8693          * keeps track if it has been cleaned already so
8694          * you can call this over and over. However, if you update the element and
8695          * need to force a reclean, you can pass true.
8696          */
8697         clean : function(forceReclean){
8698             if(this.isCleaned && forceReclean !== true){
8699                 return this;
8700             }
8701             var ns = /\S/;
8702             var d = this.dom, n = d.firstChild, ni = -1;
8703             while(n){
8704                 var nx = n.nextSibling;
8705                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
8706                     d.removeChild(n);
8707                 }else{
8708                     n.nodeIndex = ++ni;
8709                 }
8710                 n = nx;
8711             }
8712             this.isCleaned = true;
8713             return this;
8714         },
8715
8716         // private
8717         calcOffsetsTo : function(el){
8718             el = Roo.get(el);
8719             var d = el.dom;
8720             var restorePos = false;
8721             if(el.getStyle('position') == 'static'){
8722                 el.position('relative');
8723                 restorePos = true;
8724             }
8725             var x = 0, y =0;
8726             var op = this.dom;
8727             while(op && op != d && op.tagName != 'HTML'){
8728                 x+= op.offsetLeft;
8729                 y+= op.offsetTop;
8730                 op = op.offsetParent;
8731             }
8732             if(restorePos){
8733                 el.position('static');
8734             }
8735             return [x, y];
8736         },
8737
8738         /**
8739          * Scrolls this element into view within the passed container.
8740          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
8741          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
8742          * @return {Roo.Element} this
8743          */
8744         scrollIntoView : function(container, hscroll){
8745             var c = Roo.getDom(container) || document.body;
8746             var el = this.dom;
8747
8748             var o = this.calcOffsetsTo(c),
8749                 l = o[0],
8750                 t = o[1],
8751                 b = t+el.offsetHeight,
8752                 r = l+el.offsetWidth;
8753
8754             var ch = c.clientHeight;
8755             var ct = parseInt(c.scrollTop, 10);
8756             var cl = parseInt(c.scrollLeft, 10);
8757             var cb = ct + ch;
8758             var cr = cl + c.clientWidth;
8759
8760             if(t < ct){
8761                 c.scrollTop = t;
8762             }else if(b > cb){
8763                 c.scrollTop = b-ch;
8764             }
8765
8766             if(hscroll !== false){
8767                 if(l < cl){
8768                     c.scrollLeft = l;
8769                 }else if(r > cr){
8770                     c.scrollLeft = r-c.clientWidth;
8771                 }
8772             }
8773             return this;
8774         },
8775
8776         // private
8777         scrollChildIntoView : function(child, hscroll){
8778             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
8779         },
8780
8781         /**
8782          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
8783          * the new height may not be available immediately.
8784          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
8785          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
8786          * @param {Function} onComplete (optional) Function to call when animation completes
8787          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
8788          * @return {Roo.Element} this
8789          */
8790         autoHeight : function(animate, duration, onComplete, easing){
8791             var oldHeight = this.getHeight();
8792             this.clip();
8793             this.setHeight(1); // force clipping
8794             setTimeout(function(){
8795                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
8796                 if(!animate){
8797                     this.setHeight(height);
8798                     this.unclip();
8799                     if(typeof onComplete == "function"){
8800                         onComplete();
8801                     }
8802                 }else{
8803                     this.setHeight(oldHeight); // restore original height
8804                     this.setHeight(height, animate, duration, function(){
8805                         this.unclip();
8806                         if(typeof onComplete == "function") { onComplete(); }
8807                     }.createDelegate(this), easing);
8808                 }
8809             }.createDelegate(this), 0);
8810             return this;
8811         },
8812
8813         /**
8814          * Returns true if this element is an ancestor of the passed element
8815          * @param {HTMLElement/String} el The element to check
8816          * @return {Boolean} True if this element is an ancestor of el, else false
8817          */
8818         contains : function(el){
8819             if(!el){return false;}
8820             return D.isAncestor(this.dom, el.dom ? el.dom : el);
8821         },
8822
8823         /**
8824          * Checks whether the element is currently visible using both visibility and display properties.
8825          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
8826          * @return {Boolean} True if the element is currently visible, else false
8827          */
8828         isVisible : function(deep) {
8829             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
8830             if(deep !== true || !vis){
8831                 return vis;
8832             }
8833             var p = this.dom.parentNode;
8834             while(p && p.tagName.toLowerCase() != "body"){
8835                 if(!Roo.fly(p, '_isVisible').isVisible()){
8836                     return false;
8837                 }
8838                 p = p.parentNode;
8839             }
8840             return true;
8841         },
8842
8843         /**
8844          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
8845          * @param {String} selector The CSS selector
8846          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
8847          * @return {CompositeElement/CompositeElementLite} The composite element
8848          */
8849         select : function(selector, unique){
8850             return El.select(selector, unique, this.dom);
8851         },
8852
8853         /**
8854          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
8855          * @param {String} selector The CSS selector
8856          * @return {Array} An array of the matched nodes
8857          */
8858         query : function(selector, unique){
8859             return Roo.DomQuery.select(selector, this.dom);
8860         },
8861
8862         /**
8863          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
8864          * @param {String} selector The CSS selector
8865          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8866          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8867          */
8868         child : function(selector, returnDom){
8869             var n = Roo.DomQuery.selectNode(selector, this.dom);
8870             return returnDom ? n : Roo.get(n);
8871         },
8872
8873         /**
8874          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
8875          * @param {String} selector The CSS selector
8876          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8877          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8878          */
8879         down : function(selector, returnDom){
8880             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
8881             return returnDom ? n : Roo.get(n);
8882         },
8883
8884         /**
8885          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
8886          * @param {String} group The group the DD object is member of
8887          * @param {Object} config The DD config object
8888          * @param {Object} overrides An object containing methods to override/implement on the DD object
8889          * @return {Roo.dd.DD} The DD object
8890          */
8891         initDD : function(group, config, overrides){
8892             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
8893             return Roo.apply(dd, overrides);
8894         },
8895
8896         /**
8897          * Initializes a {@link Roo.dd.DDProxy} object for this element.
8898          * @param {String} group The group the DDProxy object is member of
8899          * @param {Object} config The DDProxy config object
8900          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
8901          * @return {Roo.dd.DDProxy} The DDProxy object
8902          */
8903         initDDProxy : function(group, config, overrides){
8904             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
8905             return Roo.apply(dd, overrides);
8906         },
8907
8908         /**
8909          * Initializes a {@link Roo.dd.DDTarget} object for this element.
8910          * @param {String} group The group the DDTarget object is member of
8911          * @param {Object} config The DDTarget config object
8912          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
8913          * @return {Roo.dd.DDTarget} The DDTarget object
8914          */
8915         initDDTarget : function(group, config, overrides){
8916             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
8917             return Roo.apply(dd, overrides);
8918         },
8919
8920         /**
8921          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
8922          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
8923          * @param {Boolean} visible Whether the element is visible
8924          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8925          * @return {Roo.Element} this
8926          */
8927          setVisible : function(visible, animate){
8928             if(!animate || !A){
8929                 if(this.visibilityMode == El.DISPLAY){
8930                     this.setDisplayed(visible);
8931                 }else{
8932                     this.fixDisplay();
8933                     this.dom.style.visibility = visible ? "visible" : "hidden";
8934                 }
8935             }else{
8936                 // closure for composites
8937                 var dom = this.dom;
8938                 var visMode = this.visibilityMode;
8939                 if(visible){
8940                     this.setOpacity(.01);
8941                     this.setVisible(true);
8942                 }
8943                 this.anim({opacity: { to: (visible?1:0) }},
8944                       this.preanim(arguments, 1),
8945                       null, .35, 'easeIn', function(){
8946                          if(!visible){
8947                              if(visMode == El.DISPLAY){
8948                                  dom.style.display = "none";
8949                              }else{
8950                                  dom.style.visibility = "hidden";
8951                              }
8952                              Roo.get(dom).setOpacity(1);
8953                          }
8954                      });
8955             }
8956             return this;
8957         },
8958
8959         /**
8960          * Returns true if display is not "none"
8961          * @return {Boolean}
8962          */
8963         isDisplayed : function() {
8964             return this.getStyle("display") != "none";
8965         },
8966
8967         /**
8968          * Toggles the element's visibility or display, depending on visibility mode.
8969          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8970          * @return {Roo.Element} this
8971          */
8972         toggle : function(animate){
8973             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
8974             return this;
8975         },
8976
8977         /**
8978          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
8979          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
8980          * @return {Roo.Element} this
8981          */
8982         setDisplayed : function(value) {
8983             if(typeof value == "boolean"){
8984                value = value ? this.originalDisplay : "none";
8985             }
8986             this.setStyle("display", value);
8987             return this;
8988         },
8989
8990         /**
8991          * Tries to focus the element. Any exceptions are caught and ignored.
8992          * @return {Roo.Element} this
8993          */
8994         focus : function() {
8995             try{
8996                 this.dom.focus();
8997             }catch(e){}
8998             return this;
8999         },
9000
9001         /**
9002          * Tries to blur the element. Any exceptions are caught and ignored.
9003          * @return {Roo.Element} this
9004          */
9005         blur : function() {
9006             try{
9007                 this.dom.blur();
9008             }catch(e){}
9009             return this;
9010         },
9011
9012         /**
9013          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
9014          * @param {String/Array} className The CSS class to add, or an array of classes
9015          * @return {Roo.Element} this
9016          */
9017         addClass : function(className){
9018             if(className instanceof Array){
9019                 for(var i = 0, len = className.length; i < len; i++) {
9020                     this.addClass(className[i]);
9021                 }
9022             }else{
9023                 if(className && !this.hasClass(className)){
9024                     if (this.dom instanceof SVGElement) {
9025                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
9026                     } else {
9027                         this.dom.className = this.dom.className + " " + className;
9028                     }
9029                 }
9030             }
9031             return this;
9032         },
9033
9034         /**
9035          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
9036          * @param {String/Array} className The CSS class to add, or an array of classes
9037          * @return {Roo.Element} this
9038          */
9039         radioClass : function(className){
9040             var siblings = this.dom.parentNode.childNodes;
9041             for(var i = 0; i < siblings.length; i++) {
9042                 var s = siblings[i];
9043                 if(s.nodeType == 1){
9044                     Roo.get(s).removeClass(className);
9045                 }
9046             }
9047             this.addClass(className);
9048             return this;
9049         },
9050
9051         /**
9052          * Removes one or more CSS classes from the element.
9053          * @param {String/Array} className The CSS class to remove, or an array of classes
9054          * @return {Roo.Element} this
9055          */
9056         removeClass : function(className){
9057             
9058             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
9059             if(!className || !cn){
9060                 return this;
9061             }
9062             if(className instanceof Array){
9063                 for(var i = 0, len = className.length; i < len; i++) {
9064                     this.removeClass(className[i]);
9065                 }
9066             }else{
9067                 if(this.hasClass(className)){
9068                     var re = this.classReCache[className];
9069                     if (!re) {
9070                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
9071                        this.classReCache[className] = re;
9072                     }
9073                     if (this.dom instanceof SVGElement) {
9074                         this.dom.className.baseVal = cn.replace(re, " ");
9075                     } else {
9076                         this.dom.className = cn.replace(re, " ");
9077                     }
9078                 }
9079             }
9080             return this;
9081         },
9082
9083         // private
9084         classReCache: {},
9085
9086         /**
9087          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
9088          * @param {String} className The CSS class to toggle
9089          * @return {Roo.Element} this
9090          */
9091         toggleClass : function(className){
9092             if(this.hasClass(className)){
9093                 this.removeClass(className);
9094             }else{
9095                 this.addClass(className);
9096             }
9097             return this;
9098         },
9099
9100         /**
9101          * Checks if the specified CSS class exists on this element's DOM node.
9102          * @param {String} className The CSS class to check for
9103          * @return {Boolean} True if the class exists, else false
9104          */
9105         hasClass : function(className){
9106             if (this.dom instanceof SVGElement) {
9107                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
9108             } 
9109             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
9110         },
9111
9112         /**
9113          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
9114          * @param {String} oldClassName The CSS class to replace
9115          * @param {String} newClassName The replacement CSS class
9116          * @return {Roo.Element} this
9117          */
9118         replaceClass : function(oldClassName, newClassName){
9119             this.removeClass(oldClassName);
9120             this.addClass(newClassName);
9121             return this;
9122         },
9123
9124         /**
9125          * Returns an object with properties matching the styles requested.
9126          * For example, el.getStyles('color', 'font-size', 'width') might return
9127          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
9128          * @param {String} style1 A style name
9129          * @param {String} style2 A style name
9130          * @param {String} etc.
9131          * @return {Object} The style object
9132          */
9133         getStyles : function(){
9134             var a = arguments, len = a.length, r = {};
9135             for(var i = 0; i < len; i++){
9136                 r[a[i]] = this.getStyle(a[i]);
9137             }
9138             return r;
9139         },
9140
9141         /**
9142          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
9143          * @param {String} property The style property whose value is returned.
9144          * @return {String} The current value of the style property for this element.
9145          */
9146         getStyle : function(){
9147             return view && view.getComputedStyle ?
9148                 function(prop){
9149                     var el = this.dom, v, cs, camel;
9150                     if(prop == 'float'){
9151                         prop = "cssFloat";
9152                     }
9153                     if(el.style && (v = el.style[prop])){
9154                         return v;
9155                     }
9156                     if(cs = view.getComputedStyle(el, "")){
9157                         if(!(camel = propCache[prop])){
9158                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
9159                         }
9160                         return cs[camel];
9161                     }
9162                     return null;
9163                 } :
9164                 function(prop){
9165                     var el = this.dom, v, cs, camel;
9166                     if(prop == 'opacity'){
9167                         if(typeof el.style.filter == 'string'){
9168                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
9169                             if(m){
9170                                 var fv = parseFloat(m[1]);
9171                                 if(!isNaN(fv)){
9172                                     return fv ? fv / 100 : 0;
9173                                 }
9174                             }
9175                         }
9176                         return 1;
9177                     }else if(prop == 'float'){
9178                         prop = "styleFloat";
9179                     }
9180                     if(!(camel = propCache[prop])){
9181                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
9182                     }
9183                     if(v = el.style[camel]){
9184                         return v;
9185                     }
9186                     if(cs = el.currentStyle){
9187                         return cs[camel];
9188                     }
9189                     return null;
9190                 };
9191         }(),
9192
9193         /**
9194          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
9195          * @param {String/Object} property The style property to be set, or an object of multiple styles.
9196          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
9197          * @return {Roo.Element} this
9198          */
9199         setStyle : function(prop, value){
9200             if(typeof prop == "string"){
9201                 
9202                 if (prop == 'float') {
9203                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
9204                     return this;
9205                 }
9206                 
9207                 var camel;
9208                 if(!(camel = propCache[prop])){
9209                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
9210                 }
9211                 
9212                 if(camel == 'opacity') {
9213                     this.setOpacity(value);
9214                 }else{
9215                     this.dom.style[camel] = value;
9216                 }
9217             }else{
9218                 for(var style in prop){
9219                     if(typeof prop[style] != "function"){
9220                        this.setStyle(style, prop[style]);
9221                     }
9222                 }
9223             }
9224             return this;
9225         },
9226
9227         /**
9228          * More flexible version of {@link #setStyle} for setting style properties.
9229          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
9230          * a function which returns such a specification.
9231          * @return {Roo.Element} this
9232          */
9233         applyStyles : function(style){
9234             Roo.DomHelper.applyStyles(this.dom, style);
9235             return this;
9236         },
9237
9238         /**
9239           * 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).
9240           * @return {Number} The X position of the element
9241           */
9242         getX : function(){
9243             return D.getX(this.dom);
9244         },
9245
9246         /**
9247           * 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).
9248           * @return {Number} The Y position of the element
9249           */
9250         getY : function(){
9251             return D.getY(this.dom);
9252         },
9253
9254         /**
9255           * 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).
9256           * @return {Array} The XY position of the element
9257           */
9258         getXY : function(){
9259             return D.getXY(this.dom);
9260         },
9261
9262         /**
9263          * 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).
9264          * @param {Number} The X position of the element
9265          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9266          * @return {Roo.Element} this
9267          */
9268         setX : function(x, animate){
9269             if(!animate || !A){
9270                 D.setX(this.dom, x);
9271             }else{
9272                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
9273             }
9274             return this;
9275         },
9276
9277         /**
9278          * 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).
9279          * @param {Number} The Y position of the element
9280          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9281          * @return {Roo.Element} this
9282          */
9283         setY : function(y, animate){
9284             if(!animate || !A){
9285                 D.setY(this.dom, y);
9286             }else{
9287                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
9288             }
9289             return this;
9290         },
9291
9292         /**
9293          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
9294          * @param {String} left The left CSS property value
9295          * @return {Roo.Element} this
9296          */
9297         setLeft : function(left){
9298             this.setStyle("left", this.addUnits(left));
9299             return this;
9300         },
9301
9302         /**
9303          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
9304          * @param {String} top The top CSS property value
9305          * @return {Roo.Element} this
9306          */
9307         setTop : function(top){
9308             this.setStyle("top", this.addUnits(top));
9309             return this;
9310         },
9311
9312         /**
9313          * Sets the element's CSS right style.
9314          * @param {String} right The right CSS property value
9315          * @return {Roo.Element} this
9316          */
9317         setRight : function(right){
9318             this.setStyle("right", this.addUnits(right));
9319             return this;
9320         },
9321
9322         /**
9323          * Sets the element's CSS bottom style.
9324          * @param {String} bottom The bottom CSS property value
9325          * @return {Roo.Element} this
9326          */
9327         setBottom : function(bottom){
9328             this.setStyle("bottom", this.addUnits(bottom));
9329             return this;
9330         },
9331
9332         /**
9333          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9334          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9335          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
9336          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9337          * @return {Roo.Element} this
9338          */
9339         setXY : function(pos, animate){
9340             if(!animate || !A){
9341                 D.setXY(this.dom, pos);
9342             }else{
9343                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
9344             }
9345             return this;
9346         },
9347
9348         /**
9349          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9350          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9351          * @param {Number} x X value for new position (coordinates are page-based)
9352          * @param {Number} y Y value for new position (coordinates are page-based)
9353          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9354          * @return {Roo.Element} this
9355          */
9356         setLocation : function(x, y, animate){
9357             this.setXY([x, y], this.preanim(arguments, 2));
9358             return this;
9359         },
9360
9361         /**
9362          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9363          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9364          * @param {Number} x X value for new position (coordinates are page-based)
9365          * @param {Number} y Y value for new position (coordinates are page-based)
9366          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9367          * @return {Roo.Element} this
9368          */
9369         moveTo : function(x, y, animate){
9370             this.setXY([x, y], this.preanim(arguments, 2));
9371             return this;
9372         },
9373
9374         /**
9375          * Returns the region of the given element.
9376          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
9377          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
9378          */
9379         getRegion : function(){
9380             return D.getRegion(this.dom);
9381         },
9382
9383         /**
9384          * Returns the offset height of the element
9385          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
9386          * @return {Number} The element's height
9387          */
9388         getHeight : function(contentHeight){
9389             var h = this.dom.offsetHeight || 0;
9390             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
9391         },
9392
9393         /**
9394          * Returns the offset width of the element
9395          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
9396          * @return {Number} The element's width
9397          */
9398         getWidth : function(contentWidth){
9399             var w = this.dom.offsetWidth || 0;
9400             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
9401         },
9402
9403         /**
9404          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
9405          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
9406          * if a height has not been set using CSS.
9407          * @return {Number}
9408          */
9409         getComputedHeight : function(){
9410             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
9411             if(!h){
9412                 h = parseInt(this.getStyle('height'), 10) || 0;
9413                 if(!this.isBorderBox()){
9414                     h += this.getFrameWidth('tb');
9415                 }
9416             }
9417             return h;
9418         },
9419
9420         /**
9421          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
9422          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
9423          * if a width has not been set using CSS.
9424          * @return {Number}
9425          */
9426         getComputedWidth : function(){
9427             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
9428             if(!w){
9429                 w = parseInt(this.getStyle('width'), 10) || 0;
9430                 if(!this.isBorderBox()){
9431                     w += this.getFrameWidth('lr');
9432                 }
9433             }
9434             return w;
9435         },
9436
9437         /**
9438          * Returns the size of the element.
9439          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
9440          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
9441          */
9442         getSize : function(contentSize){
9443             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
9444         },
9445
9446         /**
9447          * Returns the width and height of the viewport.
9448          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
9449          */
9450         getViewSize : function(){
9451             var d = this.dom, doc = document, aw = 0, ah = 0;
9452             if(d == doc || d == doc.body){
9453                 return {width : D.getViewWidth(), height: D.getViewHeight()};
9454             }else{
9455                 return {
9456                     width : d.clientWidth,
9457                     height: d.clientHeight
9458                 };
9459             }
9460         },
9461
9462         /**
9463          * Returns the value of the "value" attribute
9464          * @param {Boolean} asNumber true to parse the value as a number
9465          * @return {String/Number}
9466          */
9467         getValue : function(asNumber){
9468             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
9469         },
9470
9471         // private
9472         adjustWidth : function(width){
9473             if(typeof width == "number"){
9474                 if(this.autoBoxAdjust && !this.isBorderBox()){
9475                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9476                 }
9477                 if(width < 0){
9478                     width = 0;
9479                 }
9480             }
9481             return width;
9482         },
9483
9484         // private
9485         adjustHeight : function(height){
9486             if(typeof height == "number"){
9487                if(this.autoBoxAdjust && !this.isBorderBox()){
9488                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9489                }
9490                if(height < 0){
9491                    height = 0;
9492                }
9493             }
9494             return height;
9495         },
9496
9497         /**
9498          * Set the width of the element
9499          * @param {Number} width The new width
9500          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9501          * @return {Roo.Element} this
9502          */
9503         setWidth : function(width, animate){
9504             width = this.adjustWidth(width);
9505             if(!animate || !A){
9506                 this.dom.style.width = this.addUnits(width);
9507             }else{
9508                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
9509             }
9510             return this;
9511         },
9512
9513         /**
9514          * Set the height of the element
9515          * @param {Number} height The new height
9516          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9517          * @return {Roo.Element} this
9518          */
9519          setHeight : function(height, animate){
9520             height = this.adjustHeight(height);
9521             if(!animate || !A){
9522                 this.dom.style.height = this.addUnits(height);
9523             }else{
9524                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
9525             }
9526             return this;
9527         },
9528
9529         /**
9530          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
9531          * @param {Number} width The new width
9532          * @param {Number} height The new height
9533          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9534          * @return {Roo.Element} this
9535          */
9536          setSize : function(width, height, animate){
9537             if(typeof width == "object"){ // in case of object from getSize()
9538                 height = width.height; width = width.width;
9539             }
9540             width = this.adjustWidth(width); height = this.adjustHeight(height);
9541             if(!animate || !A){
9542                 this.dom.style.width = this.addUnits(width);
9543                 this.dom.style.height = this.addUnits(height);
9544             }else{
9545                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
9546             }
9547             return this;
9548         },
9549
9550         /**
9551          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
9552          * @param {Number} x X value for new position (coordinates are page-based)
9553          * @param {Number} y Y value for new position (coordinates are page-based)
9554          * @param {Number} width The new width
9555          * @param {Number} height The new height
9556          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9557          * @return {Roo.Element} this
9558          */
9559         setBounds : function(x, y, width, height, animate){
9560             if(!animate || !A){
9561                 this.setSize(width, height);
9562                 this.setLocation(x, y);
9563             }else{
9564                 width = this.adjustWidth(width); height = this.adjustHeight(height);
9565                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
9566                               this.preanim(arguments, 4), 'motion');
9567             }
9568             return this;
9569         },
9570
9571         /**
9572          * 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.
9573          * @param {Roo.lib.Region} region The region to fill
9574          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9575          * @return {Roo.Element} this
9576          */
9577         setRegion : function(region, animate){
9578             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
9579             return this;
9580         },
9581
9582         /**
9583          * Appends an event handler
9584          *
9585          * @param {String}   eventName     The type of event to append
9586          * @param {Function} fn        The method the event invokes
9587          * @param {Object} scope       (optional) The scope (this object) of the fn
9588          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9589          */
9590         addListener : function(eventName, fn, scope, options)
9591         {
9592             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
9593                 this.addListener('touchstart', this.onTapHandler, this);
9594             }
9595             
9596             // we need to handle a special case where dom element is a svg element.
9597             // in this case we do not actua
9598             if (!this.dom) {
9599                 return;
9600             }
9601             
9602             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
9603                 if (typeof(this.listeners[eventName]) == 'undefined') {
9604                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
9605                 }
9606                 this.listeners[eventName].addListener(fn, scope, options);
9607                 return;
9608             }
9609             
9610                 
9611             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
9612             
9613             
9614         },
9615         tapedTwice : false,
9616         onTapHandler : function(event)
9617         {
9618             if(!this.tapedTwice) {
9619                 this.tapedTwice = true;
9620                 var s = this;
9621                 setTimeout( function() {
9622                     s.tapedTwice = false;
9623                 }, 300 );
9624                 return;
9625             }
9626             event.preventDefault();
9627             var revent = new MouseEvent('dblclick',  {
9628                 view: window,
9629                 bubbles: true,
9630                 cancelable: true
9631             });
9632              
9633             this.dom.dispatchEvent(revent);
9634             //action on double tap goes below
9635              
9636         }, 
9637  
9638         /**
9639          * Removes an event handler from this element
9640          * @param {String} eventName the type of event to remove
9641          * @param {Function} fn the method the event invokes
9642          * @param {Function} scope (needed for svg fake listeners)
9643          * @return {Roo.Element} this
9644          */
9645         removeListener : function(eventName, fn, scope){
9646             Roo.EventManager.removeListener(this.dom,  eventName, fn);
9647             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
9648                 return this;
9649             }
9650             this.listeners[eventName].removeListener(fn, scope);
9651             return this;
9652         },
9653
9654         /**
9655          * Removes all previous added listeners from this element
9656          * @return {Roo.Element} this
9657          */
9658         removeAllListeners : function(){
9659             E.purgeElement(this.dom);
9660             this.listeners = {};
9661             return this;
9662         },
9663
9664         relayEvent : function(eventName, observable){
9665             this.on(eventName, function(e){
9666                 observable.fireEvent(eventName, e);
9667             });
9668         },
9669
9670         
9671         /**
9672          * Set the opacity of the element
9673          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
9674          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9675          * @return {Roo.Element} this
9676          */
9677          setOpacity : function(opacity, animate){
9678             if(!animate || !A){
9679                 var s = this.dom.style;
9680                 if(Roo.isIE){
9681                     s.zoom = 1;
9682                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
9683                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
9684                 }else{
9685                     s.opacity = opacity;
9686                 }
9687             }else{
9688                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
9689             }
9690             return this;
9691         },
9692
9693         /**
9694          * Gets the left X coordinate
9695          * @param {Boolean} local True to get the local css position instead of page coordinate
9696          * @return {Number}
9697          */
9698         getLeft : function(local){
9699             if(!local){
9700                 return this.getX();
9701             }else{
9702                 return parseInt(this.getStyle("left"), 10) || 0;
9703             }
9704         },
9705
9706         /**
9707          * Gets the right X coordinate of the element (element X position + element width)
9708          * @param {Boolean} local True to get the local css position instead of page coordinate
9709          * @return {Number}
9710          */
9711         getRight : function(local){
9712             if(!local){
9713                 return this.getX() + this.getWidth();
9714             }else{
9715                 return (this.getLeft(true) + this.getWidth()) || 0;
9716             }
9717         },
9718
9719         /**
9720          * Gets the top Y coordinate
9721          * @param {Boolean} local True to get the local css position instead of page coordinate
9722          * @return {Number}
9723          */
9724         getTop : function(local) {
9725             if(!local){
9726                 return this.getY();
9727             }else{
9728                 return parseInt(this.getStyle("top"), 10) || 0;
9729             }
9730         },
9731
9732         /**
9733          * Gets the bottom Y coordinate of the element (element Y position + element height)
9734          * @param {Boolean} local True to get the local css position instead of page coordinate
9735          * @return {Number}
9736          */
9737         getBottom : function(local){
9738             if(!local){
9739                 return this.getY() + this.getHeight();
9740             }else{
9741                 return (this.getTop(true) + this.getHeight()) || 0;
9742             }
9743         },
9744
9745         /**
9746         * Initializes positioning on this element. If a desired position is not passed, it will make the
9747         * the element positioned relative IF it is not already positioned.
9748         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
9749         * @param {Number} zIndex (optional) The zIndex to apply
9750         * @param {Number} x (optional) Set the page X position
9751         * @param {Number} y (optional) Set the page Y position
9752         */
9753         position : function(pos, zIndex, x, y){
9754             if(!pos){
9755                if(this.getStyle('position') == 'static'){
9756                    this.setStyle('position', 'relative');
9757                }
9758             }else{
9759                 this.setStyle("position", pos);
9760             }
9761             if(zIndex){
9762                 this.setStyle("z-index", zIndex);
9763             }
9764             if(x !== undefined && y !== undefined){
9765                 this.setXY([x, y]);
9766             }else if(x !== undefined){
9767                 this.setX(x);
9768             }else if(y !== undefined){
9769                 this.setY(y);
9770             }
9771         },
9772
9773         /**
9774         * Clear positioning back to the default when the document was loaded
9775         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
9776         * @return {Roo.Element} this
9777          */
9778         clearPositioning : function(value){
9779             value = value ||'';
9780             this.setStyle({
9781                 "left": value,
9782                 "right": value,
9783                 "top": value,
9784                 "bottom": value,
9785                 "z-index": "",
9786                 "position" : "static"
9787             });
9788             return this;
9789         },
9790
9791         /**
9792         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
9793         * snapshot before performing an update and then restoring the element.
9794         * @return {Object}
9795         */
9796         getPositioning : function(){
9797             var l = this.getStyle("left");
9798             var t = this.getStyle("top");
9799             return {
9800                 "position" : this.getStyle("position"),
9801                 "left" : l,
9802                 "right" : l ? "" : this.getStyle("right"),
9803                 "top" : t,
9804                 "bottom" : t ? "" : this.getStyle("bottom"),
9805                 "z-index" : this.getStyle("z-index")
9806             };
9807         },
9808
9809         /**
9810          * Gets the width of the border(s) for the specified side(s)
9811          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9812          * passing lr would get the border (l)eft width + the border (r)ight width.
9813          * @return {Number} The width of the sides passed added together
9814          */
9815         getBorderWidth : function(side){
9816             return this.addStyles(side, El.borders);
9817         },
9818
9819         /**
9820          * Gets the width of the padding(s) for the specified side(s)
9821          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9822          * passing lr would get the padding (l)eft + the padding (r)ight.
9823          * @return {Number} The padding of the sides passed added together
9824          */
9825         getPadding : function(side){
9826             return this.addStyles(side, El.paddings);
9827         },
9828
9829         /**
9830         * Set positioning with an object returned by getPositioning().
9831         * @param {Object} posCfg
9832         * @return {Roo.Element} this
9833          */
9834         setPositioning : function(pc){
9835             this.applyStyles(pc);
9836             if(pc.right == "auto"){
9837                 this.dom.style.right = "";
9838             }
9839             if(pc.bottom == "auto"){
9840                 this.dom.style.bottom = "";
9841             }
9842             return this;
9843         },
9844
9845         // private
9846         fixDisplay : function(){
9847             if(this.getStyle("display") == "none"){
9848                 this.setStyle("visibility", "hidden");
9849                 this.setStyle("display", this.originalDisplay); // first try reverting to default
9850                 if(this.getStyle("display") == "none"){ // if that fails, default to block
9851                     this.setStyle("display", "block");
9852                 }
9853             }
9854         },
9855
9856         /**
9857          * Quick set left and top adding default units
9858          * @param {String} left The left CSS property value
9859          * @param {String} top The top CSS property value
9860          * @return {Roo.Element} this
9861          */
9862          setLeftTop : function(left, top){
9863             this.dom.style.left = this.addUnits(left);
9864             this.dom.style.top = this.addUnits(top);
9865             return this;
9866         },
9867
9868         /**
9869          * Move this element relative to its current position.
9870          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9871          * @param {Number} distance How far to move the element in pixels
9872          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9873          * @return {Roo.Element} this
9874          */
9875          move : function(direction, distance, animate){
9876             var xy = this.getXY();
9877             direction = direction.toLowerCase();
9878             switch(direction){
9879                 case "l":
9880                 case "left":
9881                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
9882                     break;
9883                case "r":
9884                case "right":
9885                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
9886                     break;
9887                case "t":
9888                case "top":
9889                case "up":
9890                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
9891                     break;
9892                case "b":
9893                case "bottom":
9894                case "down":
9895                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
9896                     break;
9897             }
9898             return this;
9899         },
9900
9901         /**
9902          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
9903          * @return {Roo.Element} this
9904          */
9905         clip : function(){
9906             if(!this.isClipped){
9907                this.isClipped = true;
9908                this.originalClip = {
9909                    "o": this.getStyle("overflow"),
9910                    "x": this.getStyle("overflow-x"),
9911                    "y": this.getStyle("overflow-y")
9912                };
9913                this.setStyle("overflow", "hidden");
9914                this.setStyle("overflow-x", "hidden");
9915                this.setStyle("overflow-y", "hidden");
9916             }
9917             return this;
9918         },
9919
9920         /**
9921          *  Return clipping (overflow) to original clipping before clip() was called
9922          * @return {Roo.Element} this
9923          */
9924         unclip : function(){
9925             if(this.isClipped){
9926                 this.isClipped = false;
9927                 var o = this.originalClip;
9928                 if(o.o){this.setStyle("overflow", o.o);}
9929                 if(o.x){this.setStyle("overflow-x", o.x);}
9930                 if(o.y){this.setStyle("overflow-y", o.y);}
9931             }
9932             return this;
9933         },
9934
9935
9936         /**
9937          * Gets the x,y coordinates specified by the anchor position on the element.
9938          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
9939          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
9940          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
9941          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
9942          * @return {Array} [x, y] An array containing the element's x and y coordinates
9943          */
9944         getAnchorXY : function(anchor, local, s){
9945             //Passing a different size is useful for pre-calculating anchors,
9946             //especially for anchored animations that change the el size.
9947
9948             var w, h, vp = false;
9949             if(!s){
9950                 var d = this.dom;
9951                 if(d == document.body || d == document){
9952                     vp = true;
9953                     w = D.getViewWidth(); h = D.getViewHeight();
9954                 }else{
9955                     w = this.getWidth(); h = this.getHeight();
9956                 }
9957             }else{
9958                 w = s.width;  h = s.height;
9959             }
9960             var x = 0, y = 0, r = Math.round;
9961             switch((anchor || "tl").toLowerCase()){
9962                 case "c":
9963                     x = r(w*.5);
9964                     y = r(h*.5);
9965                 break;
9966                 case "t":
9967                     x = r(w*.5);
9968                     y = 0;
9969                 break;
9970                 case "l":
9971                     x = 0;
9972                     y = r(h*.5);
9973                 break;
9974                 case "r":
9975                     x = w;
9976                     y = r(h*.5);
9977                 break;
9978                 case "b":
9979                     x = r(w*.5);
9980                     y = h;
9981                 break;
9982                 case "tl":
9983                     x = 0;
9984                     y = 0;
9985                 break;
9986                 case "bl":
9987                     x = 0;
9988                     y = h;
9989                 break;
9990                 case "br":
9991                     x = w;
9992                     y = h;
9993                 break;
9994                 case "tr":
9995                     x = w;
9996                     y = 0;
9997                 break;
9998             }
9999             if(local === true){
10000                 return [x, y];
10001             }
10002             if(vp){
10003                 var sc = this.getScroll();
10004                 return [x + sc.left, y + sc.top];
10005             }
10006             //Add the element's offset xy
10007             var o = this.getXY();
10008             return [x+o[0], y+o[1]];
10009         },
10010
10011         /**
10012          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
10013          * supported position values.
10014          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10015          * @param {String} position The position to align to.
10016          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10017          * @return {Array} [x, y]
10018          */
10019         getAlignToXY : function(el, p, o)
10020         {
10021             el = Roo.get(el);
10022             var d = this.dom;
10023             if(!el.dom){
10024                 throw "Element.alignTo with an element that doesn't exist";
10025             }
10026             var c = false; //constrain to viewport
10027             var p1 = "", p2 = "";
10028             o = o || [0,0];
10029
10030             if(!p){
10031                 p = "tl-bl";
10032             }else if(p == "?"){
10033                 p = "tl-bl?";
10034             }else if(p.indexOf("-") == -1){
10035                 p = "tl-" + p;
10036             }
10037             p = p.toLowerCase();
10038             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
10039             if(!m){
10040                throw "Element.alignTo with an invalid alignment " + p;
10041             }
10042             p1 = m[1]; p2 = m[2]; c = !!m[3];
10043
10044             //Subtract the aligned el's internal xy from the target's offset xy
10045             //plus custom offset to get the aligned el's new offset xy
10046             var a1 = this.getAnchorXY(p1, true);
10047             var a2 = el.getAnchorXY(p2, false);
10048             var x = a2[0] - a1[0] + o[0];
10049             var y = a2[1] - a1[1] + o[1];
10050             if(c){
10051                 //constrain the aligned el to viewport if necessary
10052                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
10053                 // 5px of margin for ie
10054                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
10055
10056                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
10057                 //perpendicular to the vp border, allow the aligned el to slide on that border,
10058                 //otherwise swap the aligned el to the opposite border of the target.
10059                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
10060                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
10061                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
10062                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
10063
10064                var doc = document;
10065                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
10066                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
10067
10068                if((x+w) > dw + scrollX){
10069                     x = swapX ? r.left-w : dw+scrollX-w;
10070                 }
10071                if(x < scrollX){
10072                    x = swapX ? r.right : scrollX;
10073                }
10074                if((y+h) > dh + scrollY){
10075                     y = swapY ? r.top-h : dh+scrollY-h;
10076                 }
10077                if (y < scrollY){
10078                    y = swapY ? r.bottom : scrollY;
10079                }
10080             }
10081             return [x,y];
10082         },
10083
10084         // private
10085         getConstrainToXY : function(){
10086             var os = {top:0, left:0, bottom:0, right: 0};
10087
10088             return function(el, local, offsets, proposedXY){
10089                 el = Roo.get(el);
10090                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
10091
10092                 var vw, vh, vx = 0, vy = 0;
10093                 if(el.dom == document.body || el.dom == document){
10094                     vw = Roo.lib.Dom.getViewWidth();
10095                     vh = Roo.lib.Dom.getViewHeight();
10096                 }else{
10097                     vw = el.dom.clientWidth;
10098                     vh = el.dom.clientHeight;
10099                     if(!local){
10100                         var vxy = el.getXY();
10101                         vx = vxy[0];
10102                         vy = vxy[1];
10103                     }
10104                 }
10105
10106                 var s = el.getScroll();
10107
10108                 vx += offsets.left + s.left;
10109                 vy += offsets.top + s.top;
10110
10111                 vw -= offsets.right;
10112                 vh -= offsets.bottom;
10113
10114                 var vr = vx+vw;
10115                 var vb = vy+vh;
10116
10117                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
10118                 var x = xy[0], y = xy[1];
10119                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
10120
10121                 // only move it if it needs it
10122                 var moved = false;
10123
10124                 // first validate right/bottom
10125                 if((x + w) > vr){
10126                     x = vr - w;
10127                     moved = true;
10128                 }
10129                 if((y + h) > vb){
10130                     y = vb - h;
10131                     moved = true;
10132                 }
10133                 // then make sure top/left isn't negative
10134                 if(x < vx){
10135                     x = vx;
10136                     moved = true;
10137                 }
10138                 if(y < vy){
10139                     y = vy;
10140                     moved = true;
10141                 }
10142                 return moved ? [x, y] : false;
10143             };
10144         }(),
10145
10146         // private
10147         adjustForConstraints : function(xy, parent, offsets){
10148             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
10149         },
10150
10151         /**
10152          * Aligns this element with another element relative to the specified anchor points. If the other element is the
10153          * document it aligns it to the viewport.
10154          * The position parameter is optional, and can be specified in any one of the following formats:
10155          * <ul>
10156          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
10157          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
10158          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
10159          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
10160          *   <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
10161          *       element's anchor point, and the second value is used as the target's anchor point.</li>
10162          * </ul>
10163          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
10164          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
10165          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
10166          * that specified in order to enforce the viewport constraints.
10167          * Following are all of the supported anchor positions:
10168     <pre>
10169     Value  Description
10170     -----  -----------------------------
10171     tl     The top left corner (default)
10172     t      The center of the top edge
10173     tr     The top right corner
10174     l      The center of the left edge
10175     c      In the center of the element
10176     r      The center of the right edge
10177     bl     The bottom left corner
10178     b      The center of the bottom edge
10179     br     The bottom right corner
10180     </pre>
10181     Example Usage:
10182     <pre><code>
10183     // align el to other-el using the default positioning ("tl-bl", non-constrained)
10184     el.alignTo("other-el");
10185
10186     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
10187     el.alignTo("other-el", "tr?");
10188
10189     // align the bottom right corner of el with the center left edge of other-el
10190     el.alignTo("other-el", "br-l?");
10191
10192     // align the center of el with the bottom left corner of other-el and
10193     // adjust the x position by -6 pixels (and the y position by 0)
10194     el.alignTo("other-el", "c-bl", [-6, 0]);
10195     </code></pre>
10196          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10197          * @param {String} position The position to align to.
10198          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10199          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10200          * @return {Roo.Element} this
10201          */
10202         alignTo : function(element, position, offsets, animate){
10203             var xy = this.getAlignToXY(element, position, offsets);
10204             this.setXY(xy, this.preanim(arguments, 3));
10205             return this;
10206         },
10207
10208         /**
10209          * Anchors an element to another element and realigns it when the window is resized.
10210          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10211          * @param {String} position The position to align to.
10212          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10213          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
10214          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
10215          * is a number, it is used as the buffer delay (defaults to 50ms).
10216          * @param {Function} callback The function to call after the animation finishes
10217          * @return {Roo.Element} this
10218          */
10219         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
10220             var action = function(){
10221                 this.alignTo(el, alignment, offsets, animate);
10222                 Roo.callback(callback, this);
10223             };
10224             Roo.EventManager.onWindowResize(action, this);
10225             var tm = typeof monitorScroll;
10226             if(tm != 'undefined'){
10227                 Roo.EventManager.on(window, 'scroll', action, this,
10228                     {buffer: tm == 'number' ? monitorScroll : 50});
10229             }
10230             action.call(this); // align immediately
10231             return this;
10232         },
10233         /**
10234          * Clears any opacity settings from this element. Required in some cases for IE.
10235          * @return {Roo.Element} this
10236          */
10237         clearOpacity : function(){
10238             if (window.ActiveXObject) {
10239                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
10240                     this.dom.style.filter = "";
10241                 }
10242             } else {
10243                 this.dom.style.opacity = "";
10244                 this.dom.style["-moz-opacity"] = "";
10245                 this.dom.style["-khtml-opacity"] = "";
10246             }
10247             return this;
10248         },
10249
10250         /**
10251          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10252          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10253          * @return {Roo.Element} this
10254          */
10255         hide : function(animate){
10256             this.setVisible(false, this.preanim(arguments, 0));
10257             return this;
10258         },
10259
10260         /**
10261         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10262         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10263          * @return {Roo.Element} this
10264          */
10265         show : function(animate){
10266             this.setVisible(true, this.preanim(arguments, 0));
10267             return this;
10268         },
10269
10270         /**
10271          * @private Test if size has a unit, otherwise appends the default
10272          */
10273         addUnits : function(size){
10274             return Roo.Element.addUnits(size, this.defaultUnit);
10275         },
10276
10277         /**
10278          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
10279          * @return {Roo.Element} this
10280          */
10281         beginMeasure : function(){
10282             var el = this.dom;
10283             if(el.offsetWidth || el.offsetHeight){
10284                 return this; // offsets work already
10285             }
10286             var changed = [];
10287             var p = this.dom, b = document.body; // start with this element
10288             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
10289                 var pe = Roo.get(p);
10290                 if(pe.getStyle('display') == 'none'){
10291                     changed.push({el: p, visibility: pe.getStyle("visibility")});
10292                     p.style.visibility = "hidden";
10293                     p.style.display = "block";
10294                 }
10295                 p = p.parentNode;
10296             }
10297             this._measureChanged = changed;
10298             return this;
10299
10300         },
10301
10302         /**
10303          * Restores displays to before beginMeasure was called
10304          * @return {Roo.Element} this
10305          */
10306         endMeasure : function(){
10307             var changed = this._measureChanged;
10308             if(changed){
10309                 for(var i = 0, len = changed.length; i < len; i++) {
10310                     var r = changed[i];
10311                     r.el.style.visibility = r.visibility;
10312                     r.el.style.display = "none";
10313                 }
10314                 this._measureChanged = null;
10315             }
10316             return this;
10317         },
10318
10319         /**
10320         * Update the innerHTML of this element, optionally searching for and processing scripts
10321         * @param {String} html The new HTML
10322         * @param {Boolean} loadScripts (optional) true to look for and process scripts
10323         * @param {Function} callback For async script loading you can be noticed when the update completes
10324         * @return {Roo.Element} this
10325          */
10326         update : function(html, loadScripts, callback){
10327             if(typeof html == "undefined"){
10328                 html = "";
10329             }
10330             if(loadScripts !== true){
10331                 this.dom.innerHTML = html;
10332                 if(typeof callback == "function"){
10333                     callback();
10334                 }
10335                 return this;
10336             }
10337             var id = Roo.id();
10338             var dom = this.dom;
10339
10340             html += '<span id="' + id + '"></span>';
10341
10342             E.onAvailable(id, function(){
10343                 var hd = document.getElementsByTagName("head")[0];
10344                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
10345                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
10346                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
10347
10348                 var match;
10349                 while(match = re.exec(html)){
10350                     var attrs = match[1];
10351                     var srcMatch = attrs ? attrs.match(srcRe) : false;
10352                     if(srcMatch && srcMatch[2]){
10353                        var s = document.createElement("script");
10354                        s.src = srcMatch[2];
10355                        var typeMatch = attrs.match(typeRe);
10356                        if(typeMatch && typeMatch[2]){
10357                            s.type = typeMatch[2];
10358                        }
10359                        hd.appendChild(s);
10360                     }else if(match[2] && match[2].length > 0){
10361                         if(window.execScript) {
10362                            window.execScript(match[2]);
10363                         } else {
10364                             /**
10365                              * eval:var:id
10366                              * eval:var:dom
10367                              * eval:var:html
10368                              * 
10369                              */
10370                            window.eval(match[2]);
10371                         }
10372                     }
10373                 }
10374                 var el = document.getElementById(id);
10375                 if(el){el.parentNode.removeChild(el);}
10376                 if(typeof callback == "function"){
10377                     callback();
10378                 }
10379             });
10380             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
10381             return this;
10382         },
10383
10384         /**
10385          * Direct access to the UpdateManager update() method (takes the same parameters).
10386          * @param {String/Function} url The url for this request or a function to call to get the url
10387          * @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}
10388          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
10389          * @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.
10390          * @return {Roo.Element} this
10391          */
10392         load : function(){
10393             var um = this.getUpdateManager();
10394             um.update.apply(um, arguments);
10395             return this;
10396         },
10397
10398         /**
10399         * Gets this element's UpdateManager
10400         * @return {Roo.UpdateManager} The UpdateManager
10401         */
10402         getUpdateManager : function(){
10403             if(!this.updateManager){
10404                 this.updateManager = new Roo.UpdateManager(this);
10405             }
10406             return this.updateManager;
10407         },
10408
10409         /**
10410          * Disables text selection for this element (normalized across browsers)
10411          * @return {Roo.Element} this
10412          */
10413         unselectable : function(){
10414             this.dom.unselectable = "on";
10415             this.swallowEvent("selectstart", true);
10416             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
10417             this.addClass("x-unselectable");
10418             return this;
10419         },
10420
10421         /**
10422         * Calculates the x, y to center this element on the screen
10423         * @return {Array} The x, y values [x, y]
10424         */
10425         getCenterXY : function(){
10426             return this.getAlignToXY(document, 'c-c');
10427         },
10428
10429         /**
10430         * Centers the Element in either the viewport, or another Element.
10431         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
10432         */
10433         center : function(centerIn){
10434             this.alignTo(centerIn || document, 'c-c');
10435             return this;
10436         },
10437
10438         /**
10439          * Tests various css rules/browsers to determine if this element uses a border box
10440          * @return {Boolean}
10441          */
10442         isBorderBox : function(){
10443             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
10444         },
10445
10446         /**
10447          * Return a box {x, y, width, height} that can be used to set another elements
10448          * size/location to match this element.
10449          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
10450          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
10451          * @return {Object} box An object in the format {x, y, width, height}
10452          */
10453         getBox : function(contentBox, local){
10454             var xy;
10455             if(!local){
10456                 xy = this.getXY();
10457             }else{
10458                 var left = parseInt(this.getStyle("left"), 10) || 0;
10459                 var top = parseInt(this.getStyle("top"), 10) || 0;
10460                 xy = [left, top];
10461             }
10462             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
10463             if(!contentBox){
10464                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
10465             }else{
10466                 var l = this.getBorderWidth("l")+this.getPadding("l");
10467                 var r = this.getBorderWidth("r")+this.getPadding("r");
10468                 var t = this.getBorderWidth("t")+this.getPadding("t");
10469                 var b = this.getBorderWidth("b")+this.getPadding("b");
10470                 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)};
10471             }
10472             bx.right = bx.x + bx.width;
10473             bx.bottom = bx.y + bx.height;
10474             return bx;
10475         },
10476
10477         /**
10478          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
10479          for more information about the sides.
10480          * @param {String} sides
10481          * @return {Number}
10482          */
10483         getFrameWidth : function(sides, onlyContentBox){
10484             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
10485         },
10486
10487         /**
10488          * 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.
10489          * @param {Object} box The box to fill {x, y, width, height}
10490          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
10491          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10492          * @return {Roo.Element} this
10493          */
10494         setBox : function(box, adjust, animate){
10495             var w = box.width, h = box.height;
10496             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
10497                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
10498                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
10499             }
10500             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
10501             return this;
10502         },
10503
10504         /**
10505          * Forces the browser to repaint this element
10506          * @return {Roo.Element} this
10507          */
10508          repaint : function(){
10509             var dom = this.dom;
10510             this.addClass("x-repaint");
10511             setTimeout(function(){
10512                 Roo.get(dom).removeClass("x-repaint");
10513             }, 1);
10514             return this;
10515         },
10516
10517         /**
10518          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
10519          * then it returns the calculated width of the sides (see getPadding)
10520          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
10521          * @return {Object/Number}
10522          */
10523         getMargins : function(side){
10524             if(!side){
10525                 return {
10526                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
10527                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
10528                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
10529                     right: parseInt(this.getStyle("margin-right"), 10) || 0
10530                 };
10531             }else{
10532                 return this.addStyles(side, El.margins);
10533              }
10534         },
10535
10536         // private
10537         addStyles : function(sides, styles){
10538             var val = 0, v, w;
10539             for(var i = 0, len = sides.length; i < len; i++){
10540                 v = this.getStyle(styles[sides.charAt(i)]);
10541                 if(v){
10542                      w = parseInt(v, 10);
10543                      if(w){ val += w; }
10544                 }
10545             }
10546             return val;
10547         },
10548
10549         /**
10550          * Creates a proxy element of this element
10551          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
10552          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
10553          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
10554          * @return {Roo.Element} The new proxy element
10555          */
10556         createProxy : function(config, renderTo, matchBox){
10557             if(renderTo){
10558                 renderTo = Roo.getDom(renderTo);
10559             }else{
10560                 renderTo = document.body;
10561             }
10562             config = typeof config == "object" ?
10563                 config : {tag : "div", cls: config};
10564             var proxy = Roo.DomHelper.append(renderTo, config, true);
10565             if(matchBox){
10566                proxy.setBox(this.getBox());
10567             }
10568             return proxy;
10569         },
10570
10571         /**
10572          * Puts a mask over this element to disable user interaction. Requires core.css.
10573          * This method can only be applied to elements which accept child nodes.
10574          * @param {String} msg (optional) A message to display in the mask
10575          * @param {String} msgCls (optional) A css class to apply to the msg element - use no-spinner to hide the spinner on bootstrap
10576          * @return {Element} The mask  element
10577          */
10578         mask : function(msg, msgCls)
10579         {
10580             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
10581                 this.setStyle("position", "relative");
10582             }
10583             if(!this._mask){
10584                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
10585             }
10586             
10587             this.addClass("x-masked");
10588             this._mask.setDisplayed(true);
10589             
10590             // we wander
10591             var z = 0;
10592             var dom = this.dom;
10593             while (dom && dom.style) {
10594                 if (!isNaN(parseInt(dom.style.zIndex))) {
10595                     z = Math.max(z, parseInt(dom.style.zIndex));
10596                 }
10597                 dom = dom.parentNode;
10598             }
10599             // if we are masking the body - then it hides everything..
10600             if (this.dom == document.body) {
10601                 z = 1000000;
10602                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
10603                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
10604             }
10605            
10606             if(typeof msg == 'string'){
10607                 if(!this._maskMsg){
10608                     this._maskMsg = Roo.DomHelper.append(this.dom, {
10609                         cls: "roo-el-mask-msg", 
10610                         cn: [
10611                             {
10612                                 tag: 'i',
10613                                 cls: 'fa fa-spinner fa-spin'
10614                             },
10615                             {
10616                                 tag: 'div'
10617                             }   
10618                         ]
10619                     }, true);
10620                 }
10621                 var mm = this._maskMsg;
10622                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
10623                 if (mm.dom.lastChild) { // weird IE issue?
10624                     mm.dom.lastChild.innerHTML = msg;
10625                 }
10626                 mm.setDisplayed(true);
10627                 mm.center(this);
10628                 mm.setStyle('z-index', z + 102);
10629             }
10630             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
10631                 this._mask.setHeight(this.getHeight());
10632             }
10633             this._mask.setStyle('z-index', z + 100);
10634             
10635             return this._mask;
10636         },
10637
10638         /**
10639          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
10640          * it is cached for reuse.
10641          */
10642         unmask : function(removeEl){
10643             if(this._mask){
10644                 if(removeEl === true){
10645                     this._mask.remove();
10646                     delete this._mask;
10647                     if(this._maskMsg){
10648                         this._maskMsg.remove();
10649                         delete this._maskMsg;
10650                     }
10651                 }else{
10652                     this._mask.setDisplayed(false);
10653                     if(this._maskMsg){
10654                         this._maskMsg.setDisplayed(false);
10655                     }
10656                 }
10657             }
10658             this.removeClass("x-masked");
10659         },
10660
10661         /**
10662          * Returns true if this element is masked
10663          * @return {Boolean}
10664          */
10665         isMasked : function(){
10666             return this._mask && this._mask.isVisible();
10667         },
10668
10669         /**
10670          * Creates an iframe shim for this element to keep selects and other windowed objects from
10671          * showing through.
10672          * @return {Roo.Element} The new shim element
10673          */
10674         createShim : function(){
10675             var el = document.createElement('iframe');
10676             el.frameBorder = 'no';
10677             el.className = 'roo-shim';
10678             if(Roo.isIE && Roo.isSecure){
10679                 el.src = Roo.SSL_SECURE_URL;
10680             }
10681             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
10682             shim.autoBoxAdjust = false;
10683             return shim;
10684         },
10685
10686         /**
10687          * Removes this element from the DOM and deletes it from the cache
10688          */
10689         remove : function(){
10690             if(this.dom.parentNode){
10691                 this.dom.parentNode.removeChild(this.dom);
10692             }
10693             delete El.cache[this.dom.id];
10694         },
10695
10696         /**
10697          * Sets up event handlers to add and remove a css class when the mouse is over this element
10698          * @param {String} className
10699          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
10700          * mouseout events for children elements
10701          * @return {Roo.Element} this
10702          */
10703         addClassOnOver : function(className, preventFlicker){
10704             this.on("mouseover", function(){
10705                 Roo.fly(this, '_internal').addClass(className);
10706             }, this.dom);
10707             var removeFn = function(e){
10708                 if(preventFlicker !== true || !e.within(this, true)){
10709                     Roo.fly(this, '_internal').removeClass(className);
10710                 }
10711             };
10712             this.on("mouseout", removeFn, this.dom);
10713             return this;
10714         },
10715
10716         /**
10717          * Sets up event handlers to add and remove a css class when this element has the focus
10718          * @param {String} className
10719          * @return {Roo.Element} this
10720          */
10721         addClassOnFocus : function(className){
10722             this.on("focus", function(){
10723                 Roo.fly(this, '_internal').addClass(className);
10724             }, this.dom);
10725             this.on("blur", function(){
10726                 Roo.fly(this, '_internal').removeClass(className);
10727             }, this.dom);
10728             return this;
10729         },
10730         /**
10731          * 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)
10732          * @param {String} className
10733          * @return {Roo.Element} this
10734          */
10735         addClassOnClick : function(className){
10736             var dom = this.dom;
10737             this.on("mousedown", function(){
10738                 Roo.fly(dom, '_internal').addClass(className);
10739                 var d = Roo.get(document);
10740                 var fn = function(){
10741                     Roo.fly(dom, '_internal').removeClass(className);
10742                     d.removeListener("mouseup", fn);
10743                 };
10744                 d.on("mouseup", fn);
10745             });
10746             return this;
10747         },
10748
10749         /**
10750          * Stops the specified event from bubbling and optionally prevents the default action
10751          * @param {String} eventName
10752          * @param {Boolean} preventDefault (optional) true to prevent the default action too
10753          * @return {Roo.Element} this
10754          */
10755         swallowEvent : function(eventName, preventDefault){
10756             var fn = function(e){
10757                 e.stopPropagation();
10758                 if(preventDefault){
10759                     e.preventDefault();
10760                 }
10761             };
10762             if(eventName instanceof Array){
10763                 for(var i = 0, len = eventName.length; i < len; i++){
10764                      this.on(eventName[i], fn);
10765                 }
10766                 return this;
10767             }
10768             this.on(eventName, fn);
10769             return this;
10770         },
10771
10772         /**
10773          * @private
10774          */
10775         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
10776
10777         /**
10778          * Sizes this element to its parent element's dimensions performing
10779          * neccessary box adjustments.
10780          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
10781          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
10782          * @return {Roo.Element} this
10783          */
10784         fitToParent : function(monitorResize, targetParent) {
10785           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
10786           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
10787           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
10788             return this;
10789           }
10790           var p = Roo.get(targetParent || this.dom.parentNode);
10791           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
10792           if (monitorResize === true) {
10793             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
10794             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
10795           }
10796           return this;
10797         },
10798
10799         /**
10800          * Gets the next sibling, skipping text nodes
10801          * @return {HTMLElement} The next sibling or null
10802          */
10803         getNextSibling : function(){
10804             var n = this.dom.nextSibling;
10805             while(n && n.nodeType != 1){
10806                 n = n.nextSibling;
10807             }
10808             return n;
10809         },
10810
10811         /**
10812          * Gets the previous sibling, skipping text nodes
10813          * @return {HTMLElement} The previous sibling or null
10814          */
10815         getPrevSibling : function(){
10816             var n = this.dom.previousSibling;
10817             while(n && n.nodeType != 1){
10818                 n = n.previousSibling;
10819             }
10820             return n;
10821         },
10822
10823
10824         /**
10825          * Appends the passed element(s) to this element
10826          * @param {String/HTMLElement/Array/Element/CompositeElement} el
10827          * @return {Roo.Element} this
10828          */
10829         appendChild: function(el){
10830             el = Roo.get(el);
10831             el.appendTo(this);
10832             return this;
10833         },
10834
10835         /**
10836          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
10837          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
10838          * automatically generated with the specified attributes.
10839          * @param {HTMLElement} insertBefore (optional) a child element of this element
10840          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
10841          * @return {Roo.Element} The new child element
10842          */
10843         createChild: function(config, insertBefore, returnDom){
10844             config = config || {tag:'div'};
10845             if(insertBefore){
10846                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
10847             }
10848             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
10849         },
10850
10851         /**
10852          * Appends this element to the passed element
10853          * @param {String/HTMLElement/Element} el The new parent element
10854          * @return {Roo.Element} this
10855          */
10856         appendTo: function(el){
10857             el = Roo.getDom(el);
10858             el.appendChild(this.dom);
10859             return this;
10860         },
10861
10862         /**
10863          * Inserts this element before the passed element in the DOM
10864          * @param {String/HTMLElement/Element} el The element to insert before
10865          * @return {Roo.Element} this
10866          */
10867         insertBefore: function(el){
10868             el = Roo.getDom(el);
10869             el.parentNode.insertBefore(this.dom, el);
10870             return this;
10871         },
10872
10873         /**
10874          * Inserts this element after the passed element in the DOM
10875          * @param {String/HTMLElement/Element} el The element to insert after
10876          * @return {Roo.Element} this
10877          */
10878         insertAfter: function(el){
10879             el = Roo.getDom(el);
10880             el.parentNode.insertBefore(this.dom, el.nextSibling);
10881             return this;
10882         },
10883
10884         /**
10885          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
10886          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10887          * @return {Roo.Element} The new child
10888          */
10889         insertFirst: function(el, returnDom){
10890             el = el || {};
10891             if(typeof el == 'object' && !el.nodeType){ // dh config
10892                 return this.createChild(el, this.dom.firstChild, returnDom);
10893             }else{
10894                 el = Roo.getDom(el);
10895                 this.dom.insertBefore(el, this.dom.firstChild);
10896                 return !returnDom ? Roo.get(el) : el;
10897             }
10898         },
10899
10900         /**
10901          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
10902          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10903          * @param {String} where (optional) 'before' or 'after' defaults to before
10904          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10905          * @return {Roo.Element} the inserted Element
10906          */
10907         insertSibling: function(el, where, returnDom){
10908             where = where ? where.toLowerCase() : 'before';
10909             el = el || {};
10910             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
10911
10912             if(typeof el == 'object' && !el.nodeType){ // dh config
10913                 if(where == 'after' && !this.dom.nextSibling){
10914                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
10915                 }else{
10916                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
10917                 }
10918
10919             }else{
10920                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
10921                             where == 'before' ? this.dom : this.dom.nextSibling);
10922                 if(!returnDom){
10923                     rt = Roo.get(rt);
10924                 }
10925             }
10926             return rt;
10927         },
10928
10929         /**
10930          * Creates and wraps this element with another element
10931          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
10932          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10933          * @return {HTMLElement/Element} The newly created wrapper element
10934          */
10935         wrap: function(config, returnDom){
10936             if(!config){
10937                 config = {tag: "div"};
10938             }
10939             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
10940             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
10941             return newEl;
10942         },
10943
10944         /**
10945          * Replaces the passed element with this element
10946          * @param {String/HTMLElement/Element} el The element to replace
10947          * @return {Roo.Element} this
10948          */
10949         replace: function(el){
10950             el = Roo.get(el);
10951             this.insertBefore(el);
10952             el.remove();
10953             return this;
10954         },
10955
10956         /**
10957          * Inserts an html fragment into this element
10958          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
10959          * @param {String} html The HTML fragment
10960          * @param {Boolean} returnEl True to return an Roo.Element
10961          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
10962          */
10963         insertHtml : function(where, html, returnEl){
10964             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
10965             return returnEl ? Roo.get(el) : el;
10966         },
10967
10968         /**
10969          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
10970          * @param {Object} o The object with the attributes
10971          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
10972          * @return {Roo.Element} this
10973          */
10974         set : function(o, useSet){
10975             var el = this.dom;
10976             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
10977             for(var attr in o){
10978                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
10979                 if(attr=="cls"){
10980                     el.className = o["cls"];
10981                 }else{
10982                     if(useSet) {
10983                         el.setAttribute(attr, o[attr]);
10984                     } else {
10985                         el[attr] = o[attr];
10986                     }
10987                 }
10988             }
10989             if(o.style){
10990                 Roo.DomHelper.applyStyles(el, o.style);
10991             }
10992             return this;
10993         },
10994
10995         /**
10996          * Convenience method for constructing a KeyMap
10997          * @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:
10998          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
10999          * @param {Function} fn The function to call
11000          * @param {Object} scope (optional) The scope of the function
11001          * @return {Roo.KeyMap} The KeyMap created
11002          */
11003         addKeyListener : function(key, fn, scope){
11004             var config;
11005             if(typeof key != "object" || key instanceof Array){
11006                 config = {
11007                     key: key,
11008                     fn: fn,
11009                     scope: scope
11010                 };
11011             }else{
11012                 config = {
11013                     key : key.key,
11014                     shift : key.shift,
11015                     ctrl : key.ctrl,
11016                     alt : key.alt,
11017                     fn: fn,
11018                     scope: scope
11019                 };
11020             }
11021             return new Roo.KeyMap(this, config);
11022         },
11023
11024         /**
11025          * Creates a KeyMap for this element
11026          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
11027          * @return {Roo.KeyMap} The KeyMap created
11028          */
11029         addKeyMap : function(config){
11030             return new Roo.KeyMap(this, config);
11031         },
11032
11033         /**
11034          * Returns true if this element is scrollable.
11035          * @return {Boolean}
11036          */
11037          isScrollable : function(){
11038             var dom = this.dom;
11039             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
11040         },
11041
11042         /**
11043          * 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().
11044          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
11045          * @param {Number} value The new scroll value
11046          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11047          * @return {Element} this
11048          */
11049
11050         scrollTo : function(side, value, animate){
11051             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
11052             if(!animate || !A){
11053                 this.dom[prop] = value;
11054             }else{
11055                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
11056                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
11057             }
11058             return this;
11059         },
11060
11061         /**
11062          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
11063          * within this element's scrollable range.
11064          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
11065          * @param {Number} distance How far to scroll the element in pixels
11066          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11067          * @return {Boolean} Returns true if a scroll was triggered or false if the element
11068          * was scrolled as far as it could go.
11069          */
11070          scroll : function(direction, distance, animate){
11071              if(!this.isScrollable()){
11072                  return;
11073              }
11074              var el = this.dom;
11075              var l = el.scrollLeft, t = el.scrollTop;
11076              var w = el.scrollWidth, h = el.scrollHeight;
11077              var cw = el.clientWidth, ch = el.clientHeight;
11078              direction = direction.toLowerCase();
11079              var scrolled = false;
11080              var a = this.preanim(arguments, 2);
11081              switch(direction){
11082                  case "l":
11083                  case "left":
11084                      if(w - l > cw){
11085                          var v = Math.min(l + distance, w-cw);
11086                          this.scrollTo("left", v, a);
11087                          scrolled = true;
11088                      }
11089                      break;
11090                 case "r":
11091                 case "right":
11092                      if(l > 0){
11093                          var v = Math.max(l - distance, 0);
11094                          this.scrollTo("left", v, a);
11095                          scrolled = true;
11096                      }
11097                      break;
11098                 case "t":
11099                 case "top":
11100                 case "up":
11101                      if(t > 0){
11102                          var v = Math.max(t - distance, 0);
11103                          this.scrollTo("top", v, a);
11104                          scrolled = true;
11105                      }
11106                      break;
11107                 case "b":
11108                 case "bottom":
11109                 case "down":
11110                      if(h - t > ch){
11111                          var v = Math.min(t + distance, h-ch);
11112                          this.scrollTo("top", v, a);
11113                          scrolled = true;
11114                      }
11115                      break;
11116              }
11117              return scrolled;
11118         },
11119
11120         /**
11121          * Translates the passed page coordinates into left/top css values for this element
11122          * @param {Number/Array} x The page x or an array containing [x, y]
11123          * @param {Number} y The page y
11124          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
11125          */
11126         translatePoints : function(x, y){
11127             if(typeof x == 'object' || x instanceof Array){
11128                 y = x[1]; x = x[0];
11129             }
11130             var p = this.getStyle('position');
11131             var o = this.getXY();
11132
11133             var l = parseInt(this.getStyle('left'), 10);
11134             var t = parseInt(this.getStyle('top'), 10);
11135
11136             if(isNaN(l)){
11137                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
11138             }
11139             if(isNaN(t)){
11140                 t = (p == "relative") ? 0 : this.dom.offsetTop;
11141             }
11142
11143             return {left: (x - o[0] + l), top: (y - o[1] + t)};
11144         },
11145
11146         /**
11147          * Returns the current scroll position of the element.
11148          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
11149          */
11150         getScroll : function(){
11151             var d = this.dom, doc = document;
11152             if(d == doc || d == doc.body){
11153                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
11154                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
11155                 return {left: l, top: t};
11156             }else{
11157                 return {left: d.scrollLeft, top: d.scrollTop};
11158             }
11159         },
11160
11161         /**
11162          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
11163          * are convert to standard 6 digit hex color.
11164          * @param {String} attr The css attribute
11165          * @param {String} defaultValue The default value to use when a valid color isn't found
11166          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
11167          * YUI color anims.
11168          */
11169         getColor : function(attr, defaultValue, prefix){
11170             var v = this.getStyle(attr);
11171             if(!v || v == "transparent" || v == "inherit") {
11172                 return defaultValue;
11173             }
11174             var color = typeof prefix == "undefined" ? "#" : prefix;
11175             if(v.substr(0, 4) == "rgb("){
11176                 var rvs = v.slice(4, v.length -1).split(",");
11177                 for(var i = 0; i < 3; i++){
11178                     var h = parseInt(rvs[i]).toString(16);
11179                     if(h < 16){
11180                         h = "0" + h;
11181                     }
11182                     color += h;
11183                 }
11184             } else {
11185                 if(v.substr(0, 1) == "#"){
11186                     if(v.length == 4) {
11187                         for(var i = 1; i < 4; i++){
11188                             var c = v.charAt(i);
11189                             color +=  c + c;
11190                         }
11191                     }else if(v.length == 7){
11192                         color += v.substr(1);
11193                     }
11194                 }
11195             }
11196             return(color.length > 5 ? color.toLowerCase() : defaultValue);
11197         },
11198
11199         /**
11200          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
11201          * gradient background, rounded corners and a 4-way shadow.
11202          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
11203          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
11204          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
11205          * @return {Roo.Element} this
11206          */
11207         boxWrap : function(cls){
11208             cls = cls || 'x-box';
11209             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
11210             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
11211             return el;
11212         },
11213
11214         /**
11215          * Returns the value of a namespaced attribute from the element's underlying DOM node.
11216          * @param {String} namespace The namespace in which to look for the attribute
11217          * @param {String} name The attribute name
11218          * @return {String} The attribute value
11219          */
11220         getAttributeNS : Roo.isIE ? function(ns, name){
11221             var d = this.dom;
11222             var type = typeof d[ns+":"+name];
11223             if(type != 'undefined' && type != 'unknown'){
11224                 return d[ns+":"+name];
11225             }
11226             return d[name];
11227         } : function(ns, name){
11228             var d = this.dom;
11229             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
11230         },
11231         
11232         
11233         /**
11234          * Sets or Returns the value the dom attribute value
11235          * @param {String|Object} name The attribute name (or object to set multiple attributes)
11236          * @param {String} value (optional) The value to set the attribute to
11237          * @return {String} The attribute value
11238          */
11239         attr : function(name){
11240             if (arguments.length > 1) {
11241                 this.dom.setAttribute(name, arguments[1]);
11242                 return arguments[1];
11243             }
11244             if (typeof(name) == 'object') {
11245                 for(var i in name) {
11246                     this.attr(i, name[i]);
11247                 }
11248                 return name;
11249             }
11250             
11251             
11252             if (!this.dom.hasAttribute(name)) {
11253                 return undefined;
11254             }
11255             return this.dom.getAttribute(name);
11256         }
11257         
11258         
11259         
11260     };
11261
11262     var ep = El.prototype;
11263
11264     /**
11265      * Appends an event handler (Shorthand for addListener)
11266      * @param {String}   eventName     The type of event to append
11267      * @param {Function} fn        The method the event invokes
11268      * @param {Object} scope       (optional) The scope (this object) of the fn
11269      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
11270      * @method
11271      */
11272     ep.on = ep.addListener;
11273         // backwards compat
11274     ep.mon = ep.addListener;
11275
11276     /**
11277      * Removes an event handler from this element (shorthand for removeListener)
11278      * @param {String} eventName the type of event to remove
11279      * @param {Function} fn the method the event invokes
11280      * @return {Roo.Element} this
11281      * @method
11282      */
11283     ep.un = ep.removeListener;
11284
11285     /**
11286      * true to automatically adjust width and height settings for box-model issues (default to true)
11287      */
11288     ep.autoBoxAdjust = true;
11289
11290     // private
11291     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
11292
11293     // private
11294     El.addUnits = function(v, defaultUnit){
11295         if(v === "" || v == "auto"){
11296             return v;
11297         }
11298         if(v === undefined){
11299             return '';
11300         }
11301         if(typeof v == "number" || !El.unitPattern.test(v)){
11302             return v + (defaultUnit || 'px');
11303         }
11304         return v;
11305     };
11306
11307     // special markup used throughout Roo when box wrapping elements
11308     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>';
11309     /**
11310      * Visibility mode constant - Use visibility to hide element
11311      * @static
11312      * @type Number
11313      */
11314     El.VISIBILITY = 1;
11315     /**
11316      * Visibility mode constant - Use display to hide element
11317      * @static
11318      * @type Number
11319      */
11320     El.DISPLAY = 2;
11321
11322     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
11323     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
11324     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
11325
11326
11327
11328     /**
11329      * @private
11330      */
11331     El.cache = {};
11332
11333     var docEl;
11334
11335     /**
11336      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11337      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11338      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11339      * @return {Element} The Element object
11340      * @static
11341      */
11342     El.get = function(el){
11343         var ex, elm, id;
11344         if(!el){ return null; }
11345         if(typeof el == "string"){ // element id
11346             if(!(elm = document.getElementById(el))){
11347                 return null;
11348             }
11349             if(ex = El.cache[el]){
11350                 ex.dom = elm;
11351             }else{
11352                 ex = El.cache[el] = new El(elm);
11353             }
11354             return ex;
11355         }else if(el.tagName){ // dom element
11356             if(!(id = el.id)){
11357                 id = Roo.id(el);
11358             }
11359             if(ex = El.cache[id]){
11360                 ex.dom = el;
11361             }else{
11362                 ex = El.cache[id] = new El(el);
11363             }
11364             return ex;
11365         }else if(el instanceof El){
11366             if(el != docEl){
11367                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
11368                                                               // catch case where it hasn't been appended
11369                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
11370             }
11371             return el;
11372         }else if(el.isComposite){
11373             return el;
11374         }else if(el instanceof Array){
11375             return El.select(el);
11376         }else if(el == document){
11377             // create a bogus element object representing the document object
11378             if(!docEl){
11379                 var f = function(){};
11380                 f.prototype = El.prototype;
11381                 docEl = new f();
11382                 docEl.dom = document;
11383             }
11384             return docEl;
11385         }
11386         return null;
11387     };
11388
11389     // private
11390     El.uncache = function(el){
11391         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
11392             if(a[i]){
11393                 delete El.cache[a[i].id || a[i]];
11394             }
11395         }
11396     };
11397
11398     // private
11399     // Garbage collection - uncache elements/purge listeners on orphaned elements
11400     // so we don't hold a reference and cause the browser to retain them
11401     El.garbageCollect = function(){
11402         if(!Roo.enableGarbageCollector){
11403             clearInterval(El.collectorThread);
11404             return;
11405         }
11406         for(var eid in El.cache){
11407             var el = El.cache[eid], d = el.dom;
11408             // -------------------------------------------------------
11409             // Determining what is garbage:
11410             // -------------------------------------------------------
11411             // !d
11412             // dom node is null, definitely garbage
11413             // -------------------------------------------------------
11414             // !d.parentNode
11415             // no parentNode == direct orphan, definitely garbage
11416             // -------------------------------------------------------
11417             // !d.offsetParent && !document.getElementById(eid)
11418             // display none elements have no offsetParent so we will
11419             // also try to look it up by it's id. However, check
11420             // offsetParent first so we don't do unneeded lookups.
11421             // This enables collection of elements that are not orphans
11422             // directly, but somewhere up the line they have an orphan
11423             // parent.
11424             // -------------------------------------------------------
11425             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
11426                 delete El.cache[eid];
11427                 if(d && Roo.enableListenerCollection){
11428                     E.purgeElement(d);
11429                 }
11430             }
11431         }
11432     }
11433     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
11434
11435
11436     // dom is optional
11437     El.Flyweight = function(dom){
11438         this.dom = dom;
11439     };
11440     El.Flyweight.prototype = El.prototype;
11441
11442     El._flyweights = {};
11443     /**
11444      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11445      * the dom node can be overwritten by other code.
11446      * @param {String/HTMLElement} el The dom node or id
11447      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11448      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11449      * @static
11450      * @return {Element} The shared Element object
11451      */
11452     El.fly = function(el, named){
11453         named = named || '_global';
11454         el = Roo.getDom(el);
11455         if(!el){
11456             return null;
11457         }
11458         if(!El._flyweights[named]){
11459             El._flyweights[named] = new El.Flyweight();
11460         }
11461         El._flyweights[named].dom = el;
11462         return El._flyweights[named];
11463     };
11464
11465     /**
11466      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11467      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11468      * Shorthand of {@link Roo.Element#get}
11469      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11470      * @return {Element} The Element object
11471      * @member Roo
11472      * @method get
11473      */
11474     Roo.get = El.get;
11475     /**
11476      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11477      * the dom node can be overwritten by other code.
11478      * Shorthand of {@link Roo.Element#fly}
11479      * @param {String/HTMLElement} el The dom node or id
11480      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11481      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11482      * @static
11483      * @return {Element} The shared Element object
11484      * @member Roo
11485      * @method fly
11486      */
11487     Roo.fly = El.fly;
11488
11489     // speedy lookup for elements never to box adjust
11490     var noBoxAdjust = Roo.isStrict ? {
11491         select:1
11492     } : {
11493         input:1, select:1, textarea:1
11494     };
11495     if(Roo.isIE || Roo.isGecko){
11496         noBoxAdjust['button'] = 1;
11497     }
11498
11499
11500     Roo.EventManager.on(window, 'unload', function(){
11501         delete El.cache;
11502         delete El._flyweights;
11503     });
11504 })();
11505
11506
11507
11508
11509 if(Roo.DomQuery){
11510     Roo.Element.selectorFunction = Roo.DomQuery.select;
11511 }
11512
11513 Roo.Element.select = function(selector, unique, root){
11514     var els;
11515     if(typeof selector == "string"){
11516         els = Roo.Element.selectorFunction(selector, root);
11517     }else if(selector.length !== undefined){
11518         els = selector;
11519     }else{
11520         throw "Invalid selector";
11521     }
11522     if(unique === true){
11523         return new Roo.CompositeElement(els);
11524     }else{
11525         return new Roo.CompositeElementLite(els);
11526     }
11527 };
11528 /**
11529  * Selects elements based on the passed CSS selector to enable working on them as 1.
11530  * @param {String/Array} selector The CSS selector or an array of elements
11531  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
11532  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
11533  * @return {CompositeElementLite/CompositeElement}
11534  * @member Roo
11535  * @method select
11536  */
11537 Roo.select = Roo.Element.select;
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552 /*
11553  * Based on:
11554  * Ext JS Library 1.1.1
11555  * Copyright(c) 2006-2007, Ext JS, LLC.
11556  *
11557  * Originally Released Under LGPL - original licence link has changed is not relivant.
11558  *
11559  * Fork - LGPL
11560  * <script type="text/javascript">
11561  */
11562
11563
11564
11565 //Notifies Element that fx methods are available
11566 Roo.enableFx = true;
11567
11568 /**
11569  * @class Roo.Fx
11570  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
11571  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
11572  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
11573  * Element effects to work.</p><br/>
11574  *
11575  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
11576  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
11577  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
11578  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
11579  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
11580  * expected results and should be done with care.</p><br/>
11581  *
11582  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
11583  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
11584 <pre>
11585 Value  Description
11586 -----  -----------------------------
11587 tl     The top left corner
11588 t      The center of the top edge
11589 tr     The top right corner
11590 l      The center of the left edge
11591 r      The center of the right edge
11592 bl     The bottom left corner
11593 b      The center of the bottom edge
11594 br     The bottom right corner
11595 </pre>
11596  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
11597  * below are common options that can be passed to any Fx method.</b>
11598  * @cfg {Function} callback A function called when the effect is finished
11599  * @cfg {Object} scope The scope of the effect function
11600  * @cfg {String} easing A valid Easing value for the effect
11601  * @cfg {String} afterCls A css class to apply after the effect
11602  * @cfg {Number} duration The length of time (in seconds) that the effect should last
11603  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
11604  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
11605  * effects that end with the element being visually hidden, ignored otherwise)
11606  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
11607  * a function which returns such a specification that will be applied to the Element after the effect finishes
11608  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
11609  * @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
11610  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
11611  */
11612 Roo.Fx = {
11613         /**
11614          * Slides the element into view.  An anchor point can be optionally passed to set the point of
11615          * origin for the slide effect.  This function automatically handles wrapping the element with
11616          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11617          * Usage:
11618          *<pre><code>
11619 // default: slide the element in from the top
11620 el.slideIn();
11621
11622 // custom: slide the element in from the right with a 2-second duration
11623 el.slideIn('r', { duration: 2 });
11624
11625 // common config options shown with default values
11626 el.slideIn('t', {
11627     easing: 'easeOut',
11628     duration: .5
11629 });
11630 </code></pre>
11631          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11632          * @param {Object} options (optional) Object literal with any of the Fx config options
11633          * @return {Roo.Element} The Element
11634          */
11635     slideIn : function(anchor, o){
11636         var el = this.getFxEl();
11637         o = o || {};
11638
11639         el.queueFx(o, function(){
11640
11641             anchor = anchor || "t";
11642
11643             // fix display to visibility
11644             this.fixDisplay();
11645
11646             // restore values after effect
11647             var r = this.getFxRestore();
11648             var b = this.getBox();
11649             // fixed size for slide
11650             this.setSize(b);
11651
11652             // wrap if needed
11653             var wrap = this.fxWrap(r.pos, o, "hidden");
11654
11655             var st = this.dom.style;
11656             st.visibility = "visible";
11657             st.position = "absolute";
11658
11659             // clear out temp styles after slide and unwrap
11660             var after = function(){
11661                 el.fxUnwrap(wrap, r.pos, o);
11662                 st.width = r.width;
11663                 st.height = r.height;
11664                 el.afterFx(o);
11665             };
11666             // time to calc the positions
11667             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
11668
11669             switch(anchor.toLowerCase()){
11670                 case "t":
11671                     wrap.setSize(b.width, 0);
11672                     st.left = st.bottom = "0";
11673                     a = {height: bh};
11674                 break;
11675                 case "l":
11676                     wrap.setSize(0, b.height);
11677                     st.right = st.top = "0";
11678                     a = {width: bw};
11679                 break;
11680                 case "r":
11681                     wrap.setSize(0, b.height);
11682                     wrap.setX(b.right);
11683                     st.left = st.top = "0";
11684                     a = {width: bw, points: pt};
11685                 break;
11686                 case "b":
11687                     wrap.setSize(b.width, 0);
11688                     wrap.setY(b.bottom);
11689                     st.left = st.top = "0";
11690                     a = {height: bh, points: pt};
11691                 break;
11692                 case "tl":
11693                     wrap.setSize(0, 0);
11694                     st.right = st.bottom = "0";
11695                     a = {width: bw, height: bh};
11696                 break;
11697                 case "bl":
11698                     wrap.setSize(0, 0);
11699                     wrap.setY(b.y+b.height);
11700                     st.right = st.top = "0";
11701                     a = {width: bw, height: bh, points: pt};
11702                 break;
11703                 case "br":
11704                     wrap.setSize(0, 0);
11705                     wrap.setXY([b.right, b.bottom]);
11706                     st.left = st.top = "0";
11707                     a = {width: bw, height: bh, points: pt};
11708                 break;
11709                 case "tr":
11710                     wrap.setSize(0, 0);
11711                     wrap.setX(b.x+b.width);
11712                     st.left = st.bottom = "0";
11713                     a = {width: bw, height: bh, points: pt};
11714                 break;
11715             }
11716             this.dom.style.visibility = "visible";
11717             wrap.show();
11718
11719             arguments.callee.anim = wrap.fxanim(a,
11720                 o,
11721                 'motion',
11722                 .5,
11723                 'easeOut', after);
11724         });
11725         return this;
11726     },
11727     
11728         /**
11729          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
11730          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
11731          * 'hidden') but block elements will still take up space in the document.  The element must be removed
11732          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
11733          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11734          * Usage:
11735          *<pre><code>
11736 // default: slide the element out to the top
11737 el.slideOut();
11738
11739 // custom: slide the element out to the right with a 2-second duration
11740 el.slideOut('r', { duration: 2 });
11741
11742 // common config options shown with default values
11743 el.slideOut('t', {
11744     easing: 'easeOut',
11745     duration: .5,
11746     remove: false,
11747     useDisplay: false
11748 });
11749 </code></pre>
11750          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11751          * @param {Object} options (optional) Object literal with any of the Fx config options
11752          * @return {Roo.Element} The Element
11753          */
11754     slideOut : function(anchor, o){
11755         var el = this.getFxEl();
11756         o = o || {};
11757
11758         el.queueFx(o, function(){
11759
11760             anchor = anchor || "t";
11761
11762             // restore values after effect
11763             var r = this.getFxRestore();
11764             
11765             var b = this.getBox();
11766             // fixed size for slide
11767             this.setSize(b);
11768
11769             // wrap if needed
11770             var wrap = this.fxWrap(r.pos, o, "visible");
11771
11772             var st = this.dom.style;
11773             st.visibility = "visible";
11774             st.position = "absolute";
11775
11776             wrap.setSize(b);
11777
11778             var after = function(){
11779                 if(o.useDisplay){
11780                     el.setDisplayed(false);
11781                 }else{
11782                     el.hide();
11783                 }
11784
11785                 el.fxUnwrap(wrap, r.pos, o);
11786
11787                 st.width = r.width;
11788                 st.height = r.height;
11789
11790                 el.afterFx(o);
11791             };
11792
11793             var a, zero = {to: 0};
11794             switch(anchor.toLowerCase()){
11795                 case "t":
11796                     st.left = st.bottom = "0";
11797                     a = {height: zero};
11798                 break;
11799                 case "l":
11800                     st.right = st.top = "0";
11801                     a = {width: zero};
11802                 break;
11803                 case "r":
11804                     st.left = st.top = "0";
11805                     a = {width: zero, points: {to:[b.right, b.y]}};
11806                 break;
11807                 case "b":
11808                     st.left = st.top = "0";
11809                     a = {height: zero, points: {to:[b.x, b.bottom]}};
11810                 break;
11811                 case "tl":
11812                     st.right = st.bottom = "0";
11813                     a = {width: zero, height: zero};
11814                 break;
11815                 case "bl":
11816                     st.right = st.top = "0";
11817                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
11818                 break;
11819                 case "br":
11820                     st.left = st.top = "0";
11821                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
11822                 break;
11823                 case "tr":
11824                     st.left = st.bottom = "0";
11825                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
11826                 break;
11827             }
11828
11829             arguments.callee.anim = wrap.fxanim(a,
11830                 o,
11831                 'motion',
11832                 .5,
11833                 "easeOut", after);
11834         });
11835         return this;
11836     },
11837
11838         /**
11839          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
11840          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
11841          * The element must be removed from the DOM using the 'remove' config option if desired.
11842          * Usage:
11843          *<pre><code>
11844 // default
11845 el.puff();
11846
11847 // common config options shown with default values
11848 el.puff({
11849     easing: 'easeOut',
11850     duration: .5,
11851     remove: false,
11852     useDisplay: false
11853 });
11854 </code></pre>
11855          * @param {Object} options (optional) Object literal with any of the Fx config options
11856          * @return {Roo.Element} The Element
11857          */
11858     puff : function(o){
11859         var el = this.getFxEl();
11860         o = o || {};
11861
11862         el.queueFx(o, function(){
11863             this.clearOpacity();
11864             this.show();
11865
11866             // restore values after effect
11867             var r = this.getFxRestore();
11868             var st = this.dom.style;
11869
11870             var after = function(){
11871                 if(o.useDisplay){
11872                     el.setDisplayed(false);
11873                 }else{
11874                     el.hide();
11875                 }
11876
11877                 el.clearOpacity();
11878
11879                 el.setPositioning(r.pos);
11880                 st.width = r.width;
11881                 st.height = r.height;
11882                 st.fontSize = '';
11883                 el.afterFx(o);
11884             };
11885
11886             var width = this.getWidth();
11887             var height = this.getHeight();
11888
11889             arguments.callee.anim = this.fxanim({
11890                     width : {to: this.adjustWidth(width * 2)},
11891                     height : {to: this.adjustHeight(height * 2)},
11892                     points : {by: [-(width * .5), -(height * .5)]},
11893                     opacity : {to: 0},
11894                     fontSize: {to:200, unit: "%"}
11895                 },
11896                 o,
11897                 'motion',
11898                 .5,
11899                 "easeOut", after);
11900         });
11901         return this;
11902     },
11903
11904         /**
11905          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
11906          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
11907          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
11908          * Usage:
11909          *<pre><code>
11910 // default
11911 el.switchOff();
11912
11913 // all config options shown with default values
11914 el.switchOff({
11915     easing: 'easeIn',
11916     duration: .3,
11917     remove: false,
11918     useDisplay: false
11919 });
11920 </code></pre>
11921          * @param {Object} options (optional) Object literal with any of the Fx config options
11922          * @return {Roo.Element} The Element
11923          */
11924     switchOff : function(o){
11925         var el = this.getFxEl();
11926         o = o || {};
11927
11928         el.queueFx(o, function(){
11929             this.clearOpacity();
11930             this.clip();
11931
11932             // restore values after effect
11933             var r = this.getFxRestore();
11934             var st = this.dom.style;
11935
11936             var after = function(){
11937                 if(o.useDisplay){
11938                     el.setDisplayed(false);
11939                 }else{
11940                     el.hide();
11941                 }
11942
11943                 el.clearOpacity();
11944                 el.setPositioning(r.pos);
11945                 st.width = r.width;
11946                 st.height = r.height;
11947
11948                 el.afterFx(o);
11949             };
11950
11951             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
11952                 this.clearOpacity();
11953                 (function(){
11954                     this.fxanim({
11955                         height:{to:1},
11956                         points:{by:[0, this.getHeight() * .5]}
11957                     }, o, 'motion', 0.3, 'easeIn', after);
11958                 }).defer(100, this);
11959             });
11960         });
11961         return this;
11962     },
11963
11964     /**
11965      * Highlights the Element by setting a color (applies to the background-color by default, but can be
11966      * changed using the "attr" config option) and then fading back to the original color. If no original
11967      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
11968      * Usage:
11969 <pre><code>
11970 // default: highlight background to yellow
11971 el.highlight();
11972
11973 // custom: highlight foreground text to blue for 2 seconds
11974 el.highlight("0000ff", { attr: 'color', duration: 2 });
11975
11976 // common config options shown with default values
11977 el.highlight("ffff9c", {
11978     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
11979     endColor: (current color) or "ffffff",
11980     easing: 'easeIn',
11981     duration: 1
11982 });
11983 </code></pre>
11984      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
11985      * @param {Object} options (optional) Object literal with any of the Fx config options
11986      * @return {Roo.Element} The Element
11987      */ 
11988     highlight : function(color, o){
11989         var el = this.getFxEl();
11990         o = o || {};
11991
11992         el.queueFx(o, function(){
11993             color = color || "ffff9c";
11994             attr = o.attr || "backgroundColor";
11995
11996             this.clearOpacity();
11997             this.show();
11998
11999             var origColor = this.getColor(attr);
12000             var restoreColor = this.dom.style[attr];
12001             endColor = (o.endColor || origColor) || "ffffff";
12002
12003             var after = function(){
12004                 el.dom.style[attr] = restoreColor;
12005                 el.afterFx(o);
12006             };
12007
12008             var a = {};
12009             a[attr] = {from: color, to: endColor};
12010             arguments.callee.anim = this.fxanim(a,
12011                 o,
12012                 'color',
12013                 1,
12014                 'easeIn', after);
12015         });
12016         return this;
12017     },
12018
12019    /**
12020     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
12021     * Usage:
12022 <pre><code>
12023 // default: a single light blue ripple
12024 el.frame();
12025
12026 // custom: 3 red ripples lasting 3 seconds total
12027 el.frame("ff0000", 3, { duration: 3 });
12028
12029 // common config options shown with default values
12030 el.frame("C3DAF9", 1, {
12031     duration: 1 //duration of entire animation (not each individual ripple)
12032     // Note: Easing is not configurable and will be ignored if included
12033 });
12034 </code></pre>
12035     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
12036     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
12037     * @param {Object} options (optional) Object literal with any of the Fx config options
12038     * @return {Roo.Element} The Element
12039     */
12040     frame : function(color, count, o){
12041         var el = this.getFxEl();
12042         o = o || {};
12043
12044         el.queueFx(o, function(){
12045             color = color || "#C3DAF9";
12046             if(color.length == 6){
12047                 color = "#" + color;
12048             }
12049             count = count || 1;
12050             duration = o.duration || 1;
12051             this.show();
12052
12053             var b = this.getBox();
12054             var animFn = function(){
12055                 var proxy = this.createProxy({
12056
12057                      style:{
12058                         visbility:"hidden",
12059                         position:"absolute",
12060                         "z-index":"35000", // yee haw
12061                         border:"0px solid " + color
12062                      }
12063                   });
12064                 var scale = Roo.isBorderBox ? 2 : 1;
12065                 proxy.animate({
12066                     top:{from:b.y, to:b.y - 20},
12067                     left:{from:b.x, to:b.x - 20},
12068                     borderWidth:{from:0, to:10},
12069                     opacity:{from:1, to:0},
12070                     height:{from:b.height, to:(b.height + (20*scale))},
12071                     width:{from:b.width, to:(b.width + (20*scale))}
12072                 }, duration, function(){
12073                     proxy.remove();
12074                 });
12075                 if(--count > 0){
12076                      animFn.defer((duration/2)*1000, this);
12077                 }else{
12078                     el.afterFx(o);
12079                 }
12080             };
12081             animFn.call(this);
12082         });
12083         return this;
12084     },
12085
12086    /**
12087     * Creates a pause before any subsequent queued effects begin.  If there are
12088     * no effects queued after the pause it will have no effect.
12089     * Usage:
12090 <pre><code>
12091 el.pause(1);
12092 </code></pre>
12093     * @param {Number} seconds The length of time to pause (in seconds)
12094     * @return {Roo.Element} The Element
12095     */
12096     pause : function(seconds){
12097         var el = this.getFxEl();
12098         var o = {};
12099
12100         el.queueFx(o, function(){
12101             setTimeout(function(){
12102                 el.afterFx(o);
12103             }, seconds * 1000);
12104         });
12105         return this;
12106     },
12107
12108    /**
12109     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
12110     * using the "endOpacity" config option.
12111     * Usage:
12112 <pre><code>
12113 // default: fade in from opacity 0 to 100%
12114 el.fadeIn();
12115
12116 // custom: fade in from opacity 0 to 75% over 2 seconds
12117 el.fadeIn({ endOpacity: .75, duration: 2});
12118
12119 // common config options shown with default values
12120 el.fadeIn({
12121     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
12122     easing: 'easeOut',
12123     duration: .5
12124 });
12125 </code></pre>
12126     * @param {Object} options (optional) Object literal with any of the Fx config options
12127     * @return {Roo.Element} The Element
12128     */
12129     fadeIn : function(o){
12130         var el = this.getFxEl();
12131         o = o || {};
12132         el.queueFx(o, function(){
12133             this.setOpacity(0);
12134             this.fixDisplay();
12135             this.dom.style.visibility = 'visible';
12136             var to = o.endOpacity || 1;
12137             arguments.callee.anim = this.fxanim({opacity:{to:to}},
12138                 o, null, .5, "easeOut", function(){
12139                 if(to == 1){
12140                     this.clearOpacity();
12141                 }
12142                 el.afterFx(o);
12143             });
12144         });
12145         return this;
12146     },
12147
12148    /**
12149     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
12150     * using the "endOpacity" config option.
12151     * Usage:
12152 <pre><code>
12153 // default: fade out from the element's current opacity to 0
12154 el.fadeOut();
12155
12156 // custom: fade out from the element's current opacity to 25% over 2 seconds
12157 el.fadeOut({ endOpacity: .25, duration: 2});
12158
12159 // common config options shown with default values
12160 el.fadeOut({
12161     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
12162     easing: 'easeOut',
12163     duration: .5
12164     remove: false,
12165     useDisplay: false
12166 });
12167 </code></pre>
12168     * @param {Object} options (optional) Object literal with any of the Fx config options
12169     * @return {Roo.Element} The Element
12170     */
12171     fadeOut : function(o){
12172         var el = this.getFxEl();
12173         o = o || {};
12174         el.queueFx(o, function(){
12175             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
12176                 o, null, .5, "easeOut", function(){
12177                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
12178                      this.dom.style.display = "none";
12179                 }else{
12180                      this.dom.style.visibility = "hidden";
12181                 }
12182                 this.clearOpacity();
12183                 el.afterFx(o);
12184             });
12185         });
12186         return this;
12187     },
12188
12189    /**
12190     * Animates the transition of an element's dimensions from a starting height/width
12191     * to an ending height/width.
12192     * Usage:
12193 <pre><code>
12194 // change height and width to 100x100 pixels
12195 el.scale(100, 100);
12196
12197 // common config options shown with default values.  The height and width will default to
12198 // the element's existing values if passed as null.
12199 el.scale(
12200     [element's width],
12201     [element's height], {
12202     easing: 'easeOut',
12203     duration: .35
12204 });
12205 </code></pre>
12206     * @param {Number} width  The new width (pass undefined to keep the original width)
12207     * @param {Number} height  The new height (pass undefined to keep the original height)
12208     * @param {Object} options (optional) Object literal with any of the Fx config options
12209     * @return {Roo.Element} The Element
12210     */
12211     scale : function(w, h, o){
12212         this.shift(Roo.apply({}, o, {
12213             width: w,
12214             height: h
12215         }));
12216         return this;
12217     },
12218
12219    /**
12220     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
12221     * Any of these properties not specified in the config object will not be changed.  This effect 
12222     * requires that at least one new dimension, position or opacity setting must be passed in on
12223     * the config object in order for the function to have any effect.
12224     * Usage:
12225 <pre><code>
12226 // slide the element horizontally to x position 200 while changing the height and opacity
12227 el.shift({ x: 200, height: 50, opacity: .8 });
12228
12229 // common config options shown with default values.
12230 el.shift({
12231     width: [element's width],
12232     height: [element's height],
12233     x: [element's x position],
12234     y: [element's y position],
12235     opacity: [element's opacity],
12236     easing: 'easeOut',
12237     duration: .35
12238 });
12239 </code></pre>
12240     * @param {Object} options  Object literal with any of the Fx config options
12241     * @return {Roo.Element} The Element
12242     */
12243     shift : function(o){
12244         var el = this.getFxEl();
12245         o = o || {};
12246         el.queueFx(o, function(){
12247             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
12248             if(w !== undefined){
12249                 a.width = {to: this.adjustWidth(w)};
12250             }
12251             if(h !== undefined){
12252                 a.height = {to: this.adjustHeight(h)};
12253             }
12254             if(x !== undefined || y !== undefined){
12255                 a.points = {to: [
12256                     x !== undefined ? x : this.getX(),
12257                     y !== undefined ? y : this.getY()
12258                 ]};
12259             }
12260             if(op !== undefined){
12261                 a.opacity = {to: op};
12262             }
12263             if(o.xy !== undefined){
12264                 a.points = {to: o.xy};
12265             }
12266             arguments.callee.anim = this.fxanim(a,
12267                 o, 'motion', .35, "easeOut", function(){
12268                 el.afterFx(o);
12269             });
12270         });
12271         return this;
12272     },
12273
12274         /**
12275          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
12276          * ending point of the effect.
12277          * Usage:
12278          *<pre><code>
12279 // default: slide the element downward while fading out
12280 el.ghost();
12281
12282 // custom: slide the element out to the right with a 2-second duration
12283 el.ghost('r', { duration: 2 });
12284
12285 // common config options shown with default values
12286 el.ghost('b', {
12287     easing: 'easeOut',
12288     duration: .5
12289     remove: false,
12290     useDisplay: false
12291 });
12292 </code></pre>
12293          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
12294          * @param {Object} options (optional) Object literal with any of the Fx config options
12295          * @return {Roo.Element} The Element
12296          */
12297     ghost : function(anchor, o){
12298         var el = this.getFxEl();
12299         o = o || {};
12300
12301         el.queueFx(o, function(){
12302             anchor = anchor || "b";
12303
12304             // restore values after effect
12305             var r = this.getFxRestore();
12306             var w = this.getWidth(),
12307                 h = this.getHeight();
12308
12309             var st = this.dom.style;
12310
12311             var after = function(){
12312                 if(o.useDisplay){
12313                     el.setDisplayed(false);
12314                 }else{
12315                     el.hide();
12316                 }
12317
12318                 el.clearOpacity();
12319                 el.setPositioning(r.pos);
12320                 st.width = r.width;
12321                 st.height = r.height;
12322
12323                 el.afterFx(o);
12324             };
12325
12326             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
12327             switch(anchor.toLowerCase()){
12328                 case "t":
12329                     pt.by = [0, -h];
12330                 break;
12331                 case "l":
12332                     pt.by = [-w, 0];
12333                 break;
12334                 case "r":
12335                     pt.by = [w, 0];
12336                 break;
12337                 case "b":
12338                     pt.by = [0, h];
12339                 break;
12340                 case "tl":
12341                     pt.by = [-w, -h];
12342                 break;
12343                 case "bl":
12344                     pt.by = [-w, h];
12345                 break;
12346                 case "br":
12347                     pt.by = [w, h];
12348                 break;
12349                 case "tr":
12350                     pt.by = [w, -h];
12351                 break;
12352             }
12353
12354             arguments.callee.anim = this.fxanim(a,
12355                 o,
12356                 'motion',
12357                 .5,
12358                 "easeOut", after);
12359         });
12360         return this;
12361     },
12362
12363         /**
12364          * Ensures that all effects queued after syncFx is called on the element are
12365          * run concurrently.  This is the opposite of {@link #sequenceFx}.
12366          * @return {Roo.Element} The Element
12367          */
12368     syncFx : function(){
12369         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12370             block : false,
12371             concurrent : true,
12372             stopFx : false
12373         });
12374         return this;
12375     },
12376
12377         /**
12378          * Ensures that all effects queued after sequenceFx is called on the element are
12379          * run in sequence.  This is the opposite of {@link #syncFx}.
12380          * @return {Roo.Element} The Element
12381          */
12382     sequenceFx : function(){
12383         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12384             block : false,
12385             concurrent : false,
12386             stopFx : false
12387         });
12388         return this;
12389     },
12390
12391         /* @private */
12392     nextFx : function(){
12393         var ef = this.fxQueue[0];
12394         if(ef){
12395             ef.call(this);
12396         }
12397     },
12398
12399         /**
12400          * Returns true if the element has any effects actively running or queued, else returns false.
12401          * @return {Boolean} True if element has active effects, else false
12402          */
12403     hasActiveFx : function(){
12404         return this.fxQueue && this.fxQueue[0];
12405     },
12406
12407         /**
12408          * Stops any running effects and clears the element's internal effects queue if it contains
12409          * any additional effects that haven't started yet.
12410          * @return {Roo.Element} The Element
12411          */
12412     stopFx : function(){
12413         if(this.hasActiveFx()){
12414             var cur = this.fxQueue[0];
12415             if(cur && cur.anim && cur.anim.isAnimated()){
12416                 this.fxQueue = [cur]; // clear out others
12417                 cur.anim.stop(true);
12418             }
12419         }
12420         return this;
12421     },
12422
12423         /* @private */
12424     beforeFx : function(o){
12425         if(this.hasActiveFx() && !o.concurrent){
12426            if(o.stopFx){
12427                this.stopFx();
12428                return true;
12429            }
12430            return false;
12431         }
12432         return true;
12433     },
12434
12435         /**
12436          * Returns true if the element is currently blocking so that no other effect can be queued
12437          * until this effect is finished, else returns false if blocking is not set.  This is commonly
12438          * used to ensure that an effect initiated by a user action runs to completion prior to the
12439          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
12440          * @return {Boolean} True if blocking, else false
12441          */
12442     hasFxBlock : function(){
12443         var q = this.fxQueue;
12444         return q && q[0] && q[0].block;
12445     },
12446
12447         /* @private */
12448     queueFx : function(o, fn){
12449         if(!this.fxQueue){
12450             this.fxQueue = [];
12451         }
12452         if(!this.hasFxBlock()){
12453             Roo.applyIf(o, this.fxDefaults);
12454             if(!o.concurrent){
12455                 var run = this.beforeFx(o);
12456                 fn.block = o.block;
12457                 this.fxQueue.push(fn);
12458                 if(run){
12459                     this.nextFx();
12460                 }
12461             }else{
12462                 fn.call(this);
12463             }
12464         }
12465         return this;
12466     },
12467
12468         /* @private */
12469     fxWrap : function(pos, o, vis){
12470         var wrap;
12471         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
12472             var wrapXY;
12473             if(o.fixPosition){
12474                 wrapXY = this.getXY();
12475             }
12476             var div = document.createElement("div");
12477             div.style.visibility = vis;
12478             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
12479             wrap.setPositioning(pos);
12480             if(wrap.getStyle("position") == "static"){
12481                 wrap.position("relative");
12482             }
12483             this.clearPositioning('auto');
12484             wrap.clip();
12485             wrap.dom.appendChild(this.dom);
12486             if(wrapXY){
12487                 wrap.setXY(wrapXY);
12488             }
12489         }
12490         return wrap;
12491     },
12492
12493         /* @private */
12494     fxUnwrap : function(wrap, pos, o){
12495         this.clearPositioning();
12496         this.setPositioning(pos);
12497         if(!o.wrap){
12498             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
12499             wrap.remove();
12500         }
12501     },
12502
12503         /* @private */
12504     getFxRestore : function(){
12505         var st = this.dom.style;
12506         return {pos: this.getPositioning(), width: st.width, height : st.height};
12507     },
12508
12509         /* @private */
12510     afterFx : function(o){
12511         if(o.afterStyle){
12512             this.applyStyles(o.afterStyle);
12513         }
12514         if(o.afterCls){
12515             this.addClass(o.afterCls);
12516         }
12517         if(o.remove === true){
12518             this.remove();
12519         }
12520         Roo.callback(o.callback, o.scope, [this]);
12521         if(!o.concurrent){
12522             this.fxQueue.shift();
12523             this.nextFx();
12524         }
12525     },
12526
12527         /* @private */
12528     getFxEl : function(){ // support for composite element fx
12529         return Roo.get(this.dom);
12530     },
12531
12532         /* @private */
12533     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
12534         animType = animType || 'run';
12535         opt = opt || {};
12536         var anim = Roo.lib.Anim[animType](
12537             this.dom, args,
12538             (opt.duration || defaultDur) || .35,
12539             (opt.easing || defaultEase) || 'easeOut',
12540             function(){
12541                 Roo.callback(cb, this);
12542             },
12543             this
12544         );
12545         opt.anim = anim;
12546         return anim;
12547     }
12548 };
12549
12550 // backwords compat
12551 Roo.Fx.resize = Roo.Fx.scale;
12552
12553 //When included, Roo.Fx is automatically applied to Element so that all basic
12554 //effects are available directly via the Element API
12555 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
12556  * Based on:
12557  * Ext JS Library 1.1.1
12558  * Copyright(c) 2006-2007, Ext JS, LLC.
12559  *
12560  * Originally Released Under LGPL - original licence link has changed is not relivant.
12561  *
12562  * Fork - LGPL
12563  * <script type="text/javascript">
12564  */
12565
12566
12567 /**
12568  * @class Roo.CompositeElement
12569  * Standard composite class. Creates a Roo.Element for every element in the collection.
12570  * <br><br>
12571  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12572  * actions will be performed on all the elements in this collection.</b>
12573  * <br><br>
12574  * All methods return <i>this</i> and can be chained.
12575  <pre><code>
12576  var els = Roo.select("#some-el div.some-class", true);
12577  // or select directly from an existing element
12578  var el = Roo.get('some-el');
12579  el.select('div.some-class', true);
12580
12581  els.setWidth(100); // all elements become 100 width
12582  els.hide(true); // all elements fade out and hide
12583  // or
12584  els.setWidth(100).hide(true);
12585  </code></pre>
12586  */
12587 Roo.CompositeElement = function(els){
12588     this.elements = [];
12589     this.addElements(els);
12590 };
12591 Roo.CompositeElement.prototype = {
12592     isComposite: true,
12593     addElements : function(els){
12594         if(!els) {
12595             return this;
12596         }
12597         if(typeof els == "string"){
12598             els = Roo.Element.selectorFunction(els);
12599         }
12600         var yels = this.elements;
12601         var index = yels.length-1;
12602         for(var i = 0, len = els.length; i < len; i++) {
12603                 yels[++index] = Roo.get(els[i]);
12604         }
12605         return this;
12606     },
12607
12608     /**
12609     * Clears this composite and adds the elements returned by the passed selector.
12610     * @param {String/Array} els A string CSS selector, an array of elements or an element
12611     * @return {CompositeElement} this
12612     */
12613     fill : function(els){
12614         this.elements = [];
12615         this.add(els);
12616         return this;
12617     },
12618
12619     /**
12620     * Filters this composite to only elements that match the passed selector.
12621     * @param {String} selector A string CSS selector
12622     * @param {Boolean} inverse return inverse filter (not matches)
12623     * @return {CompositeElement} this
12624     */
12625     filter : function(selector, inverse){
12626         var els = [];
12627         inverse = inverse || false;
12628         this.each(function(el){
12629             var match = inverse ? !el.is(selector) : el.is(selector);
12630             if(match){
12631                 els[els.length] = el.dom;
12632             }
12633         });
12634         this.fill(els);
12635         return this;
12636     },
12637
12638     invoke : function(fn, args){
12639         var els = this.elements;
12640         for(var i = 0, len = els.length; i < len; i++) {
12641                 Roo.Element.prototype[fn].apply(els[i], args);
12642         }
12643         return this;
12644     },
12645     /**
12646     * Adds elements to this composite.
12647     * @param {String/Array} els A string CSS selector, an array of elements or an element
12648     * @return {CompositeElement} this
12649     */
12650     add : function(els){
12651         if(typeof els == "string"){
12652             this.addElements(Roo.Element.selectorFunction(els));
12653         }else if(els.length !== undefined){
12654             this.addElements(els);
12655         }else{
12656             this.addElements([els]);
12657         }
12658         return this;
12659     },
12660     /**
12661     * Calls the passed function passing (el, this, index) for each element in this composite.
12662     * @param {Function} fn The function to call
12663     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12664     * @return {CompositeElement} this
12665     */
12666     each : function(fn, scope){
12667         var els = this.elements;
12668         for(var i = 0, len = els.length; i < len; i++){
12669             if(fn.call(scope || els[i], els[i], this, i) === false) {
12670                 break;
12671             }
12672         }
12673         return this;
12674     },
12675
12676     /**
12677      * Returns the Element object at the specified index
12678      * @param {Number} index
12679      * @return {Roo.Element}
12680      */
12681     item : function(index){
12682         return this.elements[index] || null;
12683     },
12684
12685     /**
12686      * Returns the first Element
12687      * @return {Roo.Element}
12688      */
12689     first : function(){
12690         return this.item(0);
12691     },
12692
12693     /**
12694      * Returns the last Element
12695      * @return {Roo.Element}
12696      */
12697     last : function(){
12698         return this.item(this.elements.length-1);
12699     },
12700
12701     /**
12702      * Returns the number of elements in this composite
12703      * @return Number
12704      */
12705     getCount : function(){
12706         return this.elements.length;
12707     },
12708
12709     /**
12710      * Returns true if this composite contains the passed element
12711      * @return Boolean
12712      */
12713     contains : function(el){
12714         return this.indexOf(el) !== -1;
12715     },
12716
12717     /**
12718      * Returns true if this composite contains the passed element
12719      * @return Boolean
12720      */
12721     indexOf : function(el){
12722         return this.elements.indexOf(Roo.get(el));
12723     },
12724
12725
12726     /**
12727     * Removes the specified element(s).
12728     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
12729     * or an array of any of those.
12730     * @param {Boolean} removeDom (optional) True to also remove the element from the document
12731     * @return {CompositeElement} this
12732     */
12733     removeElement : function(el, removeDom){
12734         if(el instanceof Array){
12735             for(var i = 0, len = el.length; i < len; i++){
12736                 this.removeElement(el[i]);
12737             }
12738             return this;
12739         }
12740         var index = typeof el == 'number' ? el : this.indexOf(el);
12741         if(index !== -1){
12742             if(removeDom){
12743                 var d = this.elements[index];
12744                 if(d.dom){
12745                     d.remove();
12746                 }else{
12747                     d.parentNode.removeChild(d);
12748                 }
12749             }
12750             this.elements.splice(index, 1);
12751         }
12752         return this;
12753     },
12754
12755     /**
12756     * Replaces the specified element with the passed element.
12757     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
12758     * to replace.
12759     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
12760     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
12761     * @return {CompositeElement} this
12762     */
12763     replaceElement : function(el, replacement, domReplace){
12764         var index = typeof el == 'number' ? el : this.indexOf(el);
12765         if(index !== -1){
12766             if(domReplace){
12767                 this.elements[index].replaceWith(replacement);
12768             }else{
12769                 this.elements.splice(index, 1, Roo.get(replacement))
12770             }
12771         }
12772         return this;
12773     },
12774
12775     /**
12776      * Removes all elements.
12777      */
12778     clear : function(){
12779         this.elements = [];
12780     }
12781 };
12782 (function(){
12783     Roo.CompositeElement.createCall = function(proto, fnName){
12784         if(!proto[fnName]){
12785             proto[fnName] = function(){
12786                 return this.invoke(fnName, arguments);
12787             };
12788         }
12789     };
12790     for(var fnName in Roo.Element.prototype){
12791         if(typeof Roo.Element.prototype[fnName] == "function"){
12792             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
12793         }
12794     };
12795 })();
12796 /*
12797  * Based on:
12798  * Ext JS Library 1.1.1
12799  * Copyright(c) 2006-2007, Ext JS, LLC.
12800  *
12801  * Originally Released Under LGPL - original licence link has changed is not relivant.
12802  *
12803  * Fork - LGPL
12804  * <script type="text/javascript">
12805  */
12806
12807 /**
12808  * @class Roo.CompositeElementLite
12809  * @extends Roo.CompositeElement
12810  * Flyweight composite class. Reuses the same Roo.Element for element operations.
12811  <pre><code>
12812  var els = Roo.select("#some-el div.some-class");
12813  // or select directly from an existing element
12814  var el = Roo.get('some-el');
12815  el.select('div.some-class');
12816
12817  els.setWidth(100); // all elements become 100 width
12818  els.hide(true); // all elements fade out and hide
12819  // or
12820  els.setWidth(100).hide(true);
12821  </code></pre><br><br>
12822  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12823  * actions will be performed on all the elements in this collection.</b>
12824  */
12825 Roo.CompositeElementLite = function(els){
12826     Roo.CompositeElementLite.superclass.constructor.call(this, els);
12827     this.el = new Roo.Element.Flyweight();
12828 };
12829 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
12830     addElements : function(els){
12831         if(els){
12832             if(els instanceof Array){
12833                 this.elements = this.elements.concat(els);
12834             }else{
12835                 var yels = this.elements;
12836                 var index = yels.length-1;
12837                 for(var i = 0, len = els.length; i < len; i++) {
12838                     yels[++index] = els[i];
12839                 }
12840             }
12841         }
12842         return this;
12843     },
12844     invoke : function(fn, args){
12845         var els = this.elements;
12846         var el = this.el;
12847         for(var i = 0, len = els.length; i < len; i++) {
12848             el.dom = els[i];
12849                 Roo.Element.prototype[fn].apply(el, args);
12850         }
12851         return this;
12852     },
12853     /**
12854      * Returns a flyweight Element of the dom element object at the specified index
12855      * @param {Number} index
12856      * @return {Roo.Element}
12857      */
12858     item : function(index){
12859         if(!this.elements[index]){
12860             return null;
12861         }
12862         this.el.dom = this.elements[index];
12863         return this.el;
12864     },
12865
12866     // fixes scope with flyweight
12867     addListener : function(eventName, handler, scope, opt){
12868         var els = this.elements;
12869         for(var i = 0, len = els.length; i < len; i++) {
12870             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
12871         }
12872         return this;
12873     },
12874
12875     /**
12876     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
12877     * passed is the flyweight (shared) Roo.Element instance, so if you require a
12878     * a reference to the dom node, use el.dom.</b>
12879     * @param {Function} fn The function to call
12880     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12881     * @return {CompositeElement} this
12882     */
12883     each : function(fn, scope){
12884         var els = this.elements;
12885         var el = this.el;
12886         for(var i = 0, len = els.length; i < len; i++){
12887             el.dom = els[i];
12888                 if(fn.call(scope || el, el, this, i) === false){
12889                 break;
12890             }
12891         }
12892         return this;
12893     },
12894
12895     indexOf : function(el){
12896         return this.elements.indexOf(Roo.getDom(el));
12897     },
12898
12899     replaceElement : function(el, replacement, domReplace){
12900         var index = typeof el == 'number' ? el : this.indexOf(el);
12901         if(index !== -1){
12902             replacement = Roo.getDom(replacement);
12903             if(domReplace){
12904                 var d = this.elements[index];
12905                 d.parentNode.insertBefore(replacement, d);
12906                 d.parentNode.removeChild(d);
12907             }
12908             this.elements.splice(index, 1, replacement);
12909         }
12910         return this;
12911     }
12912 });
12913 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
12914
12915 /*
12916  * Based on:
12917  * Ext JS Library 1.1.1
12918  * Copyright(c) 2006-2007, Ext JS, LLC.
12919  *
12920  * Originally Released Under LGPL - original licence link has changed is not relivant.
12921  *
12922  * Fork - LGPL
12923  * <script type="text/javascript">
12924  */
12925
12926  
12927
12928 /**
12929  * @class Roo.data.Connection
12930  * @extends Roo.util.Observable
12931  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
12932  * either to a configured URL, or to a URL specified at request time. 
12933  * 
12934  * Requests made by this class are asynchronous, and will return immediately. No data from
12935  * the server will be available to the statement immediately following the {@link #request} call.
12936  * To process returned data, use a callback in the request options object, or an event listener.
12937  * 
12938  * Note: If you are doing a file upload, you will not get a normal response object sent back to
12939  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
12940  * The response object is created using the innerHTML of the IFRAME's document as the responseText
12941  * property and, if present, the IFRAME's XML document as the responseXML property.
12942  * 
12943  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
12944  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
12945  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
12946  * standard DOM methods.
12947  * @constructor
12948  * @param {Object} config a configuration object.
12949  */
12950 Roo.data.Connection = function(config){
12951     Roo.apply(this, config);
12952     this.addEvents({
12953         /**
12954          * @event beforerequest
12955          * Fires before a network request is made to retrieve a data object.
12956          * @param {Connection} conn This Connection object.
12957          * @param {Object} options The options config object passed to the {@link #request} method.
12958          */
12959         "beforerequest" : true,
12960         /**
12961          * @event requestcomplete
12962          * Fires if the request was successfully completed.
12963          * @param {Connection} conn This Connection object.
12964          * @param {Object} response The XHR object containing the response data.
12965          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12966          * @param {Object} options The options config object passed to the {@link #request} method.
12967          */
12968         "requestcomplete" : true,
12969         /**
12970          * @event requestexception
12971          * Fires if an error HTTP status was returned from the server.
12972          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
12973          * @param {Connection} conn This Connection object.
12974          * @param {Object} response The XHR object containing the response data.
12975          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12976          * @param {Object} options The options config object passed to the {@link #request} method.
12977          */
12978         "requestexception" : true
12979     });
12980     Roo.data.Connection.superclass.constructor.call(this);
12981 };
12982
12983 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
12984     /**
12985      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12986      */
12987     /**
12988      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12989      * extra parameters to each request made by this object. (defaults to undefined)
12990      */
12991     /**
12992      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12993      *  to each request made by this object. (defaults to undefined)
12994      */
12995     /**
12996      * @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)
12997      */
12998     /**
12999      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13000      */
13001     timeout : 30000,
13002     /**
13003      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
13004      * @type Boolean
13005      */
13006     autoAbort:false,
13007
13008     /**
13009      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
13010      * @type Boolean
13011      */
13012     disableCaching: true,
13013
13014     /**
13015      * Sends an HTTP request to a remote server.
13016      * @param {Object} options An object which may contain the following properties:<ul>
13017      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
13018      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
13019      * request, a url encoded string or a function to call to get either.</li>
13020      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
13021      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
13022      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
13023      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
13024      * <li>options {Object} The parameter to the request call.</li>
13025      * <li>success {Boolean} True if the request succeeded.</li>
13026      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13027      * </ul></li>
13028      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
13029      * The callback is passed the following parameters:<ul>
13030      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13031      * <li>options {Object} The parameter to the request call.</li>
13032      * </ul></li>
13033      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
13034      * The callback is passed the following parameters:<ul>
13035      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13036      * <li>options {Object} The parameter to the request call.</li>
13037      * </ul></li>
13038      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
13039      * for the callback function. Defaults to the browser window.</li>
13040      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
13041      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
13042      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
13043      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
13044      * params for the post data. Any params will be appended to the URL.</li>
13045      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
13046      * </ul>
13047      * @return {Number} transactionId
13048      */
13049     request : function(o){
13050         if(this.fireEvent("beforerequest", this, o) !== false){
13051             var p = o.params;
13052
13053             if(typeof p == "function"){
13054                 p = p.call(o.scope||window, o);
13055             }
13056             if(typeof p == "object"){
13057                 p = Roo.urlEncode(o.params);
13058             }
13059             if(this.extraParams){
13060                 var extras = Roo.urlEncode(this.extraParams);
13061                 p = p ? (p + '&' + extras) : extras;
13062             }
13063
13064             var url = o.url || this.url;
13065             if(typeof url == 'function'){
13066                 url = url.call(o.scope||window, o);
13067             }
13068
13069             if(o.form){
13070                 var form = Roo.getDom(o.form);
13071                 url = url || form.action;
13072
13073                 var enctype = form.getAttribute("enctype");
13074                 
13075                 if (o.formData) {
13076                     return this.doFormDataUpload(o, url);
13077                 }
13078                 
13079                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
13080                     return this.doFormUpload(o, p, url);
13081                 }
13082                 var f = Roo.lib.Ajax.serializeForm(form);
13083                 p = p ? (p + '&' + f) : f;
13084             }
13085             
13086             if (!o.form && o.formData) {
13087                 o.formData = o.formData === true ? new FormData() : o.formData;
13088                 for (var k in o.params) {
13089                     o.formData.append(k,o.params[k]);
13090                 }
13091                     
13092                 return this.doFormDataUpload(o, url);
13093             }
13094             
13095
13096             var hs = o.headers;
13097             if(this.defaultHeaders){
13098                 hs = Roo.apply(hs || {}, this.defaultHeaders);
13099                 if(!o.headers){
13100                     o.headers = hs;
13101                 }
13102             }
13103
13104             var cb = {
13105                 success: this.handleResponse,
13106                 failure: this.handleFailure,
13107                 scope: this,
13108                 argument: {options: o},
13109                 timeout : o.timeout || this.timeout
13110             };
13111
13112             var method = o.method||this.method||(p ? "POST" : "GET");
13113
13114             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
13115                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
13116             }
13117
13118             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13119                 if(o.autoAbort){
13120                     this.abort();
13121                 }
13122             }else if(this.autoAbort !== false){
13123                 this.abort();
13124             }
13125
13126             if((method == 'GET' && p) || o.xmlData){
13127                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
13128                 p = '';
13129             }
13130             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
13131             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
13132             Roo.lib.Ajax.useDefaultHeader == true;
13133             return this.transId;
13134         }else{
13135             Roo.callback(o.callback, o.scope, [o, null, null]);
13136             return null;
13137         }
13138     },
13139
13140     /**
13141      * Determine whether this object has a request outstanding.
13142      * @param {Number} transactionId (Optional) defaults to the last transaction
13143      * @return {Boolean} True if there is an outstanding request.
13144      */
13145     isLoading : function(transId){
13146         if(transId){
13147             return Roo.lib.Ajax.isCallInProgress(transId);
13148         }else{
13149             return this.transId ? true : false;
13150         }
13151     },
13152
13153     /**
13154      * Aborts any outstanding request.
13155      * @param {Number} transactionId (Optional) defaults to the last transaction
13156      */
13157     abort : function(transId){
13158         if(transId || this.isLoading()){
13159             Roo.lib.Ajax.abort(transId || this.transId);
13160         }
13161     },
13162
13163     // private
13164     handleResponse : function(response){
13165         this.transId = false;
13166         var options = response.argument.options;
13167         response.argument = options ? options.argument : null;
13168         this.fireEvent("requestcomplete", this, response, options);
13169         Roo.callback(options.success, options.scope, [response, options]);
13170         Roo.callback(options.callback, options.scope, [options, true, response]);
13171     },
13172
13173     // private
13174     handleFailure : function(response, e){
13175         this.transId = false;
13176         var options = response.argument.options;
13177         response.argument = options ? options.argument : null;
13178         this.fireEvent("requestexception", this, response, options, e);
13179         Roo.callback(options.failure, options.scope, [response, options]);
13180         Roo.callback(options.callback, options.scope, [options, false, response]);
13181     },
13182
13183     // private
13184     doFormUpload : function(o, ps, url){
13185         var id = Roo.id();
13186         var frame = document.createElement('iframe');
13187         frame.id = id;
13188         frame.name = id;
13189         frame.className = 'x-hidden';
13190         if(Roo.isIE){
13191             frame.src = Roo.SSL_SECURE_URL;
13192         }
13193         document.body.appendChild(frame);
13194
13195         if(Roo.isIE){
13196            document.frames[id].name = id;
13197         }
13198
13199         var form = Roo.getDom(o.form);
13200         form.target = id;
13201         form.method = 'POST';
13202         form.enctype = form.encoding = 'multipart/form-data';
13203         if(url){
13204             form.action = url;
13205         }
13206
13207         var hiddens, hd;
13208         if(ps){ // add dynamic params
13209             hiddens = [];
13210             ps = Roo.urlDecode(ps, false);
13211             for(var k in ps){
13212                 if(ps.hasOwnProperty(k)){
13213                     hd = document.createElement('input');
13214                     hd.type = 'hidden';
13215                     hd.name = k;
13216                     hd.value = ps[k];
13217                     form.appendChild(hd);
13218                     hiddens.push(hd);
13219                 }
13220             }
13221         }
13222
13223         function cb(){
13224             var r = {  // bogus response object
13225                 responseText : '',
13226                 responseXML : null
13227             };
13228
13229             r.argument = o ? o.argument : null;
13230
13231             try { //
13232                 var doc;
13233                 if(Roo.isIE){
13234                     doc = frame.contentWindow.document;
13235                 }else {
13236                     doc = (frame.contentDocument || window.frames[id].document);
13237                 }
13238                 if(doc && doc.body){
13239                     r.responseText = doc.body.innerHTML;
13240                 }
13241                 if(doc && doc.XMLDocument){
13242                     r.responseXML = doc.XMLDocument;
13243                 }else {
13244                     r.responseXML = doc;
13245                 }
13246             }
13247             catch(e) {
13248                 // ignore
13249             }
13250
13251             Roo.EventManager.removeListener(frame, 'load', cb, this);
13252
13253             this.fireEvent("requestcomplete", this, r, o);
13254             Roo.callback(o.success, o.scope, [r, o]);
13255             Roo.callback(o.callback, o.scope, [o, true, r]);
13256
13257             setTimeout(function(){document.body.removeChild(frame);}, 100);
13258         }
13259
13260         Roo.EventManager.on(frame, 'load', cb, this);
13261         form.submit();
13262
13263         if(hiddens){ // remove dynamic params
13264             for(var i = 0, len = hiddens.length; i < len; i++){
13265                 form.removeChild(hiddens[i]);
13266             }
13267         }
13268     },
13269     // this is a 'formdata version???'
13270     
13271     
13272     doFormDataUpload : function(o,  url)
13273     {
13274         var formData;
13275         if (o.form) {
13276             var form =  Roo.getDom(o.form);
13277             form.enctype = form.encoding = 'multipart/form-data';
13278             formData = o.formData === true ? new FormData(form) : o.formData;
13279         } else {
13280             formData = o.formData === true ? new FormData() : o.formData;
13281         }
13282         
13283       
13284         var cb = {
13285             success: this.handleResponse,
13286             failure: this.handleFailure,
13287             scope: this,
13288             argument: {options: o},
13289             timeout : o.timeout || this.timeout
13290         };
13291  
13292         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13293             if(o.autoAbort){
13294                 this.abort();
13295             }
13296         }else if(this.autoAbort !== false){
13297             this.abort();
13298         }
13299
13300         //Roo.lib.Ajax.defaultPostHeader = null;
13301         Roo.lib.Ajax.useDefaultHeader = false;
13302         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
13303         Roo.lib.Ajax.useDefaultHeader = true;
13304  
13305          
13306     }
13307     
13308 });
13309 /*
13310  * Based on:
13311  * Ext JS Library 1.1.1
13312  * Copyright(c) 2006-2007, Ext JS, LLC.
13313  *
13314  * Originally Released Under LGPL - original licence link has changed is not relivant.
13315  *
13316  * Fork - LGPL
13317  * <script type="text/javascript">
13318  */
13319  
13320 /**
13321  * Global Ajax request class.
13322  * 
13323  * @class Roo.Ajax
13324  * @extends Roo.data.Connection
13325  * @static
13326  * 
13327  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
13328  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
13329  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
13330  * @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)
13331  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13332  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
13333  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
13334  */
13335 Roo.Ajax = new Roo.data.Connection({
13336     // fix up the docs
13337     /**
13338      * @scope Roo.Ajax
13339      * @type {Boolear} 
13340      */
13341     autoAbort : false,
13342
13343     /**
13344      * Serialize the passed form into a url encoded string
13345      * @scope Roo.Ajax
13346      * @param {String/HTMLElement} form
13347      * @return {String}
13348      */
13349     serializeForm : function(form){
13350         return Roo.lib.Ajax.serializeForm(form);
13351     }
13352 });/*
13353  * Based on:
13354  * Ext JS Library 1.1.1
13355  * Copyright(c) 2006-2007, Ext JS, LLC.
13356  *
13357  * Originally Released Under LGPL - original licence link has changed is not relivant.
13358  *
13359  * Fork - LGPL
13360  * <script type="text/javascript">
13361  */
13362
13363  
13364 /**
13365  * @class Roo.UpdateManager
13366  * @extends Roo.util.Observable
13367  * Provides AJAX-style update for Element object.<br><br>
13368  * Usage:<br>
13369  * <pre><code>
13370  * // Get it from a Roo.Element object
13371  * var el = Roo.get("foo");
13372  * var mgr = el.getUpdateManager();
13373  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
13374  * ...
13375  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
13376  * <br>
13377  * // or directly (returns the same UpdateManager instance)
13378  * var mgr = new Roo.UpdateManager("myElementId");
13379  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
13380  * mgr.on("update", myFcnNeedsToKnow);
13381  * <br>
13382    // short handed call directly from the element object
13383    Roo.get("foo").load({
13384         url: "bar.php",
13385         scripts:true,
13386         params: "for=bar",
13387         text: "Loading Foo..."
13388    });
13389  * </code></pre>
13390  * @constructor
13391  * Create new UpdateManager directly.
13392  * @param {String/HTMLElement/Roo.Element} el The element to update
13393  * @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).
13394  */
13395 Roo.UpdateManager = function(el, forceNew){
13396     el = Roo.get(el);
13397     if(!forceNew && el.updateManager){
13398         return el.updateManager;
13399     }
13400     /**
13401      * The Element object
13402      * @type Roo.Element
13403      */
13404     this.el = el;
13405     /**
13406      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
13407      * @type String
13408      */
13409     this.defaultUrl = null;
13410
13411     this.addEvents({
13412         /**
13413          * @event beforeupdate
13414          * Fired before an update is made, return false from your handler and the update is cancelled.
13415          * @param {Roo.Element} el
13416          * @param {String/Object/Function} url
13417          * @param {String/Object} params
13418          */
13419         "beforeupdate": true,
13420         /**
13421          * @event update
13422          * Fired after successful update is made.
13423          * @param {Roo.Element} el
13424          * @param {Object} oResponseObject The response Object
13425          */
13426         "update": true,
13427         /**
13428          * @event failure
13429          * Fired on update failure.
13430          * @param {Roo.Element} el
13431          * @param {Object} oResponseObject The response Object
13432          */
13433         "failure": true
13434     });
13435     var d = Roo.UpdateManager.defaults;
13436     /**
13437      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
13438      * @type String
13439      */
13440     this.sslBlankUrl = d.sslBlankUrl;
13441     /**
13442      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
13443      * @type Boolean
13444      */
13445     this.disableCaching = d.disableCaching;
13446     /**
13447      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13448      * @type String
13449      */
13450     this.indicatorText = d.indicatorText;
13451     /**
13452      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
13453      * @type String
13454      */
13455     this.showLoadIndicator = d.showLoadIndicator;
13456     /**
13457      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
13458      * @type Number
13459      */
13460     this.timeout = d.timeout;
13461
13462     /**
13463      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
13464      * @type Boolean
13465      */
13466     this.loadScripts = d.loadScripts;
13467
13468     /**
13469      * Transaction object of current executing transaction
13470      */
13471     this.transaction = null;
13472
13473     /**
13474      * @private
13475      */
13476     this.autoRefreshProcId = null;
13477     /**
13478      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
13479      * @type Function
13480      */
13481     this.refreshDelegate = this.refresh.createDelegate(this);
13482     /**
13483      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
13484      * @type Function
13485      */
13486     this.updateDelegate = this.update.createDelegate(this);
13487     /**
13488      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
13489      * @type Function
13490      */
13491     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
13492     /**
13493      * @private
13494      */
13495     this.successDelegate = this.processSuccess.createDelegate(this);
13496     /**
13497      * @private
13498      */
13499     this.failureDelegate = this.processFailure.createDelegate(this);
13500
13501     if(!this.renderer){
13502      /**
13503       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
13504       */
13505     this.renderer = new Roo.UpdateManager.BasicRenderer();
13506     }
13507     
13508     Roo.UpdateManager.superclass.constructor.call(this);
13509 };
13510
13511 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
13512     /**
13513      * Get the Element this UpdateManager is bound to
13514      * @return {Roo.Element} The element
13515      */
13516     getEl : function(){
13517         return this.el;
13518     },
13519     /**
13520      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
13521      * @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:
13522 <pre><code>
13523 um.update({<br/>
13524     url: "your-url.php",<br/>
13525     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
13526     callback: yourFunction,<br/>
13527     scope: yourObject, //(optional scope)  <br/>
13528     discardUrl: false, <br/>
13529     nocache: false,<br/>
13530     text: "Loading...",<br/>
13531     timeout: 30,<br/>
13532     scripts: false<br/>
13533 });
13534 </code></pre>
13535      * The only required property is url. The optional properties nocache, text and scripts
13536      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
13537      * @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}
13538      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13539      * @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.
13540      */
13541     update : function(url, params, callback, discardUrl){
13542         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
13543             var method = this.method,
13544                 cfg;
13545             if(typeof url == "object"){ // must be config object
13546                 cfg = url;
13547                 url = cfg.url;
13548                 params = params || cfg.params;
13549                 callback = callback || cfg.callback;
13550                 discardUrl = discardUrl || cfg.discardUrl;
13551                 if(callback && cfg.scope){
13552                     callback = callback.createDelegate(cfg.scope);
13553                 }
13554                 if(typeof cfg.method != "undefined"){method = cfg.method;};
13555                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
13556                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
13557                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
13558                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
13559             }
13560             this.showLoading();
13561             if(!discardUrl){
13562                 this.defaultUrl = url;
13563             }
13564             if(typeof url == "function"){
13565                 url = url.call(this);
13566             }
13567
13568             method = method || (params ? "POST" : "GET");
13569             if(method == "GET"){
13570                 url = this.prepareUrl(url);
13571             }
13572
13573             var o = Roo.apply(cfg ||{}, {
13574                 url : url,
13575                 params: params,
13576                 success: this.successDelegate,
13577                 failure: this.failureDelegate,
13578                 callback: undefined,
13579                 timeout: (this.timeout*1000),
13580                 argument: {"url": url, "form": null, "callback": callback, "params": params}
13581             });
13582             Roo.log("updated manager called with timeout of " + o.timeout);
13583             this.transaction = Roo.Ajax.request(o);
13584         }
13585     },
13586
13587     /**
13588      * 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.
13589      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
13590      * @param {String/HTMLElement} form The form Id or form element
13591      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
13592      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
13593      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13594      */
13595     formUpdate : function(form, url, reset, callback){
13596         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
13597             if(typeof url == "function"){
13598                 url = url.call(this);
13599             }
13600             form = Roo.getDom(form);
13601             this.transaction = Roo.Ajax.request({
13602                 form: form,
13603                 url:url,
13604                 success: this.successDelegate,
13605                 failure: this.failureDelegate,
13606                 timeout: (this.timeout*1000),
13607                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
13608             });
13609             this.showLoading.defer(1, this);
13610         }
13611     },
13612
13613     /**
13614      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
13615      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13616      */
13617     refresh : function(callback){
13618         if(this.defaultUrl == null){
13619             return;
13620         }
13621         this.update(this.defaultUrl, null, callback, true);
13622     },
13623
13624     /**
13625      * Set this element to auto refresh.
13626      * @param {Number} interval How often to update (in seconds).
13627      * @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)
13628      * @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}
13629      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13630      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
13631      */
13632     startAutoRefresh : function(interval, url, params, callback, refreshNow){
13633         if(refreshNow){
13634             this.update(url || this.defaultUrl, params, callback, true);
13635         }
13636         if(this.autoRefreshProcId){
13637             clearInterval(this.autoRefreshProcId);
13638         }
13639         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
13640     },
13641
13642     /**
13643      * Stop auto refresh on this element.
13644      */
13645      stopAutoRefresh : function(){
13646         if(this.autoRefreshProcId){
13647             clearInterval(this.autoRefreshProcId);
13648             delete this.autoRefreshProcId;
13649         }
13650     },
13651
13652     isAutoRefreshing : function(){
13653        return this.autoRefreshProcId ? true : false;
13654     },
13655     /**
13656      * Called to update the element to "Loading" state. Override to perform custom action.
13657      */
13658     showLoading : function(){
13659         if(this.showLoadIndicator){
13660             this.el.update(this.indicatorText);
13661         }
13662     },
13663
13664     /**
13665      * Adds unique parameter to query string if disableCaching = true
13666      * @private
13667      */
13668     prepareUrl : function(url){
13669         if(this.disableCaching){
13670             var append = "_dc=" + (new Date().getTime());
13671             if(url.indexOf("?") !== -1){
13672                 url += "&" + append;
13673             }else{
13674                 url += "?" + append;
13675             }
13676         }
13677         return url;
13678     },
13679
13680     /**
13681      * @private
13682      */
13683     processSuccess : function(response){
13684         this.transaction = null;
13685         if(response.argument.form && response.argument.reset){
13686             try{ // put in try/catch since some older FF releases had problems with this
13687                 response.argument.form.reset();
13688             }catch(e){}
13689         }
13690         if(this.loadScripts){
13691             this.renderer.render(this.el, response, this,
13692                 this.updateComplete.createDelegate(this, [response]));
13693         }else{
13694             this.renderer.render(this.el, response, this);
13695             this.updateComplete(response);
13696         }
13697     },
13698
13699     updateComplete : function(response){
13700         this.fireEvent("update", this.el, response);
13701         if(typeof response.argument.callback == "function"){
13702             response.argument.callback(this.el, true, response);
13703         }
13704     },
13705
13706     /**
13707      * @private
13708      */
13709     processFailure : function(response){
13710         this.transaction = null;
13711         this.fireEvent("failure", this.el, response);
13712         if(typeof response.argument.callback == "function"){
13713             response.argument.callback(this.el, false, response);
13714         }
13715     },
13716
13717     /**
13718      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
13719      * @param {Object} renderer The object implementing the render() method
13720      */
13721     setRenderer : function(renderer){
13722         this.renderer = renderer;
13723     },
13724
13725     getRenderer : function(){
13726        return this.renderer;
13727     },
13728
13729     /**
13730      * Set the defaultUrl used for updates
13731      * @param {String/Function} defaultUrl The url or a function to call to get the url
13732      */
13733     setDefaultUrl : function(defaultUrl){
13734         this.defaultUrl = defaultUrl;
13735     },
13736
13737     /**
13738      * Aborts the executing transaction
13739      */
13740     abort : function(){
13741         if(this.transaction){
13742             Roo.Ajax.abort(this.transaction);
13743         }
13744     },
13745
13746     /**
13747      * Returns true if an update is in progress
13748      * @return {Boolean}
13749      */
13750     isUpdating : function(){
13751         if(this.transaction){
13752             return Roo.Ajax.isLoading(this.transaction);
13753         }
13754         return false;
13755     }
13756 });
13757
13758 /**
13759  * @class Roo.UpdateManager.defaults
13760  * @static (not really - but it helps the doc tool)
13761  * The defaults collection enables customizing the default properties of UpdateManager
13762  */
13763    Roo.UpdateManager.defaults = {
13764        /**
13765          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
13766          * @type Number
13767          */
13768          timeout : 30,
13769
13770          /**
13771          * True to process scripts by default (Defaults to false).
13772          * @type Boolean
13773          */
13774         loadScripts : false,
13775
13776         /**
13777         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
13778         * @type String
13779         */
13780         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
13781         /**
13782          * Whether to append unique parameter on get request to disable caching (Defaults to false).
13783          * @type Boolean
13784          */
13785         disableCaching : false,
13786         /**
13787          * Whether to show indicatorText when loading (Defaults to true).
13788          * @type Boolean
13789          */
13790         showLoadIndicator : true,
13791         /**
13792          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13793          * @type String
13794          */
13795         indicatorText : '<div class="loading-indicator">Loading...</div>'
13796    };
13797
13798 /**
13799  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
13800  *Usage:
13801  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
13802  * @param {String/HTMLElement/Roo.Element} el The element to update
13803  * @param {String} url The url
13804  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
13805  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
13806  * @static
13807  * @deprecated
13808  * @member Roo.UpdateManager
13809  */
13810 Roo.UpdateManager.updateElement = function(el, url, params, options){
13811     var um = Roo.get(el, true).getUpdateManager();
13812     Roo.apply(um, options);
13813     um.update(url, params, options ? options.callback : null);
13814 };
13815 // alias for backwards compat
13816 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
13817 /**
13818  * @class Roo.UpdateManager.BasicRenderer
13819  * Default Content renderer. Updates the elements innerHTML with the responseText.
13820  */
13821 Roo.UpdateManager.BasicRenderer = function(){};
13822
13823 Roo.UpdateManager.BasicRenderer.prototype = {
13824     /**
13825      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
13826      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
13827      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
13828      * @param {Roo.Element} el The element being rendered
13829      * @param {Object} response The YUI Connect response object
13830      * @param {UpdateManager} updateManager The calling update manager
13831      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
13832      */
13833      render : function(el, response, updateManager, callback){
13834         el.update(response.responseText, updateManager.loadScripts, callback);
13835     }
13836 };
13837 /*
13838  * Based on:
13839  * Roo JS
13840  * (c)) Alan Knowles
13841  * Licence : LGPL
13842  */
13843
13844
13845 /**
13846  * @class Roo.DomTemplate
13847  * @extends Roo.Template
13848  * An effort at a dom based template engine..
13849  *
13850  * Similar to XTemplate, except it uses dom parsing to create the template..
13851  *
13852  * Supported features:
13853  *
13854  *  Tags:
13855
13856 <pre><code>
13857       {a_variable} - output encoded.
13858       {a_variable.format:("Y-m-d")} - call a method on the variable
13859       {a_variable:raw} - unencoded output
13860       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
13861       {a_variable:this.method_on_template(...)} - call a method on the template object.
13862  
13863 </code></pre>
13864  *  The tpl tag:
13865 <pre><code>
13866         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
13867         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
13868         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
13869         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
13870   
13871 </code></pre>
13872  *      
13873  */
13874 Roo.DomTemplate = function()
13875 {
13876      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
13877      if (this.html) {
13878         this.compile();
13879      }
13880 };
13881
13882
13883 Roo.extend(Roo.DomTemplate, Roo.Template, {
13884     /**
13885      * id counter for sub templates.
13886      */
13887     id : 0,
13888     /**
13889      * flag to indicate if dom parser is inside a pre,
13890      * it will strip whitespace if not.
13891      */
13892     inPre : false,
13893     
13894     /**
13895      * The various sub templates
13896      */
13897     tpls : false,
13898     
13899     
13900     
13901     /**
13902      *
13903      * basic tag replacing syntax
13904      * WORD:WORD()
13905      *
13906      * // you can fake an object call by doing this
13907      *  x.t:(test,tesT) 
13908      * 
13909      */
13910     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
13911     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
13912     
13913     iterChild : function (node, method) {
13914         
13915         var oldPre = this.inPre;
13916         if (node.tagName == 'PRE') {
13917             this.inPre = true;
13918         }
13919         for( var i = 0; i < node.childNodes.length; i++) {
13920             method.call(this, node.childNodes[i]);
13921         }
13922         this.inPre = oldPre;
13923     },
13924     
13925     
13926     
13927     /**
13928      * compile the template
13929      *
13930      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
13931      *
13932      */
13933     compile: function()
13934     {
13935         var s = this.html;
13936         
13937         // covert the html into DOM...
13938         var doc = false;
13939         var div =false;
13940         try {
13941             doc = document.implementation.createHTMLDocument("");
13942             doc.documentElement.innerHTML =   this.html  ;
13943             div = doc.documentElement;
13944         } catch (e) {
13945             // old IE... - nasty -- it causes all sorts of issues.. with
13946             // images getting pulled from server..
13947             div = document.createElement('div');
13948             div.innerHTML = this.html;
13949         }
13950         //doc.documentElement.innerHTML = htmlBody
13951          
13952         
13953         
13954         this.tpls = [];
13955         var _t = this;
13956         this.iterChild(div, function(n) {_t.compileNode(n, true); });
13957         
13958         var tpls = this.tpls;
13959         
13960         // create a top level template from the snippet..
13961         
13962         //Roo.log(div.innerHTML);
13963         
13964         var tpl = {
13965             uid : 'master',
13966             id : this.id++,
13967             attr : false,
13968             value : false,
13969             body : div.innerHTML,
13970             
13971             forCall : false,
13972             execCall : false,
13973             dom : div,
13974             isTop : true
13975             
13976         };
13977         tpls.unshift(tpl);
13978         
13979         
13980         // compile them...
13981         this.tpls = [];
13982         Roo.each(tpls, function(tp){
13983             this.compileTpl(tp);
13984             this.tpls[tp.id] = tp;
13985         }, this);
13986         
13987         this.master = tpls[0];
13988         return this;
13989         
13990         
13991     },
13992     
13993     compileNode : function(node, istop) {
13994         // test for
13995         //Roo.log(node);
13996         
13997         
13998         // skip anything not a tag..
13999         if (node.nodeType != 1) {
14000             if (node.nodeType == 3 && !this.inPre) {
14001                 // reduce white space..
14002                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
14003                 
14004             }
14005             return;
14006         }
14007         
14008         var tpl = {
14009             uid : false,
14010             id : false,
14011             attr : false,
14012             value : false,
14013             body : '',
14014             
14015             forCall : false,
14016             execCall : false,
14017             dom : false,
14018             isTop : istop
14019             
14020             
14021         };
14022         
14023         
14024         switch(true) {
14025             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
14026             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
14027             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
14028             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
14029             // no default..
14030         }
14031         
14032         
14033         if (!tpl.attr) {
14034             // just itterate children..
14035             this.iterChild(node,this.compileNode);
14036             return;
14037         }
14038         tpl.uid = this.id++;
14039         tpl.value = node.getAttribute('roo-' +  tpl.attr);
14040         node.removeAttribute('roo-'+ tpl.attr);
14041         if (tpl.attr != 'name') {
14042             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
14043             node.parentNode.replaceChild(placeholder,  node);
14044         } else {
14045             
14046             var placeholder =  document.createElement('span');
14047             placeholder.className = 'roo-tpl-' + tpl.value;
14048             node.parentNode.replaceChild(placeholder,  node);
14049         }
14050         
14051         // parent now sees '{domtplXXXX}
14052         this.iterChild(node,this.compileNode);
14053         
14054         // we should now have node body...
14055         var div = document.createElement('div');
14056         div.appendChild(node);
14057         tpl.dom = node;
14058         // this has the unfortunate side effect of converting tagged attributes
14059         // eg. href="{...}" into %7C...%7D
14060         // this has been fixed by searching for those combo's although it's a bit hacky..
14061         
14062         
14063         tpl.body = div.innerHTML;
14064         
14065         
14066          
14067         tpl.id = tpl.uid;
14068         switch(tpl.attr) {
14069             case 'for' :
14070                 switch (tpl.value) {
14071                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
14072                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
14073                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
14074                 }
14075                 break;
14076             
14077             case 'exec':
14078                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14079                 break;
14080             
14081             case 'if':     
14082                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14083                 break;
14084             
14085             case 'name':
14086                 tpl.id  = tpl.value; // replace non characters???
14087                 break;
14088             
14089         }
14090         
14091         
14092         this.tpls.push(tpl);
14093         
14094         
14095         
14096     },
14097     
14098     
14099     
14100     
14101     /**
14102      * Compile a segment of the template into a 'sub-template'
14103      *
14104      * 
14105      * 
14106      *
14107      */
14108     compileTpl : function(tpl)
14109     {
14110         var fm = Roo.util.Format;
14111         var useF = this.disableFormats !== true;
14112         
14113         var sep = Roo.isGecko ? "+\n" : ",\n";
14114         
14115         var undef = function(str) {
14116             Roo.debug && Roo.log("Property not found :"  + str);
14117             return '';
14118         };
14119           
14120         //Roo.log(tpl.body);
14121         
14122         
14123         
14124         var fn = function(m, lbrace, name, format, args)
14125         {
14126             //Roo.log("ARGS");
14127             //Roo.log(arguments);
14128             args = args ? args.replace(/\\'/g,"'") : args;
14129             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
14130             if (typeof(format) == 'undefined') {
14131                 format =  'htmlEncode'; 
14132             }
14133             if (format == 'raw' ) {
14134                 format = false;
14135             }
14136             
14137             if(name.substr(0, 6) == 'domtpl'){
14138                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
14139             }
14140             
14141             // build an array of options to determine if value is undefined..
14142             
14143             // basically get 'xxxx.yyyy' then do
14144             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
14145             //    (function () { Roo.log("Property not found"); return ''; })() :
14146             //    ......
14147             
14148             var udef_ar = [];
14149             var lookfor = '';
14150             Roo.each(name.split('.'), function(st) {
14151                 lookfor += (lookfor.length ? '.': '') + st;
14152                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
14153             });
14154             
14155             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
14156             
14157             
14158             if(format && useF){
14159                 
14160                 args = args ? ',' + args : "";
14161                  
14162                 if(format.substr(0, 5) != "this."){
14163                     format = "fm." + format + '(';
14164                 }else{
14165                     format = 'this.call("'+ format.substr(5) + '", ';
14166                     args = ", values";
14167                 }
14168                 
14169                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
14170             }
14171              
14172             if (args && args.length) {
14173                 // called with xxyx.yuu:(test,test)
14174                 // change to ()
14175                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
14176             }
14177             // raw.. - :raw modifier..
14178             return "'"+ sep + udef_st  + name + ")"+sep+"'";
14179             
14180         };
14181         var body;
14182         // branched to use + in gecko and [].join() in others
14183         if(Roo.isGecko){
14184             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
14185                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
14186                     "';};};";
14187         }else{
14188             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
14189             body.push(tpl.body.replace(/(\r\n|\n)/g,
14190                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
14191             body.push("'].join('');};};");
14192             body = body.join('');
14193         }
14194         
14195         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
14196        
14197         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
14198         eval(body);
14199         
14200         return this;
14201     },
14202      
14203     /**
14204      * same as applyTemplate, except it's done to one of the subTemplates
14205      * when using named templates, you can do:
14206      *
14207      * var str = pl.applySubTemplate('your-name', values);
14208      *
14209      * 
14210      * @param {Number} id of the template
14211      * @param {Object} values to apply to template
14212      * @param {Object} parent (normaly the instance of this object)
14213      */
14214     applySubTemplate : function(id, values, parent)
14215     {
14216         
14217         
14218         var t = this.tpls[id];
14219         
14220         
14221         try { 
14222             if(t.ifCall && !t.ifCall.call(this, values, parent)){
14223                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
14224                 return '';
14225             }
14226         } catch(e) {
14227             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
14228             Roo.log(values);
14229           
14230             return '';
14231         }
14232         try { 
14233             
14234             if(t.execCall && t.execCall.call(this, values, parent)){
14235                 return '';
14236             }
14237         } catch(e) {
14238             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14239             Roo.log(values);
14240             return '';
14241         }
14242         
14243         try {
14244             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
14245             parent = t.target ? values : parent;
14246             if(t.forCall && vs instanceof Array){
14247                 var buf = [];
14248                 for(var i = 0, len = vs.length; i < len; i++){
14249                     try {
14250                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
14251                     } catch (e) {
14252                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14253                         Roo.log(e.body);
14254                         //Roo.log(t.compiled);
14255                         Roo.log(vs[i]);
14256                     }   
14257                 }
14258                 return buf.join('');
14259             }
14260         } catch (e) {
14261             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14262             Roo.log(values);
14263             return '';
14264         }
14265         try {
14266             return t.compiled.call(this, vs, parent);
14267         } catch (e) {
14268             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14269             Roo.log(e.body);
14270             //Roo.log(t.compiled);
14271             Roo.log(values);
14272             return '';
14273         }
14274     },
14275
14276    
14277
14278     applyTemplate : function(values){
14279         return this.master.compiled.call(this, values, {});
14280         //var s = this.subs;
14281     },
14282
14283     apply : function(){
14284         return this.applyTemplate.apply(this, arguments);
14285     }
14286
14287  });
14288
14289 Roo.DomTemplate.from = function(el){
14290     el = Roo.getDom(el);
14291     return new Roo.Domtemplate(el.value || el.innerHTML);
14292 };/*
14293  * Based on:
14294  * Ext JS Library 1.1.1
14295  * Copyright(c) 2006-2007, Ext JS, LLC.
14296  *
14297  * Originally Released Under LGPL - original licence link has changed is not relivant.
14298  *
14299  * Fork - LGPL
14300  * <script type="text/javascript">
14301  */
14302
14303 /**
14304  * @class Roo.util.DelayedTask
14305  * Provides a convenient method of performing setTimeout where a new
14306  * timeout cancels the old timeout. An example would be performing validation on a keypress.
14307  * You can use this class to buffer
14308  * the keypress events for a certain number of milliseconds, and perform only if they stop
14309  * for that amount of time.
14310  * @constructor The parameters to this constructor serve as defaults and are not required.
14311  * @param {Function} fn (optional) The default function to timeout
14312  * @param {Object} scope (optional) The default scope of that timeout
14313  * @param {Array} args (optional) The default Array of arguments
14314  */
14315 Roo.util.DelayedTask = function(fn, scope, args){
14316     var id = null, d, t;
14317
14318     var call = function(){
14319         var now = new Date().getTime();
14320         if(now - t >= d){
14321             clearInterval(id);
14322             id = null;
14323             fn.apply(scope, args || []);
14324         }
14325     };
14326     /**
14327      * Cancels any pending timeout and queues a new one
14328      * @param {Number} delay The milliseconds to delay
14329      * @param {Function} newFn (optional) Overrides function passed to constructor
14330      * @param {Object} newScope (optional) Overrides scope passed to constructor
14331      * @param {Array} newArgs (optional) Overrides args passed to constructor
14332      */
14333     this.delay = function(delay, newFn, newScope, newArgs){
14334         if(id && delay != d){
14335             this.cancel();
14336         }
14337         d = delay;
14338         t = new Date().getTime();
14339         fn = newFn || fn;
14340         scope = newScope || scope;
14341         args = newArgs || args;
14342         if(!id){
14343             id = setInterval(call, d);
14344         }
14345     };
14346
14347     /**
14348      * Cancel the last queued timeout
14349      */
14350     this.cancel = function(){
14351         if(id){
14352             clearInterval(id);
14353             id = null;
14354         }
14355     };
14356 };/*
14357  * Based on:
14358  * Ext JS Library 1.1.1
14359  * Copyright(c) 2006-2007, Ext JS, LLC.
14360  *
14361  * Originally Released Under LGPL - original licence link has changed is not relivant.
14362  *
14363  * Fork - LGPL
14364  * <script type="text/javascript">
14365  */
14366 /**
14367  * @class Roo.util.TaskRunner
14368  * Manage background tasks - not sure why this is better that setInterval?
14369  * @static
14370  *
14371  */
14372  
14373 Roo.util.TaskRunner = function(interval){
14374     interval = interval || 10;
14375     var tasks = [], removeQueue = [];
14376     var id = 0;
14377     var running = false;
14378
14379     var stopThread = function(){
14380         running = false;
14381         clearInterval(id);
14382         id = 0;
14383     };
14384
14385     var startThread = function(){
14386         if(!running){
14387             running = true;
14388             id = setInterval(runTasks, interval);
14389         }
14390     };
14391
14392     var removeTask = function(task){
14393         removeQueue.push(task);
14394         if(task.onStop){
14395             task.onStop();
14396         }
14397     };
14398
14399     var runTasks = function(){
14400         if(removeQueue.length > 0){
14401             for(var i = 0, len = removeQueue.length; i < len; i++){
14402                 tasks.remove(removeQueue[i]);
14403             }
14404             removeQueue = [];
14405             if(tasks.length < 1){
14406                 stopThread();
14407                 return;
14408             }
14409         }
14410         var now = new Date().getTime();
14411         for(var i = 0, len = tasks.length; i < len; ++i){
14412             var t = tasks[i];
14413             var itime = now - t.taskRunTime;
14414             if(t.interval <= itime){
14415                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
14416                 t.taskRunTime = now;
14417                 if(rt === false || t.taskRunCount === t.repeat){
14418                     removeTask(t);
14419                     return;
14420                 }
14421             }
14422             if(t.duration && t.duration <= (now - t.taskStartTime)){
14423                 removeTask(t);
14424             }
14425         }
14426     };
14427
14428     /**
14429      * Queues a new task.
14430      * @param {Object} task
14431      *
14432      * Task property : interval = how frequent to run.
14433      * Task object should implement
14434      * function run()
14435      * Task object may implement
14436      * function onStop()
14437      */
14438     this.start = function(task){
14439         tasks.push(task);
14440         task.taskStartTime = new Date().getTime();
14441         task.taskRunTime = 0;
14442         task.taskRunCount = 0;
14443         startThread();
14444         return task;
14445     };
14446     /**
14447      * Stop  new task.
14448      * @param {Object} task
14449      */
14450     this.stop = function(task){
14451         removeTask(task);
14452         return task;
14453     };
14454     /**
14455      * Stop all Tasks
14456      */
14457     this.stopAll = function(){
14458         stopThread();
14459         for(var i = 0, len = tasks.length; i < len; i++){
14460             if(tasks[i].onStop){
14461                 tasks[i].onStop();
14462             }
14463         }
14464         tasks = [];
14465         removeQueue = [];
14466     };
14467 };
14468
14469 Roo.TaskMgr = new Roo.util.TaskRunner();/*
14470  * Based on:
14471  * Ext JS Library 1.1.1
14472  * Copyright(c) 2006-2007, Ext JS, LLC.
14473  *
14474  * Originally Released Under LGPL - original licence link has changed is not relivant.
14475  *
14476  * Fork - LGPL
14477  * <script type="text/javascript">
14478  */
14479
14480  
14481 /**
14482  * @class Roo.util.MixedCollection
14483  * @extends Roo.util.Observable
14484  * A Collection class that maintains both numeric indexes and keys and exposes events.
14485  * @constructor
14486  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
14487  * collection (defaults to false)
14488  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
14489  * and return the key value for that item.  This is used when available to look up the key on items that
14490  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
14491  * equivalent to providing an implementation for the {@link #getKey} method.
14492  */
14493 Roo.util.MixedCollection = function(allowFunctions, keyFn){
14494     this.items = [];
14495     this.map = {};
14496     this.keys = [];
14497     this.length = 0;
14498     this.addEvents({
14499         /**
14500          * @event clear
14501          * Fires when the collection is cleared.
14502          */
14503         "clear" : true,
14504         /**
14505          * @event add
14506          * Fires when an item is added to the collection.
14507          * @param {Number} index The index at which the item was added.
14508          * @param {Object} o The item added.
14509          * @param {String} key The key associated with the added item.
14510          */
14511         "add" : true,
14512         /**
14513          * @event replace
14514          * Fires when an item is replaced in the collection.
14515          * @param {String} key he key associated with the new added.
14516          * @param {Object} old The item being replaced.
14517          * @param {Object} new The new item.
14518          */
14519         "replace" : true,
14520         /**
14521          * @event remove
14522          * Fires when an item is removed from the collection.
14523          * @param {Object} o The item being removed.
14524          * @param {String} key (optional) The key associated with the removed item.
14525          */
14526         "remove" : true,
14527         "sort" : true
14528     });
14529     this.allowFunctions = allowFunctions === true;
14530     if(keyFn){
14531         this.getKey = keyFn;
14532     }
14533     Roo.util.MixedCollection.superclass.constructor.call(this);
14534 };
14535
14536 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
14537     allowFunctions : false,
14538     
14539 /**
14540  * Adds an item to the collection.
14541  * @param {String} key The key to associate with the item
14542  * @param {Object} o The item to add.
14543  * @return {Object} The item added.
14544  */
14545     add : function(key, o){
14546         if(arguments.length == 1){
14547             o = arguments[0];
14548             key = this.getKey(o);
14549         }
14550         if(typeof key == "undefined" || key === null){
14551             this.length++;
14552             this.items.push(o);
14553             this.keys.push(null);
14554         }else{
14555             var old = this.map[key];
14556             if(old){
14557                 return this.replace(key, o);
14558             }
14559             this.length++;
14560             this.items.push(o);
14561             this.map[key] = o;
14562             this.keys.push(key);
14563         }
14564         this.fireEvent("add", this.length-1, o, key);
14565         return o;
14566     },
14567        
14568 /**
14569   * MixedCollection has a generic way to fetch keys if you implement getKey.
14570 <pre><code>
14571 // normal way
14572 var mc = new Roo.util.MixedCollection();
14573 mc.add(someEl.dom.id, someEl);
14574 mc.add(otherEl.dom.id, otherEl);
14575 //and so on
14576
14577 // using getKey
14578 var mc = new Roo.util.MixedCollection();
14579 mc.getKey = function(el){
14580    return el.dom.id;
14581 };
14582 mc.add(someEl);
14583 mc.add(otherEl);
14584
14585 // or via the constructor
14586 var mc = new Roo.util.MixedCollection(false, function(el){
14587    return el.dom.id;
14588 });
14589 mc.add(someEl);
14590 mc.add(otherEl);
14591 </code></pre>
14592  * @param o {Object} The item for which to find the key.
14593  * @return {Object} The key for the passed item.
14594  */
14595     getKey : function(o){
14596          return o.id; 
14597     },
14598    
14599 /**
14600  * Replaces an item in the collection.
14601  * @param {String} key The key associated with the item to replace, or the item to replace.
14602  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
14603  * @return {Object}  The new item.
14604  */
14605     replace : function(key, o){
14606         if(arguments.length == 1){
14607             o = arguments[0];
14608             key = this.getKey(o);
14609         }
14610         var old = this.item(key);
14611         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
14612              return this.add(key, o);
14613         }
14614         var index = this.indexOfKey(key);
14615         this.items[index] = o;
14616         this.map[key] = o;
14617         this.fireEvent("replace", key, old, o);
14618         return o;
14619     },
14620    
14621 /**
14622  * Adds all elements of an Array or an Object to the collection.
14623  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
14624  * an Array of values, each of which are added to the collection.
14625  */
14626     addAll : function(objs){
14627         if(arguments.length > 1 || objs instanceof Array){
14628             var args = arguments.length > 1 ? arguments : objs;
14629             for(var i = 0, len = args.length; i < len; i++){
14630                 this.add(args[i]);
14631             }
14632         }else{
14633             for(var key in objs){
14634                 if(this.allowFunctions || typeof objs[key] != "function"){
14635                     this.add(key, objs[key]);
14636                 }
14637             }
14638         }
14639     },
14640    
14641 /**
14642  * Executes the specified function once for every item in the collection, passing each
14643  * item as the first and only parameter. returning false from the function will stop the iteration.
14644  * @param {Function} fn The function to execute for each item.
14645  * @param {Object} scope (optional) The scope in which to execute the function.
14646  */
14647     each : function(fn, scope){
14648         var items = [].concat(this.items); // each safe for removal
14649         for(var i = 0, len = items.length; i < len; i++){
14650             if(fn.call(scope || items[i], items[i], i, len) === false){
14651                 break;
14652             }
14653         }
14654     },
14655    
14656 /**
14657  * Executes the specified function once for every key in the collection, passing each
14658  * key, and its associated item as the first two parameters.
14659  * @param {Function} fn The function to execute for each item.
14660  * @param {Object} scope (optional) The scope in which to execute the function.
14661  */
14662     eachKey : function(fn, scope){
14663         for(var i = 0, len = this.keys.length; i < len; i++){
14664             fn.call(scope || window, this.keys[i], this.items[i], i, len);
14665         }
14666     },
14667    
14668 /**
14669  * Returns the first item in the collection which elicits a true return value from the
14670  * passed selection function.
14671  * @param {Function} fn The selection function to execute for each item.
14672  * @param {Object} scope (optional) The scope in which to execute the function.
14673  * @return {Object} The first item in the collection which returned true from the selection function.
14674  */
14675     find : function(fn, scope){
14676         for(var i = 0, len = this.items.length; i < len; i++){
14677             if(fn.call(scope || window, this.items[i], this.keys[i])){
14678                 return this.items[i];
14679             }
14680         }
14681         return null;
14682     },
14683    
14684 /**
14685  * Inserts an item at the specified index in the collection.
14686  * @param {Number} index The index to insert the item at.
14687  * @param {String} key The key to associate with the new item, or the item itself.
14688  * @param {Object} o  (optional) If the second parameter was a key, the new item.
14689  * @return {Object} The item inserted.
14690  */
14691     insert : function(index, key, o){
14692         if(arguments.length == 2){
14693             o = arguments[1];
14694             key = this.getKey(o);
14695         }
14696         if(index >= this.length){
14697             return this.add(key, o);
14698         }
14699         this.length++;
14700         this.items.splice(index, 0, o);
14701         if(typeof key != "undefined" && key != null){
14702             this.map[key] = o;
14703         }
14704         this.keys.splice(index, 0, key);
14705         this.fireEvent("add", index, o, key);
14706         return o;
14707     },
14708    
14709 /**
14710  * Removed an item from the collection.
14711  * @param {Object} o The item to remove.
14712  * @return {Object} The item removed.
14713  */
14714     remove : function(o){
14715         return this.removeAt(this.indexOf(o));
14716     },
14717    
14718 /**
14719  * Remove an item from a specified index in the collection.
14720  * @param {Number} index The index within the collection of the item to remove.
14721  */
14722     removeAt : function(index){
14723         if(index < this.length && index >= 0){
14724             this.length--;
14725             var o = this.items[index];
14726             this.items.splice(index, 1);
14727             var key = this.keys[index];
14728             if(typeof key != "undefined"){
14729                 delete this.map[key];
14730             }
14731             this.keys.splice(index, 1);
14732             this.fireEvent("remove", o, key);
14733         }
14734     },
14735    
14736 /**
14737  * Removed an item associated with the passed key fom the collection.
14738  * @param {String} key The key of the item to remove.
14739  */
14740     removeKey : function(key){
14741         return this.removeAt(this.indexOfKey(key));
14742     },
14743    
14744 /**
14745  * Returns the number of items in the collection.
14746  * @return {Number} the number of items in the collection.
14747  */
14748     getCount : function(){
14749         return this.length; 
14750     },
14751    
14752 /**
14753  * Returns index within the collection of the passed Object.
14754  * @param {Object} o The item to find the index of.
14755  * @return {Number} index of the item.
14756  */
14757     indexOf : function(o){
14758         if(!this.items.indexOf){
14759             for(var i = 0, len = this.items.length; i < len; i++){
14760                 if(this.items[i] == o) {
14761                     return i;
14762                 }
14763             }
14764             return -1;
14765         }else{
14766             return this.items.indexOf(o);
14767         }
14768     },
14769    
14770 /**
14771  * Returns index within the collection of the passed key.
14772  * @param {String} key The key to find the index of.
14773  * @return {Number} index of the key.
14774  */
14775     indexOfKey : function(key){
14776         if(!this.keys.indexOf){
14777             for(var i = 0, len = this.keys.length; i < len; i++){
14778                 if(this.keys[i] == key) {
14779                     return i;
14780                 }
14781             }
14782             return -1;
14783         }else{
14784             return this.keys.indexOf(key);
14785         }
14786     },
14787    
14788 /**
14789  * Returns the item associated with the passed key OR index. Key has priority over index.
14790  * @param {String/Number} key The key or index of the item.
14791  * @return {Object} The item associated with the passed key.
14792  */
14793     item : function(key){
14794         if (key === 'length') {
14795             return null;
14796         }
14797         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
14798         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
14799     },
14800     
14801 /**
14802  * Returns the item at the specified index.
14803  * @param {Number} index The index of the item.
14804  * @return {Object}
14805  */
14806     itemAt : function(index){
14807         return this.items[index];
14808     },
14809     
14810 /**
14811  * Returns the item associated with the passed key.
14812  * @param {String/Number} key The key of the item.
14813  * @return {Object} The item associated with the passed key.
14814  */
14815     key : function(key){
14816         return this.map[key];
14817     },
14818    
14819 /**
14820  * Returns true if the collection contains the passed Object as an item.
14821  * @param {Object} o  The Object to look for in the collection.
14822  * @return {Boolean} True if the collection contains the Object as an item.
14823  */
14824     contains : function(o){
14825         return this.indexOf(o) != -1;
14826     },
14827    
14828 /**
14829  * Returns true if the collection contains the passed Object as a key.
14830  * @param {String} key The key to look for in the collection.
14831  * @return {Boolean} True if the collection contains the Object as a key.
14832  */
14833     containsKey : function(key){
14834         return typeof this.map[key] != "undefined";
14835     },
14836    
14837 /**
14838  * Removes all items from the collection.
14839  */
14840     clear : function(){
14841         this.length = 0;
14842         this.items = [];
14843         this.keys = [];
14844         this.map = {};
14845         this.fireEvent("clear");
14846     },
14847    
14848 /**
14849  * Returns the first item in the collection.
14850  * @return {Object} the first item in the collection..
14851  */
14852     first : function(){
14853         return this.items[0]; 
14854     },
14855    
14856 /**
14857  * Returns the last item in the collection.
14858  * @return {Object} the last item in the collection..
14859  */
14860     last : function(){
14861         return this.items[this.length-1];   
14862     },
14863     
14864     _sort : function(property, dir, fn){
14865         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
14866         fn = fn || function(a, b){
14867             return a-b;
14868         };
14869         var c = [], k = this.keys, items = this.items;
14870         for(var i = 0, len = items.length; i < len; i++){
14871             c[c.length] = {key: k[i], value: items[i], index: i};
14872         }
14873         c.sort(function(a, b){
14874             var v = fn(a[property], b[property]) * dsc;
14875             if(v == 0){
14876                 v = (a.index < b.index ? -1 : 1);
14877             }
14878             return v;
14879         });
14880         for(var i = 0, len = c.length; i < len; i++){
14881             items[i] = c[i].value;
14882             k[i] = c[i].key;
14883         }
14884         this.fireEvent("sort", this);
14885     },
14886     
14887     /**
14888      * Sorts this collection with the passed comparison function
14889      * @param {String} direction (optional) "ASC" or "DESC"
14890      * @param {Function} fn (optional) comparison function
14891      */
14892     sort : function(dir, fn){
14893         this._sort("value", dir, fn);
14894     },
14895     
14896     /**
14897      * Sorts this collection by keys
14898      * @param {String} direction (optional) "ASC" or "DESC"
14899      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
14900      */
14901     keySort : function(dir, fn){
14902         this._sort("key", dir, fn || function(a, b){
14903             return String(a).toUpperCase()-String(b).toUpperCase();
14904         });
14905     },
14906     
14907     /**
14908      * Returns a range of items in this collection
14909      * @param {Number} startIndex (optional) defaults to 0
14910      * @param {Number} endIndex (optional) default to the last item
14911      * @return {Array} An array of items
14912      */
14913     getRange : function(start, end){
14914         var items = this.items;
14915         if(items.length < 1){
14916             return [];
14917         }
14918         start = start || 0;
14919         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
14920         var r = [];
14921         if(start <= end){
14922             for(var i = start; i <= end; i++) {
14923                     r[r.length] = items[i];
14924             }
14925         }else{
14926             for(var i = start; i >= end; i--) {
14927                     r[r.length] = items[i];
14928             }
14929         }
14930         return r;
14931     },
14932         
14933     /**
14934      * Filter the <i>objects</i> in this collection by a specific property. 
14935      * Returns a new collection that has been filtered.
14936      * @param {String} property A property on your objects
14937      * @param {String/RegExp} value Either string that the property values 
14938      * should start with or a RegExp to test against the property
14939      * @return {MixedCollection} The new filtered collection
14940      */
14941     filter : function(property, value){
14942         if(!value.exec){ // not a regex
14943             value = String(value);
14944             if(value.length == 0){
14945                 return this.clone();
14946             }
14947             value = new RegExp("^" + Roo.escapeRe(value), "i");
14948         }
14949         return this.filterBy(function(o){
14950             return o && value.test(o[property]);
14951         });
14952         },
14953     
14954     /**
14955      * Filter by a function. * Returns a new collection that has been filtered.
14956      * The passed function will be called with each 
14957      * object in the collection. If the function returns true, the value is included 
14958      * otherwise it is filtered.
14959      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
14960      * @param {Object} scope (optional) The scope of the function (defaults to this) 
14961      * @return {MixedCollection} The new filtered collection
14962      */
14963     filterBy : function(fn, scope){
14964         var r = new Roo.util.MixedCollection();
14965         r.getKey = this.getKey;
14966         var k = this.keys, it = this.items;
14967         for(var i = 0, len = it.length; i < len; i++){
14968             if(fn.call(scope||this, it[i], k[i])){
14969                                 r.add(k[i], it[i]);
14970                         }
14971         }
14972         return r;
14973     },
14974     
14975     /**
14976      * Creates a duplicate of this collection
14977      * @return {MixedCollection}
14978      */
14979     clone : function(){
14980         var r = new Roo.util.MixedCollection();
14981         var k = this.keys, it = this.items;
14982         for(var i = 0, len = it.length; i < len; i++){
14983             r.add(k[i], it[i]);
14984         }
14985         r.getKey = this.getKey;
14986         return r;
14987     }
14988 });
14989 /**
14990  * Returns the item associated with the passed key or index.
14991  * @method
14992  * @param {String/Number} key The key or index of the item.
14993  * @return {Object} The item associated with the passed key.
14994  */
14995 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
14996  * Based on:
14997  * Ext JS Library 1.1.1
14998  * Copyright(c) 2006-2007, Ext JS, LLC.
14999  *
15000  * Originally Released Under LGPL - original licence link has changed is not relivant.
15001  *
15002  * Fork - LGPL
15003  * <script type="text/javascript">
15004  */
15005 /**
15006  * @class Roo.util.JSON
15007  * Modified version of Douglas Crockford"s json.js that doesn"t
15008  * mess with the Object prototype 
15009  * http://www.json.org/js.html
15010  * @static
15011  */
15012 Roo.util.JSON = new (function(){
15013     var useHasOwn = {}.hasOwnProperty ? true : false;
15014     
15015     // crashes Safari in some instances
15016     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
15017     
15018     var pad = function(n) {
15019         return n < 10 ? "0" + n : n;
15020     };
15021     
15022     var m = {
15023         "\b": '\\b',
15024         "\t": '\\t',
15025         "\n": '\\n',
15026         "\f": '\\f',
15027         "\r": '\\r',
15028         '"' : '\\"',
15029         "\\": '\\\\'
15030     };
15031
15032     var encodeString = function(s){
15033         if (/["\\\x00-\x1f]/.test(s)) {
15034             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
15035                 var c = m[b];
15036                 if(c){
15037                     return c;
15038                 }
15039                 c = b.charCodeAt();
15040                 return "\\u00" +
15041                     Math.floor(c / 16).toString(16) +
15042                     (c % 16).toString(16);
15043             }) + '"';
15044         }
15045         return '"' + s + '"';
15046     };
15047     
15048     var encodeArray = function(o){
15049         var a = ["["], b, i, l = o.length, v;
15050             for (i = 0; i < l; i += 1) {
15051                 v = o[i];
15052                 switch (typeof v) {
15053                     case "undefined":
15054                     case "function":
15055                     case "unknown":
15056                         break;
15057                     default:
15058                         if (b) {
15059                             a.push(',');
15060                         }
15061                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
15062                         b = true;
15063                 }
15064             }
15065             a.push("]");
15066             return a.join("");
15067     };
15068     
15069     var encodeDate = function(o){
15070         return '"' + o.getFullYear() + "-" +
15071                 pad(o.getMonth() + 1) + "-" +
15072                 pad(o.getDate()) + "T" +
15073                 pad(o.getHours()) + ":" +
15074                 pad(o.getMinutes()) + ":" +
15075                 pad(o.getSeconds()) + '"';
15076     };
15077     
15078     /**
15079      * Encodes an Object, Array or other value
15080      * @param {Mixed} o The variable to encode
15081      * @return {String} The JSON string
15082      */
15083     this.encode = function(o)
15084     {
15085         // should this be extended to fully wrap stringify..
15086         
15087         if(typeof o == "undefined" || o === null){
15088             return "null";
15089         }else if(o instanceof Array){
15090             return encodeArray(o);
15091         }else if(o instanceof Date){
15092             return encodeDate(o);
15093         }else if(typeof o == "string"){
15094             return encodeString(o);
15095         }else if(typeof o == "number"){
15096             return isFinite(o) ? String(o) : "null";
15097         }else if(typeof o == "boolean"){
15098             return String(o);
15099         }else {
15100             var a = ["{"], b, i, v;
15101             for (i in o) {
15102                 if(!useHasOwn || o.hasOwnProperty(i)) {
15103                     v = o[i];
15104                     switch (typeof v) {
15105                     case "undefined":
15106                     case "function":
15107                     case "unknown":
15108                         break;
15109                     default:
15110                         if(b){
15111                             a.push(',');
15112                         }
15113                         a.push(this.encode(i), ":",
15114                                 v === null ? "null" : this.encode(v));
15115                         b = true;
15116                     }
15117                 }
15118             }
15119             a.push("}");
15120             return a.join("");
15121         }
15122     };
15123     
15124     /**
15125      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
15126      * @param {String} json The JSON string
15127      * @return {Object} The resulting object
15128      */
15129     this.decode = function(json){
15130         
15131         return  /** eval:var:json */ eval("(" + json + ')');
15132     };
15133 })();
15134 /** 
15135  * Shorthand for {@link Roo.util.JSON#encode}
15136  * @member Roo encode 
15137  * @method */
15138 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
15139 /** 
15140  * Shorthand for {@link Roo.util.JSON#decode}
15141  * @member Roo decode 
15142  * @method */
15143 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
15144 /*
15145  * Based on:
15146  * Ext JS Library 1.1.1
15147  * Copyright(c) 2006-2007, Ext JS, LLC.
15148  *
15149  * Originally Released Under LGPL - original licence link has changed is not relivant.
15150  *
15151  * Fork - LGPL
15152  * <script type="text/javascript">
15153  */
15154  
15155 /**
15156  * @class Roo.util.Format
15157  * Reusable data formatting functions
15158  * @static
15159  */
15160 Roo.util.Format = function(){
15161     var trimRe = /^\s+|\s+$/g;
15162     return {
15163         /**
15164          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
15165          * @param {String} value The string to truncate
15166          * @param {Number} length The maximum length to allow before truncating
15167          * @return {String} The converted text
15168          */
15169         ellipsis : function(value, len){
15170             if(value && value.length > len){
15171                 return value.substr(0, len-3)+"...";
15172             }
15173             return value;
15174         },
15175
15176         /**
15177          * Checks a reference and converts it to empty string if it is undefined
15178          * @param {Mixed} value Reference to check
15179          * @return {Mixed} Empty string if converted, otherwise the original value
15180          */
15181         undef : function(value){
15182             return typeof value != "undefined" ? value : "";
15183         },
15184
15185         /**
15186          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
15187          * @param {String} value The string to encode
15188          * @return {String} The encoded text
15189          */
15190         htmlEncode : function(value){
15191             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
15192         },
15193
15194         /**
15195          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
15196          * @param {String} value The string to decode
15197          * @return {String} The decoded text
15198          */
15199         htmlDecode : function(value){
15200             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
15201         },
15202
15203         /**
15204          * Trims any whitespace from either side of a string
15205          * @param {String} value The text to trim
15206          * @return {String} The trimmed text
15207          */
15208         trim : function(value){
15209             return String(value).replace(trimRe, "");
15210         },
15211
15212         /**
15213          * Returns a substring from within an original string
15214          * @param {String} value The original text
15215          * @param {Number} start The start index of the substring
15216          * @param {Number} length The length of the substring
15217          * @return {String} The substring
15218          */
15219         substr : function(value, start, length){
15220             return String(value).substr(start, length);
15221         },
15222
15223         /**
15224          * Converts a string to all lower case letters
15225          * @param {String} value The text to convert
15226          * @return {String} The converted text
15227          */
15228         lowercase : function(value){
15229             return String(value).toLowerCase();
15230         },
15231
15232         /**
15233          * Converts a string to all upper case letters
15234          * @param {String} value The text to convert
15235          * @return {String} The converted text
15236          */
15237         uppercase : function(value){
15238             return String(value).toUpperCase();
15239         },
15240
15241         /**
15242          * Converts the first character only of a string to upper case
15243          * @param {String} value The text to convert
15244          * @return {String} The converted text
15245          */
15246         capitalize : function(value){
15247             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
15248         },
15249
15250         // private
15251         call : function(value, fn){
15252             if(arguments.length > 2){
15253                 var args = Array.prototype.slice.call(arguments, 2);
15254                 args.unshift(value);
15255                  
15256                 return /** eval:var:value */  eval(fn).apply(window, args);
15257             }else{
15258                 /** eval:var:value */
15259                 return /** eval:var:value */ eval(fn).call(window, value);
15260             }
15261         },
15262
15263        
15264         /**
15265          * safer version of Math.toFixed..??/
15266          * @param {Number/String} value The numeric value to format
15267          * @param {Number/String} value Decimal places 
15268          * @return {String} The formatted currency string
15269          */
15270         toFixed : function(v, n)
15271         {
15272             // why not use to fixed - precision is buggered???
15273             if (!n) {
15274                 return Math.round(v-0);
15275             }
15276             var fact = Math.pow(10,n+1);
15277             v = (Math.round((v-0)*fact))/fact;
15278             var z = (''+fact).substring(2);
15279             if (v == Math.floor(v)) {
15280                 return Math.floor(v) + '.' + z;
15281             }
15282             
15283             // now just padd decimals..
15284             var ps = String(v).split('.');
15285             var fd = (ps[1] + z);
15286             var r = fd.substring(0,n); 
15287             var rm = fd.substring(n); 
15288             if (rm < 5) {
15289                 return ps[0] + '.' + r;
15290             }
15291             r*=1; // turn it into a number;
15292             r++;
15293             if (String(r).length != n) {
15294                 ps[0]*=1;
15295                 ps[0]++;
15296                 r = String(r).substring(1); // chop the end off.
15297             }
15298             
15299             return ps[0] + '.' + r;
15300              
15301         },
15302         
15303         /**
15304          * Format a number as US currency
15305          * @param {Number/String} value The numeric value to format
15306          * @return {String} The formatted currency string
15307          */
15308         usMoney : function(v){
15309             return '$' + Roo.util.Format.number(v);
15310         },
15311         
15312         /**
15313          * Format a number
15314          * eventually this should probably emulate php's number_format
15315          * @param {Number/String} value The numeric value to format
15316          * @param {Number} decimals number of decimal places
15317          * @param {String} delimiter for thousands (default comma)
15318          * @return {String} The formatted currency string
15319          */
15320         number : function(v, decimals, thousandsDelimiter)
15321         {
15322             // multiply and round.
15323             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
15324             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
15325             
15326             var mul = Math.pow(10, decimals);
15327             var zero = String(mul).substring(1);
15328             v = (Math.round((v-0)*mul))/mul;
15329             
15330             // if it's '0' number.. then
15331             
15332             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
15333             v = String(v);
15334             var ps = v.split('.');
15335             var whole = ps[0];
15336             
15337             var r = /(\d+)(\d{3})/;
15338             // add comma's
15339             
15340             if(thousandsDelimiter.length != 0) {
15341                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
15342             } 
15343             
15344             var sub = ps[1] ?
15345                     // has decimals..
15346                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
15347                     // does not have decimals
15348                     (decimals ? ('.' + zero) : '');
15349             
15350             
15351             return whole + sub ;
15352         },
15353         
15354         /**
15355          * Parse a value into a formatted date using the specified format pattern.
15356          * @param {Mixed} value The value to format
15357          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
15358          * @return {String} The formatted date string
15359          */
15360         date : function(v, format){
15361             if(!v){
15362                 return "";
15363             }
15364             if(!(v instanceof Date)){
15365                 v = new Date(Date.parse(v));
15366             }
15367             return v.dateFormat(format || Roo.util.Format.defaults.date);
15368         },
15369
15370         /**
15371          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
15372          * @param {String} format Any valid date format string
15373          * @return {Function} The date formatting function
15374          */
15375         dateRenderer : function(format){
15376             return function(v){
15377                 return Roo.util.Format.date(v, format);  
15378             };
15379         },
15380
15381         // private
15382         stripTagsRE : /<\/?[^>]+>/gi,
15383         
15384         /**
15385          * Strips all HTML tags
15386          * @param {Mixed} value The text from which to strip tags
15387          * @return {String} The stripped text
15388          */
15389         stripTags : function(v){
15390             return !v ? v : String(v).replace(this.stripTagsRE, "");
15391         },
15392         
15393         /**
15394          * Size in Mb,Gb etc.
15395          * @param {Number} value The number to be formated
15396          * @param {number} decimals how many decimal places
15397          * @return {String} the formated string
15398          */
15399         size : function(value, decimals)
15400         {
15401             var sizes = ['b', 'k', 'M', 'G', 'T'];
15402             if (value == 0) {
15403                 return 0;
15404             }
15405             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
15406             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
15407         }
15408         
15409         
15410         
15411     };
15412 }();
15413 Roo.util.Format.defaults = {
15414     date : 'd/M/Y'
15415 };/*
15416  * Based on:
15417  * Ext JS Library 1.1.1
15418  * Copyright(c) 2006-2007, Ext JS, LLC.
15419  *
15420  * Originally Released Under LGPL - original licence link has changed is not relivant.
15421  *
15422  * Fork - LGPL
15423  * <script type="text/javascript">
15424  */
15425
15426
15427  
15428
15429 /**
15430  * @class Roo.MasterTemplate
15431  * @extends Roo.Template
15432  * Provides a template that can have child templates. The syntax is:
15433 <pre><code>
15434 var t = new Roo.MasterTemplate(
15435         '&lt;select name="{name}"&gt;',
15436                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
15437         '&lt;/select&gt;'
15438 );
15439 t.add('options', {value: 'foo', text: 'bar'});
15440 // or you can add multiple child elements in one shot
15441 t.addAll('options', [
15442     {value: 'foo', text: 'bar'},
15443     {value: 'foo2', text: 'bar2'},
15444     {value: 'foo3', text: 'bar3'}
15445 ]);
15446 // then append, applying the master template values
15447 t.append('my-form', {name: 'my-select'});
15448 </code></pre>
15449 * A name attribute for the child template is not required if you have only one child
15450 * template or you want to refer to them by index.
15451  */
15452 Roo.MasterTemplate = function(){
15453     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
15454     this.originalHtml = this.html;
15455     var st = {};
15456     var m, re = this.subTemplateRe;
15457     re.lastIndex = 0;
15458     var subIndex = 0;
15459     while(m = re.exec(this.html)){
15460         var name = m[1], content = m[2];
15461         st[subIndex] = {
15462             name: name,
15463             index: subIndex,
15464             buffer: [],
15465             tpl : new Roo.Template(content)
15466         };
15467         if(name){
15468             st[name] = st[subIndex];
15469         }
15470         st[subIndex].tpl.compile();
15471         st[subIndex].tpl.call = this.call.createDelegate(this);
15472         subIndex++;
15473     }
15474     this.subCount = subIndex;
15475     this.subs = st;
15476 };
15477 Roo.extend(Roo.MasterTemplate, Roo.Template, {
15478     /**
15479     * The regular expression used to match sub templates
15480     * @type RegExp
15481     * @property
15482     */
15483     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
15484
15485     /**
15486      * Applies the passed values to a child template.
15487      * @param {String/Number} name (optional) The name or index of the child template
15488      * @param {Array/Object} values The values to be applied to the template
15489      * @return {MasterTemplate} this
15490      */
15491      add : function(name, values){
15492         if(arguments.length == 1){
15493             values = arguments[0];
15494             name = 0;
15495         }
15496         var s = this.subs[name];
15497         s.buffer[s.buffer.length] = s.tpl.apply(values);
15498         return this;
15499     },
15500
15501     /**
15502      * Applies all the passed values to a child template.
15503      * @param {String/Number} name (optional) The name or index of the child template
15504      * @param {Array} values The values to be applied to the template, this should be an array of objects.
15505      * @param {Boolean} reset (optional) True to reset the template first
15506      * @return {MasterTemplate} this
15507      */
15508     fill : function(name, values, reset){
15509         var a = arguments;
15510         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
15511             values = a[0];
15512             name = 0;
15513             reset = a[1];
15514         }
15515         if(reset){
15516             this.reset();
15517         }
15518         for(var i = 0, len = values.length; i < len; i++){
15519             this.add(name, values[i]);
15520         }
15521         return this;
15522     },
15523
15524     /**
15525      * Resets the template for reuse
15526      * @return {MasterTemplate} this
15527      */
15528      reset : function(){
15529         var s = this.subs;
15530         for(var i = 0; i < this.subCount; i++){
15531             s[i].buffer = [];
15532         }
15533         return this;
15534     },
15535
15536     applyTemplate : function(values){
15537         var s = this.subs;
15538         var replaceIndex = -1;
15539         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
15540             return s[++replaceIndex].buffer.join("");
15541         });
15542         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
15543     },
15544
15545     apply : function(){
15546         return this.applyTemplate.apply(this, arguments);
15547     },
15548
15549     compile : function(){return this;}
15550 });
15551
15552 /**
15553  * Alias for fill().
15554  * @method
15555  */
15556 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
15557  /**
15558  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
15559  * var tpl = Roo.MasterTemplate.from('element-id');
15560  * @param {String/HTMLElement} el
15561  * @param {Object} config
15562  * @static
15563  */
15564 Roo.MasterTemplate.from = function(el, config){
15565     el = Roo.getDom(el);
15566     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
15567 };/*
15568  * Based on:
15569  * Ext JS Library 1.1.1
15570  * Copyright(c) 2006-2007, Ext JS, LLC.
15571  *
15572  * Originally Released Under LGPL - original licence link has changed is not relivant.
15573  *
15574  * Fork - LGPL
15575  * <script type="text/javascript">
15576  */
15577
15578  
15579 /**
15580  * @class Roo.util.CSS
15581  * Utility class for manipulating CSS rules
15582  * @static
15583
15584  */
15585 Roo.util.CSS = function(){
15586         var rules = null;
15587         var doc = document;
15588
15589     var camelRe = /(-[a-z])/gi;
15590     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
15591
15592    return {
15593    /**
15594     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
15595     * tag and appended to the HEAD of the document.
15596     * @param {String|Object} cssText The text containing the css rules
15597     * @param {String} id An id to add to the stylesheet for later removal
15598     * @return {StyleSheet}
15599     */
15600     createStyleSheet : function(cssText, id){
15601         var ss;
15602         var head = doc.getElementsByTagName("head")[0];
15603         var nrules = doc.createElement("style");
15604         nrules.setAttribute("type", "text/css");
15605         if(id){
15606             nrules.setAttribute("id", id);
15607         }
15608         if (typeof(cssText) != 'string') {
15609             // support object maps..
15610             // not sure if this a good idea.. 
15611             // perhaps it should be merged with the general css handling
15612             // and handle js style props.
15613             var cssTextNew = [];
15614             for(var n in cssText) {
15615                 var citems = [];
15616                 for(var k in cssText[n]) {
15617                     citems.push( k + ' : ' +cssText[n][k] + ';' );
15618                 }
15619                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
15620                 
15621             }
15622             cssText = cssTextNew.join("\n");
15623             
15624         }
15625        
15626        
15627        if(Roo.isIE){
15628            head.appendChild(nrules);
15629            ss = nrules.styleSheet;
15630            ss.cssText = cssText;
15631        }else{
15632            try{
15633                 nrules.appendChild(doc.createTextNode(cssText));
15634            }catch(e){
15635                nrules.cssText = cssText; 
15636            }
15637            head.appendChild(nrules);
15638            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
15639        }
15640        this.cacheStyleSheet(ss);
15641        return ss;
15642    },
15643
15644    /**
15645     * Removes a style or link tag by id
15646     * @param {String} id The id of the tag
15647     */
15648    removeStyleSheet : function(id){
15649        var existing = doc.getElementById(id);
15650        if(existing){
15651            existing.parentNode.removeChild(existing);
15652        }
15653    },
15654
15655    /**
15656     * Dynamically swaps an existing stylesheet reference for a new one
15657     * @param {String} id The id of an existing link tag to remove
15658     * @param {String} url The href of the new stylesheet to include
15659     */
15660    swapStyleSheet : function(id, url){
15661        this.removeStyleSheet(id);
15662        var ss = doc.createElement("link");
15663        ss.setAttribute("rel", "stylesheet");
15664        ss.setAttribute("type", "text/css");
15665        ss.setAttribute("id", id);
15666        ss.setAttribute("href", url);
15667        doc.getElementsByTagName("head")[0].appendChild(ss);
15668    },
15669    
15670    /**
15671     * Refresh the rule cache if you have dynamically added stylesheets
15672     * @return {Object} An object (hash) of rules indexed by selector
15673     */
15674    refreshCache : function(){
15675        return this.getRules(true);
15676    },
15677
15678    // private
15679    cacheStyleSheet : function(stylesheet){
15680        if(!rules){
15681            rules = {};
15682        }
15683        try{// try catch for cross domain access issue
15684            var ssRules = stylesheet.cssRules || stylesheet.rules;
15685            for(var j = ssRules.length-1; j >= 0; --j){
15686                rules[ssRules[j].selectorText] = ssRules[j];
15687            }
15688        }catch(e){}
15689    },
15690    
15691    /**
15692     * Gets all css rules for the document
15693     * @param {Boolean} refreshCache true to refresh the internal cache
15694     * @return {Object} An object (hash) of rules indexed by selector
15695     */
15696    getRules : function(refreshCache){
15697                 if(rules == null || refreshCache){
15698                         rules = {};
15699                         var ds = doc.styleSheets;
15700                         for(var i =0, len = ds.length; i < len; i++){
15701                             try{
15702                         this.cacheStyleSheet(ds[i]);
15703                     }catch(e){} 
15704                 }
15705                 }
15706                 return rules;
15707         },
15708         
15709         /**
15710     * Gets an an individual CSS rule by selector(s)
15711     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
15712     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
15713     * @return {CSSRule} The CSS rule or null if one is not found
15714     */
15715    getRule : function(selector, refreshCache){
15716                 var rs = this.getRules(refreshCache);
15717                 if(!(selector instanceof Array)){
15718                     return rs[selector];
15719                 }
15720                 for(var i = 0; i < selector.length; i++){
15721                         if(rs[selector[i]]){
15722                                 return rs[selector[i]];
15723                         }
15724                 }
15725                 return null;
15726         },
15727         
15728         
15729         /**
15730     * Updates a rule property
15731     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
15732     * @param {String} property The css property
15733     * @param {String} value The new value for the property
15734     * @return {Boolean} true If a rule was found and updated
15735     */
15736    updateRule : function(selector, property, value){
15737                 if(!(selector instanceof Array)){
15738                         var rule = this.getRule(selector);
15739                         if(rule){
15740                                 rule.style[property.replace(camelRe, camelFn)] = value;
15741                                 return true;
15742                         }
15743                 }else{
15744                         for(var i = 0; i < selector.length; i++){
15745                                 if(this.updateRule(selector[i], property, value)){
15746                                         return true;
15747                                 }
15748                         }
15749                 }
15750                 return false;
15751         }
15752    };   
15753 }();/*
15754  * Based on:
15755  * Ext JS Library 1.1.1
15756  * Copyright(c) 2006-2007, Ext JS, LLC.
15757  *
15758  * Originally Released Under LGPL - original licence link has changed is not relivant.
15759  *
15760  * Fork - LGPL
15761  * <script type="text/javascript">
15762  */
15763
15764  
15765
15766 /**
15767  * @class Roo.util.ClickRepeater
15768  * @extends Roo.util.Observable
15769  * 
15770  * A wrapper class which can be applied to any element. Fires a "click" event while the
15771  * mouse is pressed. The interval between firings may be specified in the config but
15772  * defaults to 10 milliseconds.
15773  * 
15774  * Optionally, a CSS class may be applied to the element during the time it is pressed.
15775  * 
15776  * @cfg {String/HTMLElement/Element} el The element to act as a button.
15777  * @cfg {Number} delay The initial delay before the repeating event begins firing.
15778  * Similar to an autorepeat key delay.
15779  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
15780  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
15781  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
15782  *           "interval" and "delay" are ignored. "immediate" is honored.
15783  * @cfg {Boolean} preventDefault True to prevent the default click event
15784  * @cfg {Boolean} stopDefault True to stop the default click event
15785  * 
15786  * @history
15787  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
15788  *     2007-02-02 jvs Renamed to ClickRepeater
15789  *   2007-02-03 jvs Modifications for FF Mac and Safari 
15790  *
15791  *  @constructor
15792  * @param {String/HTMLElement/Element} el The element to listen on
15793  * @param {Object} config
15794  **/
15795 Roo.util.ClickRepeater = function(el, config)
15796 {
15797     this.el = Roo.get(el);
15798     this.el.unselectable();
15799
15800     Roo.apply(this, config);
15801
15802     this.addEvents({
15803     /**
15804      * @event mousedown
15805      * Fires when the mouse button is depressed.
15806      * @param {Roo.util.ClickRepeater} this
15807      */
15808         "mousedown" : true,
15809     /**
15810      * @event click
15811      * Fires on a specified interval during the time the element is pressed.
15812      * @param {Roo.util.ClickRepeater} this
15813      */
15814         "click" : true,
15815     /**
15816      * @event mouseup
15817      * Fires when the mouse key is released.
15818      * @param {Roo.util.ClickRepeater} this
15819      */
15820         "mouseup" : true
15821     });
15822
15823     this.el.on("mousedown", this.handleMouseDown, this);
15824     if(this.preventDefault || this.stopDefault){
15825         this.el.on("click", function(e){
15826             if(this.preventDefault){
15827                 e.preventDefault();
15828             }
15829             if(this.stopDefault){
15830                 e.stopEvent();
15831             }
15832         }, this);
15833     }
15834
15835     // allow inline handler
15836     if(this.handler){
15837         this.on("click", this.handler,  this.scope || this);
15838     }
15839
15840     Roo.util.ClickRepeater.superclass.constructor.call(this);
15841 };
15842
15843 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
15844     interval : 20,
15845     delay: 250,
15846     preventDefault : true,
15847     stopDefault : false,
15848     timer : 0,
15849
15850     // private
15851     handleMouseDown : function(){
15852         clearTimeout(this.timer);
15853         this.el.blur();
15854         if(this.pressClass){
15855             this.el.addClass(this.pressClass);
15856         }
15857         this.mousedownTime = new Date();
15858
15859         Roo.get(document).on("mouseup", this.handleMouseUp, this);
15860         this.el.on("mouseout", this.handleMouseOut, this);
15861
15862         this.fireEvent("mousedown", this);
15863         this.fireEvent("click", this);
15864         
15865         this.timer = this.click.defer(this.delay || this.interval, this);
15866     },
15867
15868     // private
15869     click : function(){
15870         this.fireEvent("click", this);
15871         this.timer = this.click.defer(this.getInterval(), this);
15872     },
15873
15874     // private
15875     getInterval: function(){
15876         if(!this.accelerate){
15877             return this.interval;
15878         }
15879         var pressTime = this.mousedownTime.getElapsed();
15880         if(pressTime < 500){
15881             return 400;
15882         }else if(pressTime < 1700){
15883             return 320;
15884         }else if(pressTime < 2600){
15885             return 250;
15886         }else if(pressTime < 3500){
15887             return 180;
15888         }else if(pressTime < 4400){
15889             return 140;
15890         }else if(pressTime < 5300){
15891             return 80;
15892         }else if(pressTime < 6200){
15893             return 50;
15894         }else{
15895             return 10;
15896         }
15897     },
15898
15899     // private
15900     handleMouseOut : function(){
15901         clearTimeout(this.timer);
15902         if(this.pressClass){
15903             this.el.removeClass(this.pressClass);
15904         }
15905         this.el.on("mouseover", this.handleMouseReturn, this);
15906     },
15907
15908     // private
15909     handleMouseReturn : function(){
15910         this.el.un("mouseover", this.handleMouseReturn);
15911         if(this.pressClass){
15912             this.el.addClass(this.pressClass);
15913         }
15914         this.click();
15915     },
15916
15917     // private
15918     handleMouseUp : function(){
15919         clearTimeout(this.timer);
15920         this.el.un("mouseover", this.handleMouseReturn);
15921         this.el.un("mouseout", this.handleMouseOut);
15922         Roo.get(document).un("mouseup", this.handleMouseUp);
15923         this.el.removeClass(this.pressClass);
15924         this.fireEvent("mouseup", this);
15925     }
15926 });/**
15927  * @class Roo.util.Clipboard
15928  * @static
15929  * 
15930  * Clipboard UTILS
15931  * 
15932  **/
15933 Roo.util.Clipboard = {
15934     /**
15935      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
15936      * @param {String} text to copy to clipboard
15937      */
15938     write : function(text) {
15939         // navigator clipboard api needs a secure context (https)
15940         if (navigator.clipboard && window.isSecureContext) {
15941             // navigator clipboard api method'
15942             navigator.clipboard.writeText(text);
15943             return ;
15944         } 
15945         // text area method
15946         var ta = document.createElement("textarea");
15947         ta.value = text;
15948         // make the textarea out of viewport
15949         ta.style.position = "fixed";
15950         ta.style.left = "-999999px";
15951         ta.style.top = "-999999px";
15952         document.body.appendChild(ta);
15953         ta.focus();
15954         ta.select();
15955         document.execCommand('copy');
15956         (function() {
15957             ta.remove();
15958         }).defer(100);
15959         
15960     }
15961         
15962 }
15963     /*
15964  * Based on:
15965  * Ext JS Library 1.1.1
15966  * Copyright(c) 2006-2007, Ext JS, LLC.
15967  *
15968  * Originally Released Under LGPL - original licence link has changed is not relivant.
15969  *
15970  * Fork - LGPL
15971  * <script type="text/javascript">
15972  */
15973
15974  
15975 /**
15976  * @class Roo.KeyNav
15977  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
15978  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
15979  * way to implement custom navigation schemes for any UI component.</p>
15980  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
15981  * pageUp, pageDown, del, home, end.  Usage:</p>
15982  <pre><code>
15983 var nav = new Roo.KeyNav("my-element", {
15984     "left" : function(e){
15985         this.moveLeft(e.ctrlKey);
15986     },
15987     "right" : function(e){
15988         this.moveRight(e.ctrlKey);
15989     },
15990     "enter" : function(e){
15991         this.save();
15992     },
15993     scope : this
15994 });
15995 </code></pre>
15996  * @constructor
15997  * @param {String/HTMLElement/Roo.Element} el The element to bind to
15998  * @param {Object} config The config
15999  */
16000 Roo.KeyNav = function(el, config){
16001     this.el = Roo.get(el);
16002     Roo.apply(this, config);
16003     if(!this.disabled){
16004         this.disabled = true;
16005         this.enable();
16006     }
16007 };
16008
16009 Roo.KeyNav.prototype = {
16010     /**
16011      * @cfg {Boolean} disabled
16012      * True to disable this KeyNav instance (defaults to false)
16013      */
16014     disabled : false,
16015     /**
16016      * @cfg {String} defaultEventAction
16017      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
16018      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
16019      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
16020      */
16021     defaultEventAction: "stopEvent",
16022     /**
16023      * @cfg {Boolean} forceKeyDown
16024      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
16025      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
16026      * handle keydown instead of keypress.
16027      */
16028     forceKeyDown : false,
16029
16030     // private
16031     prepareEvent : function(e){
16032         var k = e.getKey();
16033         var h = this.keyToHandler[k];
16034         //if(h && this[h]){
16035         //    e.stopPropagation();
16036         //}
16037         if(Roo.isSafari && h && k >= 37 && k <= 40){
16038             e.stopEvent();
16039         }
16040     },
16041
16042     // private
16043     relay : function(e){
16044         var k = e.getKey();
16045         var h = this.keyToHandler[k];
16046         if(h && this[h]){
16047             if(this.doRelay(e, this[h], h) !== true){
16048                 e[this.defaultEventAction]();
16049             }
16050         }
16051     },
16052
16053     // private
16054     doRelay : function(e, h, hname){
16055         return h.call(this.scope || this, e);
16056     },
16057
16058     // possible handlers
16059     enter : false,
16060     left : false,
16061     right : false,
16062     up : false,
16063     down : false,
16064     tab : false,
16065     esc : false,
16066     pageUp : false,
16067     pageDown : false,
16068     del : false,
16069     home : false,
16070     end : false,
16071
16072     // quick lookup hash
16073     keyToHandler : {
16074         37 : "left",
16075         39 : "right",
16076         38 : "up",
16077         40 : "down",
16078         33 : "pageUp",
16079         34 : "pageDown",
16080         46 : "del",
16081         36 : "home",
16082         35 : "end",
16083         13 : "enter",
16084         27 : "esc",
16085         9  : "tab"
16086     },
16087
16088         /**
16089          * Enable this KeyNav
16090          */
16091         enable: function(){
16092                 if(this.disabled){
16093             // ie won't do special keys on keypress, no one else will repeat keys with keydown
16094             // the EventObject will normalize Safari automatically
16095             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16096                 this.el.on("keydown", this.relay,  this);
16097             }else{
16098                 this.el.on("keydown", this.prepareEvent,  this);
16099                 this.el.on("keypress", this.relay,  this);
16100             }
16101                     this.disabled = false;
16102                 }
16103         },
16104
16105         /**
16106          * Disable this KeyNav
16107          */
16108         disable: function(){
16109                 if(!this.disabled){
16110                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16111                 this.el.un("keydown", this.relay);
16112             }else{
16113                 this.el.un("keydown", this.prepareEvent);
16114                 this.el.un("keypress", this.relay);
16115             }
16116                     this.disabled = true;
16117                 }
16118         }
16119 };/*
16120  * Based on:
16121  * Ext JS Library 1.1.1
16122  * Copyright(c) 2006-2007, Ext JS, LLC.
16123  *
16124  * Originally Released Under LGPL - original licence link has changed is not relivant.
16125  *
16126  * Fork - LGPL
16127  * <script type="text/javascript">
16128  */
16129
16130  
16131 /**
16132  * @class Roo.KeyMap
16133  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
16134  * The constructor accepts the same config object as defined by {@link #addBinding}.
16135  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
16136  * combination it will call the function with this signature (if the match is a multi-key
16137  * combination the callback will still be called only once): (String key, Roo.EventObject e)
16138  * A KeyMap can also handle a string representation of keys.<br />
16139  * Usage:
16140  <pre><code>
16141 // map one key by key code
16142 var map = new Roo.KeyMap("my-element", {
16143     key: 13, // or Roo.EventObject.ENTER
16144     fn: myHandler,
16145     scope: myObject
16146 });
16147
16148 // map multiple keys to one action by string
16149 var map = new Roo.KeyMap("my-element", {
16150     key: "a\r\n\t",
16151     fn: myHandler,
16152     scope: myObject
16153 });
16154
16155 // map multiple keys to multiple actions by strings and array of codes
16156 var map = new Roo.KeyMap("my-element", [
16157     {
16158         key: [10,13],
16159         fn: function(){ alert("Return was pressed"); }
16160     }, {
16161         key: "abc",
16162         fn: function(){ alert('a, b or c was pressed'); }
16163     }, {
16164         key: "\t",
16165         ctrl:true,
16166         shift:true,
16167         fn: function(){ alert('Control + shift + tab was pressed.'); }
16168     }
16169 ]);
16170 </code></pre>
16171  * <b>Note: A KeyMap starts enabled</b>
16172  * @constructor
16173  * @param {String/HTMLElement/Roo.Element} el The element to bind to
16174  * @param {Object} config The config (see {@link #addBinding})
16175  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
16176  */
16177 Roo.KeyMap = function(el, config, eventName){
16178     this.el  = Roo.get(el);
16179     this.eventName = eventName || "keydown";
16180     this.bindings = [];
16181     if(config){
16182         this.addBinding(config);
16183     }
16184     this.enable();
16185 };
16186
16187 Roo.KeyMap.prototype = {
16188     /**
16189      * True to stop the event from bubbling and prevent the default browser action if the
16190      * key was handled by the KeyMap (defaults to false)
16191      * @type Boolean
16192      */
16193     stopEvent : false,
16194
16195     /**
16196      * Add a new binding to this KeyMap. The following config object properties are supported:
16197      * <pre>
16198 Property    Type             Description
16199 ----------  ---------------  ----------------------------------------------------------------------
16200 key         String/Array     A single keycode or an array of keycodes to handle
16201 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
16202 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
16203 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
16204 fn          Function         The function to call when KeyMap finds the expected key combination
16205 scope       Object           The scope of the callback function
16206 </pre>
16207      *
16208      * Usage:
16209      * <pre><code>
16210 // Create a KeyMap
16211 var map = new Roo.KeyMap(document, {
16212     key: Roo.EventObject.ENTER,
16213     fn: handleKey,
16214     scope: this
16215 });
16216
16217 //Add a new binding to the existing KeyMap later
16218 map.addBinding({
16219     key: 'abc',
16220     shift: true,
16221     fn: handleKey,
16222     scope: this
16223 });
16224 </code></pre>
16225      * @param {Object/Array} config A single KeyMap config or an array of configs
16226      */
16227         addBinding : function(config){
16228         if(config instanceof Array){
16229             for(var i = 0, len = config.length; i < len; i++){
16230                 this.addBinding(config[i]);
16231             }
16232             return;
16233         }
16234         var keyCode = config.key,
16235             shift = config.shift, 
16236             ctrl = config.ctrl, 
16237             alt = config.alt,
16238             fn = config.fn,
16239             scope = config.scope;
16240         if(typeof keyCode == "string"){
16241             var ks = [];
16242             var keyString = keyCode.toUpperCase();
16243             for(var j = 0, len = keyString.length; j < len; j++){
16244                 ks.push(keyString.charCodeAt(j));
16245             }
16246             keyCode = ks;
16247         }
16248         var keyArray = keyCode instanceof Array;
16249         var handler = function(e){
16250             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
16251                 var k = e.getKey();
16252                 if(keyArray){
16253                     for(var i = 0, len = keyCode.length; i < len; i++){
16254                         if(keyCode[i] == k){
16255                           if(this.stopEvent){
16256                               e.stopEvent();
16257                           }
16258                           fn.call(scope || window, k, e);
16259                           return;
16260                         }
16261                     }
16262                 }else{
16263                     if(k == keyCode){
16264                         if(this.stopEvent){
16265                            e.stopEvent();
16266                         }
16267                         fn.call(scope || window, k, e);
16268                     }
16269                 }
16270             }
16271         };
16272         this.bindings.push(handler);  
16273         },
16274
16275     /**
16276      * Shorthand for adding a single key listener
16277      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
16278      * following options:
16279      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
16280      * @param {Function} fn The function to call
16281      * @param {Object} scope (optional) The scope of the function
16282      */
16283     on : function(key, fn, scope){
16284         var keyCode, shift, ctrl, alt;
16285         if(typeof key == "object" && !(key instanceof Array)){
16286             keyCode = key.key;
16287             shift = key.shift;
16288             ctrl = key.ctrl;
16289             alt = key.alt;
16290         }else{
16291             keyCode = key;
16292         }
16293         this.addBinding({
16294             key: keyCode,
16295             shift: shift,
16296             ctrl: ctrl,
16297             alt: alt,
16298             fn: fn,
16299             scope: scope
16300         })
16301     },
16302
16303     // private
16304     handleKeyDown : function(e){
16305             if(this.enabled){ //just in case
16306             var b = this.bindings;
16307             for(var i = 0, len = b.length; i < len; i++){
16308                 b[i].call(this, e);
16309             }
16310             }
16311         },
16312         
16313         /**
16314          * Returns true if this KeyMap is enabled
16315          * @return {Boolean} 
16316          */
16317         isEnabled : function(){
16318             return this.enabled;  
16319         },
16320         
16321         /**
16322          * Enables this KeyMap
16323          */
16324         enable: function(){
16325                 if(!this.enabled){
16326                     this.el.on(this.eventName, this.handleKeyDown, this);
16327                     this.enabled = true;
16328                 }
16329         },
16330
16331         /**
16332          * Disable this KeyMap
16333          */
16334         disable: function(){
16335                 if(this.enabled){
16336                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
16337                     this.enabled = false;
16338                 }
16339         }
16340 };/*
16341  * Based on:
16342  * Ext JS Library 1.1.1
16343  * Copyright(c) 2006-2007, Ext JS, LLC.
16344  *
16345  * Originally Released Under LGPL - original licence link has changed is not relivant.
16346  *
16347  * Fork - LGPL
16348  * <script type="text/javascript">
16349  */
16350
16351  
16352 /**
16353  * @class Roo.util.TextMetrics
16354  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
16355  * wide, in pixels, a given block of text will be.
16356  * @static
16357  */
16358 Roo.util.TextMetrics = function(){
16359     var shared;
16360     return {
16361         /**
16362          * Measures the size of the specified text
16363          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
16364          * that can affect the size of the rendered text
16365          * @param {String} text The text to measure
16366          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16367          * in order to accurately measure the text height
16368          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16369          */
16370         measure : function(el, text, fixedWidth){
16371             if(!shared){
16372                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
16373             }
16374             shared.bind(el);
16375             shared.setFixedWidth(fixedWidth || 'auto');
16376             return shared.getSize(text);
16377         },
16378
16379         /**
16380          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
16381          * the overhead of multiple calls to initialize the style properties on each measurement.
16382          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
16383          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16384          * in order to accurately measure the text height
16385          * @return {Roo.util.TextMetrics.Instance} instance The new instance
16386          */
16387         createInstance : function(el, fixedWidth){
16388             return Roo.util.TextMetrics.Instance(el, fixedWidth);
16389         }
16390     };
16391 }();
16392
16393 /**
16394  * @class Roo.util.TextMetrics.Instance
16395  * Instance of  TextMetrics Calcuation
16396  * @constructor
16397  * Create a new TextMetrics Instance
16398  * @param {Object} bindto
16399  * @param {Boolean} fixedWidth
16400  */
16401
16402 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth)
16403 {
16404     var ml = new Roo.Element(document.createElement('div'));
16405     document.body.appendChild(ml.dom);
16406     ml.position('absolute');
16407     ml.setLeftTop(-1000, -1000);
16408     ml.hide();
16409
16410     if(fixedWidth){
16411         ml.setWidth(fixedWidth);
16412     }
16413      
16414     var instance = {
16415         /**
16416          * Returns the size of the specified text based on the internal element's style and width properties
16417          * @param {String} text The text to measure
16418          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16419          */
16420         getSize : function(text){
16421             ml.update(text);
16422             var s = ml.getSize();
16423             ml.update('');
16424             return s;
16425         },
16426
16427         /**
16428          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
16429          * that can affect the size of the rendered text
16430          * @param {String/HTMLElement} el The element, dom node or id
16431          */
16432         bind : function(el){
16433             ml.setStyle(
16434                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
16435             );
16436         },
16437
16438         /**
16439          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
16440          * to set a fixed width in order to accurately measure the text height.
16441          * @param {Number} width The width to set on the element
16442          */
16443         setFixedWidth : function(width){
16444             ml.setWidth(width);
16445         },
16446
16447         /**
16448          * Returns the measured width of the specified text
16449          * @param {String} text The text to measure
16450          * @return {Number} width The width in pixels
16451          */
16452         getWidth : function(text){
16453             ml.dom.style.width = 'auto';
16454             return this.getSize(text).width;
16455         },
16456
16457         /**
16458          * Returns the measured height of the specified text.  For multiline text, be sure to call
16459          * {@link #setFixedWidth} if necessary.
16460          * @param {String} text The text to measure
16461          * @return {Number} height The height in pixels
16462          */
16463         getHeight : function(text){
16464             return this.getSize(text).height;
16465         }
16466     };
16467
16468     instance.bind(bindTo);
16469
16470     return instance;
16471 };
16472
16473 // backwards compat
16474 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
16475  * Based on:
16476  * Ext JS Library 1.1.1
16477  * Copyright(c) 2006-2007, Ext JS, LLC.
16478  *
16479  * Originally Released Under LGPL - original licence link has changed is not relivant.
16480  *
16481  * Fork - LGPL
16482  * <script type="text/javascript">
16483  */
16484
16485 /**
16486  * @class Roo.state.Provider
16487  * Abstract base class for state provider implementations. This class provides methods
16488  * for encoding and decoding <b>typed</b> variables including dates and defines the 
16489  * Provider interface.
16490  */
16491 Roo.state.Provider = function(){
16492     /**
16493      * @event statechange
16494      * Fires when a state change occurs.
16495      * @param {Provider} this This state provider
16496      * @param {String} key The state key which was changed
16497      * @param {String} value The encoded value for the state
16498      */
16499     this.addEvents({
16500         "statechange": true
16501     });
16502     this.state = {};
16503     Roo.state.Provider.superclass.constructor.call(this);
16504 };
16505 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
16506     /**
16507      * Returns the current value for a key
16508      * @param {String} name The key name
16509      * @param {Mixed} defaultValue A default value to return if the key's value is not found
16510      * @return {Mixed} The state data
16511      */
16512     get : function(name, defaultValue){
16513         return typeof this.state[name] == "undefined" ?
16514             defaultValue : this.state[name];
16515     },
16516     
16517     /**
16518      * Clears a value from the state
16519      * @param {String} name The key name
16520      */
16521     clear : function(name){
16522         delete this.state[name];
16523         this.fireEvent("statechange", this, name, null);
16524     },
16525     
16526     /**
16527      * Sets the value for a key
16528      * @param {String} name The key name
16529      * @param {Mixed} value The value to set
16530      */
16531     set : function(name, value){
16532         this.state[name] = value;
16533         this.fireEvent("statechange", this, name, value);
16534     },
16535     
16536     /**
16537      * Decodes a string previously encoded with {@link #encodeValue}.
16538      * @param {String} value The value to decode
16539      * @return {Mixed} The decoded value
16540      */
16541     decodeValue : function(cookie){
16542         var re = /^(a|n|d|b|s|o)\:(.*)$/;
16543         var matches = re.exec(unescape(cookie));
16544         if(!matches || !matches[1]) {
16545             return; // non state cookie
16546         }
16547         var type = matches[1];
16548         var v = matches[2];
16549         switch(type){
16550             case "n":
16551                 return parseFloat(v);
16552             case "d":
16553                 return new Date(Date.parse(v));
16554             case "b":
16555                 return (v == "1");
16556             case "a":
16557                 var all = [];
16558                 var values = v.split("^");
16559                 for(var i = 0, len = values.length; i < len; i++){
16560                     all.push(this.decodeValue(values[i]));
16561                 }
16562                 return all;
16563            case "o":
16564                 var all = {};
16565                 var values = v.split("^");
16566                 for(var i = 0, len = values.length; i < len; i++){
16567                     var kv = values[i].split("=");
16568                     all[kv[0]] = this.decodeValue(kv[1]);
16569                 }
16570                 return all;
16571            default:
16572                 return v;
16573         }
16574     },
16575     
16576     /**
16577      * Encodes a value including type information.  Decode with {@link #decodeValue}.
16578      * @param {Mixed} value The value to encode
16579      * @return {String} The encoded value
16580      */
16581     encodeValue : function(v){
16582         var enc;
16583         if(typeof v == "number"){
16584             enc = "n:" + v;
16585         }else if(typeof v == "boolean"){
16586             enc = "b:" + (v ? "1" : "0");
16587         }else if(v instanceof Date){
16588             enc = "d:" + v.toGMTString();
16589         }else if(v instanceof Array){
16590             var flat = "";
16591             for(var i = 0, len = v.length; i < len; i++){
16592                 flat += this.encodeValue(v[i]);
16593                 if(i != len-1) {
16594                     flat += "^";
16595                 }
16596             }
16597             enc = "a:" + flat;
16598         }else if(typeof v == "object"){
16599             var flat = "";
16600             for(var key in v){
16601                 if(typeof v[key] != "function"){
16602                     flat += key + "=" + this.encodeValue(v[key]) + "^";
16603                 }
16604             }
16605             enc = "o:" + flat.substring(0, flat.length-1);
16606         }else{
16607             enc = "s:" + v;
16608         }
16609         return escape(enc);        
16610     }
16611 });
16612
16613 /*
16614  * Based on:
16615  * Ext JS Library 1.1.1
16616  * Copyright(c) 2006-2007, Ext JS, LLC.
16617  *
16618  * Originally Released Under LGPL - original licence link has changed is not relivant.
16619  *
16620  * Fork - LGPL
16621  * <script type="text/javascript">
16622  */
16623 /**
16624  * @class Roo.state.Manager
16625  * This is the global state manager. By default all components that are "state aware" check this class
16626  * for state information if you don't pass them a custom state provider. In order for this class
16627  * to be useful, it must be initialized with a provider when your application initializes.
16628  <pre><code>
16629 // in your initialization function
16630 init : function(){
16631    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
16632    ...
16633    // supposed you have a {@link Roo.BorderLayout}
16634    var layout = new Roo.BorderLayout(...);
16635    layout.restoreState();
16636    // or a {Roo.BasicDialog}
16637    var dialog = new Roo.BasicDialog(...);
16638    dialog.restoreState();
16639  </code></pre>
16640  * @static
16641  */
16642 Roo.state.Manager = function(){
16643     var provider = new Roo.state.Provider();
16644     
16645     return {
16646         /**
16647          * Configures the default state provider for your application
16648          * @param {Provider} stateProvider The state provider to set
16649          */
16650         setProvider : function(stateProvider){
16651             provider = stateProvider;
16652         },
16653         
16654         /**
16655          * Returns the current value for a key
16656          * @param {String} name The key name
16657          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
16658          * @return {Mixed} The state data
16659          */
16660         get : function(key, defaultValue){
16661             return provider.get(key, defaultValue);
16662         },
16663         
16664         /**
16665          * Sets the value for a key
16666          * @param {String} name The key name
16667          * @param {Mixed} value The state data
16668          */
16669          set : function(key, value){
16670             provider.set(key, value);
16671         },
16672         
16673         /**
16674          * Clears a value from the state
16675          * @param {String} name The key name
16676          */
16677         clear : function(key){
16678             provider.clear(key);
16679         },
16680         
16681         /**
16682          * Gets the currently configured state provider
16683          * @return {Provider} The state provider
16684          */
16685         getProvider : function(){
16686             return provider;
16687         }
16688     };
16689 }();
16690 /*
16691  * Based on:
16692  * Ext JS Library 1.1.1
16693  * Copyright(c) 2006-2007, Ext JS, LLC.
16694  *
16695  * Originally Released Under LGPL - original licence link has changed is not relivant.
16696  *
16697  * Fork - LGPL
16698  * <script type="text/javascript">
16699  */
16700 /**
16701  * @class Roo.state.CookieProvider
16702  * @extends Roo.state.Provider
16703  * The default Provider implementation which saves state via cookies.
16704  * <br />Usage:
16705  <pre><code>
16706    var cp = new Roo.state.CookieProvider({
16707        path: "/cgi-bin/",
16708        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
16709        domain: "roojs.com"
16710    })
16711    Roo.state.Manager.setProvider(cp);
16712  </code></pre>
16713  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
16714  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
16715  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
16716  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
16717  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
16718  * domain the page is running on including the 'www' like 'www.roojs.com')
16719  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
16720  * @constructor
16721  * Create a new CookieProvider
16722  * @param {Object} config The configuration object
16723  */
16724 Roo.state.CookieProvider = function(config){
16725     Roo.state.CookieProvider.superclass.constructor.call(this);
16726     this.path = "/";
16727     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
16728     this.domain = null;
16729     this.secure = false;
16730     Roo.apply(this, config);
16731     this.state = this.readCookies();
16732 };
16733
16734 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
16735     // private
16736     set : function(name, value){
16737         if(typeof value == "undefined" || value === null){
16738             this.clear(name);
16739             return;
16740         }
16741         this.setCookie(name, value);
16742         Roo.state.CookieProvider.superclass.set.call(this, name, value);
16743     },
16744
16745     // private
16746     clear : function(name){
16747         this.clearCookie(name);
16748         Roo.state.CookieProvider.superclass.clear.call(this, name);
16749     },
16750
16751     // private
16752     readCookies : function(){
16753         var cookies = {};
16754         var c = document.cookie + ";";
16755         var re = /\s?(.*?)=(.*?);/g;
16756         var matches;
16757         while((matches = re.exec(c)) != null){
16758             var name = matches[1];
16759             var value = matches[2];
16760             if(name && name.substring(0,3) == "ys-"){
16761                 cookies[name.substr(3)] = this.decodeValue(value);
16762             }
16763         }
16764         return cookies;
16765     },
16766
16767     // private
16768     setCookie : function(name, value){
16769         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
16770            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
16771            ((this.path == null) ? "" : ("; path=" + this.path)) +
16772            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16773            ((this.secure == true) ? "; secure" : "");
16774     },
16775
16776     // private
16777     clearCookie : function(name){
16778         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
16779            ((this.path == null) ? "" : ("; path=" + this.path)) +
16780            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16781            ((this.secure == true) ? "; secure" : "");
16782     }
16783 });/*
16784  * Based on:
16785  * Ext JS Library 1.1.1
16786  * Copyright(c) 2006-2007, Ext JS, LLC.
16787  *
16788  * Originally Released Under LGPL - original licence link has changed is not relivant.
16789  *
16790  * Fork - LGPL
16791  * <script type="text/javascript">
16792  */
16793  
16794
16795 /**
16796  * @class Roo.ComponentMgr
16797  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
16798  * @static
16799  */
16800 Roo.ComponentMgr = function(){
16801     var all = new Roo.util.MixedCollection();
16802
16803     return {
16804         /**
16805          * Registers a component.
16806          * @param {Roo.Component} c The component
16807          */
16808         register : function(c){
16809             all.add(c);
16810         },
16811
16812         /**
16813          * Unregisters a component.
16814          * @param {Roo.Component} c The component
16815          */
16816         unregister : function(c){
16817             all.remove(c);
16818         },
16819
16820         /**
16821          * Returns a component by id
16822          * @param {String} id The component id
16823          */
16824         get : function(id){
16825             return all.get(id);
16826         },
16827
16828         /**
16829          * Registers a function that will be called when a specified component is added to ComponentMgr
16830          * @param {String} id The component id
16831          * @param {Funtction} fn The callback function
16832          * @param {Object} scope The scope of the callback
16833          */
16834         onAvailable : function(id, fn, scope){
16835             all.on("add", function(index, o){
16836                 if(o.id == id){
16837                     fn.call(scope || o, o);
16838                     all.un("add", fn, scope);
16839                 }
16840             });
16841         }
16842     };
16843 }();/*
16844  * Based on:
16845  * Ext JS Library 1.1.1
16846  * Copyright(c) 2006-2007, Ext JS, LLC.
16847  *
16848  * Originally Released Under LGPL - original licence link has changed is not relivant.
16849  *
16850  * Fork - LGPL
16851  * <script type="text/javascript">
16852  */
16853  
16854 /**
16855  * @class Roo.Component
16856  * @extends Roo.util.Observable
16857  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
16858  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
16859  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
16860  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
16861  * All visual components (widgets) that require rendering into a layout should subclass Component.
16862  * @constructor
16863  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
16864  * 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
16865  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
16866  */
16867 Roo.Component = function(config){
16868     config = config || {};
16869     if(config.tagName || config.dom || typeof config == "string"){ // element object
16870         config = {el: config, id: config.id || config};
16871     }
16872     this.initialConfig = config;
16873
16874     Roo.apply(this, config);
16875     this.addEvents({
16876         /**
16877          * @event disable
16878          * Fires after the component is disabled.
16879              * @param {Roo.Component} this
16880              */
16881         disable : true,
16882         /**
16883          * @event enable
16884          * Fires after the component is enabled.
16885              * @param {Roo.Component} this
16886              */
16887         enable : true,
16888         /**
16889          * @event beforeshow
16890          * Fires before the component is shown.  Return false to stop the show.
16891              * @param {Roo.Component} this
16892              */
16893         beforeshow : true,
16894         /**
16895          * @event show
16896          * Fires after the component is shown.
16897              * @param {Roo.Component} this
16898              */
16899         show : true,
16900         /**
16901          * @event beforehide
16902          * Fires before the component is hidden. Return false to stop the hide.
16903              * @param {Roo.Component} this
16904              */
16905         beforehide : true,
16906         /**
16907          * @event hide
16908          * Fires after the component is hidden.
16909              * @param {Roo.Component} this
16910              */
16911         hide : true,
16912         /**
16913          * @event beforerender
16914          * Fires before the component is rendered. Return false to stop the render.
16915              * @param {Roo.Component} this
16916              */
16917         beforerender : true,
16918         /**
16919          * @event render
16920          * Fires after the component is rendered.
16921              * @param {Roo.Component} this
16922              */
16923         render : true,
16924         /**
16925          * @event beforedestroy
16926          * Fires before the component is destroyed. Return false to stop the destroy.
16927              * @param {Roo.Component} this
16928              */
16929         beforedestroy : true,
16930         /**
16931          * @event destroy
16932          * Fires after the component is destroyed.
16933              * @param {Roo.Component} this
16934              */
16935         destroy : true
16936     });
16937     if(!this.id){
16938         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
16939     }
16940     Roo.ComponentMgr.register(this);
16941     Roo.Component.superclass.constructor.call(this);
16942     this.initComponent();
16943     if(this.renderTo){ // not supported by all components yet. use at your own risk!
16944         this.render(this.renderTo);
16945         delete this.renderTo;
16946     }
16947 };
16948
16949 /** @private */
16950 Roo.Component.AUTO_ID = 1000;
16951
16952 Roo.extend(Roo.Component, Roo.util.Observable, {
16953     /**
16954      * @scope Roo.Component.prototype
16955      * @type {Boolean}
16956      * true if this component is hidden. Read-only.
16957      */
16958     hidden : false,
16959     /**
16960      * @type {Boolean}
16961      * true if this component is disabled. Read-only.
16962      */
16963     disabled : false,
16964     /**
16965      * @type {Boolean}
16966      * true if this component has been rendered. Read-only.
16967      */
16968     rendered : false,
16969     
16970     /** @cfg {String} disableClass
16971      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
16972      */
16973     disabledClass : "x-item-disabled",
16974         /** @cfg {Boolean} allowDomMove
16975          * Whether the component can move the Dom node when rendering (defaults to true).
16976          */
16977     allowDomMove : true,
16978     /** @cfg {String} hideMode (display|visibility)
16979      * How this component should hidden. Supported values are
16980      * "visibility" (css visibility), "offsets" (negative offset position) and
16981      * "display" (css display) - defaults to "display".
16982      */
16983     hideMode: 'display',
16984
16985     /** @private */
16986     ctype : "Roo.Component",
16987
16988     /**
16989      * @cfg {String} actionMode 
16990      * which property holds the element that used for  hide() / show() / disable() / enable()
16991      * default is 'el' for forms you probably want to set this to fieldEl 
16992      */
16993     actionMode : "el",
16994
16995     /** @private */
16996     getActionEl : function(){
16997         return this[this.actionMode];
16998     },
16999
17000     initComponent : Roo.emptyFn,
17001     /**
17002      * If this is a lazy rendering component, render it to its container element.
17003      * @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.
17004      */
17005     render : function(container, position){
17006         
17007         if(this.rendered){
17008             return this;
17009         }
17010         
17011         if(this.fireEvent("beforerender", this) === false){
17012             return false;
17013         }
17014         
17015         if(!container && this.el){
17016             this.el = Roo.get(this.el);
17017             container = this.el.dom.parentNode;
17018             this.allowDomMove = false;
17019         }
17020         this.container = Roo.get(container);
17021         this.rendered = true;
17022         if(position !== undefined){
17023             if(typeof position == 'number'){
17024                 position = this.container.dom.childNodes[position];
17025             }else{
17026                 position = Roo.getDom(position);
17027             }
17028         }
17029         this.onRender(this.container, position || null);
17030         if(this.cls){
17031             this.el.addClass(this.cls);
17032             delete this.cls;
17033         }
17034         if(this.style){
17035             this.el.applyStyles(this.style);
17036             delete this.style;
17037         }
17038         this.fireEvent("render", this);
17039         this.afterRender(this.container);
17040         if(this.hidden){
17041             this.hide();
17042         }
17043         if(this.disabled){
17044             this.disable();
17045         }
17046
17047         return this;
17048         
17049     },
17050
17051     /** @private */
17052     // default function is not really useful
17053     onRender : function(ct, position){
17054         if(this.el){
17055             this.el = Roo.get(this.el);
17056             if(this.allowDomMove !== false){
17057                 ct.dom.insertBefore(this.el.dom, position);
17058             }
17059         }
17060     },
17061
17062     /** @private */
17063     getAutoCreate : function(){
17064         var cfg = typeof this.autoCreate == "object" ?
17065                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
17066         if(this.id && !cfg.id){
17067             cfg.id = this.id;
17068         }
17069         return cfg;
17070     },
17071
17072     /** @private */
17073     afterRender : Roo.emptyFn,
17074
17075     /**
17076      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
17077      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
17078      */
17079     destroy : function(){
17080         if(this.fireEvent("beforedestroy", this) !== false){
17081             this.purgeListeners();
17082             this.beforeDestroy();
17083             if(this.rendered){
17084                 this.el.removeAllListeners();
17085                 this.el.remove();
17086                 if(this.actionMode == "container"){
17087                     this.container.remove();
17088                 }
17089             }
17090             this.onDestroy();
17091             Roo.ComponentMgr.unregister(this);
17092             this.fireEvent("destroy", this);
17093         }
17094     },
17095
17096         /** @private */
17097     beforeDestroy : function(){
17098
17099     },
17100
17101         /** @private */
17102         onDestroy : function(){
17103
17104     },
17105
17106     /**
17107      * Returns the underlying {@link Roo.Element}.
17108      * @return {Roo.Element} The element
17109      */
17110     getEl : function(){
17111         return this.el;
17112     },
17113
17114     /**
17115      * Returns the id of this component.
17116      * @return {String}
17117      */
17118     getId : function(){
17119         return this.id;
17120     },
17121
17122     /**
17123      * Try to focus this component.
17124      * @param {Boolean} selectText True to also select the text in this component (if applicable)
17125      * @return {Roo.Component} this
17126      */
17127     focus : function(selectText){
17128         if(this.rendered){
17129             this.el.focus();
17130             if(selectText === true){
17131                 this.el.dom.select();
17132             }
17133         }
17134         return this;
17135     },
17136
17137     /** @private */
17138     blur : function(){
17139         if(this.rendered){
17140             this.el.blur();
17141         }
17142         return this;
17143     },
17144
17145     /**
17146      * Disable this component.
17147      * @return {Roo.Component} this
17148      */
17149     disable : function(){
17150         if(this.rendered){
17151             this.onDisable();
17152         }
17153         this.disabled = true;
17154         this.fireEvent("disable", this);
17155         return this;
17156     },
17157
17158         // private
17159     onDisable : function(){
17160         this.getActionEl().addClass(this.disabledClass);
17161         this.el.dom.disabled = true;
17162     },
17163
17164     /**
17165      * Enable this component.
17166      * @return {Roo.Component} this
17167      */
17168     enable : function(){
17169         if(this.rendered){
17170             this.onEnable();
17171         }
17172         this.disabled = false;
17173         this.fireEvent("enable", this);
17174         return this;
17175     },
17176
17177         // private
17178     onEnable : function(){
17179         this.getActionEl().removeClass(this.disabledClass);
17180         this.el.dom.disabled = false;
17181     },
17182
17183     /**
17184      * Convenience function for setting disabled/enabled by boolean.
17185      * @param {Boolean} disabled
17186      */
17187     setDisabled : function(disabled){
17188         this[disabled ? "disable" : "enable"]();
17189     },
17190
17191     /**
17192      * Show this component.
17193      * @return {Roo.Component} this
17194      */
17195     show: function(){
17196         if(this.fireEvent("beforeshow", this) !== false){
17197             this.hidden = false;
17198             if(this.rendered){
17199                 this.onShow();
17200             }
17201             this.fireEvent("show", this);
17202         }
17203         return this;
17204     },
17205
17206     // private
17207     onShow : function(){
17208         var ae = this.getActionEl();
17209         if(this.hideMode == 'visibility'){
17210             ae.dom.style.visibility = "visible";
17211         }else if(this.hideMode == 'offsets'){
17212             ae.removeClass('x-hidden');
17213         }else{
17214             ae.dom.style.display = "";
17215         }
17216     },
17217
17218     /**
17219      * Hide this component.
17220      * @return {Roo.Component} this
17221      */
17222     hide: function(){
17223         if(this.fireEvent("beforehide", this) !== false){
17224             this.hidden = true;
17225             if(this.rendered){
17226                 this.onHide();
17227             }
17228             this.fireEvent("hide", this);
17229         }
17230         return this;
17231     },
17232
17233     // private
17234     onHide : function(){
17235         var ae = this.getActionEl();
17236         if(this.hideMode == 'visibility'){
17237             ae.dom.style.visibility = "hidden";
17238         }else if(this.hideMode == 'offsets'){
17239             ae.addClass('x-hidden');
17240         }else{
17241             ae.dom.style.display = "none";
17242         }
17243     },
17244
17245     /**
17246      * Convenience function to hide or show this component by boolean.
17247      * @param {Boolean} visible True to show, false to hide
17248      * @return {Roo.Component} this
17249      */
17250     setVisible: function(visible){
17251         if(visible) {
17252             this.show();
17253         }else{
17254             this.hide();
17255         }
17256         return this;
17257     },
17258
17259     /**
17260      * Returns true if this component is visible.
17261      */
17262     isVisible : function(){
17263         return this.getActionEl().isVisible();
17264     },
17265
17266     cloneConfig : function(overrides){
17267         overrides = overrides || {};
17268         var id = overrides.id || Roo.id();
17269         var cfg = Roo.applyIf(overrides, this.initialConfig);
17270         cfg.id = id; // prevent dup id
17271         return new this.constructor(cfg);
17272     }
17273 });/*
17274  * Based on:
17275  * Ext JS Library 1.1.1
17276  * Copyright(c) 2006-2007, Ext JS, LLC.
17277  *
17278  * Originally Released Under LGPL - original licence link has changed is not relivant.
17279  *
17280  * Fork - LGPL
17281  * <script type="text/javascript">
17282  */
17283
17284 /**
17285  * @class Roo.BoxComponent
17286  * @extends Roo.Component
17287  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
17288  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
17289  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
17290  * layout containers.
17291  * @constructor
17292  * @param {Roo.Element/String/Object} config The configuration options.
17293  */
17294 Roo.BoxComponent = function(config){
17295     Roo.Component.call(this, config);
17296     this.addEvents({
17297         /**
17298          * @event resize
17299          * Fires after the component is resized.
17300              * @param {Roo.Component} this
17301              * @param {Number} adjWidth The box-adjusted width that was set
17302              * @param {Number} adjHeight The box-adjusted height that was set
17303              * @param {Number} rawWidth The width that was originally specified
17304              * @param {Number} rawHeight The height that was originally specified
17305              */
17306         resize : true,
17307         /**
17308          * @event move
17309          * Fires after the component is moved.
17310              * @param {Roo.Component} this
17311              * @param {Number} x The new x position
17312              * @param {Number} y The new y position
17313              */
17314         move : true
17315     });
17316 };
17317
17318 Roo.extend(Roo.BoxComponent, Roo.Component, {
17319     // private, set in afterRender to signify that the component has been rendered
17320     boxReady : false,
17321     // private, used to defer height settings to subclasses
17322     deferHeight: false,
17323     /** @cfg {Number} width
17324      * width (optional) size of component
17325      */
17326      /** @cfg {Number} height
17327      * height (optional) size of component
17328      */
17329      
17330     /**
17331      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
17332      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
17333      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
17334      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
17335      * @return {Roo.BoxComponent} this
17336      */
17337     setSize : function(w, h){
17338         // support for standard size objects
17339         if(typeof w == 'object'){
17340             h = w.height;
17341             w = w.width;
17342         }
17343         // not rendered
17344         if(!this.boxReady){
17345             this.width = w;
17346             this.height = h;
17347             return this;
17348         }
17349
17350         // prevent recalcs when not needed
17351         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
17352             return this;
17353         }
17354         this.lastSize = {width: w, height: h};
17355
17356         var adj = this.adjustSize(w, h);
17357         var aw = adj.width, ah = adj.height;
17358         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
17359             var rz = this.getResizeEl();
17360             if(!this.deferHeight && aw !== undefined && ah !== undefined){
17361                 rz.setSize(aw, ah);
17362             }else if(!this.deferHeight && ah !== undefined){
17363                 rz.setHeight(ah);
17364             }else if(aw !== undefined){
17365                 rz.setWidth(aw);
17366             }
17367             this.onResize(aw, ah, w, h);
17368             this.fireEvent('resize', this, aw, ah, w, h);
17369         }
17370         return this;
17371     },
17372
17373     /**
17374      * Gets the current size of the component's underlying element.
17375      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
17376      */
17377     getSize : function(){
17378         return this.el.getSize();
17379     },
17380
17381     /**
17382      * Gets the current XY position of the component's underlying element.
17383      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17384      * @return {Array} The XY position of the element (e.g., [100, 200])
17385      */
17386     getPosition : function(local){
17387         if(local === true){
17388             return [this.el.getLeft(true), this.el.getTop(true)];
17389         }
17390         return this.xy || this.el.getXY();
17391     },
17392
17393     /**
17394      * Gets the current box measurements of the component's underlying element.
17395      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17396      * @returns {Object} box An object in the format {x, y, width, height}
17397      */
17398     getBox : function(local){
17399         var s = this.el.getSize();
17400         if(local){
17401             s.x = this.el.getLeft(true);
17402             s.y = this.el.getTop(true);
17403         }else{
17404             var xy = this.xy || this.el.getXY();
17405             s.x = xy[0];
17406             s.y = xy[1];
17407         }
17408         return s;
17409     },
17410
17411     /**
17412      * Sets the current box measurements of the component's underlying element.
17413      * @param {Object} box An object in the format {x, y, width, height}
17414      * @returns {Roo.BoxComponent} this
17415      */
17416     updateBox : function(box){
17417         this.setSize(box.width, box.height);
17418         this.setPagePosition(box.x, box.y);
17419         return this;
17420     },
17421
17422     // protected
17423     getResizeEl : function(){
17424         return this.resizeEl || this.el;
17425     },
17426
17427     // protected
17428     getPositionEl : function(){
17429         return this.positionEl || this.el;
17430     },
17431
17432     /**
17433      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
17434      * This method fires the move event.
17435      * @param {Number} left The new left
17436      * @param {Number} top The new top
17437      * @returns {Roo.BoxComponent} this
17438      */
17439     setPosition : function(x, y){
17440         this.x = x;
17441         this.y = y;
17442         if(!this.boxReady){
17443             return this;
17444         }
17445         var adj = this.adjustPosition(x, y);
17446         var ax = adj.x, ay = adj.y;
17447
17448         var el = this.getPositionEl();
17449         if(ax !== undefined || ay !== undefined){
17450             if(ax !== undefined && ay !== undefined){
17451                 el.setLeftTop(ax, ay);
17452             }else if(ax !== undefined){
17453                 el.setLeft(ax);
17454             }else if(ay !== undefined){
17455                 el.setTop(ay);
17456             }
17457             this.onPosition(ax, ay);
17458             this.fireEvent('move', this, ax, ay);
17459         }
17460         return this;
17461     },
17462
17463     /**
17464      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
17465      * This method fires the move event.
17466      * @param {Number} x The new x position
17467      * @param {Number} y The new y position
17468      * @returns {Roo.BoxComponent} this
17469      */
17470     setPagePosition : function(x, y){
17471         this.pageX = x;
17472         this.pageY = y;
17473         if(!this.boxReady){
17474             return;
17475         }
17476         if(x === undefined || y === undefined){ // cannot translate undefined points
17477             return;
17478         }
17479         var p = this.el.translatePoints(x, y);
17480         this.setPosition(p.left, p.top);
17481         return this;
17482     },
17483
17484     // private
17485     onRender : function(ct, position){
17486         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
17487         if(this.resizeEl){
17488             this.resizeEl = Roo.get(this.resizeEl);
17489         }
17490         if(this.positionEl){
17491             this.positionEl = Roo.get(this.positionEl);
17492         }
17493     },
17494
17495     // private
17496     afterRender : function(){
17497         Roo.BoxComponent.superclass.afterRender.call(this);
17498         this.boxReady = true;
17499         this.setSize(this.width, this.height);
17500         if(this.x || this.y){
17501             this.setPosition(this.x, this.y);
17502         }
17503         if(this.pageX || this.pageY){
17504             this.setPagePosition(this.pageX, this.pageY);
17505         }
17506     },
17507
17508     /**
17509      * Force the component's size to recalculate based on the underlying element's current height and width.
17510      * @returns {Roo.BoxComponent} this
17511      */
17512     syncSize : function(){
17513         delete this.lastSize;
17514         this.setSize(this.el.getWidth(), this.el.getHeight());
17515         return this;
17516     },
17517
17518     /**
17519      * Called after the component is resized, this method is empty by default but can be implemented by any
17520      * subclass that needs to perform custom logic after a resize occurs.
17521      * @param {Number} adjWidth The box-adjusted width that was set
17522      * @param {Number} adjHeight The box-adjusted height that was set
17523      * @param {Number} rawWidth The width that was originally specified
17524      * @param {Number} rawHeight The height that was originally specified
17525      */
17526     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
17527
17528     },
17529
17530     /**
17531      * Called after the component is moved, this method is empty by default but can be implemented by any
17532      * subclass that needs to perform custom logic after a move occurs.
17533      * @param {Number} x The new x position
17534      * @param {Number} y The new y position
17535      */
17536     onPosition : function(x, y){
17537
17538     },
17539
17540     // private
17541     adjustSize : function(w, h){
17542         if(this.autoWidth){
17543             w = 'auto';
17544         }
17545         if(this.autoHeight){
17546             h = 'auto';
17547         }
17548         return {width : w, height: h};
17549     },
17550
17551     // private
17552     adjustPosition : function(x, y){
17553         return {x : x, y: y};
17554     }
17555 });/*
17556  * Based on:
17557  * Ext JS Library 1.1.1
17558  * Copyright(c) 2006-2007, Ext JS, LLC.
17559  *
17560  * Originally Released Under LGPL - original licence link has changed is not relivant.
17561  *
17562  * Fork - LGPL
17563  * <script type="text/javascript">
17564  */
17565  (function(){ 
17566 /**
17567  * @class Roo.Layer
17568  * @extends Roo.Element
17569  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
17570  * automatic maintaining of shadow/shim positions.
17571  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
17572  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
17573  * you can pass a string with a CSS class name. False turns off the shadow.
17574  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
17575  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
17576  * @cfg {String} cls CSS class to add to the element
17577  * @cfg {Number} zindex Starting z-index (defaults to 11000)
17578  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
17579  * @constructor
17580  * @param {Object} config An object with config options.
17581  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
17582  */
17583
17584 Roo.Layer = function(config, existingEl){
17585     config = config || {};
17586     var dh = Roo.DomHelper;
17587     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
17588     if(existingEl){
17589         this.dom = Roo.getDom(existingEl);
17590     }
17591     if(!this.dom){
17592         var o = config.dh || {tag: "div", cls: "x-layer"};
17593         this.dom = dh.append(pel, o);
17594     }
17595     if(config.cls){
17596         this.addClass(config.cls);
17597     }
17598     this.constrain = config.constrain !== false;
17599     this.visibilityMode = Roo.Element.VISIBILITY;
17600     if(config.id){
17601         this.id = this.dom.id = config.id;
17602     }else{
17603         this.id = Roo.id(this.dom);
17604     }
17605     this.zindex = config.zindex || this.getZIndex();
17606     this.position("absolute", this.zindex);
17607     if(config.shadow){
17608         this.shadowOffset = config.shadowOffset || 4;
17609         this.shadow = new Roo.Shadow({
17610             offset : this.shadowOffset,
17611             mode : config.shadow
17612         });
17613     }else{
17614         this.shadowOffset = 0;
17615     }
17616     this.useShim = config.shim !== false && Roo.useShims;
17617     this.useDisplay = config.useDisplay;
17618     this.hide();
17619 };
17620
17621 var supr = Roo.Element.prototype;
17622
17623 // shims are shared among layer to keep from having 100 iframes
17624 var shims = [];
17625
17626 Roo.extend(Roo.Layer, Roo.Element, {
17627
17628     getZIndex : function(){
17629         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
17630     },
17631
17632     getShim : function(){
17633         if(!this.useShim){
17634             return null;
17635         }
17636         if(this.shim){
17637             return this.shim;
17638         }
17639         var shim = shims.shift();
17640         if(!shim){
17641             shim = this.createShim();
17642             shim.enableDisplayMode('block');
17643             shim.dom.style.display = 'none';
17644             shim.dom.style.visibility = 'visible';
17645         }
17646         var pn = this.dom.parentNode;
17647         if(shim.dom.parentNode != pn){
17648             pn.insertBefore(shim.dom, this.dom);
17649         }
17650         shim.setStyle('z-index', this.getZIndex()-2);
17651         this.shim = shim;
17652         return shim;
17653     },
17654
17655     hideShim : function(){
17656         if(this.shim){
17657             this.shim.setDisplayed(false);
17658             shims.push(this.shim);
17659             delete this.shim;
17660         }
17661     },
17662
17663     disableShadow : function(){
17664         if(this.shadow){
17665             this.shadowDisabled = true;
17666             this.shadow.hide();
17667             this.lastShadowOffset = this.shadowOffset;
17668             this.shadowOffset = 0;
17669         }
17670     },
17671
17672     enableShadow : function(show){
17673         if(this.shadow){
17674             this.shadowDisabled = false;
17675             this.shadowOffset = this.lastShadowOffset;
17676             delete this.lastShadowOffset;
17677             if(show){
17678                 this.sync(true);
17679             }
17680         }
17681     },
17682
17683     // private
17684     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
17685     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
17686     sync : function(doShow){
17687         var sw = this.shadow;
17688         if(!this.updating && this.isVisible() && (sw || this.useShim)){
17689             var sh = this.getShim();
17690
17691             var w = this.getWidth(),
17692                 h = this.getHeight();
17693
17694             var l = this.getLeft(true),
17695                 t = this.getTop(true);
17696
17697             if(sw && !this.shadowDisabled){
17698                 if(doShow && !sw.isVisible()){
17699                     sw.show(this);
17700                 }else{
17701                     sw.realign(l, t, w, h);
17702                 }
17703                 if(sh){
17704                     if(doShow){
17705                        sh.show();
17706                     }
17707                     // fit the shim behind the shadow, so it is shimmed too
17708                     var a = sw.adjusts, s = sh.dom.style;
17709                     s.left = (Math.min(l, l+a.l))+"px";
17710                     s.top = (Math.min(t, t+a.t))+"px";
17711                     s.width = (w+a.w)+"px";
17712                     s.height = (h+a.h)+"px";
17713                 }
17714             }else if(sh){
17715                 if(doShow){
17716                    sh.show();
17717                 }
17718                 sh.setSize(w, h);
17719                 sh.setLeftTop(l, t);
17720             }
17721             
17722         }
17723     },
17724
17725     // private
17726     destroy : function(){
17727         this.hideShim();
17728         if(this.shadow){
17729             this.shadow.hide();
17730         }
17731         this.removeAllListeners();
17732         var pn = this.dom.parentNode;
17733         if(pn){
17734             pn.removeChild(this.dom);
17735         }
17736         Roo.Element.uncache(this.id);
17737     },
17738
17739     remove : function(){
17740         this.destroy();
17741     },
17742
17743     // private
17744     beginUpdate : function(){
17745         this.updating = true;
17746     },
17747
17748     // private
17749     endUpdate : function(){
17750         this.updating = false;
17751         this.sync(true);
17752     },
17753
17754     // private
17755     hideUnders : function(negOffset){
17756         if(this.shadow){
17757             this.shadow.hide();
17758         }
17759         this.hideShim();
17760     },
17761
17762     // private
17763     constrainXY : function(){
17764         if(this.constrain){
17765             var vw = Roo.lib.Dom.getViewWidth(),
17766                 vh = Roo.lib.Dom.getViewHeight();
17767             var s = Roo.get(document).getScroll();
17768
17769             var xy = this.getXY();
17770             var x = xy[0], y = xy[1];   
17771             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
17772             // only move it if it needs it
17773             var moved = false;
17774             // first validate right/bottom
17775             if((x + w) > vw+s.left){
17776                 x = vw - w - this.shadowOffset;
17777                 moved = true;
17778             }
17779             if((y + h) > vh+s.top){
17780                 y = vh - h - this.shadowOffset;
17781                 moved = true;
17782             }
17783             // then make sure top/left isn't negative
17784             if(x < s.left){
17785                 x = s.left;
17786                 moved = true;
17787             }
17788             if(y < s.top){
17789                 y = s.top;
17790                 moved = true;
17791             }
17792             if(moved){
17793                 if(this.avoidY){
17794                     var ay = this.avoidY;
17795                     if(y <= ay && (y+h) >= ay){
17796                         y = ay-h-5;   
17797                     }
17798                 }
17799                 xy = [x, y];
17800                 this.storeXY(xy);
17801                 supr.setXY.call(this, xy);
17802                 this.sync();
17803             }
17804         }
17805     },
17806
17807     isVisible : function(){
17808         return this.visible;    
17809     },
17810
17811     // private
17812     showAction : function(){
17813         this.visible = true; // track visibility to prevent getStyle calls
17814         if(this.useDisplay === true){
17815             this.setDisplayed("");
17816         }else if(this.lastXY){
17817             supr.setXY.call(this, this.lastXY);
17818         }else if(this.lastLT){
17819             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
17820         }
17821     },
17822
17823     // private
17824     hideAction : function(){
17825         this.visible = false;
17826         if(this.useDisplay === true){
17827             this.setDisplayed(false);
17828         }else{
17829             this.setLeftTop(-10000,-10000);
17830         }
17831     },
17832
17833     // overridden Element method
17834     setVisible : function(v, a, d, c, e){
17835         if(v){
17836             this.showAction();
17837         }
17838         if(a && v){
17839             var cb = function(){
17840                 this.sync(true);
17841                 if(c){
17842                     c();
17843                 }
17844             }.createDelegate(this);
17845             supr.setVisible.call(this, true, true, d, cb, e);
17846         }else{
17847             if(!v){
17848                 this.hideUnders(true);
17849             }
17850             var cb = c;
17851             if(a){
17852                 cb = function(){
17853                     this.hideAction();
17854                     if(c){
17855                         c();
17856                     }
17857                 }.createDelegate(this);
17858             }
17859             supr.setVisible.call(this, v, a, d, cb, e);
17860             if(v){
17861                 this.sync(true);
17862             }else if(!a){
17863                 this.hideAction();
17864             }
17865         }
17866     },
17867
17868     storeXY : function(xy){
17869         delete this.lastLT;
17870         this.lastXY = xy;
17871     },
17872
17873     storeLeftTop : function(left, top){
17874         delete this.lastXY;
17875         this.lastLT = [left, top];
17876     },
17877
17878     // private
17879     beforeFx : function(){
17880         this.beforeAction();
17881         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
17882     },
17883
17884     // private
17885     afterFx : function(){
17886         Roo.Layer.superclass.afterFx.apply(this, arguments);
17887         this.sync(this.isVisible());
17888     },
17889
17890     // private
17891     beforeAction : function(){
17892         if(!this.updating && this.shadow){
17893             this.shadow.hide();
17894         }
17895     },
17896
17897     // overridden Element method
17898     setLeft : function(left){
17899         this.storeLeftTop(left, this.getTop(true));
17900         supr.setLeft.apply(this, arguments);
17901         this.sync();
17902     },
17903
17904     setTop : function(top){
17905         this.storeLeftTop(this.getLeft(true), top);
17906         supr.setTop.apply(this, arguments);
17907         this.sync();
17908     },
17909
17910     setLeftTop : function(left, top){
17911         this.storeLeftTop(left, top);
17912         supr.setLeftTop.apply(this, arguments);
17913         this.sync();
17914     },
17915
17916     setXY : function(xy, a, d, c, e){
17917         this.fixDisplay();
17918         this.beforeAction();
17919         this.storeXY(xy);
17920         var cb = this.createCB(c);
17921         supr.setXY.call(this, xy, a, d, cb, e);
17922         if(!a){
17923             cb();
17924         }
17925     },
17926
17927     // private
17928     createCB : function(c){
17929         var el = this;
17930         return function(){
17931             el.constrainXY();
17932             el.sync(true);
17933             if(c){
17934                 c();
17935             }
17936         };
17937     },
17938
17939     // overridden Element method
17940     setX : function(x, a, d, c, e){
17941         this.setXY([x, this.getY()], a, d, c, e);
17942     },
17943
17944     // overridden Element method
17945     setY : function(y, a, d, c, e){
17946         this.setXY([this.getX(), y], a, d, c, e);
17947     },
17948
17949     // overridden Element method
17950     setSize : function(w, h, a, d, c, e){
17951         this.beforeAction();
17952         var cb = this.createCB(c);
17953         supr.setSize.call(this, w, h, a, d, cb, e);
17954         if(!a){
17955             cb();
17956         }
17957     },
17958
17959     // overridden Element method
17960     setWidth : function(w, a, d, c, e){
17961         this.beforeAction();
17962         var cb = this.createCB(c);
17963         supr.setWidth.call(this, w, a, d, cb, e);
17964         if(!a){
17965             cb();
17966         }
17967     },
17968
17969     // overridden Element method
17970     setHeight : function(h, a, d, c, e){
17971         this.beforeAction();
17972         var cb = this.createCB(c);
17973         supr.setHeight.call(this, h, a, d, cb, e);
17974         if(!a){
17975             cb();
17976         }
17977     },
17978
17979     // overridden Element method
17980     setBounds : function(x, y, w, h, a, d, c, e){
17981         this.beforeAction();
17982         var cb = this.createCB(c);
17983         if(!a){
17984             this.storeXY([x, y]);
17985             supr.setXY.call(this, [x, y]);
17986             supr.setSize.call(this, w, h, a, d, cb, e);
17987             cb();
17988         }else{
17989             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
17990         }
17991         return this;
17992     },
17993     
17994     /**
17995      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
17996      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
17997      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
17998      * @param {Number} zindex The new z-index to set
17999      * @return {this} The Layer
18000      */
18001     setZIndex : function(zindex){
18002         this.zindex = zindex;
18003         this.setStyle("z-index", zindex + 2);
18004         if(this.shadow){
18005             this.shadow.setZIndex(zindex + 1);
18006         }
18007         if(this.shim){
18008             this.shim.setStyle("z-index", zindex);
18009         }
18010     }
18011 });
18012 })();/*
18013  * Original code for Roojs - LGPL
18014  * <script type="text/javascript">
18015  */
18016  
18017 /**
18018  * @class Roo.XComponent
18019  * A delayed Element creator...
18020  * Or a way to group chunks of interface together.
18021  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
18022  *  used in conjunction with XComponent.build() it will create an instance of each element,
18023  *  then call addxtype() to build the User interface.
18024  * 
18025  * Mypart.xyx = new Roo.XComponent({
18026
18027     parent : 'Mypart.xyz', // empty == document.element.!!
18028     order : '001',
18029     name : 'xxxx'
18030     region : 'xxxx'
18031     disabled : function() {} 
18032      
18033     tree : function() { // return an tree of xtype declared components
18034         var MODULE = this;
18035         return 
18036         {
18037             xtype : 'NestedLayoutPanel',
18038             // technicall
18039         }
18040      ]
18041  *})
18042  *
18043  *
18044  * It can be used to build a big heiracy, with parent etc.
18045  * or you can just use this to render a single compoent to a dom element
18046  * MYPART.render(Roo.Element | String(id) | dom_element )
18047  *
18048  *
18049  * Usage patterns.
18050  *
18051  * Classic Roo
18052  *
18053  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
18054  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
18055  *
18056  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
18057  *
18058  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
18059  * - if mulitple topModules exist, the last one is defined as the top module.
18060  *
18061  * Embeded Roo
18062  * 
18063  * When the top level or multiple modules are to embedded into a existing HTML page,
18064  * the parent element can container '#id' of the element where the module will be drawn.
18065  *
18066  * Bootstrap Roo
18067  *
18068  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
18069  * it relies more on a include mechanism, where sub modules are included into an outer page.
18070  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
18071  * 
18072  * Bootstrap Roo Included elements
18073  *
18074  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
18075  * hence confusing the component builder as it thinks there are multiple top level elements. 
18076  *
18077  * String Over-ride & Translations
18078  *
18079  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
18080  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
18081  * are needed. @see Roo.XComponent.overlayString  
18082  * 
18083  * 
18084  * 
18085  * @extends Roo.util.Observable
18086  * @constructor
18087  * @param cfg {Object} configuration of component
18088  * 
18089  */
18090 Roo.XComponent = function(cfg) {
18091     Roo.apply(this, cfg);
18092     this.addEvents({ 
18093         /**
18094              * @event built
18095              * Fires when this the componnt is built
18096              * @param {Roo.XComponent} c the component
18097              */
18098         'built' : true
18099         
18100     });
18101     this.region = this.region || 'center'; // default..
18102     Roo.XComponent.register(this);
18103     this.modules = false;
18104     this.el = false; // where the layout goes..
18105     
18106     
18107 }
18108 Roo.extend(Roo.XComponent, Roo.util.Observable, {
18109     /**
18110      * @property el
18111      * The created element (with Roo.factory())
18112      * @type {Roo.Layout}
18113      */
18114     el  : false,
18115     
18116     /**
18117      * @property el
18118      * for BC  - use el in new code
18119      * @type {Roo.Layout}
18120      */
18121     panel : false,
18122     
18123     /**
18124      * @property layout
18125      * for BC  - use el in new code
18126      * @type {Roo.Layout}
18127      */
18128     layout : false,
18129     
18130      /**
18131      * @cfg {Function|boolean} disabled
18132      * If this module is disabled by some rule, return true from the funtion
18133      */
18134     disabled : false,
18135     
18136     /**
18137      * @cfg {String} parent 
18138      * Name of parent element which it get xtype added to..
18139      */
18140     parent: false,
18141     
18142     /**
18143      * @cfg {String} order
18144      * Used to set the order in which elements are created (usefull for multiple tabs)
18145      */
18146     
18147     order : false,
18148     /**
18149      * @cfg {String} name
18150      * String to display while loading.
18151      */
18152     name : false,
18153     /**
18154      * @cfg {String} region
18155      * Region to render component to (defaults to center)
18156      */
18157     region : 'center',
18158     
18159     /**
18160      * @cfg {Array} items
18161      * A single item array - the first element is the root of the tree..
18162      * It's done this way to stay compatible with the Xtype system...
18163      */
18164     items : false,
18165     
18166     /**
18167      * @property _tree
18168      * The method that retuns the tree of parts that make up this compoennt 
18169      * @type {function}
18170      */
18171     _tree  : false,
18172     
18173      /**
18174      * render
18175      * render element to dom or tree
18176      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
18177      */
18178     
18179     render : function(el)
18180     {
18181         
18182         el = el || false;
18183         var hp = this.parent ? 1 : 0;
18184         Roo.debug &&  Roo.log(this);
18185         
18186         var tree = this._tree ? this._tree() : this.tree();
18187
18188         
18189         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
18190             // if parent is a '#.....' string, then let's use that..
18191             var ename = this.parent.substr(1);
18192             this.parent = false;
18193             Roo.debug && Roo.log(ename);
18194             switch (ename) {
18195                 case 'bootstrap-body':
18196                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
18197                         // this is the BorderLayout standard?
18198                        this.parent = { el : true };
18199                        break;
18200                     }
18201                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
18202                         // need to insert stuff...
18203                         this.parent =  {
18204                              el : new Roo.bootstrap.layout.Border({
18205                                  el : document.body, 
18206                      
18207                                  center: {
18208                                     titlebar: false,
18209                                     autoScroll:false,
18210                                     closeOnTab: true,
18211                                     tabPosition: 'top',
18212                                       //resizeTabs: true,
18213                                     alwaysShowTabs: true,
18214                                     hideTabs: false
18215                                      //minTabWidth: 140
18216                                  }
18217                              })
18218                         
18219                          };
18220                          break;
18221                     }
18222                          
18223                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
18224                         this.parent = { el :  new  Roo.bootstrap.Body() };
18225                         Roo.debug && Roo.log("setting el to doc body");
18226                          
18227                     } else {
18228                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
18229                     }
18230                     break;
18231                 case 'bootstrap':
18232                     this.parent = { el : true};
18233                     // fall through
18234                 default:
18235                     el = Roo.get(ename);
18236                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
18237                         this.parent = { el : true};
18238                     }
18239                     
18240                     break;
18241             }
18242                 
18243             
18244             if (!el && !this.parent) {
18245                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
18246                 return;
18247             }
18248         }
18249         
18250         Roo.debug && Roo.log("EL:");
18251         Roo.debug && Roo.log(el);
18252         Roo.debug && Roo.log("this.parent.el:");
18253         Roo.debug && Roo.log(this.parent.el);
18254         
18255
18256         // altertive root elements ??? - we need a better way to indicate these.
18257         var is_alt = Roo.XComponent.is_alt ||
18258                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
18259                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
18260                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
18261         
18262         
18263         
18264         if (!this.parent && is_alt) {
18265             //el = Roo.get(document.body);
18266             this.parent = { el : true };
18267         }
18268             
18269             
18270         
18271         if (!this.parent) {
18272             
18273             Roo.debug && Roo.log("no parent - creating one");
18274             
18275             el = el ? Roo.get(el) : false;      
18276             
18277             if (typeof(Roo.BorderLayout) == 'undefined' ) {
18278                 
18279                 this.parent =  {
18280                     el : new Roo.bootstrap.layout.Border({
18281                         el: el || document.body,
18282                     
18283                         center: {
18284                             titlebar: false,
18285                             autoScroll:false,
18286                             closeOnTab: true,
18287                             tabPosition: 'top',
18288                              //resizeTabs: true,
18289                             alwaysShowTabs: false,
18290                             hideTabs: true,
18291                             minTabWidth: 140,
18292                             overflow: 'visible'
18293                          }
18294                      })
18295                 };
18296             } else {
18297             
18298                 // it's a top level one..
18299                 this.parent =  {
18300                     el : new Roo.BorderLayout(el || document.body, {
18301                         center: {
18302                             titlebar: false,
18303                             autoScroll:false,
18304                             closeOnTab: true,
18305                             tabPosition: 'top',
18306                              //resizeTabs: true,
18307                             alwaysShowTabs: el && hp? false :  true,
18308                             hideTabs: el || !hp ? true :  false,
18309                             minTabWidth: 140
18310                          }
18311                     })
18312                 };
18313             }
18314         }
18315         
18316         if (!this.parent.el) {
18317                 // probably an old style ctor, which has been disabled.
18318                 return;
18319
18320         }
18321                 // The 'tree' method is  '_tree now' 
18322             
18323         tree.region = tree.region || this.region;
18324         var is_body = false;
18325         if (this.parent.el === true) {
18326             // bootstrap... - body..
18327             if (el) {
18328                 tree.el = el;
18329             }
18330             this.parent.el = Roo.factory(tree);
18331             is_body = true;
18332         }
18333         
18334         this.el = this.parent.el.addxtype(tree, undefined, is_body);
18335         this.fireEvent('built', this);
18336         
18337         this.panel = this.el;
18338         this.layout = this.panel.layout;
18339         this.parentLayout = this.parent.layout  || false;  
18340          
18341     }
18342     
18343 });
18344
18345 Roo.apply(Roo.XComponent, {
18346     /**
18347      * @property  hideProgress
18348      * true to disable the building progress bar.. usefull on single page renders.
18349      * @type Boolean
18350      */
18351     hideProgress : false,
18352     /**
18353      * @property  buildCompleted
18354      * True when the builder has completed building the interface.
18355      * @type Boolean
18356      */
18357     buildCompleted : false,
18358      
18359     /**
18360      * @property  topModule
18361      * the upper most module - uses document.element as it's constructor.
18362      * @type Object
18363      */
18364      
18365     topModule  : false,
18366       
18367     /**
18368      * @property  modules
18369      * array of modules to be created by registration system.
18370      * @type {Array} of Roo.XComponent
18371      */
18372     
18373     modules : [],
18374     /**
18375      * @property  elmodules
18376      * array of modules to be created by which use #ID 
18377      * @type {Array} of Roo.XComponent
18378      */
18379      
18380     elmodules : [],
18381
18382      /**
18383      * @property  is_alt
18384      * Is an alternative Root - normally used by bootstrap or other systems,
18385      *    where the top element in the tree can wrap 'body' 
18386      * @type {boolean}  (default false)
18387      */
18388      
18389     is_alt : false,
18390     /**
18391      * @property  build_from_html
18392      * Build elements from html - used by bootstrap HTML stuff 
18393      *    - this is cleared after build is completed
18394      * @type {boolean}    (default false)
18395      */
18396      
18397     build_from_html : false,
18398     /**
18399      * Register components to be built later.
18400      *
18401      * This solves the following issues
18402      * - Building is not done on page load, but after an authentication process has occured.
18403      * - Interface elements are registered on page load
18404      * - Parent Interface elements may not be loaded before child, so this handles that..
18405      * 
18406      *
18407      * example:
18408      * 
18409      * MyApp.register({
18410           order : '000001',
18411           module : 'Pman.Tab.projectMgr',
18412           region : 'center',
18413           parent : 'Pman.layout',
18414           disabled : false,  // or use a function..
18415         })
18416      
18417      * * @param {Object} details about module
18418      */
18419     register : function(obj) {
18420                 
18421         Roo.XComponent.event.fireEvent('register', obj);
18422         switch(typeof(obj.disabled) ) {
18423                 
18424             case 'undefined':
18425                 break;
18426             
18427             case 'function':
18428                 if ( obj.disabled() ) {
18429                         return;
18430                 }
18431                 break;
18432             
18433             default:
18434                 if (obj.disabled || obj.region == '#disabled') {
18435                         return;
18436                 }
18437                 break;
18438         }
18439                 
18440         this.modules.push(obj);
18441          
18442     },
18443     /**
18444      * convert a string to an object..
18445      * eg. 'AAA.BBB' -> finds AAA.BBB
18446
18447      */
18448     
18449     toObject : function(str)
18450     {
18451         if (!str || typeof(str) == 'object') {
18452             return str;
18453         }
18454         if (str.substring(0,1) == '#') {
18455             return str;
18456         }
18457
18458         var ar = str.split('.');
18459         var rt, o;
18460         rt = ar.shift();
18461             /** eval:var:o */
18462         try {
18463             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
18464         } catch (e) {
18465             throw "Module not found : " + str;
18466         }
18467         
18468         if (o === false) {
18469             throw "Module not found : " + str;
18470         }
18471         Roo.each(ar, function(e) {
18472             if (typeof(o[e]) == 'undefined') {
18473                 throw "Module not found : " + str;
18474             }
18475             o = o[e];
18476         });
18477         
18478         return o;
18479         
18480     },
18481     
18482     
18483     /**
18484      * move modules into their correct place in the tree..
18485      * 
18486      */
18487     preBuild : function ()
18488     {
18489         var _t = this;
18490         Roo.each(this.modules , function (obj)
18491         {
18492             Roo.XComponent.event.fireEvent('beforebuild', obj);
18493             
18494             var opar = obj.parent;
18495             try { 
18496                 obj.parent = this.toObject(opar);
18497             } catch(e) {
18498                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
18499                 return;
18500             }
18501             
18502             if (!obj.parent) {
18503                 Roo.debug && Roo.log("GOT top level module");
18504                 Roo.debug && Roo.log(obj);
18505                 obj.modules = new Roo.util.MixedCollection(false, 
18506                     function(o) { return o.order + '' }
18507                 );
18508                 this.topModule = obj;
18509                 return;
18510             }
18511                         // parent is a string (usually a dom element name..)
18512             if (typeof(obj.parent) == 'string') {
18513                 this.elmodules.push(obj);
18514                 return;
18515             }
18516             if (obj.parent.constructor != Roo.XComponent) {
18517                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
18518             }
18519             if (!obj.parent.modules) {
18520                 obj.parent.modules = new Roo.util.MixedCollection(false, 
18521                     function(o) { return o.order + '' }
18522                 );
18523             }
18524             if (obj.parent.disabled) {
18525                 obj.disabled = true;
18526             }
18527             obj.parent.modules.add(obj);
18528         }, this);
18529     },
18530     
18531      /**
18532      * make a list of modules to build.
18533      * @return {Array} list of modules. 
18534      */ 
18535     
18536     buildOrder : function()
18537     {
18538         var _this = this;
18539         var cmp = function(a,b) {   
18540             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
18541         };
18542         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
18543             throw "No top level modules to build";
18544         }
18545         
18546         // make a flat list in order of modules to build.
18547         var mods = this.topModule ? [ this.topModule ] : [];
18548                 
18549         
18550         // elmodules (is a list of DOM based modules )
18551         Roo.each(this.elmodules, function(e) {
18552             mods.push(e);
18553             if (!this.topModule &&
18554                 typeof(e.parent) == 'string' &&
18555                 e.parent.substring(0,1) == '#' &&
18556                 Roo.get(e.parent.substr(1))
18557                ) {
18558                 
18559                 _this.topModule = e;
18560             }
18561             
18562         });
18563
18564         
18565         // add modules to their parents..
18566         var addMod = function(m) {
18567             Roo.debug && Roo.log("build Order: add: " + m.name);
18568                 
18569             mods.push(m);
18570             if (m.modules && !m.disabled) {
18571                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
18572                 m.modules.keySort('ASC',  cmp );
18573                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
18574     
18575                 m.modules.each(addMod);
18576             } else {
18577                 Roo.debug && Roo.log("build Order: no child modules");
18578             }
18579             // not sure if this is used any more..
18580             if (m.finalize) {
18581                 m.finalize.name = m.name + " (clean up) ";
18582                 mods.push(m.finalize);
18583             }
18584             
18585         }
18586         if (this.topModule && this.topModule.modules) { 
18587             this.topModule.modules.keySort('ASC',  cmp );
18588             this.topModule.modules.each(addMod);
18589         } 
18590         return mods;
18591     },
18592     
18593      /**
18594      * Build the registered modules.
18595      * @param {Object} parent element.
18596      * @param {Function} optional method to call after module has been added.
18597      * 
18598      */ 
18599    
18600     build : function(opts) 
18601     {
18602         
18603         if (typeof(opts) != 'undefined') {
18604             Roo.apply(this,opts);
18605         }
18606         
18607         this.preBuild();
18608         var mods = this.buildOrder();
18609       
18610         //this.allmods = mods;
18611         //Roo.debug && Roo.log(mods);
18612         //return;
18613         if (!mods.length) { // should not happen
18614             throw "NO modules!!!";
18615         }
18616         
18617         
18618         var msg = "Building Interface...";
18619         // flash it up as modal - so we store the mask!?
18620         if (!this.hideProgress && Roo.MessageBox) {
18621             Roo.MessageBox.show({ title: 'loading' });
18622             Roo.MessageBox.show({
18623                title: "Please wait...",
18624                msg: msg,
18625                width:450,
18626                progress:true,
18627                buttons : false,
18628                closable:false,
18629                modal: false
18630               
18631             });
18632         }
18633         var total = mods.length;
18634         
18635         var _this = this;
18636         var progressRun = function() {
18637             if (!mods.length) {
18638                 Roo.debug && Roo.log('hide?');
18639                 if (!this.hideProgress && Roo.MessageBox) {
18640                     Roo.MessageBox.hide();
18641                 }
18642                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
18643                 
18644                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
18645                 
18646                 // THE END...
18647                 return false;   
18648             }
18649             
18650             var m = mods.shift();
18651             
18652             
18653             Roo.debug && Roo.log(m);
18654             // not sure if this is supported any more.. - modules that are are just function
18655             if (typeof(m) == 'function') { 
18656                 m.call(this);
18657                 return progressRun.defer(10, _this);
18658             } 
18659             
18660             
18661             msg = "Building Interface " + (total  - mods.length) + 
18662                     " of " + total + 
18663                     (m.name ? (' - ' + m.name) : '');
18664                         Roo.debug && Roo.log(msg);
18665             if (!_this.hideProgress &&  Roo.MessageBox) { 
18666                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
18667             }
18668             
18669          
18670             // is the module disabled?
18671             var disabled = (typeof(m.disabled) == 'function') ?
18672                 m.disabled.call(m.module.disabled) : m.disabled;    
18673             
18674             
18675             if (disabled) {
18676                 return progressRun(); // we do not update the display!
18677             }
18678             
18679             // now build 
18680             
18681                         
18682                         
18683             m.render();
18684             // it's 10 on top level, and 1 on others??? why...
18685             return progressRun.defer(10, _this);
18686              
18687         }
18688         progressRun.defer(1, _this);
18689      
18690         
18691         
18692     },
18693     /**
18694      * Overlay a set of modified strings onto a component
18695      * This is dependant on our builder exporting the strings and 'named strings' elements.
18696      * 
18697      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
18698      * @param {Object} associative array of 'named' string and it's new value.
18699      * 
18700      */
18701         overlayStrings : function( component, strings )
18702     {
18703         if (typeof(component['_named_strings']) == 'undefined') {
18704             throw "ERROR: component does not have _named_strings";
18705         }
18706         for ( var k in strings ) {
18707             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
18708             if (md !== false) {
18709                 component['_strings'][md] = strings[k];
18710             } else {
18711                 Roo.log('could not find named string: ' + k + ' in');
18712                 Roo.log(component);
18713             }
18714             
18715         }
18716         
18717     },
18718     
18719         
18720         /**
18721          * Event Object.
18722          *
18723          *
18724          */
18725         event: false, 
18726     /**
18727          * wrapper for event.on - aliased later..  
18728          * Typically use to register a event handler for register:
18729          *
18730          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
18731          *
18732          */
18733     on : false
18734    
18735     
18736     
18737 });
18738
18739 Roo.XComponent.event = new Roo.util.Observable({
18740                 events : { 
18741                         /**
18742                          * @event register
18743                          * Fires when an Component is registered,
18744                          * set the disable property on the Component to stop registration.
18745                          * @param {Roo.XComponent} c the component being registerd.
18746                          * 
18747                          */
18748                         'register' : true,
18749             /**
18750                          * @event beforebuild
18751                          * Fires before each Component is built
18752                          * can be used to apply permissions.
18753                          * @param {Roo.XComponent} c the component being registerd.
18754                          * 
18755                          */
18756                         'beforebuild' : true,
18757                         /**
18758                          * @event buildcomplete
18759                          * Fires on the top level element when all elements have been built
18760                          * @param {Roo.XComponent} the top level component.
18761                          */
18762                         'buildcomplete' : true
18763                         
18764                 }
18765 });
18766
18767 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
18768  //
18769  /**
18770  * marked - a markdown parser
18771  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
18772  * https://github.com/chjj/marked
18773  */
18774
18775
18776 /**
18777  *
18778  * Roo.Markdown - is a very crude wrapper around marked..
18779  *
18780  * usage:
18781  * 
18782  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
18783  * 
18784  * Note: move the sample code to the bottom of this
18785  * file before uncommenting it.
18786  *
18787  */
18788
18789 Roo.Markdown = {};
18790 Roo.Markdown.toHtml = function(text) {
18791     
18792     var c = new Roo.Markdown.marked.setOptions({
18793             renderer: new Roo.Markdown.marked.Renderer(),
18794             gfm: true,
18795             tables: true,
18796             breaks: false,
18797             pedantic: false,
18798             sanitize: false,
18799             smartLists: true,
18800             smartypants: false
18801           });
18802     // A FEW HACKS!!?
18803     
18804     text = text.replace(/\\\n/g,' ');
18805     return Roo.Markdown.marked(text);
18806 };
18807 //
18808 // converter
18809 //
18810 // Wraps all "globals" so that the only thing
18811 // exposed is makeHtml().
18812 //
18813 (function() {
18814     
18815      /**
18816          * eval:var:escape
18817          * eval:var:unescape
18818          * eval:var:replace
18819          */
18820       
18821     /**
18822      * Helpers
18823      */
18824     
18825     var escape = function (html, encode) {
18826       return html
18827         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
18828         .replace(/</g, '&lt;')
18829         .replace(/>/g, '&gt;')
18830         .replace(/"/g, '&quot;')
18831         .replace(/'/g, '&#39;');
18832     }
18833     
18834     var unescape = function (html) {
18835         // explicitly match decimal, hex, and named HTML entities 
18836       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
18837         n = n.toLowerCase();
18838         if (n === 'colon') { return ':'; }
18839         if (n.charAt(0) === '#') {
18840           return n.charAt(1) === 'x'
18841             ? String.fromCharCode(parseInt(n.substring(2), 16))
18842             : String.fromCharCode(+n.substring(1));
18843         }
18844         return '';
18845       });
18846     }
18847     
18848     var replace = function (regex, opt) {
18849       regex = regex.source;
18850       opt = opt || '';
18851       return function self(name, val) {
18852         if (!name) { return new RegExp(regex, opt); }
18853         val = val.source || val;
18854         val = val.replace(/(^|[^\[])\^/g, '$1');
18855         regex = regex.replace(name, val);
18856         return self;
18857       };
18858     }
18859
18860
18861          /**
18862          * eval:var:noop
18863     */
18864     var noop = function () {}
18865     noop.exec = noop;
18866     
18867          /**
18868          * eval:var:merge
18869     */
18870     var merge = function (obj) {
18871       var i = 1
18872         , target
18873         , key;
18874     
18875       for (; i < arguments.length; i++) {
18876         target = arguments[i];
18877         for (key in target) {
18878           if (Object.prototype.hasOwnProperty.call(target, key)) {
18879             obj[key] = target[key];
18880           }
18881         }
18882       }
18883     
18884       return obj;
18885     }
18886     
18887     
18888     /**
18889      * Block-Level Grammar
18890      */
18891     
18892     
18893     
18894     
18895     var block = {
18896       newline: /^\n+/,
18897       code: /^( {4}[^\n]+\n*)+/,
18898       fences: noop,
18899       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
18900       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
18901       nptable: noop,
18902       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
18903       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
18904       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
18905       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
18906       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
18907       table: noop,
18908       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
18909       text: /^[^\n]+/
18910     };
18911     
18912     block.bullet = /(?:[*+-]|\d+\.)/;
18913     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
18914     block.item = replace(block.item, 'gm')
18915       (/bull/g, block.bullet)
18916       ();
18917     
18918     block.list = replace(block.list)
18919       (/bull/g, block.bullet)
18920       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
18921       ('def', '\\n+(?=' + block.def.source + ')')
18922       ();
18923     
18924     block.blockquote = replace(block.blockquote)
18925       ('def', block.def)
18926       ();
18927     
18928     block._tag = '(?!(?:'
18929       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
18930       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
18931       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
18932     
18933     block.html = replace(block.html)
18934       ('comment', /<!--[\s\S]*?-->/)
18935       ('closed', /<(tag)[\s\S]+?<\/\1>/)
18936       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
18937       (/tag/g, block._tag)
18938       ();
18939     
18940     block.paragraph = replace(block.paragraph)
18941       ('hr', block.hr)
18942       ('heading', block.heading)
18943       ('lheading', block.lheading)
18944       ('blockquote', block.blockquote)
18945       ('tag', '<' + block._tag)
18946       ('def', block.def)
18947       ();
18948     
18949     /**
18950      * Normal Block Grammar
18951      */
18952     
18953     block.normal = merge({}, block);
18954     
18955     /**
18956      * GFM Block Grammar
18957      */
18958     
18959     block.gfm = merge({}, block.normal, {
18960       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
18961       paragraph: /^/,
18962       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
18963     });
18964     
18965     block.gfm.paragraph = replace(block.paragraph)
18966       ('(?!', '(?!'
18967         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
18968         + block.list.source.replace('\\1', '\\3') + '|')
18969       ();
18970     
18971     /**
18972      * GFM + Tables Block Grammar
18973      */
18974     
18975     block.tables = merge({}, block.gfm, {
18976       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
18977       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
18978     });
18979     
18980     /**
18981      * Block Lexer
18982      */
18983     
18984     var Lexer = function (options) {
18985       this.tokens = [];
18986       this.tokens.links = {};
18987       this.options = options || marked.defaults;
18988       this.rules = block.normal;
18989     
18990       if (this.options.gfm) {
18991         if (this.options.tables) {
18992           this.rules = block.tables;
18993         } else {
18994           this.rules = block.gfm;
18995         }
18996       }
18997     }
18998     
18999     /**
19000      * Expose Block Rules
19001      */
19002     
19003     Lexer.rules = block;
19004     
19005     /**
19006      * Static Lex Method
19007      */
19008     
19009     Lexer.lex = function(src, options) {
19010       var lexer = new Lexer(options);
19011       return lexer.lex(src);
19012     };
19013     
19014     /**
19015      * Preprocessing
19016      */
19017     
19018     Lexer.prototype.lex = function(src) {
19019       src = src
19020         .replace(/\r\n|\r/g, '\n')
19021         .replace(/\t/g, '    ')
19022         .replace(/\u00a0/g, ' ')
19023         .replace(/\u2424/g, '\n');
19024     
19025       return this.token(src, true);
19026     };
19027     
19028     /**
19029      * Lexing
19030      */
19031     
19032     Lexer.prototype.token = function(src, top, bq) {
19033       var src = src.replace(/^ +$/gm, '')
19034         , next
19035         , loose
19036         , cap
19037         , bull
19038         , b
19039         , item
19040         , space
19041         , i
19042         , l;
19043     
19044       while (src) {
19045         // newline
19046         if (cap = this.rules.newline.exec(src)) {
19047           src = src.substring(cap[0].length);
19048           if (cap[0].length > 1) {
19049             this.tokens.push({
19050               type: 'space'
19051             });
19052           }
19053         }
19054     
19055         // code
19056         if (cap = this.rules.code.exec(src)) {
19057           src = src.substring(cap[0].length);
19058           cap = cap[0].replace(/^ {4}/gm, '');
19059           this.tokens.push({
19060             type: 'code',
19061             text: !this.options.pedantic
19062               ? cap.replace(/\n+$/, '')
19063               : cap
19064           });
19065           continue;
19066         }
19067     
19068         // fences (gfm)
19069         if (cap = this.rules.fences.exec(src)) {
19070           src = src.substring(cap[0].length);
19071           this.tokens.push({
19072             type: 'code',
19073             lang: cap[2],
19074             text: cap[3] || ''
19075           });
19076           continue;
19077         }
19078     
19079         // heading
19080         if (cap = this.rules.heading.exec(src)) {
19081           src = src.substring(cap[0].length);
19082           this.tokens.push({
19083             type: 'heading',
19084             depth: cap[1].length,
19085             text: cap[2]
19086           });
19087           continue;
19088         }
19089     
19090         // table no leading pipe (gfm)
19091         if (top && (cap = this.rules.nptable.exec(src))) {
19092           src = src.substring(cap[0].length);
19093     
19094           item = {
19095             type: 'table',
19096             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19097             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19098             cells: cap[3].replace(/\n$/, '').split('\n')
19099           };
19100     
19101           for (i = 0; i < item.align.length; i++) {
19102             if (/^ *-+: *$/.test(item.align[i])) {
19103               item.align[i] = 'right';
19104             } else if (/^ *:-+: *$/.test(item.align[i])) {
19105               item.align[i] = 'center';
19106             } else if (/^ *:-+ *$/.test(item.align[i])) {
19107               item.align[i] = 'left';
19108             } else {
19109               item.align[i] = null;
19110             }
19111           }
19112     
19113           for (i = 0; i < item.cells.length; i++) {
19114             item.cells[i] = item.cells[i].split(/ *\| */);
19115           }
19116     
19117           this.tokens.push(item);
19118     
19119           continue;
19120         }
19121     
19122         // lheading
19123         if (cap = this.rules.lheading.exec(src)) {
19124           src = src.substring(cap[0].length);
19125           this.tokens.push({
19126             type: 'heading',
19127             depth: cap[2] === '=' ? 1 : 2,
19128             text: cap[1]
19129           });
19130           continue;
19131         }
19132     
19133         // hr
19134         if (cap = this.rules.hr.exec(src)) {
19135           src = src.substring(cap[0].length);
19136           this.tokens.push({
19137             type: 'hr'
19138           });
19139           continue;
19140         }
19141     
19142         // blockquote
19143         if (cap = this.rules.blockquote.exec(src)) {
19144           src = src.substring(cap[0].length);
19145     
19146           this.tokens.push({
19147             type: 'blockquote_start'
19148           });
19149     
19150           cap = cap[0].replace(/^ *> ?/gm, '');
19151     
19152           // Pass `top` to keep the current
19153           // "toplevel" state. This is exactly
19154           // how markdown.pl works.
19155           this.token(cap, top, true);
19156     
19157           this.tokens.push({
19158             type: 'blockquote_end'
19159           });
19160     
19161           continue;
19162         }
19163     
19164         // list
19165         if (cap = this.rules.list.exec(src)) {
19166           src = src.substring(cap[0].length);
19167           bull = cap[2];
19168     
19169           this.tokens.push({
19170             type: 'list_start',
19171             ordered: bull.length > 1
19172           });
19173     
19174           // Get each top-level item.
19175           cap = cap[0].match(this.rules.item);
19176     
19177           next = false;
19178           l = cap.length;
19179           i = 0;
19180     
19181           for (; i < l; i++) {
19182             item = cap[i];
19183     
19184             // Remove the list item's bullet
19185             // so it is seen as the next token.
19186             space = item.length;
19187             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
19188     
19189             // Outdent whatever the
19190             // list item contains. Hacky.
19191             if (~item.indexOf('\n ')) {
19192               space -= item.length;
19193               item = !this.options.pedantic
19194                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
19195                 : item.replace(/^ {1,4}/gm, '');
19196             }
19197     
19198             // Determine whether the next list item belongs here.
19199             // Backpedal if it does not belong in this list.
19200             if (this.options.smartLists && i !== l - 1) {
19201               b = block.bullet.exec(cap[i + 1])[0];
19202               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
19203                 src = cap.slice(i + 1).join('\n') + src;
19204                 i = l - 1;
19205               }
19206             }
19207     
19208             // Determine whether item is loose or not.
19209             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
19210             // for discount behavior.
19211             loose = next || /\n\n(?!\s*$)/.test(item);
19212             if (i !== l - 1) {
19213               next = item.charAt(item.length - 1) === '\n';
19214               if (!loose) { loose = next; }
19215             }
19216     
19217             this.tokens.push({
19218               type: loose
19219                 ? 'loose_item_start'
19220                 : 'list_item_start'
19221             });
19222     
19223             // Recurse.
19224             this.token(item, false, bq);
19225     
19226             this.tokens.push({
19227               type: 'list_item_end'
19228             });
19229           }
19230     
19231           this.tokens.push({
19232             type: 'list_end'
19233           });
19234     
19235           continue;
19236         }
19237     
19238         // html
19239         if (cap = this.rules.html.exec(src)) {
19240           src = src.substring(cap[0].length);
19241           this.tokens.push({
19242             type: this.options.sanitize
19243               ? 'paragraph'
19244               : 'html',
19245             pre: !this.options.sanitizer
19246               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
19247             text: cap[0]
19248           });
19249           continue;
19250         }
19251     
19252         // def
19253         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
19254           src = src.substring(cap[0].length);
19255           this.tokens.links[cap[1].toLowerCase()] = {
19256             href: cap[2],
19257             title: cap[3]
19258           };
19259           continue;
19260         }
19261     
19262         // table (gfm)
19263         if (top && (cap = this.rules.table.exec(src))) {
19264           src = src.substring(cap[0].length);
19265     
19266           item = {
19267             type: 'table',
19268             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19269             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19270             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
19271           };
19272     
19273           for (i = 0; i < item.align.length; i++) {
19274             if (/^ *-+: *$/.test(item.align[i])) {
19275               item.align[i] = 'right';
19276             } else if (/^ *:-+: *$/.test(item.align[i])) {
19277               item.align[i] = 'center';
19278             } else if (/^ *:-+ *$/.test(item.align[i])) {
19279               item.align[i] = 'left';
19280             } else {
19281               item.align[i] = null;
19282             }
19283           }
19284     
19285           for (i = 0; i < item.cells.length; i++) {
19286             item.cells[i] = item.cells[i]
19287               .replace(/^ *\| *| *\| *$/g, '')
19288               .split(/ *\| */);
19289           }
19290     
19291           this.tokens.push(item);
19292     
19293           continue;
19294         }
19295     
19296         // top-level paragraph
19297         if (top && (cap = this.rules.paragraph.exec(src))) {
19298           src = src.substring(cap[0].length);
19299           this.tokens.push({
19300             type: 'paragraph',
19301             text: cap[1].charAt(cap[1].length - 1) === '\n'
19302               ? cap[1].slice(0, -1)
19303               : cap[1]
19304           });
19305           continue;
19306         }
19307     
19308         // text
19309         if (cap = this.rules.text.exec(src)) {
19310           // Top-level should never reach here.
19311           src = src.substring(cap[0].length);
19312           this.tokens.push({
19313             type: 'text',
19314             text: cap[0]
19315           });
19316           continue;
19317         }
19318     
19319         if (src) {
19320           throw new
19321             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19322         }
19323       }
19324     
19325       return this.tokens;
19326     };
19327     
19328     /**
19329      * Inline-Level Grammar
19330      */
19331     
19332     var inline = {
19333       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
19334       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
19335       url: noop,
19336       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
19337       link: /^!?\[(inside)\]\(href\)/,
19338       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
19339       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
19340       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
19341       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
19342       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
19343       br: /^ {2,}\n(?!\s*$)/,
19344       del: noop,
19345       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
19346     };
19347     
19348     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
19349     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
19350     
19351     inline.link = replace(inline.link)
19352       ('inside', inline._inside)
19353       ('href', inline._href)
19354       ();
19355     
19356     inline.reflink = replace(inline.reflink)
19357       ('inside', inline._inside)
19358       ();
19359     
19360     /**
19361      * Normal Inline Grammar
19362      */
19363     
19364     inline.normal = merge({}, inline);
19365     
19366     /**
19367      * Pedantic Inline Grammar
19368      */
19369     
19370     inline.pedantic = merge({}, inline.normal, {
19371       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
19372       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
19373     });
19374     
19375     /**
19376      * GFM Inline Grammar
19377      */
19378     
19379     inline.gfm = merge({}, inline.normal, {
19380       escape: replace(inline.escape)('])', '~|])')(),
19381       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
19382       del: /^~~(?=\S)([\s\S]*?\S)~~/,
19383       text: replace(inline.text)
19384         (']|', '~]|')
19385         ('|', '|https?://|')
19386         ()
19387     });
19388     
19389     /**
19390      * GFM + Line Breaks Inline Grammar
19391      */
19392     
19393     inline.breaks = merge({}, inline.gfm, {
19394       br: replace(inline.br)('{2,}', '*')(),
19395       text: replace(inline.gfm.text)('{2,}', '*')()
19396     });
19397     
19398     /**
19399      * Inline Lexer & Compiler
19400      */
19401     
19402     var InlineLexer  = function (links, options) {
19403       this.options = options || marked.defaults;
19404       this.links = links;
19405       this.rules = inline.normal;
19406       this.renderer = this.options.renderer || new Renderer;
19407       this.renderer.options = this.options;
19408     
19409       if (!this.links) {
19410         throw new
19411           Error('Tokens array requires a `links` property.');
19412       }
19413     
19414       if (this.options.gfm) {
19415         if (this.options.breaks) {
19416           this.rules = inline.breaks;
19417         } else {
19418           this.rules = inline.gfm;
19419         }
19420       } else if (this.options.pedantic) {
19421         this.rules = inline.pedantic;
19422       }
19423     }
19424     
19425     /**
19426      * Expose Inline Rules
19427      */
19428     
19429     InlineLexer.rules = inline;
19430     
19431     /**
19432      * Static Lexing/Compiling Method
19433      */
19434     
19435     InlineLexer.output = function(src, links, options) {
19436       var inline = new InlineLexer(links, options);
19437       return inline.output(src);
19438     };
19439     
19440     /**
19441      * Lexing/Compiling
19442      */
19443     
19444     InlineLexer.prototype.output = function(src) {
19445       var out = ''
19446         , link
19447         , text
19448         , href
19449         , cap;
19450     
19451       while (src) {
19452         // escape
19453         if (cap = this.rules.escape.exec(src)) {
19454           src = src.substring(cap[0].length);
19455           out += cap[1];
19456           continue;
19457         }
19458     
19459         // autolink
19460         if (cap = this.rules.autolink.exec(src)) {
19461           src = src.substring(cap[0].length);
19462           if (cap[2] === '@') {
19463             text = cap[1].charAt(6) === ':'
19464               ? this.mangle(cap[1].substring(7))
19465               : this.mangle(cap[1]);
19466             href = this.mangle('mailto:') + text;
19467           } else {
19468             text = escape(cap[1]);
19469             href = text;
19470           }
19471           out += this.renderer.link(href, null, text);
19472           continue;
19473         }
19474     
19475         // url (gfm)
19476         if (!this.inLink && (cap = this.rules.url.exec(src))) {
19477           src = src.substring(cap[0].length);
19478           text = escape(cap[1]);
19479           href = text;
19480           out += this.renderer.link(href, null, text);
19481           continue;
19482         }
19483     
19484         // tag
19485         if (cap = this.rules.tag.exec(src)) {
19486           if (!this.inLink && /^<a /i.test(cap[0])) {
19487             this.inLink = true;
19488           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
19489             this.inLink = false;
19490           }
19491           src = src.substring(cap[0].length);
19492           out += this.options.sanitize
19493             ? this.options.sanitizer
19494               ? this.options.sanitizer(cap[0])
19495               : escape(cap[0])
19496             : cap[0];
19497           continue;
19498         }
19499     
19500         // link
19501         if (cap = this.rules.link.exec(src)) {
19502           src = src.substring(cap[0].length);
19503           this.inLink = true;
19504           out += this.outputLink(cap, {
19505             href: cap[2],
19506             title: cap[3]
19507           });
19508           this.inLink = false;
19509           continue;
19510         }
19511     
19512         // reflink, nolink
19513         if ((cap = this.rules.reflink.exec(src))
19514             || (cap = this.rules.nolink.exec(src))) {
19515           src = src.substring(cap[0].length);
19516           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
19517           link = this.links[link.toLowerCase()];
19518           if (!link || !link.href) {
19519             out += cap[0].charAt(0);
19520             src = cap[0].substring(1) + src;
19521             continue;
19522           }
19523           this.inLink = true;
19524           out += this.outputLink(cap, link);
19525           this.inLink = false;
19526           continue;
19527         }
19528     
19529         // strong
19530         if (cap = this.rules.strong.exec(src)) {
19531           src = src.substring(cap[0].length);
19532           out += this.renderer.strong(this.output(cap[2] || cap[1]));
19533           continue;
19534         }
19535     
19536         // em
19537         if (cap = this.rules.em.exec(src)) {
19538           src = src.substring(cap[0].length);
19539           out += this.renderer.em(this.output(cap[2] || cap[1]));
19540           continue;
19541         }
19542     
19543         // code
19544         if (cap = this.rules.code.exec(src)) {
19545           src = src.substring(cap[0].length);
19546           out += this.renderer.codespan(escape(cap[2], true));
19547           continue;
19548         }
19549     
19550         // br
19551         if (cap = this.rules.br.exec(src)) {
19552           src = src.substring(cap[0].length);
19553           out += this.renderer.br();
19554           continue;
19555         }
19556     
19557         // del (gfm)
19558         if (cap = this.rules.del.exec(src)) {
19559           src = src.substring(cap[0].length);
19560           out += this.renderer.del(this.output(cap[1]));
19561           continue;
19562         }
19563     
19564         // text
19565         if (cap = this.rules.text.exec(src)) {
19566           src = src.substring(cap[0].length);
19567           out += this.renderer.text(escape(this.smartypants(cap[0])));
19568           continue;
19569         }
19570     
19571         if (src) {
19572           throw new
19573             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19574         }
19575       }
19576     
19577       return out;
19578     };
19579     
19580     /**
19581      * Compile Link
19582      */
19583     
19584     InlineLexer.prototype.outputLink = function(cap, link) {
19585       var href = escape(link.href)
19586         , title = link.title ? escape(link.title) : null;
19587     
19588       return cap[0].charAt(0) !== '!'
19589         ? this.renderer.link(href, title, this.output(cap[1]))
19590         : this.renderer.image(href, title, escape(cap[1]));
19591     };
19592     
19593     /**
19594      * Smartypants Transformations
19595      */
19596     
19597     InlineLexer.prototype.smartypants = function(text) {
19598       if (!this.options.smartypants)  { return text; }
19599       return text
19600         // em-dashes
19601         .replace(/---/g, '\u2014')
19602         // en-dashes
19603         .replace(/--/g, '\u2013')
19604         // opening singles
19605         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
19606         // closing singles & apostrophes
19607         .replace(/'/g, '\u2019')
19608         // opening doubles
19609         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
19610         // closing doubles
19611         .replace(/"/g, '\u201d')
19612         // ellipses
19613         .replace(/\.{3}/g, '\u2026');
19614     };
19615     
19616     /**
19617      * Mangle Links
19618      */
19619     
19620     InlineLexer.prototype.mangle = function(text) {
19621       if (!this.options.mangle) { return text; }
19622       var out = ''
19623         , l = text.length
19624         , i = 0
19625         , ch;
19626     
19627       for (; i < l; i++) {
19628         ch = text.charCodeAt(i);
19629         if (Math.random() > 0.5) {
19630           ch = 'x' + ch.toString(16);
19631         }
19632         out += '&#' + ch + ';';
19633       }
19634     
19635       return out;
19636     };
19637     
19638     /**
19639      * Renderer
19640      */
19641     
19642      /**
19643          * eval:var:Renderer
19644     */
19645     
19646     var Renderer   = function (options) {
19647       this.options = options || {};
19648     }
19649     
19650     Renderer.prototype.code = function(code, lang, escaped) {
19651       if (this.options.highlight) {
19652         var out = this.options.highlight(code, lang);
19653         if (out != null && out !== code) {
19654           escaped = true;
19655           code = out;
19656         }
19657       } else {
19658             // hack!!! - it's already escapeD?
19659             escaped = true;
19660       }
19661     
19662       if (!lang) {
19663         return '<pre><code>'
19664           + (escaped ? code : escape(code, true))
19665           + '\n</code></pre>';
19666       }
19667     
19668       return '<pre><code class="'
19669         + this.options.langPrefix
19670         + escape(lang, true)
19671         + '">'
19672         + (escaped ? code : escape(code, true))
19673         + '\n</code></pre>\n';
19674     };
19675     
19676     Renderer.prototype.blockquote = function(quote) {
19677       return '<blockquote>\n' + quote + '</blockquote>\n';
19678     };
19679     
19680     Renderer.prototype.html = function(html) {
19681       return html;
19682     };
19683     
19684     Renderer.prototype.heading = function(text, level, raw) {
19685       return '<h'
19686         + level
19687         + ' id="'
19688         + this.options.headerPrefix
19689         + raw.toLowerCase().replace(/[^\w]+/g, '-')
19690         + '">'
19691         + text
19692         + '</h'
19693         + level
19694         + '>\n';
19695     };
19696     
19697     Renderer.prototype.hr = function() {
19698       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
19699     };
19700     
19701     Renderer.prototype.list = function(body, ordered) {
19702       var type = ordered ? 'ol' : 'ul';
19703       return '<' + type + '>\n' + body + '</' + type + '>\n';
19704     };
19705     
19706     Renderer.prototype.listitem = function(text) {
19707       return '<li>' + text + '</li>\n';
19708     };
19709     
19710     Renderer.prototype.paragraph = function(text) {
19711       return '<p>' + text + '</p>\n';
19712     };
19713     
19714     Renderer.prototype.table = function(header, body) {
19715       return '<table class="table table-striped">\n'
19716         + '<thead>\n'
19717         + header
19718         + '</thead>\n'
19719         + '<tbody>\n'
19720         + body
19721         + '</tbody>\n'
19722         + '</table>\n';
19723     };
19724     
19725     Renderer.prototype.tablerow = function(content) {
19726       return '<tr>\n' + content + '</tr>\n';
19727     };
19728     
19729     Renderer.prototype.tablecell = function(content, flags) {
19730       var type = flags.header ? 'th' : 'td';
19731       var tag = flags.align
19732         ? '<' + type + ' style="text-align:' + flags.align + '">'
19733         : '<' + type + '>';
19734       return tag + content + '</' + type + '>\n';
19735     };
19736     
19737     // span level renderer
19738     Renderer.prototype.strong = function(text) {
19739       return '<strong>' + text + '</strong>';
19740     };
19741     
19742     Renderer.prototype.em = function(text) {
19743       return '<em>' + text + '</em>';
19744     };
19745     
19746     Renderer.prototype.codespan = function(text) {
19747       return '<code>' + text + '</code>';
19748     };
19749     
19750     Renderer.prototype.br = function() {
19751       return this.options.xhtml ? '<br/>' : '<br>';
19752     };
19753     
19754     Renderer.prototype.del = function(text) {
19755       return '<del>' + text + '</del>';
19756     };
19757     
19758     Renderer.prototype.link = function(href, title, text) {
19759       if (this.options.sanitize) {
19760         try {
19761           var prot = decodeURIComponent(unescape(href))
19762             .replace(/[^\w:]/g, '')
19763             .toLowerCase();
19764         } catch (e) {
19765           return '';
19766         }
19767         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
19768           return '';
19769         }
19770       }
19771       var out = '<a href="' + href + '"';
19772       if (title) {
19773         out += ' title="' + title + '"';
19774       }
19775       out += '>' + text + '</a>';
19776       return out;
19777     };
19778     
19779     Renderer.prototype.image = function(href, title, text) {
19780       var out = '<img src="' + href + '" alt="' + text + '"';
19781       if (title) {
19782         out += ' title="' + title + '"';
19783       }
19784       out += this.options.xhtml ? '/>' : '>';
19785       return out;
19786     };
19787     
19788     Renderer.prototype.text = function(text) {
19789       return text;
19790     };
19791     
19792     /**
19793      * Parsing & Compiling
19794      */
19795          /**
19796          * eval:var:Parser
19797     */
19798     
19799     var Parser= function (options) {
19800       this.tokens = [];
19801       this.token = null;
19802       this.options = options || marked.defaults;
19803       this.options.renderer = this.options.renderer || new Renderer;
19804       this.renderer = this.options.renderer;
19805       this.renderer.options = this.options;
19806     }
19807     
19808     /**
19809      * Static Parse Method
19810      */
19811     
19812     Parser.parse = function(src, options, renderer) {
19813       var parser = new Parser(options, renderer);
19814       return parser.parse(src);
19815     };
19816     
19817     /**
19818      * Parse Loop
19819      */
19820     
19821     Parser.prototype.parse = function(src) {
19822       this.inline = new InlineLexer(src.links, this.options, this.renderer);
19823       this.tokens = src.reverse();
19824     
19825       var out = '';
19826       while (this.next()) {
19827         out += this.tok();
19828       }
19829     
19830       return out;
19831     };
19832     
19833     /**
19834      * Next Token
19835      */
19836     
19837     Parser.prototype.next = function() {
19838       return this.token = this.tokens.pop();
19839     };
19840     
19841     /**
19842      * Preview Next Token
19843      */
19844     
19845     Parser.prototype.peek = function() {
19846       return this.tokens[this.tokens.length - 1] || 0;
19847     };
19848     
19849     /**
19850      * Parse Text Tokens
19851      */
19852     
19853     Parser.prototype.parseText = function() {
19854       var body = this.token.text;
19855     
19856       while (this.peek().type === 'text') {
19857         body += '\n' + this.next().text;
19858       }
19859     
19860       return this.inline.output(body);
19861     };
19862     
19863     /**
19864      * Parse Current Token
19865      */
19866     
19867     Parser.prototype.tok = function() {
19868       switch (this.token.type) {
19869         case 'space': {
19870           return '';
19871         }
19872         case 'hr': {
19873           return this.renderer.hr();
19874         }
19875         case 'heading': {
19876           return this.renderer.heading(
19877             this.inline.output(this.token.text),
19878             this.token.depth,
19879             this.token.text);
19880         }
19881         case 'code': {
19882           return this.renderer.code(this.token.text,
19883             this.token.lang,
19884             this.token.escaped);
19885         }
19886         case 'table': {
19887           var header = ''
19888             , body = ''
19889             , i
19890             , row
19891             , cell
19892             , flags
19893             , j;
19894     
19895           // header
19896           cell = '';
19897           for (i = 0; i < this.token.header.length; i++) {
19898             flags = { header: true, align: this.token.align[i] };
19899             cell += this.renderer.tablecell(
19900               this.inline.output(this.token.header[i]),
19901               { header: true, align: this.token.align[i] }
19902             );
19903           }
19904           header += this.renderer.tablerow(cell);
19905     
19906           for (i = 0; i < this.token.cells.length; i++) {
19907             row = this.token.cells[i];
19908     
19909             cell = '';
19910             for (j = 0; j < row.length; j++) {
19911               cell += this.renderer.tablecell(
19912                 this.inline.output(row[j]),
19913                 { header: false, align: this.token.align[j] }
19914               );
19915             }
19916     
19917             body += this.renderer.tablerow(cell);
19918           }
19919           return this.renderer.table(header, body);
19920         }
19921         case 'blockquote_start': {
19922           var body = '';
19923     
19924           while (this.next().type !== 'blockquote_end') {
19925             body += this.tok();
19926           }
19927     
19928           return this.renderer.blockquote(body);
19929         }
19930         case 'list_start': {
19931           var body = ''
19932             , ordered = this.token.ordered;
19933     
19934           while (this.next().type !== 'list_end') {
19935             body += this.tok();
19936           }
19937     
19938           return this.renderer.list(body, ordered);
19939         }
19940         case 'list_item_start': {
19941           var body = '';
19942     
19943           while (this.next().type !== 'list_item_end') {
19944             body += this.token.type === 'text'
19945               ? this.parseText()
19946               : this.tok();
19947           }
19948     
19949           return this.renderer.listitem(body);
19950         }
19951         case 'loose_item_start': {
19952           var body = '';
19953     
19954           while (this.next().type !== 'list_item_end') {
19955             body += this.tok();
19956           }
19957     
19958           return this.renderer.listitem(body);
19959         }
19960         case 'html': {
19961           var html = !this.token.pre && !this.options.pedantic
19962             ? this.inline.output(this.token.text)
19963             : this.token.text;
19964           return this.renderer.html(html);
19965         }
19966         case 'paragraph': {
19967           return this.renderer.paragraph(this.inline.output(this.token.text));
19968         }
19969         case 'text': {
19970           return this.renderer.paragraph(this.parseText());
19971         }
19972       }
19973     };
19974   
19975     
19976     /**
19977      * Marked
19978      */
19979          /**
19980          * eval:var:marked
19981     */
19982     var marked = function (src, opt, callback) {
19983       if (callback || typeof opt === 'function') {
19984         if (!callback) {
19985           callback = opt;
19986           opt = null;
19987         }
19988     
19989         opt = merge({}, marked.defaults, opt || {});
19990     
19991         var highlight = opt.highlight
19992           , tokens
19993           , pending
19994           , i = 0;
19995     
19996         try {
19997           tokens = Lexer.lex(src, opt)
19998         } catch (e) {
19999           return callback(e);
20000         }
20001     
20002         pending = tokens.length;
20003          /**
20004          * eval:var:done
20005     */
20006         var done = function(err) {
20007           if (err) {
20008             opt.highlight = highlight;
20009             return callback(err);
20010           }
20011     
20012           var out;
20013     
20014           try {
20015             out = Parser.parse(tokens, opt);
20016           } catch (e) {
20017             err = e;
20018           }
20019     
20020           opt.highlight = highlight;
20021     
20022           return err
20023             ? callback(err)
20024             : callback(null, out);
20025         };
20026     
20027         if (!highlight || highlight.length < 3) {
20028           return done();
20029         }
20030     
20031         delete opt.highlight;
20032     
20033         if (!pending) { return done(); }
20034     
20035         for (; i < tokens.length; i++) {
20036           (function(token) {
20037             if (token.type !== 'code') {
20038               return --pending || done();
20039             }
20040             return highlight(token.text, token.lang, function(err, code) {
20041               if (err) { return done(err); }
20042               if (code == null || code === token.text) {
20043                 return --pending || done();
20044               }
20045               token.text = code;
20046               token.escaped = true;
20047               --pending || done();
20048             });
20049           })(tokens[i]);
20050         }
20051     
20052         return;
20053       }
20054       try {
20055         if (opt) { opt = merge({}, marked.defaults, opt); }
20056         return Parser.parse(Lexer.lex(src, opt), opt);
20057       } catch (e) {
20058         e.message += '\nPlease report this to https://github.com/chjj/marked.';
20059         if ((opt || marked.defaults).silent) {
20060           return '<p>An error occured:</p><pre>'
20061             + escape(e.message + '', true)
20062             + '</pre>';
20063         }
20064         throw e;
20065       }
20066     }
20067     
20068     /**
20069      * Options
20070      */
20071     
20072     marked.options =
20073     marked.setOptions = function(opt) {
20074       merge(marked.defaults, opt);
20075       return marked;
20076     };
20077     
20078     marked.defaults = {
20079       gfm: true,
20080       tables: true,
20081       breaks: false,
20082       pedantic: false,
20083       sanitize: false,
20084       sanitizer: null,
20085       mangle: true,
20086       smartLists: false,
20087       silent: false,
20088       highlight: null,
20089       langPrefix: 'lang-',
20090       smartypants: false,
20091       headerPrefix: '',
20092       renderer: new Renderer,
20093       xhtml: false
20094     };
20095     
20096     /**
20097      * Expose
20098      */
20099     
20100     marked.Parser = Parser;
20101     marked.parser = Parser.parse;
20102     
20103     marked.Renderer = Renderer;
20104     
20105     marked.Lexer = Lexer;
20106     marked.lexer = Lexer.lex;
20107     
20108     marked.InlineLexer = InlineLexer;
20109     marked.inlineLexer = InlineLexer.output;
20110     
20111     marked.parse = marked;
20112     
20113     Roo.Markdown.marked = marked;
20114
20115 })();/*
20116  * Based on:
20117  * Ext JS Library 1.1.1
20118  * Copyright(c) 2006-2007, Ext JS, LLC.
20119  *
20120  * Originally Released Under LGPL - original licence link has changed is not relivant.
20121  *
20122  * Fork - LGPL
20123  * <script type="text/javascript">
20124  */
20125
20126
20127
20128 /*
20129  * These classes are derivatives of the similarly named classes in the YUI Library.
20130  * The original license:
20131  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
20132  * Code licensed under the BSD License:
20133  * http://developer.yahoo.net/yui/license.txt
20134  */
20135
20136 (function() {
20137
20138 var Event=Roo.EventManager;
20139 var Dom=Roo.lib.Dom;
20140
20141 /**
20142  * @class Roo.dd.DragDrop
20143  * @extends Roo.util.Observable
20144  * Defines the interface and base operation of items that that can be
20145  * dragged or can be drop targets.  It was designed to be extended, overriding
20146  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
20147  * Up to three html elements can be associated with a DragDrop instance:
20148  * <ul>
20149  * <li>linked element: the element that is passed into the constructor.
20150  * This is the element which defines the boundaries for interaction with
20151  * other DragDrop objects.</li>
20152  * <li>handle element(s): The drag operation only occurs if the element that
20153  * was clicked matches a handle element.  By default this is the linked
20154  * element, but there are times that you will want only a portion of the
20155  * linked element to initiate the drag operation, and the setHandleElId()
20156  * method provides a way to define this.</li>
20157  * <li>drag element: this represents the element that would be moved along
20158  * with the cursor during a drag operation.  By default, this is the linked
20159  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
20160  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
20161  * </li>
20162  * </ul>
20163  * This class should not be instantiated until the onload event to ensure that
20164  * the associated elements are available.
20165  * The following would define a DragDrop obj that would interact with any
20166  * other DragDrop obj in the "group1" group:
20167  * <pre>
20168  *  dd = new Roo.dd.DragDrop("div1", "group1");
20169  * </pre>
20170  * Since none of the event handlers have been implemented, nothing would
20171  * actually happen if you were to run the code above.  Normally you would
20172  * override this class or one of the default implementations, but you can
20173  * also override the methods you want on an instance of the class...
20174  * <pre>
20175  *  dd.onDragDrop = function(e, id) {
20176  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
20177  *  }
20178  * </pre>
20179  * @constructor
20180  * @param {String} id of the element that is linked to this instance
20181  * @param {String} sGroup the group of related DragDrop objects
20182  * @param {object} config an object containing configurable attributes
20183  *                Valid properties for DragDrop:
20184  *                    padding, isTarget, maintainOffset, primaryButtonOnly
20185  */
20186 Roo.dd.DragDrop = function(id, sGroup, config) {
20187     if (id) {
20188         this.init(id, sGroup, config);
20189     }
20190     
20191 };
20192
20193 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
20194
20195     /**
20196      * The id of the element associated with this object.  This is what we
20197      * refer to as the "linked element" because the size and position of
20198      * this element is used to determine when the drag and drop objects have
20199      * interacted.
20200      * @property id
20201      * @type String
20202      */
20203     id: null,
20204
20205     /**
20206      * Configuration attributes passed into the constructor
20207      * @property config
20208      * @type object
20209      */
20210     config: null,
20211
20212     /**
20213      * The id of the element that will be dragged.  By default this is same
20214      * as the linked element , but could be changed to another element. Ex:
20215      * Roo.dd.DDProxy
20216      * @property dragElId
20217      * @type String
20218      * @private
20219      */
20220     dragElId: null,
20221
20222     /**
20223      * the id of the element that initiates the drag operation.  By default
20224      * this is the linked element, but could be changed to be a child of this
20225      * element.  This lets us do things like only starting the drag when the
20226      * header element within the linked html element is clicked.
20227      * @property handleElId
20228      * @type String
20229      * @private
20230      */
20231     handleElId: null,
20232
20233     /**
20234      * An associative array of HTML tags that will be ignored if clicked.
20235      * @property invalidHandleTypes
20236      * @type {string: string}
20237      */
20238     invalidHandleTypes: null,
20239
20240     /**
20241      * An associative array of ids for elements that will be ignored if clicked
20242      * @property invalidHandleIds
20243      * @type {string: string}
20244      */
20245     invalidHandleIds: null,
20246
20247     /**
20248      * An indexted array of css class names for elements that will be ignored
20249      * if clicked.
20250      * @property invalidHandleClasses
20251      * @type string[]
20252      */
20253     invalidHandleClasses: null,
20254
20255     /**
20256      * The linked element's absolute X position at the time the drag was
20257      * started
20258      * @property startPageX
20259      * @type int
20260      * @private
20261      */
20262     startPageX: 0,
20263
20264     /**
20265      * The linked element's absolute X position at the time the drag was
20266      * started
20267      * @property startPageY
20268      * @type int
20269      * @private
20270      */
20271     startPageY: 0,
20272
20273     /**
20274      * The group defines a logical collection of DragDrop objects that are
20275      * related.  Instances only get events when interacting with other
20276      * DragDrop object in the same group.  This lets us define multiple
20277      * groups using a single DragDrop subclass if we want.
20278      * @property groups
20279      * @type {string: string}
20280      */
20281     groups: null,
20282
20283     /**
20284      * Individual drag/drop instances can be locked.  This will prevent
20285      * onmousedown start drag.
20286      * @property locked
20287      * @type boolean
20288      * @private
20289      */
20290     locked: false,
20291
20292     /**
20293      * Lock this instance
20294      * @method lock
20295      */
20296     lock: function() { this.locked = true; },
20297
20298     /**
20299      * Unlock this instace
20300      * @method unlock
20301      */
20302     unlock: function() { this.locked = false; },
20303
20304     /**
20305      * By default, all insances can be a drop target.  This can be disabled by
20306      * setting isTarget to false.
20307      * @method isTarget
20308      * @type boolean
20309      */
20310     isTarget: true,
20311
20312     /**
20313      * The padding configured for this drag and drop object for calculating
20314      * the drop zone intersection with this object.
20315      * @method padding
20316      * @type int[]
20317      */
20318     padding: null,
20319
20320     /**
20321      * Cached reference to the linked element
20322      * @property _domRef
20323      * @private
20324      */
20325     _domRef: null,
20326
20327     /**
20328      * Internal typeof flag
20329      * @property __ygDragDrop
20330      * @private
20331      */
20332     __ygDragDrop: true,
20333
20334     /**
20335      * Set to true when horizontal contraints are applied
20336      * @property constrainX
20337      * @type boolean
20338      * @private
20339      */
20340     constrainX: false,
20341
20342     /**
20343      * Set to true when vertical contraints are applied
20344      * @property constrainY
20345      * @type boolean
20346      * @private
20347      */
20348     constrainY: false,
20349
20350     /**
20351      * The left constraint
20352      * @property minX
20353      * @type int
20354      * @private
20355      */
20356     minX: 0,
20357
20358     /**
20359      * The right constraint
20360      * @property maxX
20361      * @type int
20362      * @private
20363      */
20364     maxX: 0,
20365
20366     /**
20367      * The up constraint
20368      * @property minY
20369      * @type int
20370      * @type int
20371      * @private
20372      */
20373     minY: 0,
20374
20375     /**
20376      * The down constraint
20377      * @property maxY
20378      * @type int
20379      * @private
20380      */
20381     maxY: 0,
20382
20383     /**
20384      * Maintain offsets when we resetconstraints.  Set to true when you want
20385      * the position of the element relative to its parent to stay the same
20386      * when the page changes
20387      *
20388      * @property maintainOffset
20389      * @type boolean
20390      */
20391     maintainOffset: false,
20392
20393     /**
20394      * Array of pixel locations the element will snap to if we specified a
20395      * horizontal graduation/interval.  This array is generated automatically
20396      * when you define a tick interval.
20397      * @property xTicks
20398      * @type int[]
20399      */
20400     xTicks: null,
20401
20402     /**
20403      * Array of pixel locations the element will snap to if we specified a
20404      * vertical graduation/interval.  This array is generated automatically
20405      * when you define a tick interval.
20406      * @property yTicks
20407      * @type int[]
20408      */
20409     yTicks: null,
20410
20411     /**
20412      * By default the drag and drop instance will only respond to the primary
20413      * button click (left button for a right-handed mouse).  Set to true to
20414      * allow drag and drop to start with any mouse click that is propogated
20415      * by the browser
20416      * @property primaryButtonOnly
20417      * @type boolean
20418      */
20419     primaryButtonOnly: true,
20420
20421     /**
20422      * The availabe property is false until the linked dom element is accessible.
20423      * @property available
20424      * @type boolean
20425      */
20426     available: false,
20427
20428     /**
20429      * By default, drags can only be initiated if the mousedown occurs in the
20430      * region the linked element is.  This is done in part to work around a
20431      * bug in some browsers that mis-report the mousedown if the previous
20432      * mouseup happened outside of the window.  This property is set to true
20433      * if outer handles are defined.
20434      *
20435      * @property hasOuterHandles
20436      * @type boolean
20437      * @default false
20438      */
20439     hasOuterHandles: false,
20440
20441     /**
20442      * Code that executes immediately before the startDrag event
20443      * @method b4StartDrag
20444      * @private
20445      */
20446     b4StartDrag: function(x, y) { },
20447
20448     /**
20449      * Abstract method called after a drag/drop object is clicked
20450      * and the drag or mousedown time thresholds have beeen met.
20451      * @method startDrag
20452      * @param {int} X click location
20453      * @param {int} Y click location
20454      */
20455     startDrag: function(x, y) { /* override this */ },
20456
20457     /**
20458      * Code that executes immediately before the onDrag event
20459      * @method b4Drag
20460      * @private
20461      */
20462     b4Drag: function(e) { },
20463
20464     /**
20465      * Abstract method called during the onMouseMove event while dragging an
20466      * object.
20467      * @method onDrag
20468      * @param {Event} e the mousemove event
20469      */
20470     onDrag: function(e) { /* override this */ },
20471
20472     /**
20473      * Abstract method called when this element fist begins hovering over
20474      * another DragDrop obj
20475      * @method onDragEnter
20476      * @param {Event} e the mousemove event
20477      * @param {String|DragDrop[]} id In POINT mode, the element
20478      * id this is hovering over.  In INTERSECT mode, an array of one or more
20479      * dragdrop items being hovered over.
20480      */
20481     onDragEnter: function(e, id) { /* override this */ },
20482
20483     /**
20484      * Code that executes immediately before the onDragOver event
20485      * @method b4DragOver
20486      * @private
20487      */
20488     b4DragOver: function(e) { },
20489
20490     /**
20491      * Abstract method called when this element is hovering over another
20492      * DragDrop obj
20493      * @method onDragOver
20494      * @param {Event} e the mousemove event
20495      * @param {String|DragDrop[]} id In POINT mode, the element
20496      * id this is hovering over.  In INTERSECT mode, an array of dd items
20497      * being hovered over.
20498      */
20499     onDragOver: function(e, id) { /* override this */ },
20500
20501     /**
20502      * Code that executes immediately before the onDragOut event
20503      * @method b4DragOut
20504      * @private
20505      */
20506     b4DragOut: function(e) { },
20507
20508     /**
20509      * Abstract method called when we are no longer hovering over an element
20510      * @method onDragOut
20511      * @param {Event} e the mousemove event
20512      * @param {String|DragDrop[]} id In POINT mode, the element
20513      * id this was hovering over.  In INTERSECT mode, an array of dd items
20514      * that the mouse is no longer over.
20515      */
20516     onDragOut: function(e, id) { /* override this */ },
20517
20518     /**
20519      * Code that executes immediately before the onDragDrop event
20520      * @method b4DragDrop
20521      * @private
20522      */
20523     b4DragDrop: function(e) { },
20524
20525     /**
20526      * Abstract method called when this item is dropped on another DragDrop
20527      * obj
20528      * @method onDragDrop
20529      * @param {Event} e the mouseup event
20530      * @param {String|DragDrop[]} id In POINT mode, the element
20531      * id this was dropped on.  In INTERSECT mode, an array of dd items this
20532      * was dropped on.
20533      */
20534     onDragDrop: function(e, id) { /* override this */ },
20535
20536     /**
20537      * Abstract method called when this item is dropped on an area with no
20538      * drop target
20539      * @method onInvalidDrop
20540      * @param {Event} e the mouseup event
20541      */
20542     onInvalidDrop: function(e) { /* override this */ },
20543
20544     /**
20545      * Code that executes immediately before the endDrag event
20546      * @method b4EndDrag
20547      * @private
20548      */
20549     b4EndDrag: function(e) { },
20550
20551     /**
20552      * Fired when we are done dragging the object
20553      * @method endDrag
20554      * @param {Event} e the mouseup event
20555      */
20556     endDrag: function(e) { /* override this */ },
20557
20558     /**
20559      * Code executed immediately before the onMouseDown event
20560      * @method b4MouseDown
20561      * @param {Event} e the mousedown event
20562      * @private
20563      */
20564     b4MouseDown: function(e) {  },
20565
20566     /**
20567      * Event handler that fires when a drag/drop obj gets a mousedown
20568      * @method onMouseDown
20569      * @param {Event} e the mousedown event
20570      */
20571     onMouseDown: function(e) { /* override this */ },
20572
20573     /**
20574      * Event handler that fires when a drag/drop obj gets a mouseup
20575      * @method onMouseUp
20576      * @param {Event} e the mouseup event
20577      */
20578     onMouseUp: function(e) { /* override this */ },
20579
20580     /**
20581      * Override the onAvailable method to do what is needed after the initial
20582      * position was determined.
20583      * @method onAvailable
20584      */
20585     onAvailable: function () {
20586     },
20587
20588     /*
20589      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
20590      * @type Object
20591      */
20592     defaultPadding : {left:0, right:0, top:0, bottom:0},
20593
20594     /*
20595      * Initializes the drag drop object's constraints to restrict movement to a certain element.
20596  *
20597  * Usage:
20598  <pre><code>
20599  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
20600                 { dragElId: "existingProxyDiv" });
20601  dd.startDrag = function(){
20602      this.constrainTo("parent-id");
20603  };
20604  </code></pre>
20605  * Or you can initalize it using the {@link Roo.Element} object:
20606  <pre><code>
20607  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
20608      startDrag : function(){
20609          this.constrainTo("parent-id");
20610      }
20611  });
20612  </code></pre>
20613      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
20614      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
20615      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
20616      * an object containing the sides to pad. For example: {right:10, bottom:10}
20617      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
20618      */
20619     constrainTo : function(constrainTo, pad, inContent){
20620         if(typeof pad == "number"){
20621             pad = {left: pad, right:pad, top:pad, bottom:pad};
20622         }
20623         pad = pad || this.defaultPadding;
20624         var b = Roo.get(this.getEl()).getBox();
20625         var ce = Roo.get(constrainTo);
20626         var s = ce.getScroll();
20627         var c, cd = ce.dom;
20628         if(cd == document.body){
20629             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
20630         }else{
20631             xy = ce.getXY();
20632             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
20633         }
20634
20635
20636         var topSpace = b.y - c.y;
20637         var leftSpace = b.x - c.x;
20638
20639         this.resetConstraints();
20640         this.setXConstraint(leftSpace - (pad.left||0), // left
20641                 c.width - leftSpace - b.width - (pad.right||0) //right
20642         );
20643         this.setYConstraint(topSpace - (pad.top||0), //top
20644                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
20645         );
20646     },
20647
20648     /**
20649      * Returns a reference to the linked element
20650      * @method getEl
20651      * @return {HTMLElement} the html element
20652      */
20653     getEl: function() {
20654         if (!this._domRef) {
20655             this._domRef = Roo.getDom(this.id);
20656         }
20657
20658         return this._domRef;
20659     },
20660
20661     /**
20662      * Returns a reference to the actual element to drag.  By default this is
20663      * the same as the html element, but it can be assigned to another
20664      * element. An example of this can be found in Roo.dd.DDProxy
20665      * @method getDragEl
20666      * @return {HTMLElement} the html element
20667      */
20668     getDragEl: function() {
20669         return Roo.getDom(this.dragElId);
20670     },
20671
20672     /**
20673      * Sets up the DragDrop object.  Must be called in the constructor of any
20674      * Roo.dd.DragDrop subclass
20675      * @method init
20676      * @param id the id of the linked element
20677      * @param {String} sGroup the group of related items
20678      * @param {object} config configuration attributes
20679      */
20680     init: function(id, sGroup, config) {
20681         this.initTarget(id, sGroup, config);
20682         if (!Roo.isTouch) {
20683             Event.on(this.id, "mousedown", this.handleMouseDown, this);
20684         }
20685         Event.on(this.id, "touchstart", this.handleMouseDown, this);
20686         // Event.on(this.id, "selectstart", Event.preventDefault);
20687     },
20688
20689     /**
20690      * Initializes Targeting functionality only... the object does not
20691      * get a mousedown handler.
20692      * @method initTarget
20693      * @param id the id of the linked element
20694      * @param {String} sGroup the group of related items
20695      * @param {object} config configuration attributes
20696      */
20697     initTarget: function(id, sGroup, config) {
20698
20699         // configuration attributes
20700         this.config = config || {};
20701
20702         // create a local reference to the drag and drop manager
20703         this.DDM = Roo.dd.DDM;
20704         // initialize the groups array
20705         this.groups = {};
20706
20707         // assume that we have an element reference instead of an id if the
20708         // parameter is not a string
20709         if (typeof id !== "string") {
20710             id = Roo.id(id);
20711         }
20712
20713         // set the id
20714         this.id = id;
20715
20716         // add to an interaction group
20717         this.addToGroup((sGroup) ? sGroup : "default");
20718
20719         // We don't want to register this as the handle with the manager
20720         // so we just set the id rather than calling the setter.
20721         this.handleElId = id;
20722
20723         // the linked element is the element that gets dragged by default
20724         this.setDragElId(id);
20725
20726         // by default, clicked anchors will not start drag operations.
20727         this.invalidHandleTypes = { A: "A" };
20728         this.invalidHandleIds = {};
20729         this.invalidHandleClasses = [];
20730
20731         this.applyConfig();
20732
20733         this.handleOnAvailable();
20734     },
20735
20736     /**
20737      * Applies the configuration parameters that were passed into the constructor.
20738      * This is supposed to happen at each level through the inheritance chain.  So
20739      * a DDProxy implentation will execute apply config on DDProxy, DD, and
20740      * DragDrop in order to get all of the parameters that are available in
20741      * each object.
20742      * @method applyConfig
20743      */
20744     applyConfig: function() {
20745
20746         // configurable properties:
20747         //    padding, isTarget, maintainOffset, primaryButtonOnly
20748         this.padding           = this.config.padding || [0, 0, 0, 0];
20749         this.isTarget          = (this.config.isTarget !== false);
20750         this.maintainOffset    = (this.config.maintainOffset);
20751         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
20752
20753     },
20754
20755     /**
20756      * Executed when the linked element is available
20757      * @method handleOnAvailable
20758      * @private
20759      */
20760     handleOnAvailable: function() {
20761         this.available = true;
20762         this.resetConstraints();
20763         this.onAvailable();
20764     },
20765
20766      /**
20767      * Configures the padding for the target zone in px.  Effectively expands
20768      * (or reduces) the virtual object size for targeting calculations.
20769      * Supports css-style shorthand; if only one parameter is passed, all sides
20770      * will have that padding, and if only two are passed, the top and bottom
20771      * will have the first param, the left and right the second.
20772      * @method setPadding
20773      * @param {int} iTop    Top pad
20774      * @param {int} iRight  Right pad
20775      * @param {int} iBot    Bot pad
20776      * @param {int} iLeft   Left pad
20777      */
20778     setPadding: function(iTop, iRight, iBot, iLeft) {
20779         // this.padding = [iLeft, iRight, iTop, iBot];
20780         if (!iRight && 0 !== iRight) {
20781             this.padding = [iTop, iTop, iTop, iTop];
20782         } else if (!iBot && 0 !== iBot) {
20783             this.padding = [iTop, iRight, iTop, iRight];
20784         } else {
20785             this.padding = [iTop, iRight, iBot, iLeft];
20786         }
20787     },
20788
20789     /**
20790      * Stores the initial placement of the linked element.
20791      * @method setInitialPosition
20792      * @param {int} diffX   the X offset, default 0
20793      * @param {int} diffY   the Y offset, default 0
20794      */
20795     setInitPosition: function(diffX, diffY) {
20796         var el = this.getEl();
20797
20798         if (!this.DDM.verifyEl(el)) {
20799             return;
20800         }
20801
20802         var dx = diffX || 0;
20803         var dy = diffY || 0;
20804
20805         var p = Dom.getXY( el );
20806
20807         this.initPageX = p[0] - dx;
20808         this.initPageY = p[1] - dy;
20809
20810         this.lastPageX = p[0];
20811         this.lastPageY = p[1];
20812
20813
20814         this.setStartPosition(p);
20815     },
20816
20817     /**
20818      * Sets the start position of the element.  This is set when the obj
20819      * is initialized, the reset when a drag is started.
20820      * @method setStartPosition
20821      * @param pos current position (from previous lookup)
20822      * @private
20823      */
20824     setStartPosition: function(pos) {
20825         var p = pos || Dom.getXY( this.getEl() );
20826         this.deltaSetXY = null;
20827
20828         this.startPageX = p[0];
20829         this.startPageY = p[1];
20830     },
20831
20832     /**
20833      * Add this instance to a group of related drag/drop objects.  All
20834      * instances belong to at least one group, and can belong to as many
20835      * groups as needed.
20836      * @method addToGroup
20837      * @param sGroup {string} the name of the group
20838      */
20839     addToGroup: function(sGroup) {
20840         this.groups[sGroup] = true;
20841         this.DDM.regDragDrop(this, sGroup);
20842     },
20843
20844     /**
20845      * Remove's this instance from the supplied interaction group
20846      * @method removeFromGroup
20847      * @param {string}  sGroup  The group to drop
20848      */
20849     removeFromGroup: function(sGroup) {
20850         if (this.groups[sGroup]) {
20851             delete this.groups[sGroup];
20852         }
20853
20854         this.DDM.removeDDFromGroup(this, sGroup);
20855     },
20856
20857     /**
20858      * Allows you to specify that an element other than the linked element
20859      * will be moved with the cursor during a drag
20860      * @method setDragElId
20861      * @param id {string} the id of the element that will be used to initiate the drag
20862      */
20863     setDragElId: function(id) {
20864         this.dragElId = id;
20865     },
20866
20867     /**
20868      * Allows you to specify a child of the linked element that should be
20869      * used to initiate the drag operation.  An example of this would be if
20870      * you have a content div with text and links.  Clicking anywhere in the
20871      * content area would normally start the drag operation.  Use this method
20872      * to specify that an element inside of the content div is the element
20873      * that starts the drag operation.
20874      * @method setHandleElId
20875      * @param id {string} the id of the element that will be used to
20876      * initiate the drag.
20877      */
20878     setHandleElId: function(id) {
20879         if (typeof id !== "string") {
20880             id = Roo.id(id);
20881         }
20882         this.handleElId = id;
20883         this.DDM.regHandle(this.id, id);
20884     },
20885
20886     /**
20887      * Allows you to set an element outside of the linked element as a drag
20888      * handle
20889      * @method setOuterHandleElId
20890      * @param id the id of the element that will be used to initiate the drag
20891      */
20892     setOuterHandleElId: function(id) {
20893         if (typeof id !== "string") {
20894             id = Roo.id(id);
20895         }
20896         Event.on(id, "mousedown",
20897                 this.handleMouseDown, this);
20898         this.setHandleElId(id);
20899
20900         this.hasOuterHandles = true;
20901     },
20902
20903     /**
20904      * Remove all drag and drop hooks for this element
20905      * @method unreg
20906      */
20907     unreg: function() {
20908         Event.un(this.id, "mousedown",
20909                 this.handleMouseDown);
20910         Event.un(this.id, "touchstart",
20911                 this.handleMouseDown);
20912         this._domRef = null;
20913         this.DDM._remove(this);
20914     },
20915
20916     destroy : function(){
20917         this.unreg();
20918     },
20919
20920     /**
20921      * Returns true if this instance is locked, or the drag drop mgr is locked
20922      * (meaning that all drag/drop is disabled on the page.)
20923      * @method isLocked
20924      * @return {boolean} true if this obj or all drag/drop is locked, else
20925      * false
20926      */
20927     isLocked: function() {
20928         return (this.DDM.isLocked() || this.locked);
20929     },
20930
20931     /**
20932      * Fired when this object is clicked
20933      * @method handleMouseDown
20934      * @param {Event} e
20935      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
20936      * @private
20937      */
20938     handleMouseDown: function(e, oDD){
20939      
20940         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
20941             //Roo.log('not touch/ button !=0');
20942             return;
20943         }
20944         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
20945             return; // double touch..
20946         }
20947         
20948
20949         if (this.isLocked()) {
20950             //Roo.log('locked');
20951             return;
20952         }
20953
20954         this.DDM.refreshCache(this.groups);
20955 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
20956         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
20957         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
20958             //Roo.log('no outer handes or not over target');
20959                 // do nothing.
20960         } else {
20961 //            Roo.log('check validator');
20962             if (this.clickValidator(e)) {
20963 //                Roo.log('validate success');
20964                 // set the initial element position
20965                 this.setStartPosition();
20966
20967
20968                 this.b4MouseDown(e);
20969                 this.onMouseDown(e);
20970
20971                 this.DDM.handleMouseDown(e, this);
20972
20973                 this.DDM.stopEvent(e);
20974             } else {
20975
20976
20977             }
20978         }
20979     },
20980
20981     clickValidator: function(e) {
20982         var target = e.getTarget();
20983         return ( this.isValidHandleChild(target) &&
20984                     (this.id == this.handleElId ||
20985                         this.DDM.handleWasClicked(target, this.id)) );
20986     },
20987
20988     /**
20989      * Allows you to specify a tag name that should not start a drag operation
20990      * when clicked.  This is designed to facilitate embedding links within a
20991      * drag handle that do something other than start the drag.
20992      * @method addInvalidHandleType
20993      * @param {string} tagName the type of element to exclude
20994      */
20995     addInvalidHandleType: function(tagName) {
20996         var type = tagName.toUpperCase();
20997         this.invalidHandleTypes[type] = type;
20998     },
20999
21000     /**
21001      * Lets you to specify an element id for a child of a drag handle
21002      * that should not initiate a drag
21003      * @method addInvalidHandleId
21004      * @param {string} id the element id of the element you wish to ignore
21005      */
21006     addInvalidHandleId: function(id) {
21007         if (typeof id !== "string") {
21008             id = Roo.id(id);
21009         }
21010         this.invalidHandleIds[id] = id;
21011     },
21012
21013     /**
21014      * Lets you specify a css class of elements that will not initiate a drag
21015      * @method addInvalidHandleClass
21016      * @param {string} cssClass the class of the elements you wish to ignore
21017      */
21018     addInvalidHandleClass: function(cssClass) {
21019         this.invalidHandleClasses.push(cssClass);
21020     },
21021
21022     /**
21023      * Unsets an excluded tag name set by addInvalidHandleType
21024      * @method removeInvalidHandleType
21025      * @param {string} tagName the type of element to unexclude
21026      */
21027     removeInvalidHandleType: function(tagName) {
21028         var type = tagName.toUpperCase();
21029         // this.invalidHandleTypes[type] = null;
21030         delete this.invalidHandleTypes[type];
21031     },
21032
21033     /**
21034      * Unsets an invalid handle id
21035      * @method removeInvalidHandleId
21036      * @param {string} id the id of the element to re-enable
21037      */
21038     removeInvalidHandleId: function(id) {
21039         if (typeof id !== "string") {
21040             id = Roo.id(id);
21041         }
21042         delete this.invalidHandleIds[id];
21043     },
21044
21045     /**
21046      * Unsets an invalid css class
21047      * @method removeInvalidHandleClass
21048      * @param {string} cssClass the class of the element(s) you wish to
21049      * re-enable
21050      */
21051     removeInvalidHandleClass: function(cssClass) {
21052         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
21053             if (this.invalidHandleClasses[i] == cssClass) {
21054                 delete this.invalidHandleClasses[i];
21055             }
21056         }
21057     },
21058
21059     /**
21060      * Checks the tag exclusion list to see if this click should be ignored
21061      * @method isValidHandleChild
21062      * @param {HTMLElement} node the HTMLElement to evaluate
21063      * @return {boolean} true if this is a valid tag type, false if not
21064      */
21065     isValidHandleChild: function(node) {
21066
21067         var valid = true;
21068         // var n = (node.nodeName == "#text") ? node.parentNode : node;
21069         var nodeName;
21070         try {
21071             nodeName = node.nodeName.toUpperCase();
21072         } catch(e) {
21073             nodeName = node.nodeName;
21074         }
21075         valid = valid && !this.invalidHandleTypes[nodeName];
21076         valid = valid && !this.invalidHandleIds[node.id];
21077
21078         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
21079             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
21080         }
21081
21082
21083         return valid;
21084
21085     },
21086
21087     /**
21088      * Create the array of horizontal tick marks if an interval was specified
21089      * in setXConstraint().
21090      * @method setXTicks
21091      * @private
21092      */
21093     setXTicks: function(iStartX, iTickSize) {
21094         this.xTicks = [];
21095         this.xTickSize = iTickSize;
21096
21097         var tickMap = {};
21098
21099         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
21100             if (!tickMap[i]) {
21101                 this.xTicks[this.xTicks.length] = i;
21102                 tickMap[i] = true;
21103             }
21104         }
21105
21106         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
21107             if (!tickMap[i]) {
21108                 this.xTicks[this.xTicks.length] = i;
21109                 tickMap[i] = true;
21110             }
21111         }
21112
21113         this.xTicks.sort(this.DDM.numericSort) ;
21114     },
21115
21116     /**
21117      * Create the array of vertical tick marks if an interval was specified in
21118      * setYConstraint().
21119      * @method setYTicks
21120      * @private
21121      */
21122     setYTicks: function(iStartY, iTickSize) {
21123         this.yTicks = [];
21124         this.yTickSize = iTickSize;
21125
21126         var tickMap = {};
21127
21128         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
21129             if (!tickMap[i]) {
21130                 this.yTicks[this.yTicks.length] = i;
21131                 tickMap[i] = true;
21132             }
21133         }
21134
21135         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
21136             if (!tickMap[i]) {
21137                 this.yTicks[this.yTicks.length] = i;
21138                 tickMap[i] = true;
21139             }
21140         }
21141
21142         this.yTicks.sort(this.DDM.numericSort) ;
21143     },
21144
21145     /**
21146      * By default, the element can be dragged any place on the screen.  Use
21147      * this method to limit the horizontal travel of the element.  Pass in
21148      * 0,0 for the parameters if you want to lock the drag to the y axis.
21149      * @method setXConstraint
21150      * @param {int} iLeft the number of pixels the element can move to the left
21151      * @param {int} iRight the number of pixels the element can move to the
21152      * right
21153      * @param {int} iTickSize optional parameter for specifying that the
21154      * element
21155      * should move iTickSize pixels at a time.
21156      */
21157     setXConstraint: function(iLeft, iRight, iTickSize) {
21158         this.leftConstraint = iLeft;
21159         this.rightConstraint = iRight;
21160
21161         this.minX = this.initPageX - iLeft;
21162         this.maxX = this.initPageX + iRight;
21163         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
21164
21165         this.constrainX = true;
21166     },
21167
21168     /**
21169      * Clears any constraints applied to this instance.  Also clears ticks
21170      * since they can't exist independent of a constraint at this time.
21171      * @method clearConstraints
21172      */
21173     clearConstraints: function() {
21174         this.constrainX = false;
21175         this.constrainY = false;
21176         this.clearTicks();
21177     },
21178
21179     /**
21180      * Clears any tick interval defined for this instance
21181      * @method clearTicks
21182      */
21183     clearTicks: function() {
21184         this.xTicks = null;
21185         this.yTicks = null;
21186         this.xTickSize = 0;
21187         this.yTickSize = 0;
21188     },
21189
21190     /**
21191      * By default, the element can be dragged any place on the screen.  Set
21192      * this to limit the vertical travel of the element.  Pass in 0,0 for the
21193      * parameters if you want to lock the drag to the x axis.
21194      * @method setYConstraint
21195      * @param {int} iUp the number of pixels the element can move up
21196      * @param {int} iDown the number of pixels the element can move down
21197      * @param {int} iTickSize optional parameter for specifying that the
21198      * element should move iTickSize pixels at a time.
21199      */
21200     setYConstraint: function(iUp, iDown, iTickSize) {
21201         this.topConstraint = iUp;
21202         this.bottomConstraint = iDown;
21203
21204         this.minY = this.initPageY - iUp;
21205         this.maxY = this.initPageY + iDown;
21206         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
21207
21208         this.constrainY = true;
21209
21210     },
21211
21212     /**
21213      * resetConstraints must be called if you manually reposition a dd element.
21214      * @method resetConstraints
21215      * @param {boolean} maintainOffset
21216      */
21217     resetConstraints: function() {
21218
21219
21220         // Maintain offsets if necessary
21221         if (this.initPageX || this.initPageX === 0) {
21222             // figure out how much this thing has moved
21223             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
21224             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
21225
21226             this.setInitPosition(dx, dy);
21227
21228         // This is the first time we have detected the element's position
21229         } else {
21230             this.setInitPosition();
21231         }
21232
21233         if (this.constrainX) {
21234             this.setXConstraint( this.leftConstraint,
21235                                  this.rightConstraint,
21236                                  this.xTickSize        );
21237         }
21238
21239         if (this.constrainY) {
21240             this.setYConstraint( this.topConstraint,
21241                                  this.bottomConstraint,
21242                                  this.yTickSize         );
21243         }
21244     },
21245
21246     /**
21247      * Normally the drag element is moved pixel by pixel, but we can specify
21248      * that it move a number of pixels at a time.  This method resolves the
21249      * location when we have it set up like this.
21250      * @method getTick
21251      * @param {int} val where we want to place the object
21252      * @param {int[]} tickArray sorted array of valid points
21253      * @return {int} the closest tick
21254      * @private
21255      */
21256     getTick: function(val, tickArray) {
21257
21258         if (!tickArray) {
21259             // If tick interval is not defined, it is effectively 1 pixel,
21260             // so we return the value passed to us.
21261             return val;
21262         } else if (tickArray[0] >= val) {
21263             // The value is lower than the first tick, so we return the first
21264             // tick.
21265             return tickArray[0];
21266         } else {
21267             for (var i=0, len=tickArray.length; i<len; ++i) {
21268                 var next = i + 1;
21269                 if (tickArray[next] && tickArray[next] >= val) {
21270                     var diff1 = val - tickArray[i];
21271                     var diff2 = tickArray[next] - val;
21272                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
21273                 }
21274             }
21275
21276             // The value is larger than the last tick, so we return the last
21277             // tick.
21278             return tickArray[tickArray.length - 1];
21279         }
21280     },
21281
21282     /**
21283      * toString method
21284      * @method toString
21285      * @return {string} string representation of the dd obj
21286      */
21287     toString: function() {
21288         return ("DragDrop " + this.id);
21289     }
21290
21291 });
21292
21293 })();
21294 /*
21295  * Based on:
21296  * Ext JS Library 1.1.1
21297  * Copyright(c) 2006-2007, Ext JS, LLC.
21298  *
21299  * Originally Released Under LGPL - original licence link has changed is not relivant.
21300  *
21301  * Fork - LGPL
21302  * <script type="text/javascript">
21303  */
21304
21305
21306 /**
21307  * The drag and drop utility provides a framework for building drag and drop
21308  * applications.  In addition to enabling drag and drop for specific elements,
21309  * the drag and drop elements are tracked by the manager class, and the
21310  * interactions between the various elements are tracked during the drag and
21311  * the implementing code is notified about these important moments.
21312  */
21313
21314 // Only load the library once.  Rewriting the manager class would orphan
21315 // existing drag and drop instances.
21316 if (!Roo.dd.DragDropMgr) {
21317
21318 /**
21319  * @class Roo.dd.DragDropMgr
21320  * DragDropMgr is a singleton that tracks the element interaction for
21321  * all DragDrop items in the window.  Generally, you will not call
21322  * this class directly, but it does have helper methods that could
21323  * be useful in your DragDrop implementations.
21324  * @static
21325  */
21326 Roo.dd.DragDropMgr = function() {
21327
21328     var Event = Roo.EventManager;
21329
21330     return {
21331
21332         /**
21333          * Two dimensional Array of registered DragDrop objects.  The first
21334          * dimension is the DragDrop item group, the second the DragDrop
21335          * object.
21336          * @property ids
21337          * @type {string: string}
21338          * @private
21339          * @static
21340          */
21341         ids: {},
21342
21343         /**
21344          * Array of element ids defined as drag handles.  Used to determine
21345          * if the element that generated the mousedown event is actually the
21346          * handle and not the html element itself.
21347          * @property handleIds
21348          * @type {string: string}
21349          * @private
21350          * @static
21351          */
21352         handleIds: {},
21353
21354         /**
21355          * the DragDrop object that is currently being dragged
21356          * @property dragCurrent
21357          * @type DragDrop
21358          * @private
21359          * @static
21360          **/
21361         dragCurrent: null,
21362
21363         /**
21364          * the DragDrop object(s) that are being hovered over
21365          * @property dragOvers
21366          * @type Array
21367          * @private
21368          * @static
21369          */
21370         dragOvers: {},
21371
21372         /**
21373          * the X distance between the cursor and the object being dragged
21374          * @property deltaX
21375          * @type int
21376          * @private
21377          * @static
21378          */
21379         deltaX: 0,
21380
21381         /**
21382          * the Y distance between the cursor and the object being dragged
21383          * @property deltaY
21384          * @type int
21385          * @private
21386          * @static
21387          */
21388         deltaY: 0,
21389
21390         /**
21391          * Flag to determine if we should prevent the default behavior of the
21392          * events we define. By default this is true, but this can be set to
21393          * false if you need the default behavior (not recommended)
21394          * @property preventDefault
21395          * @type boolean
21396          * @static
21397          */
21398         preventDefault: true,
21399
21400         /**
21401          * Flag to determine if we should stop the propagation of the events
21402          * we generate. This is true by default but you may want to set it to
21403          * false if the html element contains other features that require the
21404          * mouse click.
21405          * @property stopPropagation
21406          * @type boolean
21407          * @static
21408          */
21409         stopPropagation: true,
21410
21411         /**
21412          * Internal flag that is set to true when drag and drop has been
21413          * intialized
21414          * @property initialized
21415          * @private
21416          * @static
21417          */
21418         initalized: false,
21419
21420         /**
21421          * All drag and drop can be disabled.
21422          * @property locked
21423          * @private
21424          * @static
21425          */
21426         locked: false,
21427
21428         /**
21429          * Called the first time an element is registered.
21430          * @method init
21431          * @private
21432          * @static
21433          */
21434         init: function() {
21435             this.initialized = true;
21436         },
21437
21438         /**
21439          * In point mode, drag and drop interaction is defined by the
21440          * location of the cursor during the drag/drop
21441          * @property POINT
21442          * @type int
21443          * @static
21444          */
21445         POINT: 0,
21446
21447         /**
21448          * In intersect mode, drag and drop interactio nis defined by the
21449          * overlap of two or more drag and drop objects.
21450          * @property INTERSECT
21451          * @type int
21452          * @static
21453          */
21454         INTERSECT: 1,
21455
21456         /**
21457          * The current drag and drop mode.  Default: POINT
21458          * @property mode
21459          * @type int
21460          * @static
21461          */
21462         mode: 0,
21463
21464         /**
21465          * Runs method on all drag and drop objects
21466          * @method _execOnAll
21467          * @private
21468          * @static
21469          */
21470         _execOnAll: function(sMethod, args) {
21471             for (var i in this.ids) {
21472                 for (var j in this.ids[i]) {
21473                     var oDD = this.ids[i][j];
21474                     if (! this.isTypeOfDD(oDD)) {
21475                         continue;
21476                     }
21477                     oDD[sMethod].apply(oDD, args);
21478                 }
21479             }
21480         },
21481
21482         /**
21483          * Drag and drop initialization.  Sets up the global event handlers
21484          * @method _onLoad
21485          * @private
21486          * @static
21487          */
21488         _onLoad: function() {
21489
21490             this.init();
21491
21492             if (!Roo.isTouch) {
21493                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
21494                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
21495             }
21496             Event.on(document, "touchend",   this.handleMouseUp, this, true);
21497             Event.on(document, "touchmove", this.handleMouseMove, this, true);
21498             
21499             Event.on(window,   "unload",    this._onUnload, this, true);
21500             Event.on(window,   "resize",    this._onResize, this, true);
21501             // Event.on(window,   "mouseout",    this._test);
21502
21503         },
21504
21505         /**
21506          * Reset constraints on all drag and drop objs
21507          * @method _onResize
21508          * @private
21509          * @static
21510          */
21511         _onResize: function(e) {
21512             this._execOnAll("resetConstraints", []);
21513         },
21514
21515         /**
21516          * Lock all drag and drop functionality
21517          * @method lock
21518          * @static
21519          */
21520         lock: function() { this.locked = true; },
21521
21522         /**
21523          * Unlock all drag and drop functionality
21524          * @method unlock
21525          * @static
21526          */
21527         unlock: function() { this.locked = false; },
21528
21529         /**
21530          * Is drag and drop locked?
21531          * @method isLocked
21532          * @return {boolean} True if drag and drop is locked, false otherwise.
21533          * @static
21534          */
21535         isLocked: function() { return this.locked; },
21536
21537         /**
21538          * Location cache that is set for all drag drop objects when a drag is
21539          * initiated, cleared when the drag is finished.
21540          * @property locationCache
21541          * @private
21542          * @static
21543          */
21544         locationCache: {},
21545
21546         /**
21547          * Set useCache to false if you want to force object the lookup of each
21548          * drag and drop linked element constantly during a drag.
21549          * @property useCache
21550          * @type boolean
21551          * @static
21552          */
21553         useCache: true,
21554
21555         /**
21556          * The number of pixels that the mouse needs to move after the
21557          * mousedown before the drag is initiated.  Default=3;
21558          * @property clickPixelThresh
21559          * @type int
21560          * @static
21561          */
21562         clickPixelThresh: 3,
21563
21564         /**
21565          * The number of milliseconds after the mousedown event to initiate the
21566          * drag if we don't get a mouseup event. Default=1000
21567          * @property clickTimeThresh
21568          * @type int
21569          * @static
21570          */
21571         clickTimeThresh: 350,
21572
21573         /**
21574          * Flag that indicates that either the drag pixel threshold or the
21575          * mousdown time threshold has been met
21576          * @property dragThreshMet
21577          * @type boolean
21578          * @private
21579          * @static
21580          */
21581         dragThreshMet: false,
21582
21583         /**
21584          * Timeout used for the click time threshold
21585          * @property clickTimeout
21586          * @type Object
21587          * @private
21588          * @static
21589          */
21590         clickTimeout: null,
21591
21592         /**
21593          * The X position of the mousedown event stored for later use when a
21594          * drag threshold is met.
21595          * @property startX
21596          * @type int
21597          * @private
21598          * @static
21599          */
21600         startX: 0,
21601
21602         /**
21603          * The Y position of the mousedown event stored for later use when a
21604          * drag threshold is met.
21605          * @property startY
21606          * @type int
21607          * @private
21608          * @static
21609          */
21610         startY: 0,
21611
21612         /**
21613          * Each DragDrop instance must be registered with the DragDropMgr.
21614          * This is executed in DragDrop.init()
21615          * @method regDragDrop
21616          * @param {DragDrop} oDD the DragDrop object to register
21617          * @param {String} sGroup the name of the group this element belongs to
21618          * @static
21619          */
21620         regDragDrop: function(oDD, sGroup) {
21621             if (!this.initialized) { this.init(); }
21622
21623             if (!this.ids[sGroup]) {
21624                 this.ids[sGroup] = {};
21625             }
21626             this.ids[sGroup][oDD.id] = oDD;
21627         },
21628
21629         /**
21630          * Removes the supplied dd instance from the supplied group. Executed
21631          * by DragDrop.removeFromGroup, so don't call this function directly.
21632          * @method removeDDFromGroup
21633          * @private
21634          * @static
21635          */
21636         removeDDFromGroup: function(oDD, sGroup) {
21637             if (!this.ids[sGroup]) {
21638                 this.ids[sGroup] = {};
21639             }
21640
21641             var obj = this.ids[sGroup];
21642             if (obj && obj[oDD.id]) {
21643                 delete obj[oDD.id];
21644             }
21645         },
21646
21647         /**
21648          * Unregisters a drag and drop item.  This is executed in
21649          * DragDrop.unreg, use that method instead of calling this directly.
21650          * @method _remove
21651          * @private
21652          * @static
21653          */
21654         _remove: function(oDD) {
21655             for (var g in oDD.groups) {
21656                 if (g && this.ids[g][oDD.id]) {
21657                     delete this.ids[g][oDD.id];
21658                 }
21659             }
21660             delete this.handleIds[oDD.id];
21661         },
21662
21663         /**
21664          * Each DragDrop handle element must be registered.  This is done
21665          * automatically when executing DragDrop.setHandleElId()
21666          * @method regHandle
21667          * @param {String} sDDId the DragDrop id this element is a handle for
21668          * @param {String} sHandleId the id of the element that is the drag
21669          * handle
21670          * @static
21671          */
21672         regHandle: function(sDDId, sHandleId) {
21673             if (!this.handleIds[sDDId]) {
21674                 this.handleIds[sDDId] = {};
21675             }
21676             this.handleIds[sDDId][sHandleId] = sHandleId;
21677         },
21678
21679         /**
21680          * Utility function to determine if a given element has been
21681          * registered as a drag drop item.
21682          * @method isDragDrop
21683          * @param {String} id the element id to check
21684          * @return {boolean} true if this element is a DragDrop item,
21685          * false otherwise
21686          * @static
21687          */
21688         isDragDrop: function(id) {
21689             return ( this.getDDById(id) ) ? true : false;
21690         },
21691
21692         /**
21693          * Returns the drag and drop instances that are in all groups the
21694          * passed in instance belongs to.
21695          * @method getRelated
21696          * @param {DragDrop} p_oDD the obj to get related data for
21697          * @param {boolean} bTargetsOnly if true, only return targetable objs
21698          * @return {DragDrop[]} the related instances
21699          * @static
21700          */
21701         getRelated: function(p_oDD, bTargetsOnly) {
21702             var oDDs = [];
21703             for (var i in p_oDD.groups) {
21704                 for (j in this.ids[i]) {
21705                     var dd = this.ids[i][j];
21706                     if (! this.isTypeOfDD(dd)) {
21707                         continue;
21708                     }
21709                     if (!bTargetsOnly || dd.isTarget) {
21710                         oDDs[oDDs.length] = dd;
21711                     }
21712                 }
21713             }
21714
21715             return oDDs;
21716         },
21717
21718         /**
21719          * Returns true if the specified dd target is a legal target for
21720          * the specifice drag obj
21721          * @method isLegalTarget
21722          * @param {DragDrop} the drag obj
21723          * @param {DragDrop} the target
21724          * @return {boolean} true if the target is a legal target for the
21725          * dd obj
21726          * @static
21727          */
21728         isLegalTarget: function (oDD, oTargetDD) {
21729             var targets = this.getRelated(oDD, true);
21730             for (var i=0, len=targets.length;i<len;++i) {
21731                 if (targets[i].id == oTargetDD.id) {
21732                     return true;
21733                 }
21734             }
21735
21736             return false;
21737         },
21738
21739         /**
21740          * My goal is to be able to transparently determine if an object is
21741          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
21742          * returns "object", oDD.constructor.toString() always returns
21743          * "DragDrop" and not the name of the subclass.  So for now it just
21744          * evaluates a well-known variable in DragDrop.
21745          * @method isTypeOfDD
21746          * @param {Object} the object to evaluate
21747          * @return {boolean} true if typeof oDD = DragDrop
21748          * @static
21749          */
21750         isTypeOfDD: function (oDD) {
21751             return (oDD && oDD.__ygDragDrop);
21752         },
21753
21754         /**
21755          * Utility function to determine if a given element has been
21756          * registered as a drag drop handle for the given Drag Drop object.
21757          * @method isHandle
21758          * @param {String} id the element id to check
21759          * @return {boolean} true if this element is a DragDrop handle, false
21760          * otherwise
21761          * @static
21762          */
21763         isHandle: function(sDDId, sHandleId) {
21764             return ( this.handleIds[sDDId] &&
21765                             this.handleIds[sDDId][sHandleId] );
21766         },
21767
21768         /**
21769          * Returns the DragDrop instance for a given id
21770          * @method getDDById
21771          * @param {String} id the id of the DragDrop object
21772          * @return {DragDrop} the drag drop object, null if it is not found
21773          * @static
21774          */
21775         getDDById: function(id) {
21776             for (var i in this.ids) {
21777                 if (this.ids[i][id]) {
21778                     return this.ids[i][id];
21779                 }
21780             }
21781             return null;
21782         },
21783
21784         /**
21785          * Fired after a registered DragDrop object gets the mousedown event.
21786          * Sets up the events required to track the object being dragged
21787          * @method handleMouseDown
21788          * @param {Event} e the event
21789          * @param oDD the DragDrop object being dragged
21790          * @private
21791          * @static
21792          */
21793         handleMouseDown: function(e, oDD) {
21794             if(Roo.QuickTips){
21795                 Roo.QuickTips.disable();
21796             }
21797             this.currentTarget = e.getTarget();
21798
21799             this.dragCurrent = oDD;
21800
21801             var el = oDD.getEl();
21802
21803             // track start position
21804             this.startX = e.getPageX();
21805             this.startY = e.getPageY();
21806
21807             this.deltaX = this.startX - el.offsetLeft;
21808             this.deltaY = this.startY - el.offsetTop;
21809
21810             this.dragThreshMet = false;
21811
21812             this.clickTimeout = setTimeout(
21813                     function() {
21814                         var DDM = Roo.dd.DDM;
21815                         DDM.startDrag(DDM.startX, DDM.startY);
21816                     },
21817                     this.clickTimeThresh );
21818         },
21819
21820         /**
21821          * Fired when either the drag pixel threshol or the mousedown hold
21822          * time threshold has been met.
21823          * @method startDrag
21824          * @param x {int} the X position of the original mousedown
21825          * @param y {int} the Y position of the original mousedown
21826          * @static
21827          */
21828         startDrag: function(x, y) {
21829             clearTimeout(this.clickTimeout);
21830             if (this.dragCurrent) {
21831                 this.dragCurrent.b4StartDrag(x, y);
21832                 this.dragCurrent.startDrag(x, y);
21833             }
21834             this.dragThreshMet = true;
21835         },
21836
21837         /**
21838          * Internal function to handle the mouseup event.  Will be invoked
21839          * from the context of the document.
21840          * @method handleMouseUp
21841          * @param {Event} e the event
21842          * @private
21843          * @static
21844          */
21845         handleMouseUp: function(e) {
21846
21847             if(Roo.QuickTips){
21848                 Roo.QuickTips.enable();
21849             }
21850             if (! this.dragCurrent) {
21851                 return;
21852             }
21853
21854             clearTimeout(this.clickTimeout);
21855
21856             if (this.dragThreshMet) {
21857                 this.fireEvents(e, true);
21858             } else {
21859             }
21860
21861             this.stopDrag(e);
21862
21863             this.stopEvent(e);
21864         },
21865
21866         /**
21867          * Utility to stop event propagation and event default, if these
21868          * features are turned on.
21869          * @method stopEvent
21870          * @param {Event} e the event as returned by this.getEvent()
21871          * @static
21872          */
21873         stopEvent: function(e){
21874             if(this.stopPropagation) {
21875                 e.stopPropagation();
21876             }
21877
21878             if (this.preventDefault) {
21879                 e.preventDefault();
21880             }
21881         },
21882
21883         /**
21884          * Internal function to clean up event handlers after the drag
21885          * operation is complete
21886          * @method stopDrag
21887          * @param {Event} e the event
21888          * @private
21889          * @static
21890          */
21891         stopDrag: function(e) {
21892             // Fire the drag end event for the item that was dragged
21893             if (this.dragCurrent) {
21894                 if (this.dragThreshMet) {
21895                     this.dragCurrent.b4EndDrag(e);
21896                     this.dragCurrent.endDrag(e);
21897                 }
21898
21899                 this.dragCurrent.onMouseUp(e);
21900             }
21901
21902             this.dragCurrent = null;
21903             this.dragOvers = {};
21904         },
21905
21906         /**
21907          * Internal function to handle the mousemove event.  Will be invoked
21908          * from the context of the html element.
21909          *
21910          * @TODO figure out what we can do about mouse events lost when the
21911          * user drags objects beyond the window boundary.  Currently we can
21912          * detect this in internet explorer by verifying that the mouse is
21913          * down during the mousemove event.  Firefox doesn't give us the
21914          * button state on the mousemove event.
21915          * @method handleMouseMove
21916          * @param {Event} e the event
21917          * @private
21918          * @static
21919          */
21920         handleMouseMove: function(e) {
21921             if (! this.dragCurrent) {
21922                 return true;
21923             }
21924
21925             // var button = e.which || e.button;
21926
21927             // check for IE mouseup outside of page boundary
21928             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
21929                 this.stopEvent(e);
21930                 return this.handleMouseUp(e);
21931             }
21932
21933             if (!this.dragThreshMet) {
21934                 var diffX = Math.abs(this.startX - e.getPageX());
21935                 var diffY = Math.abs(this.startY - e.getPageY());
21936                 if (diffX > this.clickPixelThresh ||
21937                             diffY > this.clickPixelThresh) {
21938                     this.startDrag(this.startX, this.startY);
21939                 }
21940             }
21941
21942             if (this.dragThreshMet) {
21943                 this.dragCurrent.b4Drag(e);
21944                 this.dragCurrent.onDrag(e);
21945                 if(!this.dragCurrent.moveOnly){
21946                     this.fireEvents(e, false);
21947                 }
21948             }
21949
21950             this.stopEvent(e);
21951
21952             return true;
21953         },
21954
21955         /**
21956          * Iterates over all of the DragDrop elements to find ones we are
21957          * hovering over or dropping on
21958          * @method fireEvents
21959          * @param {Event} e the event
21960          * @param {boolean} isDrop is this a drop op or a mouseover op?
21961          * @private
21962          * @static
21963          */
21964         fireEvents: function(e, isDrop) {
21965             var dc = this.dragCurrent;
21966
21967             // If the user did the mouse up outside of the window, we could
21968             // get here even though we have ended the drag.
21969             if (!dc || dc.isLocked()) {
21970                 return;
21971             }
21972
21973             var pt = e.getPoint();
21974
21975             // cache the previous dragOver array
21976             var oldOvers = [];
21977
21978             var outEvts   = [];
21979             var overEvts  = [];
21980             var dropEvts  = [];
21981             var enterEvts = [];
21982
21983             // Check to see if the object(s) we were hovering over is no longer
21984             // being hovered over so we can fire the onDragOut event
21985             for (var i in this.dragOvers) {
21986
21987                 var ddo = this.dragOvers[i];
21988
21989                 if (! this.isTypeOfDD(ddo)) {
21990                     continue;
21991                 }
21992
21993                 if (! this.isOverTarget(pt, ddo, this.mode)) {
21994                     outEvts.push( ddo );
21995                 }
21996
21997                 oldOvers[i] = true;
21998                 delete this.dragOvers[i];
21999             }
22000
22001             for (var sGroup in dc.groups) {
22002
22003                 if ("string" != typeof sGroup) {
22004                     continue;
22005                 }
22006
22007                 for (i in this.ids[sGroup]) {
22008                     var oDD = this.ids[sGroup][i];
22009                     if (! this.isTypeOfDD(oDD)) {
22010                         continue;
22011                     }
22012
22013                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
22014                         if (this.isOverTarget(pt, oDD, this.mode)) {
22015                             // look for drop interactions
22016                             if (isDrop) {
22017                                 dropEvts.push( oDD );
22018                             // look for drag enter and drag over interactions
22019                             } else {
22020
22021                                 // initial drag over: dragEnter fires
22022                                 if (!oldOvers[oDD.id]) {
22023                                     enterEvts.push( oDD );
22024                                 // subsequent drag overs: dragOver fires
22025                                 } else {
22026                                     overEvts.push( oDD );
22027                                 }
22028
22029                                 this.dragOvers[oDD.id] = oDD;
22030                             }
22031                         }
22032                     }
22033                 }
22034             }
22035
22036             if (this.mode) {
22037                 if (outEvts.length) {
22038                     dc.b4DragOut(e, outEvts);
22039                     dc.onDragOut(e, outEvts);
22040                 }
22041
22042                 if (enterEvts.length) {
22043                     dc.onDragEnter(e, enterEvts);
22044                 }
22045
22046                 if (overEvts.length) {
22047                     dc.b4DragOver(e, overEvts);
22048                     dc.onDragOver(e, overEvts);
22049                 }
22050
22051                 if (dropEvts.length) {
22052                     dc.b4DragDrop(e, dropEvts);
22053                     dc.onDragDrop(e, dropEvts);
22054                 }
22055
22056             } else {
22057                 // fire dragout events
22058                 var len = 0;
22059                 for (i=0, len=outEvts.length; i<len; ++i) {
22060                     dc.b4DragOut(e, outEvts[i].id);
22061                     dc.onDragOut(e, outEvts[i].id);
22062                 }
22063
22064                 // fire enter events
22065                 for (i=0,len=enterEvts.length; i<len; ++i) {
22066                     // dc.b4DragEnter(e, oDD.id);
22067                     dc.onDragEnter(e, enterEvts[i].id);
22068                 }
22069
22070                 // fire over events
22071                 for (i=0,len=overEvts.length; i<len; ++i) {
22072                     dc.b4DragOver(e, overEvts[i].id);
22073                     dc.onDragOver(e, overEvts[i].id);
22074                 }
22075
22076                 // fire drop events
22077                 for (i=0, len=dropEvts.length; i<len; ++i) {
22078                     dc.b4DragDrop(e, dropEvts[i].id);
22079                     dc.onDragDrop(e, dropEvts[i].id);
22080                 }
22081
22082             }
22083
22084             // notify about a drop that did not find a target
22085             if (isDrop && !dropEvts.length) {
22086                 dc.onInvalidDrop(e);
22087             }
22088
22089         },
22090
22091         /**
22092          * Helper function for getting the best match from the list of drag
22093          * and drop objects returned by the drag and drop events when we are
22094          * in INTERSECT mode.  It returns either the first object that the
22095          * cursor is over, or the object that has the greatest overlap with
22096          * the dragged element.
22097          * @method getBestMatch
22098          * @param  {DragDrop[]} dds The array of drag and drop objects
22099          * targeted
22100          * @return {DragDrop}       The best single match
22101          * @static
22102          */
22103         getBestMatch: function(dds) {
22104             var winner = null;
22105             // Return null if the input is not what we expect
22106             //if (!dds || !dds.length || dds.length == 0) {
22107                // winner = null;
22108             // If there is only one item, it wins
22109             //} else if (dds.length == 1) {
22110
22111             var len = dds.length;
22112
22113             if (len == 1) {
22114                 winner = dds[0];
22115             } else {
22116                 // Loop through the targeted items
22117                 for (var i=0; i<len; ++i) {
22118                     var dd = dds[i];
22119                     // If the cursor is over the object, it wins.  If the
22120                     // cursor is over multiple matches, the first one we come
22121                     // to wins.
22122                     if (dd.cursorIsOver) {
22123                         winner = dd;
22124                         break;
22125                     // Otherwise the object with the most overlap wins
22126                     } else {
22127                         if (!winner ||
22128                             winner.overlap.getArea() < dd.overlap.getArea()) {
22129                             winner = dd;
22130                         }
22131                     }
22132                 }
22133             }
22134
22135             return winner;
22136         },
22137
22138         /**
22139          * Refreshes the cache of the top-left and bottom-right points of the
22140          * drag and drop objects in the specified group(s).  This is in the
22141          * format that is stored in the drag and drop instance, so typical
22142          * usage is:
22143          * <code>
22144          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
22145          * </code>
22146          * Alternatively:
22147          * <code>
22148          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
22149          * </code>
22150          * @TODO this really should be an indexed array.  Alternatively this
22151          * method could accept both.
22152          * @method refreshCache
22153          * @param {Object} groups an associative array of groups to refresh
22154          * @static
22155          */
22156         refreshCache: function(groups) {
22157             for (var sGroup in groups) {
22158                 if ("string" != typeof sGroup) {
22159                     continue;
22160                 }
22161                 for (var i in this.ids[sGroup]) {
22162                     var oDD = this.ids[sGroup][i];
22163
22164                     if (this.isTypeOfDD(oDD)) {
22165                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
22166                         var loc = this.getLocation(oDD);
22167                         if (loc) {
22168                             this.locationCache[oDD.id] = loc;
22169                         } else {
22170                             delete this.locationCache[oDD.id];
22171                             // this will unregister the drag and drop object if
22172                             // the element is not in a usable state
22173                             // oDD.unreg();
22174                         }
22175                     }
22176                 }
22177             }
22178         },
22179
22180         /**
22181          * This checks to make sure an element exists and is in the DOM.  The
22182          * main purpose is to handle cases where innerHTML is used to remove
22183          * drag and drop objects from the DOM.  IE provides an 'unspecified
22184          * error' when trying to access the offsetParent of such an element
22185          * @method verifyEl
22186          * @param {HTMLElement} el the element to check
22187          * @return {boolean} true if the element looks usable
22188          * @static
22189          */
22190         verifyEl: function(el) {
22191             if (el) {
22192                 var parent;
22193                 if(Roo.isIE){
22194                     try{
22195                         parent = el.offsetParent;
22196                     }catch(e){}
22197                 }else{
22198                     parent = el.offsetParent;
22199                 }
22200                 if (parent) {
22201                     return true;
22202                 }
22203             }
22204
22205             return false;
22206         },
22207
22208         /**
22209          * Returns a Region object containing the drag and drop element's position
22210          * and size, including the padding configured for it
22211          * @method getLocation
22212          * @param {DragDrop} oDD the drag and drop object to get the
22213          *                       location for
22214          * @return {Roo.lib.Region} a Region object representing the total area
22215          *                             the element occupies, including any padding
22216          *                             the instance is configured for.
22217          * @static
22218          */
22219         getLocation: function(oDD) {
22220             if (! this.isTypeOfDD(oDD)) {
22221                 return null;
22222             }
22223
22224             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
22225
22226             try {
22227                 pos= Roo.lib.Dom.getXY(el);
22228             } catch (e) { }
22229
22230             if (!pos) {
22231                 return null;
22232             }
22233
22234             x1 = pos[0];
22235             x2 = x1 + el.offsetWidth;
22236             y1 = pos[1];
22237             y2 = y1 + el.offsetHeight;
22238
22239             t = y1 - oDD.padding[0];
22240             r = x2 + oDD.padding[1];
22241             b = y2 + oDD.padding[2];
22242             l = x1 - oDD.padding[3];
22243
22244             return new Roo.lib.Region( t, r, b, l );
22245         },
22246
22247         /**
22248          * Checks the cursor location to see if it over the target
22249          * @method isOverTarget
22250          * @param {Roo.lib.Point} pt The point to evaluate
22251          * @param {DragDrop} oTarget the DragDrop object we are inspecting
22252          * @return {boolean} true if the mouse is over the target
22253          * @private
22254          * @static
22255          */
22256         isOverTarget: function(pt, oTarget, intersect) {
22257             // use cache if available
22258             var loc = this.locationCache[oTarget.id];
22259             if (!loc || !this.useCache) {
22260                 loc = this.getLocation(oTarget);
22261                 this.locationCache[oTarget.id] = loc;
22262
22263             }
22264
22265             if (!loc) {
22266                 return false;
22267             }
22268
22269             oTarget.cursorIsOver = loc.contains( pt );
22270
22271             // DragDrop is using this as a sanity check for the initial mousedown
22272             // in this case we are done.  In POINT mode, if the drag obj has no
22273             // contraints, we are also done. Otherwise we need to evaluate the
22274             // location of the target as related to the actual location of the
22275             // dragged element.
22276             var dc = this.dragCurrent;
22277             if (!dc || !dc.getTargetCoord ||
22278                     (!intersect && !dc.constrainX && !dc.constrainY)) {
22279                 return oTarget.cursorIsOver;
22280             }
22281
22282             oTarget.overlap = null;
22283
22284             // Get the current location of the drag element, this is the
22285             // location of the mouse event less the delta that represents
22286             // where the original mousedown happened on the element.  We
22287             // need to consider constraints and ticks as well.
22288             var pos = dc.getTargetCoord(pt.x, pt.y);
22289
22290             var el = dc.getDragEl();
22291             var curRegion = new Roo.lib.Region( pos.y,
22292                                                    pos.x + el.offsetWidth,
22293                                                    pos.y + el.offsetHeight,
22294                                                    pos.x );
22295
22296             var overlap = curRegion.intersect(loc);
22297
22298             if (overlap) {
22299                 oTarget.overlap = overlap;
22300                 return (intersect) ? true : oTarget.cursorIsOver;
22301             } else {
22302                 return false;
22303             }
22304         },
22305
22306         /**
22307          * unload event handler
22308          * @method _onUnload
22309          * @private
22310          * @static
22311          */
22312         _onUnload: function(e, me) {
22313             Roo.dd.DragDropMgr.unregAll();
22314         },
22315
22316         /**
22317          * Cleans up the drag and drop events and objects.
22318          * @method unregAll
22319          * @private
22320          * @static
22321          */
22322         unregAll: function() {
22323
22324             if (this.dragCurrent) {
22325                 this.stopDrag();
22326                 this.dragCurrent = null;
22327             }
22328
22329             this._execOnAll("unreg", []);
22330
22331             for (i in this.elementCache) {
22332                 delete this.elementCache[i];
22333             }
22334
22335             this.elementCache = {};
22336             this.ids = {};
22337         },
22338
22339         /**
22340          * A cache of DOM elements
22341          * @property elementCache
22342          * @private
22343          * @static
22344          */
22345         elementCache: {},
22346
22347         /**
22348          * Get the wrapper for the DOM element specified
22349          * @method getElWrapper
22350          * @param {String} id the id of the element to get
22351          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
22352          * @private
22353          * @deprecated This wrapper isn't that useful
22354          * @static
22355          */
22356         getElWrapper: function(id) {
22357             var oWrapper = this.elementCache[id];
22358             if (!oWrapper || !oWrapper.el) {
22359                 oWrapper = this.elementCache[id] =
22360                     new this.ElementWrapper(Roo.getDom(id));
22361             }
22362             return oWrapper;
22363         },
22364
22365         /**
22366          * Returns the actual DOM element
22367          * @method getElement
22368          * @param {String} id the id of the elment to get
22369          * @return {Object} The element
22370          * @deprecated use Roo.getDom instead
22371          * @static
22372          */
22373         getElement: function(id) {
22374             return Roo.getDom(id);
22375         },
22376
22377         /**
22378          * Returns the style property for the DOM element (i.e.,
22379          * document.getElById(id).style)
22380          * @method getCss
22381          * @param {String} id the id of the elment to get
22382          * @return {Object} The style property of the element
22383          * @deprecated use Roo.getDom instead
22384          * @static
22385          */
22386         getCss: function(id) {
22387             var el = Roo.getDom(id);
22388             return (el) ? el.style : null;
22389         },
22390
22391         /**
22392          * Inner class for cached elements
22393          * @class DragDropMgr.ElementWrapper
22394          * @for DragDropMgr
22395          * @private
22396          * @deprecated
22397          */
22398         ElementWrapper: function(el) {
22399                 /**
22400                  * The element
22401                  * @property el
22402                  */
22403                 this.el = el || null;
22404                 /**
22405                  * The element id
22406                  * @property id
22407                  */
22408                 this.id = this.el && el.id;
22409                 /**
22410                  * A reference to the style property
22411                  * @property css
22412                  */
22413                 this.css = this.el && el.style;
22414             },
22415
22416         /**
22417          * Returns the X position of an html element
22418          * @method getPosX
22419          * @param el the element for which to get the position
22420          * @return {int} the X coordinate
22421          * @for DragDropMgr
22422          * @deprecated use Roo.lib.Dom.getX instead
22423          * @static
22424          */
22425         getPosX: function(el) {
22426             return Roo.lib.Dom.getX(el);
22427         },
22428
22429         /**
22430          * Returns the Y position of an html element
22431          * @method getPosY
22432          * @param el the element for which to get the position
22433          * @return {int} the Y coordinate
22434          * @deprecated use Roo.lib.Dom.getY instead
22435          * @static
22436          */
22437         getPosY: function(el) {
22438             return Roo.lib.Dom.getY(el);
22439         },
22440
22441         /**
22442          * Swap two nodes.  In IE, we use the native method, for others we
22443          * emulate the IE behavior
22444          * @method swapNode
22445          * @param n1 the first node to swap
22446          * @param n2 the other node to swap
22447          * @static
22448          */
22449         swapNode: function(n1, n2) {
22450             if (n1.swapNode) {
22451                 n1.swapNode(n2);
22452             } else {
22453                 var p = n2.parentNode;
22454                 var s = n2.nextSibling;
22455
22456                 if (s == n1) {
22457                     p.insertBefore(n1, n2);
22458                 } else if (n2 == n1.nextSibling) {
22459                     p.insertBefore(n2, n1);
22460                 } else {
22461                     n1.parentNode.replaceChild(n2, n1);
22462                     p.insertBefore(n1, s);
22463                 }
22464             }
22465         },
22466
22467         /**
22468          * Returns the current scroll position
22469          * @method getScroll
22470          * @private
22471          * @static
22472          */
22473         getScroll: function () {
22474             var t, l, dde=document.documentElement, db=document.body;
22475             if (dde && (dde.scrollTop || dde.scrollLeft)) {
22476                 t = dde.scrollTop;
22477                 l = dde.scrollLeft;
22478             } else if (db) {
22479                 t = db.scrollTop;
22480                 l = db.scrollLeft;
22481             } else {
22482
22483             }
22484             return { top: t, left: l };
22485         },
22486
22487         /**
22488          * Returns the specified element style property
22489          * @method getStyle
22490          * @param {HTMLElement} el          the element
22491          * @param {string}      styleProp   the style property
22492          * @return {string} The value of the style property
22493          * @deprecated use Roo.lib.Dom.getStyle
22494          * @static
22495          */
22496         getStyle: function(el, styleProp) {
22497             return Roo.fly(el).getStyle(styleProp);
22498         },
22499
22500         /**
22501          * Gets the scrollTop
22502          * @method getScrollTop
22503          * @return {int} the document's scrollTop
22504          * @static
22505          */
22506         getScrollTop: function () { return this.getScroll().top; },
22507
22508         /**
22509          * Gets the scrollLeft
22510          * @method getScrollLeft
22511          * @return {int} the document's scrollTop
22512          * @static
22513          */
22514         getScrollLeft: function () { return this.getScroll().left; },
22515
22516         /**
22517          * Sets the x/y position of an element to the location of the
22518          * target element.
22519          * @method moveToEl
22520          * @param {HTMLElement} moveEl      The element to move
22521          * @param {HTMLElement} targetEl    The position reference element
22522          * @static
22523          */
22524         moveToEl: function (moveEl, targetEl) {
22525             var aCoord = Roo.lib.Dom.getXY(targetEl);
22526             Roo.lib.Dom.setXY(moveEl, aCoord);
22527         },
22528
22529         /**
22530          * Numeric array sort function
22531          * @method numericSort
22532          * @static
22533          */
22534         numericSort: function(a, b) { return (a - b); },
22535
22536         /**
22537          * Internal counter
22538          * @property _timeoutCount
22539          * @private
22540          * @static
22541          */
22542         _timeoutCount: 0,
22543
22544         /**
22545          * Trying to make the load order less important.  Without this we get
22546          * an error if this file is loaded before the Event Utility.
22547          * @method _addListeners
22548          * @private
22549          * @static
22550          */
22551         _addListeners: function() {
22552             var DDM = Roo.dd.DDM;
22553             if ( Roo.lib.Event && document ) {
22554                 DDM._onLoad();
22555             } else {
22556                 if (DDM._timeoutCount > 2000) {
22557                 } else {
22558                     setTimeout(DDM._addListeners, 10);
22559                     if (document && document.body) {
22560                         DDM._timeoutCount += 1;
22561                     }
22562                 }
22563             }
22564         },
22565
22566         /**
22567          * Recursively searches the immediate parent and all child nodes for
22568          * the handle element in order to determine wheter or not it was
22569          * clicked.
22570          * @method handleWasClicked
22571          * @param node the html element to inspect
22572          * @static
22573          */
22574         handleWasClicked: function(node, id) {
22575             if (this.isHandle(id, node.id)) {
22576                 return true;
22577             } else {
22578                 // check to see if this is a text node child of the one we want
22579                 var p = node.parentNode;
22580
22581                 while (p) {
22582                     if (this.isHandle(id, p.id)) {
22583                         return true;
22584                     } else {
22585                         p = p.parentNode;
22586                     }
22587                 }
22588             }
22589
22590             return false;
22591         }
22592
22593     };
22594
22595 }();
22596
22597 // shorter alias, save a few bytes
22598 Roo.dd.DDM = Roo.dd.DragDropMgr;
22599 Roo.dd.DDM._addListeners();
22600
22601 }/*
22602  * Based on:
22603  * Ext JS Library 1.1.1
22604  * Copyright(c) 2006-2007, Ext JS, LLC.
22605  *
22606  * Originally Released Under LGPL - original licence link has changed is not relivant.
22607  *
22608  * Fork - LGPL
22609  * <script type="text/javascript">
22610  */
22611
22612 /**
22613  * @class Roo.dd.DD
22614  * A DragDrop implementation where the linked element follows the
22615  * mouse cursor during a drag.
22616  * @extends Roo.dd.DragDrop
22617  * @constructor
22618  * @param {String} id the id of the linked element
22619  * @param {String} sGroup the group of related DragDrop items
22620  * @param {object} config an object containing configurable attributes
22621  *                Valid properties for DD:
22622  *                    scroll
22623  */
22624 Roo.dd.DD = function(id, sGroup, config) {
22625     if (id) {
22626         this.init(id, sGroup, config);
22627     }
22628 };
22629
22630 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
22631
22632     /**
22633      * When set to true, the utility automatically tries to scroll the browser
22634      * window wehn a drag and drop element is dragged near the viewport boundary.
22635      * Defaults to true.
22636      * @property scroll
22637      * @type boolean
22638      */
22639     scroll: true,
22640
22641     /**
22642      * Sets the pointer offset to the distance between the linked element's top
22643      * left corner and the location the element was clicked
22644      * @method autoOffset
22645      * @param {int} iPageX the X coordinate of the click
22646      * @param {int} iPageY the Y coordinate of the click
22647      */
22648     autoOffset: function(iPageX, iPageY) {
22649         var x = iPageX - this.startPageX;
22650         var y = iPageY - this.startPageY;
22651         this.setDelta(x, y);
22652     },
22653
22654     /**
22655      * Sets the pointer offset.  You can call this directly to force the
22656      * offset to be in a particular location (e.g., pass in 0,0 to set it
22657      * to the center of the object)
22658      * @method setDelta
22659      * @param {int} iDeltaX the distance from the left
22660      * @param {int} iDeltaY the distance from the top
22661      */
22662     setDelta: function(iDeltaX, iDeltaY) {
22663         this.deltaX = iDeltaX;
22664         this.deltaY = iDeltaY;
22665     },
22666
22667     /**
22668      * Sets the drag element to the location of the mousedown or click event,
22669      * maintaining the cursor location relative to the location on the element
22670      * that was clicked.  Override this if you want to place the element in a
22671      * location other than where the cursor is.
22672      * @method setDragElPos
22673      * @param {int} iPageX the X coordinate of the mousedown or drag event
22674      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22675      */
22676     setDragElPos: function(iPageX, iPageY) {
22677         // the first time we do this, we are going to check to make sure
22678         // the element has css positioning
22679
22680         var el = this.getDragEl();
22681         this.alignElWithMouse(el, iPageX, iPageY);
22682     },
22683
22684     /**
22685      * Sets the element to the location of the mousedown or click event,
22686      * maintaining the cursor location relative to the location on the element
22687      * that was clicked.  Override this if you want to place the element in a
22688      * location other than where the cursor is.
22689      * @method alignElWithMouse
22690      * @param {HTMLElement} el the element to move
22691      * @param {int} iPageX the X coordinate of the mousedown or drag event
22692      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22693      */
22694     alignElWithMouse: function(el, iPageX, iPageY) {
22695         var oCoord = this.getTargetCoord(iPageX, iPageY);
22696         var fly = el.dom ? el : Roo.fly(el);
22697         if (!this.deltaSetXY) {
22698             var aCoord = [oCoord.x, oCoord.y];
22699             fly.setXY(aCoord);
22700             var newLeft = fly.getLeft(true);
22701             var newTop  = fly.getTop(true);
22702             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
22703         } else {
22704             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
22705         }
22706
22707         this.cachePosition(oCoord.x, oCoord.y);
22708         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
22709         return oCoord;
22710     },
22711
22712     /**
22713      * Saves the most recent position so that we can reset the constraints and
22714      * tick marks on-demand.  We need to know this so that we can calculate the
22715      * number of pixels the element is offset from its original position.
22716      * @method cachePosition
22717      * @param iPageX the current x position (optional, this just makes it so we
22718      * don't have to look it up again)
22719      * @param iPageY the current y position (optional, this just makes it so we
22720      * don't have to look it up again)
22721      */
22722     cachePosition: function(iPageX, iPageY) {
22723         if (iPageX) {
22724             this.lastPageX = iPageX;
22725             this.lastPageY = iPageY;
22726         } else {
22727             var aCoord = Roo.lib.Dom.getXY(this.getEl());
22728             this.lastPageX = aCoord[0];
22729             this.lastPageY = aCoord[1];
22730         }
22731     },
22732
22733     /**
22734      * Auto-scroll the window if the dragged object has been moved beyond the
22735      * visible window boundary.
22736      * @method autoScroll
22737      * @param {int} x the drag element's x position
22738      * @param {int} y the drag element's y position
22739      * @param {int} h the height of the drag element
22740      * @param {int} w the width of the drag element
22741      * @private
22742      */
22743     autoScroll: function(x, y, h, w) {
22744
22745         if (this.scroll) {
22746             // The client height
22747             var clientH = Roo.lib.Dom.getViewWidth();
22748
22749             // The client width
22750             var clientW = Roo.lib.Dom.getViewHeight();
22751
22752             // The amt scrolled down
22753             var st = this.DDM.getScrollTop();
22754
22755             // The amt scrolled right
22756             var sl = this.DDM.getScrollLeft();
22757
22758             // Location of the bottom of the element
22759             var bot = h + y;
22760
22761             // Location of the right of the element
22762             var right = w + x;
22763
22764             // The distance from the cursor to the bottom of the visible area,
22765             // adjusted so that we don't scroll if the cursor is beyond the
22766             // element drag constraints
22767             var toBot = (clientH + st - y - this.deltaY);
22768
22769             // The distance from the cursor to the right of the visible area
22770             var toRight = (clientW + sl - x - this.deltaX);
22771
22772
22773             // How close to the edge the cursor must be before we scroll
22774             // var thresh = (document.all) ? 100 : 40;
22775             var thresh = 40;
22776
22777             // How many pixels to scroll per autoscroll op.  This helps to reduce
22778             // clunky scrolling. IE is more sensitive about this ... it needs this
22779             // value to be higher.
22780             var scrAmt = (document.all) ? 80 : 30;
22781
22782             // Scroll down if we are near the bottom of the visible page and the
22783             // obj extends below the crease
22784             if ( bot > clientH && toBot < thresh ) {
22785                 window.scrollTo(sl, st + scrAmt);
22786             }
22787
22788             // Scroll up if the window is scrolled down and the top of the object
22789             // goes above the top border
22790             if ( y < st && st > 0 && y - st < thresh ) {
22791                 window.scrollTo(sl, st - scrAmt);
22792             }
22793
22794             // Scroll right if the obj is beyond the right border and the cursor is
22795             // near the border.
22796             if ( right > clientW && toRight < thresh ) {
22797                 window.scrollTo(sl + scrAmt, st);
22798             }
22799
22800             // Scroll left if the window has been scrolled to the right and the obj
22801             // extends past the left border
22802             if ( x < sl && sl > 0 && x - sl < thresh ) {
22803                 window.scrollTo(sl - scrAmt, st);
22804             }
22805         }
22806     },
22807
22808     /**
22809      * Finds the location the element should be placed if we want to move
22810      * it to where the mouse location less the click offset would place us.
22811      * @method getTargetCoord
22812      * @param {int} iPageX the X coordinate of the click
22813      * @param {int} iPageY the Y coordinate of the click
22814      * @return an object that contains the coordinates (Object.x and Object.y)
22815      * @private
22816      */
22817     getTargetCoord: function(iPageX, iPageY) {
22818
22819
22820         var x = iPageX - this.deltaX;
22821         var y = iPageY - this.deltaY;
22822
22823         if (this.constrainX) {
22824             if (x < this.minX) { x = this.minX; }
22825             if (x > this.maxX) { x = this.maxX; }
22826         }
22827
22828         if (this.constrainY) {
22829             if (y < this.minY) { y = this.minY; }
22830             if (y > this.maxY) { y = this.maxY; }
22831         }
22832
22833         x = this.getTick(x, this.xTicks);
22834         y = this.getTick(y, this.yTicks);
22835
22836
22837         return {x:x, y:y};
22838     },
22839
22840     /*
22841      * Sets up config options specific to this class. Overrides
22842      * Roo.dd.DragDrop, but all versions of this method through the
22843      * inheritance chain are called
22844      */
22845     applyConfig: function() {
22846         Roo.dd.DD.superclass.applyConfig.call(this);
22847         this.scroll = (this.config.scroll !== false);
22848     },
22849
22850     /*
22851      * Event that fires prior to the onMouseDown event.  Overrides
22852      * Roo.dd.DragDrop.
22853      */
22854     b4MouseDown: function(e) {
22855         // this.resetConstraints();
22856         this.autoOffset(e.getPageX(),
22857                             e.getPageY());
22858     },
22859
22860     /*
22861      * Event that fires prior to the onDrag event.  Overrides
22862      * Roo.dd.DragDrop.
22863      */
22864     b4Drag: function(e) {
22865         this.setDragElPos(e.getPageX(),
22866                             e.getPageY());
22867     },
22868
22869     toString: function() {
22870         return ("DD " + this.id);
22871     }
22872
22873     //////////////////////////////////////////////////////////////////////////
22874     // Debugging ygDragDrop events that can be overridden
22875     //////////////////////////////////////////////////////////////////////////
22876     /*
22877     startDrag: function(x, y) {
22878     },
22879
22880     onDrag: function(e) {
22881     },
22882
22883     onDragEnter: function(e, id) {
22884     },
22885
22886     onDragOver: function(e, id) {
22887     },
22888
22889     onDragOut: function(e, id) {
22890     },
22891
22892     onDragDrop: function(e, id) {
22893     },
22894
22895     endDrag: function(e) {
22896     }
22897
22898     */
22899
22900 });/*
22901  * Based on:
22902  * Ext JS Library 1.1.1
22903  * Copyright(c) 2006-2007, Ext JS, LLC.
22904  *
22905  * Originally Released Under LGPL - original licence link has changed is not relivant.
22906  *
22907  * Fork - LGPL
22908  * <script type="text/javascript">
22909  */
22910
22911 /**
22912  * @class Roo.dd.DDProxy
22913  * A DragDrop implementation that inserts an empty, bordered div into
22914  * the document that follows the cursor during drag operations.  At the time of
22915  * the click, the frame div is resized to the dimensions of the linked html
22916  * element, and moved to the exact location of the linked element.
22917  *
22918  * References to the "frame" element refer to the single proxy element that
22919  * was created to be dragged in place of all DDProxy elements on the
22920  * page.
22921  *
22922  * @extends Roo.dd.DD
22923  * @constructor
22924  * @param {String} id the id of the linked html element
22925  * @param {String} sGroup the group of related DragDrop objects
22926  * @param {object} config an object containing configurable attributes
22927  *                Valid properties for DDProxy in addition to those in DragDrop:
22928  *                   resizeFrame, centerFrame, dragElId
22929  */
22930 Roo.dd.DDProxy = function(id, sGroup, config) {
22931     if (id) {
22932         this.init(id, sGroup, config);
22933         this.initFrame();
22934     }
22935 };
22936
22937 /**
22938  * The default drag frame div id
22939  * @property Roo.dd.DDProxy.dragElId
22940  * @type String
22941  * @static
22942  */
22943 Roo.dd.DDProxy.dragElId = "ygddfdiv";
22944
22945 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
22946
22947     /**
22948      * By default we resize the drag frame to be the same size as the element
22949      * we want to drag (this is to get the frame effect).  We can turn it off
22950      * if we want a different behavior.
22951      * @property resizeFrame
22952      * @type boolean
22953      */
22954     resizeFrame: true,
22955
22956     /**
22957      * By default the frame is positioned exactly where the drag element is, so
22958      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
22959      * you do not have constraints on the obj is to have the drag frame centered
22960      * around the cursor.  Set centerFrame to true for this effect.
22961      * @property centerFrame
22962      * @type boolean
22963      */
22964     centerFrame: false,
22965
22966     /**
22967      * Creates the proxy element if it does not yet exist
22968      * @method createFrame
22969      */
22970     createFrame: function() {
22971         var self = this;
22972         var body = document.body;
22973
22974         if (!body || !body.firstChild) {
22975             setTimeout( function() { self.createFrame(); }, 50 );
22976             return;
22977         }
22978
22979         var div = this.getDragEl();
22980
22981         if (!div) {
22982             div    = document.createElement("div");
22983             div.id = this.dragElId;
22984             var s  = div.style;
22985
22986             s.position   = "absolute";
22987             s.visibility = "hidden";
22988             s.cursor     = "move";
22989             s.border     = "2px solid #aaa";
22990             s.zIndex     = 999;
22991
22992             // appendChild can blow up IE if invoked prior to the window load event
22993             // while rendering a table.  It is possible there are other scenarios
22994             // that would cause this to happen as well.
22995             body.insertBefore(div, body.firstChild);
22996         }
22997     },
22998
22999     /**
23000      * Initialization for the drag frame element.  Must be called in the
23001      * constructor of all subclasses
23002      * @method initFrame
23003      */
23004     initFrame: function() {
23005         this.createFrame();
23006     },
23007
23008     applyConfig: function() {
23009         Roo.dd.DDProxy.superclass.applyConfig.call(this);
23010
23011         this.resizeFrame = (this.config.resizeFrame !== false);
23012         this.centerFrame = (this.config.centerFrame);
23013         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
23014     },
23015
23016     /**
23017      * Resizes the drag frame to the dimensions of the clicked object, positions
23018      * it over the object, and finally displays it
23019      * @method showFrame
23020      * @param {int} iPageX X click position
23021      * @param {int} iPageY Y click position
23022      * @private
23023      */
23024     showFrame: function(iPageX, iPageY) {
23025         var el = this.getEl();
23026         var dragEl = this.getDragEl();
23027         var s = dragEl.style;
23028
23029         this._resizeProxy();
23030
23031         if (this.centerFrame) {
23032             this.setDelta( Math.round(parseInt(s.width,  10)/2),
23033                            Math.round(parseInt(s.height, 10)/2) );
23034         }
23035
23036         this.setDragElPos(iPageX, iPageY);
23037
23038         Roo.fly(dragEl).show();
23039     },
23040
23041     /**
23042      * The proxy is automatically resized to the dimensions of the linked
23043      * element when a drag is initiated, unless resizeFrame is set to false
23044      * @method _resizeProxy
23045      * @private
23046      */
23047     _resizeProxy: function() {
23048         if (this.resizeFrame) {
23049             var el = this.getEl();
23050             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
23051         }
23052     },
23053
23054     // overrides Roo.dd.DragDrop
23055     b4MouseDown: function(e) {
23056         var x = e.getPageX();
23057         var y = e.getPageY();
23058         this.autoOffset(x, y);
23059         this.setDragElPos(x, y);
23060     },
23061
23062     // overrides Roo.dd.DragDrop
23063     b4StartDrag: function(x, y) {
23064         // show the drag frame
23065         this.showFrame(x, y);
23066     },
23067
23068     // overrides Roo.dd.DragDrop
23069     b4EndDrag: function(e) {
23070         Roo.fly(this.getDragEl()).hide();
23071     },
23072
23073     // overrides Roo.dd.DragDrop
23074     // By default we try to move the element to the last location of the frame.
23075     // This is so that the default behavior mirrors that of Roo.dd.DD.
23076     endDrag: function(e) {
23077
23078         var lel = this.getEl();
23079         var del = this.getDragEl();
23080
23081         // Show the drag frame briefly so we can get its position
23082         del.style.visibility = "";
23083
23084         this.beforeMove();
23085         // Hide the linked element before the move to get around a Safari
23086         // rendering bug.
23087         lel.style.visibility = "hidden";
23088         Roo.dd.DDM.moveToEl(lel, del);
23089         del.style.visibility = "hidden";
23090         lel.style.visibility = "";
23091
23092         this.afterDrag();
23093     },
23094
23095     beforeMove : function(){
23096
23097     },
23098
23099     afterDrag : function(){
23100
23101     },
23102
23103     toString: function() {
23104         return ("DDProxy " + this.id);
23105     }
23106
23107 });
23108 /*
23109  * Based on:
23110  * Ext JS Library 1.1.1
23111  * Copyright(c) 2006-2007, Ext JS, LLC.
23112  *
23113  * Originally Released Under LGPL - original licence link has changed is not relivant.
23114  *
23115  * Fork - LGPL
23116  * <script type="text/javascript">
23117  */
23118
23119  /**
23120  * @class Roo.dd.DDTarget
23121  * A DragDrop implementation that does not move, but can be a drop
23122  * target.  You would get the same result by simply omitting implementation
23123  * for the event callbacks, but this way we reduce the processing cost of the
23124  * event listener and the callbacks.
23125  * @extends Roo.dd.DragDrop
23126  * @constructor
23127  * @param {String} id the id of the element that is a drop target
23128  * @param {String} sGroup the group of related DragDrop objects
23129  * @param {object} config an object containing configurable attributes
23130  *                 Valid properties for DDTarget in addition to those in
23131  *                 DragDrop:
23132  *                    none
23133  */
23134 Roo.dd.DDTarget = function(id, sGroup, config) {
23135     if (id) {
23136         this.initTarget(id, sGroup, config);
23137     }
23138     if (config && (config.listeners || config.events)) { 
23139         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
23140             listeners : config.listeners || {}, 
23141             events : config.events || {} 
23142         });    
23143     }
23144 };
23145
23146 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
23147 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
23148     toString: function() {
23149         return ("DDTarget " + this.id);
23150     }
23151 });
23152 /*
23153  * Based on:
23154  * Ext JS Library 1.1.1
23155  * Copyright(c) 2006-2007, Ext JS, LLC.
23156  *
23157  * Originally Released Under LGPL - original licence link has changed is not relivant.
23158  *
23159  * Fork - LGPL
23160  * <script type="text/javascript">
23161  */
23162  
23163
23164 /**
23165  * @class Roo.dd.ScrollManager
23166  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
23167  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
23168  * @static
23169  */
23170 Roo.dd.ScrollManager = function(){
23171     var ddm = Roo.dd.DragDropMgr;
23172     var els = {};
23173     var dragEl = null;
23174     var proc = {};
23175     
23176     
23177     
23178     var onStop = function(e){
23179         dragEl = null;
23180         clearProc();
23181     };
23182     
23183     var triggerRefresh = function(){
23184         if(ddm.dragCurrent){
23185              ddm.refreshCache(ddm.dragCurrent.groups);
23186         }
23187     };
23188     
23189     var doScroll = function(){
23190         if(ddm.dragCurrent){
23191             var dds = Roo.dd.ScrollManager;
23192             if(!dds.animate){
23193                 if(proc.el.scroll(proc.dir, dds.increment)){
23194                     triggerRefresh();
23195                 }
23196             }else{
23197                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
23198             }
23199         }
23200     };
23201     
23202     var clearProc = function(){
23203         if(proc.id){
23204             clearInterval(proc.id);
23205         }
23206         proc.id = 0;
23207         proc.el = null;
23208         proc.dir = "";
23209     };
23210     
23211     var startProc = function(el, dir){
23212          Roo.log('scroll startproc');
23213         clearProc();
23214         proc.el = el;
23215         proc.dir = dir;
23216         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
23217     };
23218     
23219     var onFire = function(e, isDrop){
23220        
23221         if(isDrop || !ddm.dragCurrent){ return; }
23222         var dds = Roo.dd.ScrollManager;
23223         if(!dragEl || dragEl != ddm.dragCurrent){
23224             dragEl = ddm.dragCurrent;
23225             // refresh regions on drag start
23226             dds.refreshCache();
23227         }
23228         
23229         var xy = Roo.lib.Event.getXY(e);
23230         var pt = new Roo.lib.Point(xy[0], xy[1]);
23231         for(var id in els){
23232             var el = els[id], r = el._region;
23233             if(r && r.contains(pt) && el.isScrollable()){
23234                 if(r.bottom - pt.y <= dds.thresh){
23235                     if(proc.el != el){
23236                         startProc(el, "down");
23237                     }
23238                     return;
23239                 }else if(r.right - pt.x <= dds.thresh){
23240                     if(proc.el != el){
23241                         startProc(el, "left");
23242                     }
23243                     return;
23244                 }else if(pt.y - r.top <= dds.thresh){
23245                     if(proc.el != el){
23246                         startProc(el, "up");
23247                     }
23248                     return;
23249                 }else if(pt.x - r.left <= dds.thresh){
23250                     if(proc.el != el){
23251                         startProc(el, "right");
23252                     }
23253                     return;
23254                 }
23255             }
23256         }
23257         clearProc();
23258     };
23259     
23260     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
23261     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
23262     
23263     return {
23264         /**
23265          * Registers new overflow element(s) to auto scroll
23266          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
23267          */
23268         register : function(el){
23269             if(el instanceof Array){
23270                 for(var i = 0, len = el.length; i < len; i++) {
23271                         this.register(el[i]);
23272                 }
23273             }else{
23274                 el = Roo.get(el);
23275                 els[el.id] = el;
23276             }
23277             Roo.dd.ScrollManager.els = els;
23278         },
23279         
23280         /**
23281          * Unregisters overflow element(s) so they are no longer scrolled
23282          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
23283          */
23284         unregister : function(el){
23285             if(el instanceof Array){
23286                 for(var i = 0, len = el.length; i < len; i++) {
23287                         this.unregister(el[i]);
23288                 }
23289             }else{
23290                 el = Roo.get(el);
23291                 delete els[el.id];
23292             }
23293         },
23294         
23295         /**
23296          * The number of pixels from the edge of a container the pointer needs to be to 
23297          * trigger scrolling (defaults to 25)
23298          * @type Number
23299          */
23300         thresh : 25,
23301         
23302         /**
23303          * The number of pixels to scroll in each scroll increment (defaults to 50)
23304          * @type Number
23305          */
23306         increment : 100,
23307         
23308         /**
23309          * The frequency of scrolls in milliseconds (defaults to 500)
23310          * @type Number
23311          */
23312         frequency : 500,
23313         
23314         /**
23315          * True to animate the scroll (defaults to true)
23316          * @type Boolean
23317          */
23318         animate: true,
23319         
23320         /**
23321          * The animation duration in seconds - 
23322          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
23323          * @type Number
23324          */
23325         animDuration: .4,
23326         
23327         /**
23328          * Manually trigger a cache refresh.
23329          */
23330         refreshCache : function(){
23331             for(var id in els){
23332                 if(typeof els[id] == 'object'){ // for people extending the object prototype
23333                     els[id]._region = els[id].getRegion();
23334                 }
23335             }
23336         }
23337     };
23338 }();/*
23339  * Based on:
23340  * Ext JS Library 1.1.1
23341  * Copyright(c) 2006-2007, Ext JS, LLC.
23342  *
23343  * Originally Released Under LGPL - original licence link has changed is not relivant.
23344  *
23345  * Fork - LGPL
23346  * <script type="text/javascript">
23347  */
23348  
23349
23350 /**
23351  * @class Roo.dd.Registry
23352  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
23353  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
23354  * @static
23355  */
23356 Roo.dd.Registry = function(){
23357     var elements = {}; 
23358     var handles = {}; 
23359     var autoIdSeed = 0;
23360
23361     var getId = function(el, autogen){
23362         if(typeof el == "string"){
23363             return el;
23364         }
23365         var id = el.id;
23366         if(!id && autogen !== false){
23367             id = "roodd-" + (++autoIdSeed);
23368             el.id = id;
23369         }
23370         return id;
23371     };
23372     
23373     return {
23374     /**
23375      * Register a drag drop element
23376      * @param {String|HTMLElement} element The id or DOM node to register
23377      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
23378      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
23379      * knows how to interpret, plus there are some specific properties known to the Registry that should be
23380      * populated in the data object (if applicable):
23381      * <pre>
23382 Value      Description<br />
23383 ---------  ------------------------------------------<br />
23384 handles    Array of DOM nodes that trigger dragging<br />
23385            for the element being registered<br />
23386 isHandle   True if the element passed in triggers<br />
23387            dragging itself, else false
23388 </pre>
23389      */
23390         register : function(el, data){
23391             data = data || {};
23392             if(typeof el == "string"){
23393                 el = document.getElementById(el);
23394             }
23395             data.ddel = el;
23396             elements[getId(el)] = data;
23397             if(data.isHandle !== false){
23398                 handles[data.ddel.id] = data;
23399             }
23400             if(data.handles){
23401                 var hs = data.handles;
23402                 for(var i = 0, len = hs.length; i < len; i++){
23403                         handles[getId(hs[i])] = data;
23404                 }
23405             }
23406         },
23407
23408     /**
23409      * Unregister a drag drop element
23410      * @param {String|HTMLElement}  element The id or DOM node to unregister
23411      */
23412         unregister : function(el){
23413             var id = getId(el, false);
23414             var data = elements[id];
23415             if(data){
23416                 delete elements[id];
23417                 if(data.handles){
23418                     var hs = data.handles;
23419                     for(var i = 0, len = hs.length; i < len; i++){
23420                         delete handles[getId(hs[i], false)];
23421                     }
23422                 }
23423             }
23424         },
23425
23426     /**
23427      * Returns the handle registered for a DOM Node by id
23428      * @param {String|HTMLElement} id The DOM node or id to look up
23429      * @return {Object} handle The custom handle data
23430      */
23431         getHandle : function(id){
23432             if(typeof id != "string"){ // must be element?
23433                 id = id.id;
23434             }
23435             return handles[id];
23436         },
23437
23438     /**
23439      * Returns the handle that is registered for the DOM node that is the target of the event
23440      * @param {Event} e The event
23441      * @return {Object} handle The custom handle data
23442      */
23443         getHandleFromEvent : function(e){
23444             var t = Roo.lib.Event.getTarget(e);
23445             return t ? handles[t.id] : null;
23446         },
23447
23448     /**
23449      * Returns a custom data object that is registered for a DOM node by id
23450      * @param {String|HTMLElement} id The DOM node or id to look up
23451      * @return {Object} data The custom data
23452      */
23453         getTarget : function(id){
23454             if(typeof id != "string"){ // must be element?
23455                 id = id.id;
23456             }
23457             return elements[id];
23458         },
23459
23460     /**
23461      * Returns a custom data object that is registered for the DOM node that is the target of the event
23462      * @param {Event} e The event
23463      * @return {Object} data The custom data
23464      */
23465         getTargetFromEvent : function(e){
23466             var t = Roo.lib.Event.getTarget(e);
23467             return t ? elements[t.id] || handles[t.id] : null;
23468         }
23469     };
23470 }();/*
23471  * Based on:
23472  * Ext JS Library 1.1.1
23473  * Copyright(c) 2006-2007, Ext JS, LLC.
23474  *
23475  * Originally Released Under LGPL - original licence link has changed is not relivant.
23476  *
23477  * Fork - LGPL
23478  * <script type="text/javascript">
23479  */
23480  
23481
23482 /**
23483  * @class Roo.dd.StatusProxy
23484  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
23485  * default drag proxy used by all Roo.dd components.
23486  * @constructor
23487  * @param {Object} config
23488  */
23489 Roo.dd.StatusProxy = function(config){
23490     Roo.apply(this, config);
23491     this.id = this.id || Roo.id();
23492     this.el = new Roo.Layer({
23493         dh: {
23494             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
23495                 {tag: "div", cls: "x-dd-drop-icon"},
23496                 {tag: "div", cls: "x-dd-drag-ghost"}
23497             ]
23498         }, 
23499         shadow: !config || config.shadow !== false
23500     });
23501     this.ghost = Roo.get(this.el.dom.childNodes[1]);
23502     this.dropStatus = this.dropNotAllowed;
23503 };
23504
23505 Roo.dd.StatusProxy.prototype = {
23506     /**
23507      * @cfg {String} dropAllowed
23508      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
23509      */
23510     dropAllowed : "x-dd-drop-ok",
23511     /**
23512      * @cfg {String} dropNotAllowed
23513      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
23514      */
23515     dropNotAllowed : "x-dd-drop-nodrop",
23516
23517     /**
23518      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
23519      * over the current target element.
23520      * @param {String} cssClass The css class for the new drop status indicator image
23521      */
23522     setStatus : function(cssClass){
23523         cssClass = cssClass || this.dropNotAllowed;
23524         if(this.dropStatus != cssClass){
23525             this.el.replaceClass(this.dropStatus, cssClass);
23526             this.dropStatus = cssClass;
23527         }
23528     },
23529
23530     /**
23531      * Resets the status indicator to the default dropNotAllowed value
23532      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
23533      */
23534     reset : function(clearGhost){
23535         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
23536         this.dropStatus = this.dropNotAllowed;
23537         if(clearGhost){
23538             this.ghost.update("");
23539         }
23540     },
23541
23542     /**
23543      * Updates the contents of the ghost element
23544      * @param {String} html The html that will replace the current innerHTML of the ghost element
23545      */
23546     update : function(html){
23547         if(typeof html == "string"){
23548             this.ghost.update(html);
23549         }else{
23550             this.ghost.update("");
23551             html.style.margin = "0";
23552             this.ghost.dom.appendChild(html);
23553         }
23554         // ensure float = none set?? cant remember why though.
23555         var el = this.ghost.dom.firstChild;
23556                 if(el){
23557                         Roo.fly(el).setStyle('float', 'none');
23558                 }
23559     },
23560     
23561     /**
23562      * Returns the underlying proxy {@link Roo.Layer}
23563      * @return {Roo.Layer} el
23564     */
23565     getEl : function(){
23566         return this.el;
23567     },
23568
23569     /**
23570      * Returns the ghost element
23571      * @return {Roo.Element} el
23572      */
23573     getGhost : function(){
23574         return this.ghost;
23575     },
23576
23577     /**
23578      * Hides the proxy
23579      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
23580      */
23581     hide : function(clear){
23582         this.el.hide();
23583         if(clear){
23584             this.reset(true);
23585         }
23586     },
23587
23588     /**
23589      * Stops the repair animation if it's currently running
23590      */
23591     stop : function(){
23592         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
23593             this.anim.stop();
23594         }
23595     },
23596
23597     /**
23598      * Displays this proxy
23599      */
23600     show : function(){
23601         this.el.show();
23602     },
23603
23604     /**
23605      * Force the Layer to sync its shadow and shim positions to the element
23606      */
23607     sync : function(){
23608         this.el.sync();
23609     },
23610
23611     /**
23612      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
23613      * invalid drop operation by the item being dragged.
23614      * @param {Array} xy The XY position of the element ([x, y])
23615      * @param {Function} callback The function to call after the repair is complete
23616      * @param {Object} scope The scope in which to execute the callback
23617      */
23618     repair : function(xy, callback, scope){
23619         this.callback = callback;
23620         this.scope = scope;
23621         if(xy && this.animRepair !== false){
23622             this.el.addClass("x-dd-drag-repair");
23623             this.el.hideUnders(true);
23624             this.anim = this.el.shift({
23625                 duration: this.repairDuration || .5,
23626                 easing: 'easeOut',
23627                 xy: xy,
23628                 stopFx: true,
23629                 callback: this.afterRepair,
23630                 scope: this
23631             });
23632         }else{
23633             this.afterRepair();
23634         }
23635     },
23636
23637     // private
23638     afterRepair : function(){
23639         this.hide(true);
23640         if(typeof this.callback == "function"){
23641             this.callback.call(this.scope || this);
23642         }
23643         this.callback = null;
23644         this.scope = null;
23645     }
23646 };/*
23647  * Based on:
23648  * Ext JS Library 1.1.1
23649  * Copyright(c) 2006-2007, Ext JS, LLC.
23650  *
23651  * Originally Released Under LGPL - original licence link has changed is not relivant.
23652  *
23653  * Fork - LGPL
23654  * <script type="text/javascript">
23655  */
23656
23657 /**
23658  * @class Roo.dd.DragSource
23659  * @extends Roo.dd.DDProxy
23660  * A simple class that provides the basic implementation needed to make any element draggable.
23661  * @constructor
23662  * @param {String/HTMLElement/Element} el The container element
23663  * @param {Object} config
23664  */
23665 Roo.dd.DragSource = function(el, config){
23666     this.el = Roo.get(el);
23667     this.dragData = {};
23668     
23669     Roo.apply(this, config);
23670     
23671     if(!this.proxy){
23672         this.proxy = new Roo.dd.StatusProxy();
23673     }
23674
23675     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
23676           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
23677     
23678     this.dragging = false;
23679 };
23680
23681 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
23682     /**
23683      * @cfg {String} dropAllowed
23684      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
23685      */
23686     dropAllowed : "x-dd-drop-ok",
23687     /**
23688      * @cfg {String} dropNotAllowed
23689      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
23690      */
23691     dropNotAllowed : "x-dd-drop-nodrop",
23692
23693     /**
23694      * Returns the data object associated with this drag source
23695      * @return {Object} data An object containing arbitrary data
23696      */
23697     getDragData : function(e){
23698         return this.dragData;
23699     },
23700
23701     // private
23702     onDragEnter : function(e, id){
23703         var target = Roo.dd.DragDropMgr.getDDById(id);
23704         this.cachedTarget = target;
23705         if(this.beforeDragEnter(target, e, id) !== false){
23706             if(target.isNotifyTarget){
23707                 var status = target.notifyEnter(this, e, this.dragData);
23708                 this.proxy.setStatus(status);
23709             }else{
23710                 this.proxy.setStatus(this.dropAllowed);
23711             }
23712             
23713             if(this.afterDragEnter){
23714                 /**
23715                  * An empty function by default, but provided so that you can perform a custom action
23716                  * when the dragged item enters the drop target by providing an implementation.
23717                  * @param {Roo.dd.DragDrop} target The drop target
23718                  * @param {Event} e The event object
23719                  * @param {String} id The id of the dragged element
23720                  * @method afterDragEnter
23721                  */
23722                 this.afterDragEnter(target, e, id);
23723             }
23724         }
23725     },
23726
23727     /**
23728      * An empty function by default, but provided so that you can perform a custom action
23729      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
23730      * @param {Roo.dd.DragDrop} target The drop target
23731      * @param {Event} e The event object
23732      * @param {String} id The id of the dragged element
23733      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23734      */
23735     beforeDragEnter : function(target, e, id){
23736         return true;
23737     },
23738
23739     // private
23740     alignElWithMouse: function() {
23741         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
23742         this.proxy.sync();
23743     },
23744
23745     // private
23746     onDragOver : function(e, id){
23747         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23748         if(this.beforeDragOver(target, e, id) !== false){
23749             if(target.isNotifyTarget){
23750                 var status = target.notifyOver(this, e, this.dragData);
23751                 this.proxy.setStatus(status);
23752             }
23753
23754             if(this.afterDragOver){
23755                 /**
23756                  * An empty function by default, but provided so that you can perform a custom action
23757                  * while the dragged item is over the drop target by providing an implementation.
23758                  * @param {Roo.dd.DragDrop} target The drop target
23759                  * @param {Event} e The event object
23760                  * @param {String} id The id of the dragged element
23761                  * @method afterDragOver
23762                  */
23763                 this.afterDragOver(target, e, id);
23764             }
23765         }
23766     },
23767
23768     /**
23769      * An empty function by default, but provided so that you can perform a custom action
23770      * while the dragged item is over the drop target and optionally cancel the onDragOver.
23771      * @param {Roo.dd.DragDrop} target The drop target
23772      * @param {Event} e The event object
23773      * @param {String} id The id of the dragged element
23774      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23775      */
23776     beforeDragOver : function(target, e, id){
23777         return true;
23778     },
23779
23780     // private
23781     onDragOut : function(e, id){
23782         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23783         if(this.beforeDragOut(target, e, id) !== false){
23784             if(target.isNotifyTarget){
23785                 target.notifyOut(this, e, this.dragData);
23786             }
23787             this.proxy.reset();
23788             if(this.afterDragOut){
23789                 /**
23790                  * An empty function by default, but provided so that you can perform a custom action
23791                  * after the dragged item is dragged out of the target without dropping.
23792                  * @param {Roo.dd.DragDrop} target The drop target
23793                  * @param {Event} e The event object
23794                  * @param {String} id The id of the dragged element
23795                  * @method afterDragOut
23796                  */
23797                 this.afterDragOut(target, e, id);
23798             }
23799         }
23800         this.cachedTarget = null;
23801     },
23802
23803     /**
23804      * An empty function by default, but provided so that you can perform a custom action before the dragged
23805      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
23806      * @param {Roo.dd.DragDrop} target The drop target
23807      * @param {Event} e The event object
23808      * @param {String} id The id of the dragged element
23809      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23810      */
23811     beforeDragOut : function(target, e, id){
23812         return true;
23813     },
23814     
23815     // private
23816     onDragDrop : function(e, id){
23817         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23818         if(this.beforeDragDrop(target, e, id) !== false){
23819             if(target.isNotifyTarget){
23820                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
23821                     this.onValidDrop(target, e, id);
23822                 }else{
23823                     this.onInvalidDrop(target, e, id);
23824                 }
23825             }else{
23826                 this.onValidDrop(target, e, id);
23827             }
23828             
23829             if(this.afterDragDrop){
23830                 /**
23831                  * An empty function by default, but provided so that you can perform a custom action
23832                  * after a valid drag drop has occurred by providing an implementation.
23833                  * @param {Roo.dd.DragDrop} target The drop target
23834                  * @param {Event} e The event object
23835                  * @param {String} id The id of the dropped element
23836                  * @method afterDragDrop
23837                  */
23838                 this.afterDragDrop(target, e, id);
23839             }
23840         }
23841         delete this.cachedTarget;
23842     },
23843
23844     /**
23845      * An empty function by default, but provided so that you can perform a custom action before the dragged
23846      * item is dropped onto the target and optionally cancel the onDragDrop.
23847      * @param {Roo.dd.DragDrop} target The drop target
23848      * @param {Event} e The event object
23849      * @param {String} id The id of the dragged element
23850      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
23851      */
23852     beforeDragDrop : function(target, e, id){
23853         return true;
23854     },
23855
23856     // private
23857     onValidDrop : function(target, e, id){
23858         this.hideProxy();
23859         if(this.afterValidDrop){
23860             /**
23861              * An empty function by default, but provided so that you can perform a custom action
23862              * after a valid drop has occurred by providing an implementation.
23863              * @param {Object} target The target DD 
23864              * @param {Event} e The event object
23865              * @param {String} id The id of the dropped element
23866              * @method afterInvalidDrop
23867              */
23868             this.afterValidDrop(target, e, id);
23869         }
23870     },
23871
23872     // private
23873     getRepairXY : function(e, data){
23874         return this.el.getXY();  
23875     },
23876
23877     // private
23878     onInvalidDrop : function(target, e, id){
23879         this.beforeInvalidDrop(target, e, id);
23880         if(this.cachedTarget){
23881             if(this.cachedTarget.isNotifyTarget){
23882                 this.cachedTarget.notifyOut(this, e, this.dragData);
23883             }
23884             this.cacheTarget = null;
23885         }
23886         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
23887
23888         if(this.afterInvalidDrop){
23889             /**
23890              * An empty function by default, but provided so that you can perform a custom action
23891              * after an invalid drop has occurred by providing an implementation.
23892              * @param {Event} e The event object
23893              * @param {String} id The id of the dropped element
23894              * @method afterInvalidDrop
23895              */
23896             this.afterInvalidDrop(e, id);
23897         }
23898     },
23899
23900     // private
23901     afterRepair : function(){
23902         if(Roo.enableFx){
23903             this.el.highlight(this.hlColor || "c3daf9");
23904         }
23905         this.dragging = false;
23906     },
23907
23908     /**
23909      * An empty function by default, but provided so that you can perform a custom action after an invalid
23910      * drop has occurred.
23911      * @param {Roo.dd.DragDrop} target The drop target
23912      * @param {Event} e The event object
23913      * @param {String} id The id of the dragged element
23914      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
23915      */
23916     beforeInvalidDrop : function(target, e, id){
23917         return true;
23918     },
23919
23920     // private
23921     handleMouseDown : function(e){
23922         if(this.dragging) {
23923             return;
23924         }
23925         var data = this.getDragData(e);
23926         if(data && this.onBeforeDrag(data, e) !== false){
23927             this.dragData = data;
23928             this.proxy.stop();
23929             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
23930         } 
23931     },
23932
23933     /**
23934      * An empty function by default, but provided so that you can perform a custom action before the initial
23935      * drag event begins and optionally cancel it.
23936      * @param {Object} data An object containing arbitrary data to be shared with drop targets
23937      * @param {Event} e The event object
23938      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23939      */
23940     onBeforeDrag : function(data, e){
23941         return true;
23942     },
23943
23944     /**
23945      * An empty function by default, but provided so that you can perform a custom action once the initial
23946      * drag event has begun.  The drag cannot be canceled from this function.
23947      * @param {Number} x The x position of the click on the dragged object
23948      * @param {Number} y The y position of the click on the dragged object
23949      */
23950     onStartDrag : Roo.emptyFn,
23951
23952     // private - YUI override
23953     startDrag : function(x, y){
23954         this.proxy.reset();
23955         this.dragging = true;
23956         this.proxy.update("");
23957         this.onInitDrag(x, y);
23958         this.proxy.show();
23959     },
23960
23961     // private
23962     onInitDrag : function(x, y){
23963         var clone = this.el.dom.cloneNode(true);
23964         clone.id = Roo.id(); // prevent duplicate ids
23965         this.proxy.update(clone);
23966         this.onStartDrag(x, y);
23967         return true;
23968     },
23969
23970     /**
23971      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
23972      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
23973      */
23974     getProxy : function(){
23975         return this.proxy;  
23976     },
23977
23978     /**
23979      * Hides the drag source's {@link Roo.dd.StatusProxy}
23980      */
23981     hideProxy : function(){
23982         this.proxy.hide();  
23983         this.proxy.reset(true);
23984         this.dragging = false;
23985     },
23986
23987     // private
23988     triggerCacheRefresh : function(){
23989         Roo.dd.DDM.refreshCache(this.groups);
23990     },
23991
23992     // private - override to prevent hiding
23993     b4EndDrag: function(e) {
23994     },
23995
23996     // private - override to prevent moving
23997     endDrag : function(e){
23998         this.onEndDrag(this.dragData, e);
23999     },
24000
24001     // private
24002     onEndDrag : function(data, e){
24003     },
24004     
24005     // private - pin to cursor
24006     autoOffset : function(x, y) {
24007         this.setDelta(-12, -20);
24008     }    
24009 });/*
24010  * Based on:
24011  * Ext JS Library 1.1.1
24012  * Copyright(c) 2006-2007, Ext JS, LLC.
24013  *
24014  * Originally Released Under LGPL - original licence link has changed is not relivant.
24015  *
24016  * Fork - LGPL
24017  * <script type="text/javascript">
24018  */
24019
24020
24021 /**
24022  * @class Roo.dd.DropTarget
24023  * @extends Roo.dd.DDTarget
24024  * A simple class that provides the basic implementation needed to make any element a drop target that can have
24025  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
24026  * @constructor
24027  * @param {String/HTMLElement/Element} el The container element
24028  * @param {Object} config
24029  */
24030 Roo.dd.DropTarget = function(el, config){
24031     this.el = Roo.get(el);
24032     
24033     var listeners = false; ;
24034     if (config && config.listeners) {
24035         listeners= config.listeners;
24036         delete config.listeners;
24037     }
24038     Roo.apply(this, config);
24039     
24040     if(this.containerScroll){
24041         Roo.dd.ScrollManager.register(this.el);
24042     }
24043     this.addEvents( {
24044          /**
24045          * @scope Roo.dd.DropTarget
24046          */
24047          
24048          /**
24049          * @event enter
24050          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
24051          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
24052          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
24053          * 
24054          * IMPORTANT : it should set  this.valid to true|false
24055          * 
24056          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24057          * @param {Event} e The event
24058          * @param {Object} data An object containing arbitrary data supplied by the drag source
24059          */
24060         "enter" : true,
24061         
24062          /**
24063          * @event over
24064          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
24065          * This method will be called on every mouse movement while the drag source is over the drop target.
24066          * This default implementation simply returns the dropAllowed config value.
24067          * 
24068          * IMPORTANT : it should set  this.valid to true|false
24069          * 
24070          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24071          * @param {Event} e The event
24072          * @param {Object} data An object containing arbitrary data supplied by the drag source
24073          
24074          */
24075         "over" : true,
24076         /**
24077          * @event out
24078          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
24079          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
24080          * overClass (if any) from the drop element.
24081          * 
24082          * 
24083          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24084          * @param {Event} e The event
24085          * @param {Object} data An object containing arbitrary data supplied by the drag source
24086          */
24087          "out" : true,
24088          
24089         /**
24090          * @event drop
24091          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
24092          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
24093          * implementation that does something to process the drop event and returns true so that the drag source's
24094          * repair action does not run.
24095          * 
24096          * IMPORTANT : it should set this.success
24097          * 
24098          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24099          * @param {Event} e The event
24100          * @param {Object} data An object containing arbitrary data supplied by the drag source
24101         */
24102          "drop" : true
24103     });
24104             
24105      
24106     Roo.dd.DropTarget.superclass.constructor.call(  this, 
24107         this.el.dom, 
24108         this.ddGroup || this.group,
24109         {
24110             isTarget: true,
24111             listeners : listeners || {} 
24112            
24113         
24114         }
24115     );
24116
24117 };
24118
24119 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
24120     /**
24121      * @cfg {String} overClass
24122      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
24123      */
24124      /**
24125      * @cfg {String} ddGroup
24126      * The drag drop group to handle drop events for
24127      */
24128      
24129     /**
24130      * @cfg {String} dropAllowed
24131      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
24132      */
24133     dropAllowed : "x-dd-drop-ok",
24134     /**
24135      * @cfg {String} dropNotAllowed
24136      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
24137      */
24138     dropNotAllowed : "x-dd-drop-nodrop",
24139     /**
24140      * @cfg {boolean} success
24141      * set this after drop listener.. 
24142      */
24143     success : false,
24144     /**
24145      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
24146      * if the drop point is valid for over/enter..
24147      */
24148     valid : false,
24149     // private
24150     isTarget : true,
24151
24152     // private
24153     isNotifyTarget : true,
24154     
24155     /**
24156      * @hide
24157      */
24158     notifyEnter : function(dd, e, data)
24159     {
24160         this.valid = true;
24161         this.fireEvent('enter', dd, e, data);
24162         if(this.overClass){
24163             this.el.addClass(this.overClass);
24164         }
24165         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24166             this.valid ? this.dropAllowed : this.dropNotAllowed
24167         );
24168     },
24169
24170     /**
24171      * @hide
24172      */
24173     notifyOver : function(dd, e, data)
24174     {
24175         this.valid = true;
24176         this.fireEvent('over', dd, e, data);
24177         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24178             this.valid ? this.dropAllowed : this.dropNotAllowed
24179         );
24180     },
24181
24182     /**
24183      * @hide
24184      */
24185     notifyOut : function(dd, e, data)
24186     {
24187         this.fireEvent('out', dd, e, data);
24188         if(this.overClass){
24189             this.el.removeClass(this.overClass);
24190         }
24191     },
24192
24193     /**
24194      * @hide
24195      */
24196     notifyDrop : function(dd, e, data)
24197     {
24198         this.success = false;
24199         this.fireEvent('drop', dd, e, data);
24200         return this.success;
24201     }
24202 });/*
24203  * Based on:
24204  * Ext JS Library 1.1.1
24205  * Copyright(c) 2006-2007, Ext JS, LLC.
24206  *
24207  * Originally Released Under LGPL - original licence link has changed is not relivant.
24208  *
24209  * Fork - LGPL
24210  * <script type="text/javascript">
24211  */
24212
24213
24214 /**
24215  * @class Roo.dd.DragZone
24216  * @extends Roo.dd.DragSource
24217  * This class provides a container DD instance that proxies for multiple child node sources.<br />
24218  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
24219  * @constructor
24220  * @param {String/HTMLElement/Element} el The container element
24221  * @param {Object} config
24222  */
24223 Roo.dd.DragZone = function(el, config){
24224     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
24225     if(this.containerScroll){
24226         Roo.dd.ScrollManager.register(this.el);
24227     }
24228 };
24229
24230 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
24231     /**
24232      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
24233      * for auto scrolling during drag operations.
24234      */
24235     /**
24236      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
24237      * method after a failed drop (defaults to "c3daf9" - light blue)
24238      */
24239
24240     /**
24241      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
24242      * for a valid target to drag based on the mouse down. Override this method
24243      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
24244      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
24245      * @param {EventObject} e The mouse down event
24246      * @return {Object} The dragData
24247      */
24248     getDragData : function(e){
24249         return Roo.dd.Registry.getHandleFromEvent(e);
24250     },
24251     
24252     /**
24253      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
24254      * this.dragData.ddel
24255      * @param {Number} x The x position of the click on the dragged object
24256      * @param {Number} y The y position of the click on the dragged object
24257      * @return {Boolean} true to continue the drag, false to cancel
24258      */
24259     onInitDrag : function(x, y){
24260         this.proxy.update(this.dragData.ddel.cloneNode(true));
24261         this.onStartDrag(x, y);
24262         return true;
24263     },
24264     
24265     /**
24266      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
24267      */
24268     afterRepair : function(){
24269         if(Roo.enableFx){
24270             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
24271         }
24272         this.dragging = false;
24273     },
24274
24275     /**
24276      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
24277      * the XY of this.dragData.ddel
24278      * @param {EventObject} e The mouse up event
24279      * @return {Array} The xy location (e.g. [100, 200])
24280      */
24281     getRepairXY : function(e){
24282         return Roo.Element.fly(this.dragData.ddel).getXY();  
24283     }
24284 });/*
24285  * Based on:
24286  * Ext JS Library 1.1.1
24287  * Copyright(c) 2006-2007, Ext JS, LLC.
24288  *
24289  * Originally Released Under LGPL - original licence link has changed is not relivant.
24290  *
24291  * Fork - LGPL
24292  * <script type="text/javascript">
24293  */
24294 /**
24295  * @class Roo.dd.DropZone
24296  * @extends Roo.dd.DropTarget
24297  * This class provides a container DD instance that proxies for multiple child node targets.<br />
24298  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
24299  * @constructor
24300  * @param {String/HTMLElement/Element} el The container element
24301  * @param {Object} config
24302  */
24303 Roo.dd.DropZone = function(el, config){
24304     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
24305 };
24306
24307 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
24308     /**
24309      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
24310      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
24311      * provide your own custom lookup.
24312      * @param {Event} e The event
24313      * @return {Object} data The custom data
24314      */
24315     getTargetFromEvent : function(e){
24316         return Roo.dd.Registry.getTargetFromEvent(e);
24317     },
24318
24319     /**
24320      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
24321      * that it has registered.  This method has no default implementation and should be overridden to provide
24322      * node-specific processing if necessary.
24323      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
24324      * {@link #getTargetFromEvent} for this node)
24325      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24326      * @param {Event} e The event
24327      * @param {Object} data An object containing arbitrary data supplied by the drag source
24328      */
24329     onNodeEnter : function(n, dd, e, data){
24330         
24331     },
24332
24333     /**
24334      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
24335      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
24336      * overridden to provide the proper feedback.
24337      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24338      * {@link #getTargetFromEvent} for this node)
24339      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24340      * @param {Event} e The event
24341      * @param {Object} data An object containing arbitrary data supplied by the drag source
24342      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24343      * underlying {@link Roo.dd.StatusProxy} can be updated
24344      */
24345     onNodeOver : function(n, dd, e, data){
24346         return this.dropAllowed;
24347     },
24348
24349     /**
24350      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
24351      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
24352      * node-specific processing if necessary.
24353      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24354      * {@link #getTargetFromEvent} for this node)
24355      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24356      * @param {Event} e The event
24357      * @param {Object} data An object containing arbitrary data supplied by the drag source
24358      */
24359     onNodeOut : function(n, dd, e, data){
24360         
24361     },
24362
24363     /**
24364      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
24365      * the drop node.  The default implementation returns false, so it should be overridden to provide the
24366      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
24367      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24368      * {@link #getTargetFromEvent} for this node)
24369      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24370      * @param {Event} e The event
24371      * @param {Object} data An object containing arbitrary data supplied by the drag source
24372      * @return {Boolean} True if the drop was valid, else false
24373      */
24374     onNodeDrop : function(n, dd, e, data){
24375         return false;
24376     },
24377
24378     /**
24379      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
24380      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
24381      * it should be overridden to provide the proper feedback if necessary.
24382      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24383      * @param {Event} e The event
24384      * @param {Object} data An object containing arbitrary data supplied by the drag source
24385      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24386      * underlying {@link Roo.dd.StatusProxy} can be updated
24387      */
24388     onContainerOver : function(dd, e, data){
24389         return this.dropNotAllowed;
24390     },
24391
24392     /**
24393      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
24394      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
24395      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
24396      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
24397      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24398      * @param {Event} e The event
24399      * @param {Object} data An object containing arbitrary data supplied by the drag source
24400      * @return {Boolean} True if the drop was valid, else false
24401      */
24402     onContainerDrop : function(dd, e, data){
24403         return false;
24404     },
24405
24406     /**
24407      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
24408      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
24409      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
24410      * you should override this method and provide a custom implementation.
24411      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24412      * @param {Event} e The event
24413      * @param {Object} data An object containing arbitrary data supplied by the drag source
24414      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24415      * underlying {@link Roo.dd.StatusProxy} can be updated
24416      */
24417     notifyEnter : function(dd, e, data){
24418         return this.dropNotAllowed;
24419     },
24420
24421     /**
24422      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
24423      * This method will be called on every mouse movement while the drag source is over the drop zone.
24424      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
24425      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
24426      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
24427      * registered node, it will call {@link #onContainerOver}.
24428      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24429      * @param {Event} e The event
24430      * @param {Object} data An object containing arbitrary data supplied by the drag source
24431      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24432      * underlying {@link Roo.dd.StatusProxy} can be updated
24433      */
24434     notifyOver : function(dd, e, data){
24435         var n = this.getTargetFromEvent(e);
24436         if(!n){ // not over valid drop target
24437             if(this.lastOverNode){
24438                 this.onNodeOut(this.lastOverNode, dd, e, data);
24439                 this.lastOverNode = null;
24440             }
24441             return this.onContainerOver(dd, e, data);
24442         }
24443         if(this.lastOverNode != n){
24444             if(this.lastOverNode){
24445                 this.onNodeOut(this.lastOverNode, dd, e, data);
24446             }
24447             this.onNodeEnter(n, dd, e, data);
24448             this.lastOverNode = n;
24449         }
24450         return this.onNodeOver(n, dd, e, data);
24451     },
24452
24453     /**
24454      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
24455      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
24456      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
24457      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24458      * @param {Event} e The event
24459      * @param {Object} data An object containing arbitrary data supplied by the drag zone
24460      */
24461     notifyOut : function(dd, e, data){
24462         if(this.lastOverNode){
24463             this.onNodeOut(this.lastOverNode, dd, e, data);
24464             this.lastOverNode = null;
24465         }
24466     },
24467
24468     /**
24469      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
24470      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
24471      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
24472      * otherwise it will call {@link #onContainerDrop}.
24473      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24474      * @param {Event} e The event
24475      * @param {Object} data An object containing arbitrary data supplied by the drag source
24476      * @return {Boolean} True if the drop was valid, else false
24477      */
24478     notifyDrop : function(dd, e, data){
24479         if(this.lastOverNode){
24480             this.onNodeOut(this.lastOverNode, dd, e, data);
24481             this.lastOverNode = null;
24482         }
24483         var n = this.getTargetFromEvent(e);
24484         return n ?
24485             this.onNodeDrop(n, dd, e, data) :
24486             this.onContainerDrop(dd, e, data);
24487     },
24488
24489     // private
24490     triggerCacheRefresh : function(){
24491         Roo.dd.DDM.refreshCache(this.groups);
24492     }  
24493 });/*
24494  * Based on:
24495  * Ext JS Library 1.1.1
24496  * Copyright(c) 2006-2007, Ext JS, LLC.
24497  *
24498  * Originally Released Under LGPL - original licence link has changed is not relivant.
24499  *
24500  * Fork - LGPL
24501  * <script type="text/javascript">
24502  */
24503
24504
24505 /**
24506  * @class Roo.data.SortTypes
24507  * @static
24508  * Defines the default sorting (casting?) comparison functions used when sorting data.
24509  */
24510 Roo.data.SortTypes = {
24511     /**
24512      * Default sort that does nothing
24513      * @param {Mixed} s The value being converted
24514      * @return {Mixed} The comparison value
24515      */
24516     none : function(s){
24517         return s;
24518     },
24519     
24520     /**
24521      * The regular expression used to strip tags
24522      * @type {RegExp}
24523      * @property
24524      */
24525     stripTagsRE : /<\/?[^>]+>/gi,
24526     
24527     /**
24528      * Strips all HTML tags to sort on text only
24529      * @param {Mixed} s The value being converted
24530      * @return {String} The comparison value
24531      */
24532     asText : function(s){
24533         return String(s).replace(this.stripTagsRE, "");
24534     },
24535     
24536     /**
24537      * Strips all HTML tags to sort on text only - Case insensitive
24538      * @param {Mixed} s The value being converted
24539      * @return {String} The comparison value
24540      */
24541     asUCText : function(s){
24542         return String(s).toUpperCase().replace(this.stripTagsRE, "");
24543     },
24544     
24545     /**
24546      * Case insensitive string
24547      * @param {Mixed} s The value being converted
24548      * @return {String} The comparison value
24549      */
24550     asUCString : function(s) {
24551         return String(s).toUpperCase();
24552     },
24553     
24554     /**
24555      * Date sorting
24556      * @param {Mixed} s The value being converted
24557      * @return {Number} The comparison value
24558      */
24559     asDate : function(s) {
24560         if(!s){
24561             return 0;
24562         }
24563         if(s instanceof Date){
24564             return s.getTime();
24565         }
24566         return Date.parse(String(s));
24567     },
24568     
24569     /**
24570      * Float sorting
24571      * @param {Mixed} s The value being converted
24572      * @return {Float} The comparison value
24573      */
24574     asFloat : function(s) {
24575         var val = parseFloat(String(s).replace(/,/g, ""));
24576         if(isNaN(val)) {
24577             val = 0;
24578         }
24579         return val;
24580     },
24581     
24582     /**
24583      * Integer sorting
24584      * @param {Mixed} s The value being converted
24585      * @return {Number} The comparison value
24586      */
24587     asInt : function(s) {
24588         var val = parseInt(String(s).replace(/,/g, ""));
24589         if(isNaN(val)) {
24590             val = 0;
24591         }
24592         return val;
24593     }
24594 };/*
24595  * Based on:
24596  * Ext JS Library 1.1.1
24597  * Copyright(c) 2006-2007, Ext JS, LLC.
24598  *
24599  * Originally Released Under LGPL - original licence link has changed is not relivant.
24600  *
24601  * Fork - LGPL
24602  * <script type="text/javascript">
24603  */
24604
24605 /**
24606 * @class Roo.data.Record
24607  * Instances of this class encapsulate both record <em>definition</em> information, and record
24608  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
24609  * to access Records cached in an {@link Roo.data.Store} object.<br>
24610  * <p>
24611  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
24612  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
24613  * objects.<br>
24614  * <p>
24615  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
24616  * @constructor
24617  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
24618  * {@link #create}. The parameters are the same.
24619  * @param {Array} data An associative Array of data values keyed by the field name.
24620  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
24621  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
24622  * not specified an integer id is generated.
24623  */
24624 Roo.data.Record = function(data, id){
24625     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
24626     this.data = data;
24627 };
24628
24629 /**
24630  * Generate a constructor for a specific record layout.
24631  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
24632  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
24633  * Each field definition object may contain the following properties: <ul>
24634  * <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,
24635  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
24636  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
24637  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
24638  * is being used, then this is a string containing the javascript expression to reference the data relative to 
24639  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
24640  * to the data item relative to the record element. If the mapping expression is the same as the field name,
24641  * this may be omitted.</p></li>
24642  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
24643  * <ul><li>auto (Default, implies no conversion)</li>
24644  * <li>string</li>
24645  * <li>int</li>
24646  * <li>float</li>
24647  * <li>boolean</li>
24648  * <li>date</li></ul></p></li>
24649  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
24650  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
24651  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
24652  * by the Reader into an object that will be stored in the Record. It is passed the
24653  * following parameters:<ul>
24654  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
24655  * </ul></p></li>
24656  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
24657  * </ul>
24658  * <br>usage:<br><pre><code>
24659 var TopicRecord = Roo.data.Record.create(
24660     {name: 'title', mapping: 'topic_title'},
24661     {name: 'author', mapping: 'username'},
24662     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
24663     {name: 'lastPost', mapping: 'post_time', type: 'date'},
24664     {name: 'lastPoster', mapping: 'user2'},
24665     {name: 'excerpt', mapping: 'post_text'}
24666 );
24667
24668 var myNewRecord = new TopicRecord({
24669     title: 'Do my job please',
24670     author: 'noobie',
24671     totalPosts: 1,
24672     lastPost: new Date(),
24673     lastPoster: 'Animal',
24674     excerpt: 'No way dude!'
24675 });
24676 myStore.add(myNewRecord);
24677 </code></pre>
24678  * @method create
24679  * @static
24680  */
24681 Roo.data.Record.create = function(o){
24682     var f = function(){
24683         f.superclass.constructor.apply(this, arguments);
24684     };
24685     Roo.extend(f, Roo.data.Record);
24686     var p = f.prototype;
24687     p.fields = new Roo.util.MixedCollection(false, function(field){
24688         return field.name;
24689     });
24690     for(var i = 0, len = o.length; i < len; i++){
24691         p.fields.add(new Roo.data.Field(o[i]));
24692     }
24693     f.getField = function(name){
24694         return p.fields.get(name);  
24695     };
24696     return f;
24697 };
24698
24699 Roo.data.Record.AUTO_ID = 1000;
24700 Roo.data.Record.EDIT = 'edit';
24701 Roo.data.Record.REJECT = 'reject';
24702 Roo.data.Record.COMMIT = 'commit';
24703
24704 Roo.data.Record.prototype = {
24705     /**
24706      * Readonly flag - true if this record has been modified.
24707      * @type Boolean
24708      */
24709     dirty : false,
24710     editing : false,
24711     error: null,
24712     modified: null,
24713
24714     // private
24715     join : function(store){
24716         this.store = store;
24717     },
24718
24719     /**
24720      * Set the named field to the specified value.
24721      * @param {String} name The name of the field to set.
24722      * @param {Object} value The value to set the field to.
24723      */
24724     set : function(name, value){
24725         if(this.data[name] == value){
24726             return;
24727         }
24728         this.dirty = true;
24729         if(!this.modified){
24730             this.modified = {};
24731         }
24732         if(typeof this.modified[name] == 'undefined'){
24733             this.modified[name] = this.data[name];
24734         }
24735         this.data[name] = value;
24736         if(!this.editing && this.store){
24737             this.store.afterEdit(this);
24738         }       
24739     },
24740
24741     /**
24742      * Get the value of the named field.
24743      * @param {String} name The name of the field to get the value of.
24744      * @return {Object} The value of the field.
24745      */
24746     get : function(name){
24747         return this.data[name]; 
24748     },
24749
24750     // private
24751     beginEdit : function(){
24752         this.editing = true;
24753         this.modified = {}; 
24754     },
24755
24756     // private
24757     cancelEdit : function(){
24758         this.editing = false;
24759         delete this.modified;
24760     },
24761
24762     // private
24763     endEdit : function(){
24764         this.editing = false;
24765         if(this.dirty && this.store){
24766             this.store.afterEdit(this);
24767         }
24768     },
24769
24770     /**
24771      * Usually called by the {@link Roo.data.Store} which owns the Record.
24772      * Rejects all changes made to the Record since either creation, or the last commit operation.
24773      * Modified fields are reverted to their original values.
24774      * <p>
24775      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24776      * of reject operations.
24777      */
24778     reject : function(){
24779         var m = this.modified;
24780         for(var n in m){
24781             if(typeof m[n] != "function"){
24782                 this.data[n] = m[n];
24783             }
24784         }
24785         this.dirty = false;
24786         delete this.modified;
24787         this.editing = false;
24788         if(this.store){
24789             this.store.afterReject(this);
24790         }
24791     },
24792
24793     /**
24794      * Usually called by the {@link Roo.data.Store} which owns the Record.
24795      * Commits all changes made to the Record since either creation, or the last commit operation.
24796      * <p>
24797      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24798      * of commit operations.
24799      */
24800     commit : function(){
24801         this.dirty = false;
24802         delete this.modified;
24803         this.editing = false;
24804         if(this.store){
24805             this.store.afterCommit(this);
24806         }
24807     },
24808
24809     // private
24810     hasError : function(){
24811         return this.error != null;
24812     },
24813
24814     // private
24815     clearError : function(){
24816         this.error = null;
24817     },
24818
24819     /**
24820      * Creates a copy of this record.
24821      * @param {String} id (optional) A new record id if you don't want to use this record's id
24822      * @return {Record}
24823      */
24824     copy : function(newId) {
24825         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
24826     }
24827 };/*
24828  * Based on:
24829  * Ext JS Library 1.1.1
24830  * Copyright(c) 2006-2007, Ext JS, LLC.
24831  *
24832  * Originally Released Under LGPL - original licence link has changed is not relivant.
24833  *
24834  * Fork - LGPL
24835  * <script type="text/javascript">
24836  */
24837
24838
24839
24840 /**
24841  * @class Roo.data.Store
24842  * @extends Roo.util.Observable
24843  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
24844  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
24845  * <p>
24846  * 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
24847  * has no knowledge of the format of the data returned by the Proxy.<br>
24848  * <p>
24849  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
24850  * instances from the data object. These records are cached and made available through accessor functions.
24851  * @constructor
24852  * Creates a new Store.
24853  * @param {Object} config A config object containing the objects needed for the Store to access data,
24854  * and read the data into Records.
24855  */
24856 Roo.data.Store = function(config){
24857     this.data = new Roo.util.MixedCollection(false);
24858     this.data.getKey = function(o){
24859         return o.id;
24860     };
24861     this.baseParams = {};
24862     // private
24863     this.paramNames = {
24864         "start" : "start",
24865         "limit" : "limit",
24866         "sort" : "sort",
24867         "dir" : "dir",
24868         "multisort" : "_multisort"
24869     };
24870
24871     if(config && config.data){
24872         this.inlineData = config.data;
24873         delete config.data;
24874     }
24875
24876     Roo.apply(this, config);
24877     
24878     if(this.reader){ // reader passed
24879         this.reader = Roo.factory(this.reader, Roo.data);
24880         this.reader.xmodule = this.xmodule || false;
24881         if(!this.recordType){
24882             this.recordType = this.reader.recordType;
24883         }
24884         if(this.reader.onMetaChange){
24885             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
24886         }
24887     }
24888
24889     if(this.recordType){
24890         this.fields = this.recordType.prototype.fields;
24891     }
24892     this.modified = [];
24893
24894     this.addEvents({
24895         /**
24896          * @event datachanged
24897          * Fires when the data cache has changed, and a widget which is using this Store
24898          * as a Record cache should refresh its view.
24899          * @param {Store} this
24900          */
24901         datachanged : true,
24902         /**
24903          * @event metachange
24904          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
24905          * @param {Store} this
24906          * @param {Object} meta The JSON metadata
24907          */
24908         metachange : true,
24909         /**
24910          * @event add
24911          * Fires when Records have been added to the Store
24912          * @param {Store} this
24913          * @param {Roo.data.Record[]} records The array of Records added
24914          * @param {Number} index The index at which the record(s) were added
24915          */
24916         add : true,
24917         /**
24918          * @event remove
24919          * Fires when a Record has been removed from the Store
24920          * @param {Store} this
24921          * @param {Roo.data.Record} record The Record that was removed
24922          * @param {Number} index The index at which the record was removed
24923          */
24924         remove : true,
24925         /**
24926          * @event update
24927          * Fires when a Record has been updated
24928          * @param {Store} this
24929          * @param {Roo.data.Record} record The Record that was updated
24930          * @param {String} operation The update operation being performed.  Value may be one of:
24931          * <pre><code>
24932  Roo.data.Record.EDIT
24933  Roo.data.Record.REJECT
24934  Roo.data.Record.COMMIT
24935          * </code></pre>
24936          */
24937         update : true,
24938         /**
24939          * @event clear
24940          * Fires when the data cache has been cleared.
24941          * @param {Store} this
24942          */
24943         clear : true,
24944         /**
24945          * @event beforeload
24946          * Fires before a request is made for a new data object.  If the beforeload handler returns false
24947          * the load action will be canceled.
24948          * @param {Store} this
24949          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24950          */
24951         beforeload : true,
24952         /**
24953          * @event beforeloadadd
24954          * Fires after a new set of Records has been loaded.
24955          * @param {Store} this
24956          * @param {Roo.data.Record[]} records The Records that were loaded
24957          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24958          */
24959         beforeloadadd : true,
24960         /**
24961          * @event load
24962          * Fires after a new set of Records has been loaded, before they are added to the store.
24963          * @param {Store} this
24964          * @param {Roo.data.Record[]} records The Records that were loaded
24965          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24966          * @params {Object} return from reader
24967          */
24968         load : true,
24969         /**
24970          * @event loadexception
24971          * Fires if an exception occurs in the Proxy during loading.
24972          * Called with the signature of the Proxy's "loadexception" event.
24973          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
24974          * 
24975          * @param {Proxy} 
24976          * @param {Object} return from JsonData.reader() - success, totalRecords, records
24977          * @param {Object} load options 
24978          * @param {Object} jsonData from your request (normally this contains the Exception)
24979          */
24980         loadexception : true
24981     });
24982     
24983     if(this.proxy){
24984         this.proxy = Roo.factory(this.proxy, Roo.data);
24985         this.proxy.xmodule = this.xmodule || false;
24986         this.relayEvents(this.proxy,  ["loadexception"]);
24987     }
24988     this.sortToggle = {};
24989     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
24990
24991     Roo.data.Store.superclass.constructor.call(this);
24992
24993     if(this.inlineData){
24994         this.loadData(this.inlineData);
24995         delete this.inlineData;
24996     }
24997 };
24998
24999 Roo.extend(Roo.data.Store, Roo.util.Observable, {
25000      /**
25001     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
25002     * without a remote query - used by combo/forms at present.
25003     */
25004     
25005     /**
25006     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
25007     */
25008     /**
25009     * @cfg {Array} data Inline data to be loaded when the store is initialized.
25010     */
25011     /**
25012     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
25013     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
25014     */
25015     /**
25016     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
25017     * on any HTTP request
25018     */
25019     /**
25020     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
25021     */
25022     /**
25023     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
25024     */
25025     multiSort: false,
25026     /**
25027     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
25028     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
25029     */
25030     remoteSort : false,
25031
25032     /**
25033     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
25034      * loaded or when a record is removed. (defaults to false).
25035     */
25036     pruneModifiedRecords : false,
25037
25038     // private
25039     lastOptions : null,
25040
25041     /**
25042      * Add Records to the Store and fires the add event.
25043      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25044      */
25045     add : function(records){
25046         records = [].concat(records);
25047         for(var i = 0, len = records.length; i < len; i++){
25048             records[i].join(this);
25049         }
25050         var index = this.data.length;
25051         this.data.addAll(records);
25052         this.fireEvent("add", this, records, index);
25053     },
25054
25055     /**
25056      * Remove a Record from the Store and fires the remove event.
25057      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
25058      */
25059     remove : function(record){
25060         var index = this.data.indexOf(record);
25061         this.data.removeAt(index);
25062  
25063         if(this.pruneModifiedRecords){
25064             this.modified.remove(record);
25065         }
25066         this.fireEvent("remove", this, record, index);
25067     },
25068
25069     /**
25070      * Remove all Records from the Store and fires the clear event.
25071      */
25072     removeAll : function(){
25073         this.data.clear();
25074         if(this.pruneModifiedRecords){
25075             this.modified = [];
25076         }
25077         this.fireEvent("clear", this);
25078     },
25079
25080     /**
25081      * Inserts Records to the Store at the given index and fires the add event.
25082      * @param {Number} index The start index at which to insert the passed Records.
25083      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25084      */
25085     insert : function(index, records){
25086         records = [].concat(records);
25087         for(var i = 0, len = records.length; i < len; i++){
25088             this.data.insert(index, records[i]);
25089             records[i].join(this);
25090         }
25091         this.fireEvent("add", this, records, index);
25092     },
25093
25094     /**
25095      * Get the index within the cache of the passed Record.
25096      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
25097      * @return {Number} The index of the passed Record. Returns -1 if not found.
25098      */
25099     indexOf : function(record){
25100         return this.data.indexOf(record);
25101     },
25102
25103     /**
25104      * Get the index within the cache of the Record with the passed id.
25105      * @param {String} id The id of the Record to find.
25106      * @return {Number} The index of the Record. Returns -1 if not found.
25107      */
25108     indexOfId : function(id){
25109         return this.data.indexOfKey(id);
25110     },
25111
25112     /**
25113      * Get the Record with the specified id.
25114      * @param {String} id The id of the Record to find.
25115      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
25116      */
25117     getById : function(id){
25118         return this.data.key(id);
25119     },
25120
25121     /**
25122      * Get the Record at the specified index.
25123      * @param {Number} index The index of the Record to find.
25124      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
25125      */
25126     getAt : function(index){
25127         return this.data.itemAt(index);
25128     },
25129
25130     /**
25131      * Returns a range of Records between specified indices.
25132      * @param {Number} startIndex (optional) The starting index (defaults to 0)
25133      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
25134      * @return {Roo.data.Record[]} An array of Records
25135      */
25136     getRange : function(start, end){
25137         return this.data.getRange(start, end);
25138     },
25139
25140     // private
25141     storeOptions : function(o){
25142         o = Roo.apply({}, o);
25143         delete o.callback;
25144         delete o.scope;
25145         this.lastOptions = o;
25146     },
25147
25148     /**
25149      * Loads the Record cache from the configured Proxy using the configured Reader.
25150      * <p>
25151      * If using remote paging, then the first load call must specify the <em>start</em>
25152      * and <em>limit</em> properties in the options.params property to establish the initial
25153      * position within the dataset, and the number of Records to cache on each read from the Proxy.
25154      * <p>
25155      * <strong>It is important to note that for remote data sources, loading is asynchronous,
25156      * and this call will return before the new data has been loaded. Perform any post-processing
25157      * in a callback function, or in a "load" event handler.</strong>
25158      * <p>
25159      * @param {Object} options An object containing properties which control loading options:<ul>
25160      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
25161      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
25162      * <pre>
25163                 {
25164                     data : data,  // array of key=>value data like JsonReader
25165                     total : data.length,
25166                     success : true
25167                     
25168                 }
25169         </pre>
25170             }.</li>
25171      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
25172      * passed the following arguments:<ul>
25173      * <li>r : Roo.data.Record[]</li>
25174      * <li>options: Options object from the load call</li>
25175      * <li>success: Boolean success indicator</li></ul></li>
25176      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
25177      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
25178      * </ul>
25179      */
25180     load : function(options){
25181         options = options || {};
25182         if(this.fireEvent("beforeload", this, options) !== false){
25183             this.storeOptions(options);
25184             var p = Roo.apply(options.params || {}, this.baseParams);
25185             // if meta was not loaded from remote source.. try requesting it.
25186             if (!this.reader.metaFromRemote) {
25187                 p._requestMeta = 1;
25188             }
25189             if(this.sortInfo && this.remoteSort){
25190                 var pn = this.paramNames;
25191                 p[pn["sort"]] = this.sortInfo.field;
25192                 p[pn["dir"]] = this.sortInfo.direction;
25193             }
25194             if (this.multiSort) {
25195                 var pn = this.paramNames;
25196                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
25197             }
25198             
25199             this.proxy.load(p, this.reader, this.loadRecords, this, options);
25200         }
25201     },
25202
25203     /**
25204      * Reloads the Record cache from the configured Proxy using the configured Reader and
25205      * the options from the last load operation performed.
25206      * @param {Object} options (optional) An object containing properties which may override the options
25207      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
25208      * the most recently used options are reused).
25209      */
25210     reload : function(options){
25211         this.load(Roo.applyIf(options||{}, this.lastOptions));
25212     },
25213
25214     // private
25215     // Called as a callback by the Reader during a load operation.
25216     loadRecords : function(o, options, success){
25217          
25218         if(!o){
25219             if(success !== false){
25220                 this.fireEvent("load", this, [], options, o);
25221             }
25222             if(options.callback){
25223                 options.callback.call(options.scope || this, [], options, false);
25224             }
25225             return;
25226         }
25227         // if data returned failure - throw an exception.
25228         if (o.success === false) {
25229             // show a message if no listener is registered.
25230             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
25231                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
25232             }
25233             // loadmask wil be hooked into this..
25234             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
25235             return;
25236         }
25237         var r = o.records, t = o.totalRecords || r.length;
25238         
25239         this.fireEvent("beforeloadadd", this, r, options, o);
25240         
25241         if(!options || options.add !== true){
25242             if(this.pruneModifiedRecords){
25243                 this.modified = [];
25244             }
25245             for(var i = 0, len = r.length; i < len; i++){
25246                 r[i].join(this);
25247             }
25248             if(this.snapshot){
25249                 this.data = this.snapshot;
25250                 delete this.snapshot;
25251             }
25252             this.data.clear();
25253             this.data.addAll(r);
25254             this.totalLength = t;
25255             this.applySort();
25256             this.fireEvent("datachanged", this);
25257         }else{
25258             this.totalLength = Math.max(t, this.data.length+r.length);
25259             this.add(r);
25260         }
25261         
25262         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
25263                 
25264             var e = new Roo.data.Record({});
25265
25266             e.set(this.parent.displayField, this.parent.emptyTitle);
25267             e.set(this.parent.valueField, '');
25268
25269             this.insert(0, e);
25270         }
25271             
25272         this.fireEvent("load", this, r, options, o);
25273         if(options.callback){
25274             options.callback.call(options.scope || this, r, options, true);
25275         }
25276     },
25277
25278
25279     /**
25280      * Loads data from a passed data block. A Reader which understands the format of the data
25281      * must have been configured in the constructor.
25282      * @param {Object} data The data block from which to read the Records.  The format of the data expected
25283      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
25284      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
25285      */
25286     loadData : function(o, append){
25287         var r = this.reader.readRecords(o);
25288         this.loadRecords(r, {add: append}, true);
25289     },
25290     
25291      /**
25292      * using 'cn' the nested child reader read the child array into it's child stores.
25293      * @param {Object} rec The record with a 'children array
25294      */
25295     loadDataFromChildren : function(rec)
25296     {
25297         this.loadData(this.reader.toLoadData(rec));
25298     },
25299     
25300
25301     /**
25302      * Gets the number of cached records.
25303      * <p>
25304      * <em>If using paging, this may not be the total size of the dataset. If the data object
25305      * used by the Reader contains the dataset size, then the getTotalCount() function returns
25306      * the data set size</em>
25307      */
25308     getCount : function(){
25309         return this.data.length || 0;
25310     },
25311
25312     /**
25313      * Gets the total number of records in the dataset as returned by the server.
25314      * <p>
25315      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
25316      * the dataset size</em>
25317      */
25318     getTotalCount : function(){
25319         return this.totalLength || 0;
25320     },
25321
25322     /**
25323      * Returns the sort state of the Store as an object with two properties:
25324      * <pre><code>
25325  field {String} The name of the field by which the Records are sorted
25326  direction {String} The sort order, "ASC" or "DESC"
25327      * </code></pre>
25328      */
25329     getSortState : function(){
25330         return this.sortInfo;
25331     },
25332
25333     // private
25334     applySort : function(){
25335         if(this.sortInfo && !this.remoteSort){
25336             var s = this.sortInfo, f = s.field;
25337             var st = this.fields.get(f).sortType;
25338             var fn = function(r1, r2){
25339                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
25340                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
25341             };
25342             this.data.sort(s.direction, fn);
25343             if(this.snapshot && this.snapshot != this.data){
25344                 this.snapshot.sort(s.direction, fn);
25345             }
25346         }
25347     },
25348
25349     /**
25350      * Sets the default sort column and order to be used by the next load operation.
25351      * @param {String} fieldName The name of the field to sort by.
25352      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25353      */
25354     setDefaultSort : function(field, dir){
25355         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
25356     },
25357
25358     /**
25359      * Sort the Records.
25360      * If remote sorting is used, the sort is performed on the server, and the cache is
25361      * reloaded. If local sorting is used, the cache is sorted internally.
25362      * @param {String} fieldName The name of the field to sort by.
25363      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25364      */
25365     sort : function(fieldName, dir){
25366         var f = this.fields.get(fieldName);
25367         if(!dir){
25368             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
25369             
25370             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
25371                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
25372             }else{
25373                 dir = f.sortDir;
25374             }
25375         }
25376         this.sortToggle[f.name] = dir;
25377         this.sortInfo = {field: f.name, direction: dir};
25378         if(!this.remoteSort){
25379             this.applySort();
25380             this.fireEvent("datachanged", this);
25381         }else{
25382             this.load(this.lastOptions);
25383         }
25384     },
25385
25386     /**
25387      * Calls the specified function for each of the Records in the cache.
25388      * @param {Function} fn The function to call. The Record is passed as the first parameter.
25389      * Returning <em>false</em> aborts and exits the iteration.
25390      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
25391      */
25392     each : function(fn, scope){
25393         this.data.each(fn, scope);
25394     },
25395
25396     /**
25397      * Gets all records modified since the last commit.  Modified records are persisted across load operations
25398      * (e.g., during paging).
25399      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
25400      */
25401     getModifiedRecords : function(){
25402         return this.modified;
25403     },
25404
25405     // private
25406     createFilterFn : function(property, value, anyMatch){
25407         if(!value.exec){ // not a regex
25408             value = String(value);
25409             if(value.length == 0){
25410                 return false;
25411             }
25412             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
25413         }
25414         return function(r){
25415             return value.test(r.data[property]);
25416         };
25417     },
25418
25419     /**
25420      * Sums the value of <i>property</i> for each record between start and end and returns the result.
25421      * @param {String} property A field on your records
25422      * @param {Number} start The record index to start at (defaults to 0)
25423      * @param {Number} end The last record index to include (defaults to length - 1)
25424      * @return {Number} The sum
25425      */
25426     sum : function(property, start, end){
25427         var rs = this.data.items, v = 0;
25428         start = start || 0;
25429         end = (end || end === 0) ? end : rs.length-1;
25430
25431         for(var i = start; i <= end; i++){
25432             v += (rs[i].data[property] || 0);
25433         }
25434         return v;
25435     },
25436
25437     /**
25438      * Filter the records by a specified property.
25439      * @param {String} field A field on your records
25440      * @param {String/RegExp} value Either a string that the field
25441      * should start with or a RegExp to test against the field
25442      * @param {Boolean} anyMatch True to match any part not just the beginning
25443      */
25444     filter : function(property, value, anyMatch){
25445         var fn = this.createFilterFn(property, value, anyMatch);
25446         return fn ? this.filterBy(fn) : this.clearFilter();
25447     },
25448
25449     /**
25450      * Filter by a function. The specified function will be called with each
25451      * record in this data source. If the function returns true the record is included,
25452      * otherwise it is filtered.
25453      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25454      * @param {Object} scope (optional) The scope of the function (defaults to this)
25455      */
25456     filterBy : function(fn, scope){
25457         this.snapshot = this.snapshot || this.data;
25458         this.data = this.queryBy(fn, scope||this);
25459         this.fireEvent("datachanged", this);
25460     },
25461
25462     /**
25463      * Query the records by a specified property.
25464      * @param {String} field A field on your records
25465      * @param {String/RegExp} value Either a string that the field
25466      * should start with or a RegExp to test against the field
25467      * @param {Boolean} anyMatch True to match any part not just the beginning
25468      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25469      */
25470     query : function(property, value, anyMatch){
25471         var fn = this.createFilterFn(property, value, anyMatch);
25472         return fn ? this.queryBy(fn) : this.data.clone();
25473     },
25474
25475     /**
25476      * Query by a function. The specified function will be called with each
25477      * record in this data source. If the function returns true the record is included
25478      * in the results.
25479      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25480      * @param {Object} scope (optional) The scope of the function (defaults to this)
25481       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25482      **/
25483     queryBy : function(fn, scope){
25484         var data = this.snapshot || this.data;
25485         return data.filterBy(fn, scope||this);
25486     },
25487
25488     /**
25489      * Collects unique values for a particular dataIndex from this store.
25490      * @param {String} dataIndex The property to collect
25491      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
25492      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
25493      * @return {Array} An array of the unique values
25494      **/
25495     collect : function(dataIndex, allowNull, bypassFilter){
25496         var d = (bypassFilter === true && this.snapshot) ?
25497                 this.snapshot.items : this.data.items;
25498         var v, sv, r = [], l = {};
25499         for(var i = 0, len = d.length; i < len; i++){
25500             v = d[i].data[dataIndex];
25501             sv = String(v);
25502             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
25503                 l[sv] = true;
25504                 r[r.length] = v;
25505             }
25506         }
25507         return r;
25508     },
25509
25510     /**
25511      * Revert to a view of the Record cache with no filtering applied.
25512      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
25513      */
25514     clearFilter : function(suppressEvent){
25515         if(this.snapshot && this.snapshot != this.data){
25516             this.data = this.snapshot;
25517             delete this.snapshot;
25518             if(suppressEvent !== true){
25519                 this.fireEvent("datachanged", this);
25520             }
25521         }
25522     },
25523
25524     // private
25525     afterEdit : function(record){
25526         if(this.modified.indexOf(record) == -1){
25527             this.modified.push(record);
25528         }
25529         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
25530     },
25531     
25532     // private
25533     afterReject : function(record){
25534         this.modified.remove(record);
25535         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
25536     },
25537
25538     // private
25539     afterCommit : function(record){
25540         this.modified.remove(record);
25541         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
25542     },
25543
25544     /**
25545      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
25546      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
25547      */
25548     commitChanges : function(){
25549         var m = this.modified.slice(0);
25550         this.modified = [];
25551         for(var i = 0, len = m.length; i < len; i++){
25552             m[i].commit();
25553         }
25554     },
25555
25556     /**
25557      * Cancel outstanding changes on all changed records.
25558      */
25559     rejectChanges : function(){
25560         var m = this.modified.slice(0);
25561         this.modified = [];
25562         for(var i = 0, len = m.length; i < len; i++){
25563             m[i].reject();
25564         }
25565     },
25566
25567     onMetaChange : function(meta, rtype, o){
25568         this.recordType = rtype;
25569         this.fields = rtype.prototype.fields;
25570         delete this.snapshot;
25571         this.sortInfo = meta.sortInfo || this.sortInfo;
25572         this.modified = [];
25573         this.fireEvent('metachange', this, this.reader.meta);
25574     },
25575     
25576     moveIndex : function(data, type)
25577     {
25578         var index = this.indexOf(data);
25579         
25580         var newIndex = index + type;
25581         
25582         this.remove(data);
25583         
25584         this.insert(newIndex, data);
25585         
25586     }
25587 });/*
25588  * Based on:
25589  * Ext JS Library 1.1.1
25590  * Copyright(c) 2006-2007, Ext JS, LLC.
25591  *
25592  * Originally Released Under LGPL - original licence link has changed is not relivant.
25593  *
25594  * Fork - LGPL
25595  * <script type="text/javascript">
25596  */
25597
25598 /**
25599  * @class Roo.data.SimpleStore
25600  * @extends Roo.data.Store
25601  * Small helper class to make creating Stores from Array data easier.
25602  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
25603  * @cfg {Array} fields An array of field definition objects, or field name strings.
25604  * @cfg {Object} an existing reader (eg. copied from another store)
25605  * @cfg {Array} data The multi-dimensional array of data
25606  * @cfg {Roo.data.DataProxy} proxy [not-required]  
25607  * @cfg {Roo.data.Reader} reader  [not-required] 
25608  * @constructor
25609  * @param {Object} config
25610  */
25611 Roo.data.SimpleStore = function(config)
25612 {
25613     Roo.data.SimpleStore.superclass.constructor.call(this, {
25614         isLocal : true,
25615         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
25616                 id: config.id
25617             },
25618             Roo.data.Record.create(config.fields)
25619         ),
25620         proxy : new Roo.data.MemoryProxy(config.data)
25621     });
25622     this.load();
25623 };
25624 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
25625  * Based on:
25626  * Ext JS Library 1.1.1
25627  * Copyright(c) 2006-2007, Ext JS, LLC.
25628  *
25629  * Originally Released Under LGPL - original licence link has changed is not relivant.
25630  *
25631  * Fork - LGPL
25632  * <script type="text/javascript">
25633  */
25634
25635 /**
25636 /**
25637  * @extends Roo.data.Store
25638  * @class Roo.data.JsonStore
25639  * Small helper class to make creating Stores for JSON data easier. <br/>
25640 <pre><code>
25641 var store = new Roo.data.JsonStore({
25642     url: 'get-images.php',
25643     root: 'images',
25644     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
25645 });
25646 </code></pre>
25647  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
25648  * JsonReader and HttpProxy (unless inline data is provided).</b>
25649  * @cfg {Array} fields An array of field definition objects, or field name strings.
25650  * @constructor
25651  * @param {Object} config
25652  */
25653 Roo.data.JsonStore = function(c){
25654     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
25655         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
25656         reader: new Roo.data.JsonReader(c, c.fields)
25657     }));
25658 };
25659 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
25660  * Based on:
25661  * Ext JS Library 1.1.1
25662  * Copyright(c) 2006-2007, Ext JS, LLC.
25663  *
25664  * Originally Released Under LGPL - original licence link has changed is not relivant.
25665  *
25666  * Fork - LGPL
25667  * <script type="text/javascript">
25668  */
25669
25670  
25671 Roo.data.Field = function(config){
25672     if(typeof config == "string"){
25673         config = {name: config};
25674     }
25675     Roo.apply(this, config);
25676     
25677     if(!this.type){
25678         this.type = "auto";
25679     }
25680     
25681     var st = Roo.data.SortTypes;
25682     // named sortTypes are supported, here we look them up
25683     if(typeof this.sortType == "string"){
25684         this.sortType = st[this.sortType];
25685     }
25686     
25687     // set default sortType for strings and dates
25688     if(!this.sortType){
25689         switch(this.type){
25690             case "string":
25691                 this.sortType = st.asUCString;
25692                 break;
25693             case "date":
25694                 this.sortType = st.asDate;
25695                 break;
25696             default:
25697                 this.sortType = st.none;
25698         }
25699     }
25700
25701     // define once
25702     var stripRe = /[\$,%]/g;
25703
25704     // prebuilt conversion function for this field, instead of
25705     // switching every time we're reading a value
25706     if(!this.convert){
25707         var cv, dateFormat = this.dateFormat;
25708         switch(this.type){
25709             case "":
25710             case "auto":
25711             case undefined:
25712                 cv = function(v){ return v; };
25713                 break;
25714             case "string":
25715                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
25716                 break;
25717             case "int":
25718                 cv = function(v){
25719                     return v !== undefined && v !== null && v !== '' ?
25720                            parseInt(String(v).replace(stripRe, ""), 10) : '';
25721                     };
25722                 break;
25723             case "float":
25724                 cv = function(v){
25725                     return v !== undefined && v !== null && v !== '' ?
25726                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
25727                     };
25728                 break;
25729             case "bool":
25730             case "boolean":
25731                 cv = function(v){ return v === true || v === "true" || v == 1; };
25732                 break;
25733             case "date":
25734                 cv = function(v){
25735                     if(!v){
25736                         return '';
25737                     }
25738                     if(v instanceof Date){
25739                         return v;
25740                     }
25741                     if(dateFormat){
25742                         if(dateFormat == "timestamp"){
25743                             return new Date(v*1000);
25744                         }
25745                         return Date.parseDate(v, dateFormat);
25746                     }
25747                     var parsed = Date.parse(v);
25748                     return parsed ? new Date(parsed) : null;
25749                 };
25750              break;
25751             
25752         }
25753         this.convert = cv;
25754     }
25755 };
25756
25757 Roo.data.Field.prototype = {
25758     dateFormat: null,
25759     defaultValue: "",
25760     mapping: null,
25761     sortType : null,
25762     sortDir : "ASC"
25763 };/*
25764  * Based on:
25765  * Ext JS Library 1.1.1
25766  * Copyright(c) 2006-2007, Ext JS, LLC.
25767  *
25768  * Originally Released Under LGPL - original licence link has changed is not relivant.
25769  *
25770  * Fork - LGPL
25771  * <script type="text/javascript">
25772  */
25773  
25774 // Base class for reading structured data from a data source.  This class is intended to be
25775 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
25776
25777 /**
25778  * @class Roo.data.DataReader
25779  * @abstract
25780  * Base class for reading structured data from a data source.  This class is intended to be
25781  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
25782  */
25783
25784 Roo.data.DataReader = function(meta, recordType){
25785     
25786     this.meta = meta;
25787     
25788     this.recordType = recordType instanceof Array ? 
25789         Roo.data.Record.create(recordType) : recordType;
25790 };
25791
25792 Roo.data.DataReader.prototype = {
25793     
25794     
25795     readerType : 'Data',
25796      /**
25797      * Create an empty record
25798      * @param {Object} data (optional) - overlay some values
25799      * @return {Roo.data.Record} record created.
25800      */
25801     newRow :  function(d) {
25802         var da =  {};
25803         this.recordType.prototype.fields.each(function(c) {
25804             switch( c.type) {
25805                 case 'int' : da[c.name] = 0; break;
25806                 case 'date' : da[c.name] = new Date(); break;
25807                 case 'float' : da[c.name] = 0.0; break;
25808                 case 'boolean' : da[c.name] = false; break;
25809                 default : da[c.name] = ""; break;
25810             }
25811             
25812         });
25813         return new this.recordType(Roo.apply(da, d));
25814     }
25815     
25816     
25817 };/*
25818  * Based on:
25819  * Ext JS Library 1.1.1
25820  * Copyright(c) 2006-2007, Ext JS, LLC.
25821  *
25822  * Originally Released Under LGPL - original licence link has changed is not relivant.
25823  *
25824  * Fork - LGPL
25825  * <script type="text/javascript">
25826  */
25827
25828 /**
25829  * @class Roo.data.DataProxy
25830  * @extends Roo.util.Observable
25831  * @abstract
25832  * This class is an abstract base class for implementations which provide retrieval of
25833  * unformatted data objects.<br>
25834  * <p>
25835  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
25836  * (of the appropriate type which knows how to parse the data object) to provide a block of
25837  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
25838  * <p>
25839  * Custom implementations must implement the load method as described in
25840  * {@link Roo.data.HttpProxy#load}.
25841  */
25842 Roo.data.DataProxy = function(){
25843     this.addEvents({
25844         /**
25845          * @event beforeload
25846          * Fires before a network request is made to retrieve a data object.
25847          * @param {Object} This DataProxy object.
25848          * @param {Object} params The params parameter to the load function.
25849          */
25850         beforeload : true,
25851         /**
25852          * @event load
25853          * Fires before the load method's callback is called.
25854          * @param {Object} This DataProxy object.
25855          * @param {Object} o The data object.
25856          * @param {Object} arg The callback argument object passed to the load function.
25857          */
25858         load : true,
25859         /**
25860          * @event loadexception
25861          * Fires if an Exception occurs during data retrieval.
25862          * @param {Object} This DataProxy object.
25863          * @param {Object} o The data object.
25864          * @param {Object} arg The callback argument object passed to the load function.
25865          * @param {Object} e The Exception.
25866          */
25867         loadexception : true
25868     });
25869     Roo.data.DataProxy.superclass.constructor.call(this);
25870 };
25871
25872 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
25873
25874     /**
25875      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
25876      */
25877 /*
25878  * Based on:
25879  * Ext JS Library 1.1.1
25880  * Copyright(c) 2006-2007, Ext JS, LLC.
25881  *
25882  * Originally Released Under LGPL - original licence link has changed is not relivant.
25883  *
25884  * Fork - LGPL
25885  * <script type="text/javascript">
25886  */
25887 /**
25888  * @class Roo.data.MemoryProxy
25889  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
25890  * to the Reader when its load method is called.
25891  * @constructor
25892  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
25893  */
25894 Roo.data.MemoryProxy = function(data){
25895     if (data.data) {
25896         data = data.data;
25897     }
25898     Roo.data.MemoryProxy.superclass.constructor.call(this);
25899     this.data = data;
25900 };
25901
25902 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
25903     
25904     /**
25905      * Load data from the requested source (in this case an in-memory
25906      * data object passed to the constructor), read the data object into
25907      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
25908      * process that block using the passed callback.
25909      * @param {Object} params This parameter is not used by the MemoryProxy class.
25910      * @param {Roo.data.DataReader} reader The Reader object which converts the data
25911      * object into a block of Roo.data.Records.
25912      * @param {Function} callback The function into which to pass the block of Roo.data.records.
25913      * The function must be passed <ul>
25914      * <li>The Record block object</li>
25915      * <li>The "arg" argument from the load function</li>
25916      * <li>A boolean success indicator</li>
25917      * </ul>
25918      * @param {Object} scope The scope in which to call the callback
25919      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
25920      */
25921     load : function(params, reader, callback, scope, arg){
25922         params = params || {};
25923         var result;
25924         try {
25925             result = reader.readRecords(params.data ? params.data :this.data);
25926         }catch(e){
25927             this.fireEvent("loadexception", this, arg, null, e);
25928             callback.call(scope, null, arg, false);
25929             return;
25930         }
25931         callback.call(scope, result, arg, true);
25932     },
25933     
25934     // private
25935     update : function(params, records){
25936         
25937     }
25938 });/*
25939  * Based on:
25940  * Ext JS Library 1.1.1
25941  * Copyright(c) 2006-2007, Ext JS, LLC.
25942  *
25943  * Originally Released Under LGPL - original licence link has changed is not relivant.
25944  *
25945  * Fork - LGPL
25946  * <script type="text/javascript">
25947  */
25948 /**
25949  * @class Roo.data.HttpProxy
25950  * @extends Roo.data.DataProxy
25951  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
25952  * configured to reference a certain URL.<br><br>
25953  * <p>
25954  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
25955  * from which the running page was served.<br><br>
25956  * <p>
25957  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
25958  * <p>
25959  * Be aware that to enable the browser to parse an XML document, the server must set
25960  * the Content-Type header in the HTTP response to "text/xml".
25961  * @constructor
25962  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
25963  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
25964  * will be used to make the request.
25965  */
25966 Roo.data.HttpProxy = function(conn){
25967     Roo.data.HttpProxy.superclass.constructor.call(this);
25968     // is conn a conn config or a real conn?
25969     this.conn = conn;
25970     this.useAjax = !conn || !conn.events;
25971   
25972 };
25973
25974 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
25975     // thse are take from connection...
25976     
25977     /**
25978      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
25979      */
25980     /**
25981      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
25982      * extra parameters to each request made by this object. (defaults to undefined)
25983      */
25984     /**
25985      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
25986      *  to each request made by this object. (defaults to undefined)
25987      */
25988     /**
25989      * @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)
25990      */
25991     /**
25992      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
25993      */
25994      /**
25995      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
25996      * @type Boolean
25997      */
25998   
25999
26000     /**
26001      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
26002      * @type Boolean
26003      */
26004     /**
26005      * Return the {@link Roo.data.Connection} object being used by this Proxy.
26006      * @return {Connection} The Connection object. This object may be used to subscribe to events on
26007      * a finer-grained basis than the DataProxy events.
26008      */
26009     getConnection : function(){
26010         return this.useAjax ? Roo.Ajax : this.conn;
26011     },
26012
26013     /**
26014      * Load data from the configured {@link Roo.data.Connection}, read the data object into
26015      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
26016      * process that block using the passed callback.
26017      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26018      * for the request to the remote server.
26019      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26020      * object into a block of Roo.data.Records.
26021      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26022      * The function must be passed <ul>
26023      * <li>The Record block object</li>
26024      * <li>The "arg" argument from the load function</li>
26025      * <li>A boolean success indicator</li>
26026      * </ul>
26027      * @param {Object} scope The scope in which to call the callback
26028      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26029      */
26030     load : function(params, reader, callback, scope, arg){
26031         if(this.fireEvent("beforeload", this, params) !== false){
26032             var  o = {
26033                 params : params || {},
26034                 request: {
26035                     callback : callback,
26036                     scope : scope,
26037                     arg : arg
26038                 },
26039                 reader: reader,
26040                 callback : this.loadResponse,
26041                 scope: this
26042             };
26043             if(this.useAjax){
26044                 Roo.applyIf(o, this.conn);
26045                 if(this.activeRequest){
26046                     Roo.Ajax.abort(this.activeRequest);
26047                 }
26048                 this.activeRequest = Roo.Ajax.request(o);
26049             }else{
26050                 this.conn.request(o);
26051             }
26052         }else{
26053             callback.call(scope||this, null, arg, false);
26054         }
26055     },
26056
26057     // private
26058     loadResponse : function(o, success, response){
26059         delete this.activeRequest;
26060         if(!success){
26061             this.fireEvent("loadexception", this, o, response);
26062             o.request.callback.call(o.request.scope, null, o.request.arg, false);
26063             return;
26064         }
26065         var result;
26066         try {
26067             result = o.reader.read(response);
26068         }catch(e){
26069             o.success = false;
26070             o.raw = { errorMsg : response.responseText };
26071             this.fireEvent("loadexception", this, o, response, e);
26072             o.request.callback.call(o.request.scope, o, o.request.arg, false);
26073             return;
26074         }
26075         
26076         this.fireEvent("load", this, o, o.request.arg);
26077         o.request.callback.call(o.request.scope, result, o.request.arg, true);
26078     },
26079
26080     // private
26081     update : function(dataSet){
26082
26083     },
26084
26085     // private
26086     updateResponse : function(dataSet){
26087
26088     }
26089 });/*
26090  * Based on:
26091  * Ext JS Library 1.1.1
26092  * Copyright(c) 2006-2007, Ext JS, LLC.
26093  *
26094  * Originally Released Under LGPL - original licence link has changed is not relivant.
26095  *
26096  * Fork - LGPL
26097  * <script type="text/javascript">
26098  */
26099
26100 /**
26101  * @class Roo.data.ScriptTagProxy
26102  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
26103  * other than the originating domain of the running page.<br><br>
26104  * <p>
26105  * <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
26106  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
26107  * <p>
26108  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
26109  * source code that is used as the source inside a &lt;script> tag.<br><br>
26110  * <p>
26111  * In order for the browser to process the returned data, the server must wrap the data object
26112  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
26113  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
26114  * depending on whether the callback name was passed:
26115  * <p>
26116  * <pre><code>
26117 boolean scriptTag = false;
26118 String cb = request.getParameter("callback");
26119 if (cb != null) {
26120     scriptTag = true;
26121     response.setContentType("text/javascript");
26122 } else {
26123     response.setContentType("application/x-json");
26124 }
26125 Writer out = response.getWriter();
26126 if (scriptTag) {
26127     out.write(cb + "(");
26128 }
26129 out.print(dataBlock.toJsonString());
26130 if (scriptTag) {
26131     out.write(");");
26132 }
26133 </pre></code>
26134  *
26135  * @constructor
26136  * @param {Object} config A configuration object.
26137  */
26138 Roo.data.ScriptTagProxy = function(config){
26139     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
26140     Roo.apply(this, config);
26141     this.head = document.getElementsByTagName("head")[0];
26142 };
26143
26144 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
26145
26146 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
26147     /**
26148      * @cfg {String} url The URL from which to request the data object.
26149      */
26150     /**
26151      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
26152      */
26153     timeout : 30000,
26154     /**
26155      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
26156      * the server the name of the callback function set up by the load call to process the returned data object.
26157      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
26158      * javascript output which calls this named function passing the data object as its only parameter.
26159      */
26160     callbackParam : "callback",
26161     /**
26162      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
26163      * name to the request.
26164      */
26165     nocache : true,
26166
26167     /**
26168      * Load data from the configured URL, read the data object into
26169      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
26170      * process that block using the passed callback.
26171      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26172      * for the request to the remote server.
26173      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26174      * object into a block of Roo.data.Records.
26175      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26176      * The function must be passed <ul>
26177      * <li>The Record block object</li>
26178      * <li>The "arg" argument from the load function</li>
26179      * <li>A boolean success indicator</li>
26180      * </ul>
26181      * @param {Object} scope The scope in which to call the callback
26182      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26183      */
26184     load : function(params, reader, callback, scope, arg){
26185         if(this.fireEvent("beforeload", this, params) !== false){
26186
26187             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
26188
26189             var url = this.url;
26190             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
26191             if(this.nocache){
26192                 url += "&_dc=" + (new Date().getTime());
26193             }
26194             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
26195             var trans = {
26196                 id : transId,
26197                 cb : "stcCallback"+transId,
26198                 scriptId : "stcScript"+transId,
26199                 params : params,
26200                 arg : arg,
26201                 url : url,
26202                 callback : callback,
26203                 scope : scope,
26204                 reader : reader
26205             };
26206             var conn = this;
26207
26208             window[trans.cb] = function(o){
26209                 conn.handleResponse(o, trans);
26210             };
26211
26212             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
26213
26214             if(this.autoAbort !== false){
26215                 this.abort();
26216             }
26217
26218             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
26219
26220             var script = document.createElement("script");
26221             script.setAttribute("src", url);
26222             script.setAttribute("type", "text/javascript");
26223             script.setAttribute("id", trans.scriptId);
26224             this.head.appendChild(script);
26225
26226             this.trans = trans;
26227         }else{
26228             callback.call(scope||this, null, arg, false);
26229         }
26230     },
26231
26232     // private
26233     isLoading : function(){
26234         return this.trans ? true : false;
26235     },
26236
26237     /**
26238      * Abort the current server request.
26239      */
26240     abort : function(){
26241         if(this.isLoading()){
26242             this.destroyTrans(this.trans);
26243         }
26244     },
26245
26246     // private
26247     destroyTrans : function(trans, isLoaded){
26248         this.head.removeChild(document.getElementById(trans.scriptId));
26249         clearTimeout(trans.timeoutId);
26250         if(isLoaded){
26251             window[trans.cb] = undefined;
26252             try{
26253                 delete window[trans.cb];
26254             }catch(e){}
26255         }else{
26256             // if hasn't been loaded, wait for load to remove it to prevent script error
26257             window[trans.cb] = function(){
26258                 window[trans.cb] = undefined;
26259                 try{
26260                     delete window[trans.cb];
26261                 }catch(e){}
26262             };
26263         }
26264     },
26265
26266     // private
26267     handleResponse : function(o, trans){
26268         this.trans = false;
26269         this.destroyTrans(trans, true);
26270         var result;
26271         try {
26272             result = trans.reader.readRecords(o);
26273         }catch(e){
26274             this.fireEvent("loadexception", this, o, trans.arg, e);
26275             trans.callback.call(trans.scope||window, null, trans.arg, false);
26276             return;
26277         }
26278         this.fireEvent("load", this, o, trans.arg);
26279         trans.callback.call(trans.scope||window, result, trans.arg, true);
26280     },
26281
26282     // private
26283     handleFailure : function(trans){
26284         this.trans = false;
26285         this.destroyTrans(trans, false);
26286         this.fireEvent("loadexception", this, null, trans.arg);
26287         trans.callback.call(trans.scope||window, null, trans.arg, false);
26288     }
26289 });/*
26290  * Based on:
26291  * Ext JS Library 1.1.1
26292  * Copyright(c) 2006-2007, Ext JS, LLC.
26293  *
26294  * Originally Released Under LGPL - original licence link has changed is not relivant.
26295  *
26296  * Fork - LGPL
26297  * <script type="text/javascript">
26298  */
26299
26300 /**
26301  * @class Roo.data.JsonReader
26302  * @extends Roo.data.DataReader
26303  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
26304  * based on mappings in a provided Roo.data.Record constructor.
26305  * 
26306  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
26307  * in the reply previously. 
26308  * 
26309  * <p>
26310  * Example code:
26311  * <pre><code>
26312 var RecordDef = Roo.data.Record.create([
26313     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26314     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26315 ]);
26316 var myReader = new Roo.data.JsonReader({
26317     totalProperty: "results",    // The property which contains the total dataset size (optional)
26318     root: "rows",                // The property which contains an Array of row objects
26319     id: "id"                     // The property within each row object that provides an ID for the record (optional)
26320 }, RecordDef);
26321 </code></pre>
26322  * <p>
26323  * This would consume a JSON file like this:
26324  * <pre><code>
26325 { 'results': 2, 'rows': [
26326     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
26327     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
26328 }
26329 </code></pre>
26330  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
26331  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26332  * paged from the remote server.
26333  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
26334  * @cfg {String} root name of the property which contains the Array of row objects.
26335  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26336  * @cfg {Array} fields Array of field definition objects
26337  * @constructor
26338  * Create a new JsonReader
26339  * @param {Object} meta Metadata configuration options
26340  * @param {Object} recordType Either an Array of field definition objects,
26341  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
26342  */
26343 Roo.data.JsonReader = function(meta, recordType){
26344     
26345     meta = meta || {};
26346     // set some defaults:
26347     Roo.applyIf(meta, {
26348         totalProperty: 'total',
26349         successProperty : 'success',
26350         root : 'data',
26351         id : 'id'
26352     });
26353     
26354     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26355 };
26356 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
26357     
26358     readerType : 'Json',
26359     
26360     /**
26361      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
26362      * Used by Store query builder to append _requestMeta to params.
26363      * 
26364      */
26365     metaFromRemote : false,
26366     /**
26367      * This method is only used by a DataProxy which has retrieved data from a remote server.
26368      * @param {Object} response The XHR object which contains the JSON data in its responseText.
26369      * @return {Object} data A data block which is used by an Roo.data.Store object as
26370      * a cache of Roo.data.Records.
26371      */
26372     read : function(response){
26373         var json = response.responseText;
26374        
26375         var o = /* eval:var:o */ eval("("+json+")");
26376         if(!o) {
26377             throw {message: "JsonReader.read: Json object not found"};
26378         }
26379         
26380         if(o.metaData){
26381             
26382             delete this.ef;
26383             this.metaFromRemote = true;
26384             this.meta = o.metaData;
26385             this.recordType = Roo.data.Record.create(o.metaData.fields);
26386             this.onMetaChange(this.meta, this.recordType, o);
26387         }
26388         return this.readRecords(o);
26389     },
26390
26391     // private function a store will implement
26392     onMetaChange : function(meta, recordType, o){
26393
26394     },
26395
26396     /**
26397          * @ignore
26398          */
26399     simpleAccess: function(obj, subsc) {
26400         return obj[subsc];
26401     },
26402
26403         /**
26404          * @ignore
26405          */
26406     getJsonAccessor: function(){
26407         var re = /[\[\.]/;
26408         return function(expr) {
26409             try {
26410                 return(re.test(expr))
26411                     ? new Function("obj", "return obj." + expr)
26412                     : function(obj){
26413                         return obj[expr];
26414                     };
26415             } catch(e){}
26416             return Roo.emptyFn;
26417         };
26418     }(),
26419
26420     /**
26421      * Create a data block containing Roo.data.Records from an XML document.
26422      * @param {Object} o An object which contains an Array of row objects in the property specified
26423      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
26424      * which contains the total size of the dataset.
26425      * @return {Object} data A data block which is used by an Roo.data.Store object as
26426      * a cache of Roo.data.Records.
26427      */
26428     readRecords : function(o){
26429         /**
26430          * After any data loads, the raw JSON data is available for further custom processing.
26431          * @type Object
26432          */
26433         this.o = o;
26434         var s = this.meta, Record = this.recordType,
26435             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
26436
26437 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
26438         if (!this.ef) {
26439             if(s.totalProperty) {
26440                     this.getTotal = this.getJsonAccessor(s.totalProperty);
26441                 }
26442                 if(s.successProperty) {
26443                     this.getSuccess = this.getJsonAccessor(s.successProperty);
26444                 }
26445                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
26446                 if (s.id) {
26447                         var g = this.getJsonAccessor(s.id);
26448                         this.getId = function(rec) {
26449                                 var r = g(rec);  
26450                                 return (r === undefined || r === "") ? null : r;
26451                         };
26452                 } else {
26453                         this.getId = function(){return null;};
26454                 }
26455             this.ef = [];
26456             for(var jj = 0; jj < fl; jj++){
26457                 f = fi[jj];
26458                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
26459                 this.ef[jj] = this.getJsonAccessor(map);
26460             }
26461         }
26462
26463         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
26464         if(s.totalProperty){
26465             var vt = parseInt(this.getTotal(o), 10);
26466             if(!isNaN(vt)){
26467                 totalRecords = vt;
26468             }
26469         }
26470         if(s.successProperty){
26471             var vs = this.getSuccess(o);
26472             if(vs === false || vs === 'false'){
26473                 success = false;
26474             }
26475         }
26476         var records = [];
26477         for(var i = 0; i < c; i++){
26478             var n = root[i];
26479             var values = {};
26480             var id = this.getId(n);
26481             for(var j = 0; j < fl; j++){
26482                 f = fi[j];
26483                                 var v = this.ef[j](n);
26484                                 if (!f.convert) {
26485                                         Roo.log('missing convert for ' + f.name);
26486                                         Roo.log(f);
26487                                         continue;
26488                                 }
26489                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
26490             }
26491                         if (!Record) {
26492                                 return {
26493                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
26494                                         success : false,
26495                                         records : [],
26496                                         totalRecords : 0
26497                                 };
26498                         }
26499             var record = new Record(values, id);
26500             record.json = n;
26501             records[i] = record;
26502         }
26503         return {
26504             raw : o,
26505             success : success,
26506             records : records,
26507             totalRecords : totalRecords
26508         };
26509     },
26510     // used when loading children.. @see loadDataFromChildren
26511     toLoadData: function(rec)
26512     {
26513         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26514         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26515         return { data : data, total : data.length };
26516         
26517     }
26518 });/*
26519  * Based on:
26520  * Ext JS Library 1.1.1
26521  * Copyright(c) 2006-2007, Ext JS, LLC.
26522  *
26523  * Originally Released Under LGPL - original licence link has changed is not relivant.
26524  *
26525  * Fork - LGPL
26526  * <script type="text/javascript">
26527  */
26528
26529 /**
26530  * @class Roo.data.XmlReader
26531  * @extends Roo.data.DataReader
26532  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
26533  * based on mappings in a provided Roo.data.Record constructor.<br><br>
26534  * <p>
26535  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
26536  * header in the HTTP response must be set to "text/xml".</em>
26537  * <p>
26538  * Example code:
26539  * <pre><code>
26540 var RecordDef = Roo.data.Record.create([
26541    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26542    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26543 ]);
26544 var myReader = new Roo.data.XmlReader({
26545    totalRecords: "results", // The element which contains the total dataset size (optional)
26546    record: "row",           // The repeated element which contains row information
26547    id: "id"                 // The element within the row that provides an ID for the record (optional)
26548 }, RecordDef);
26549 </code></pre>
26550  * <p>
26551  * This would consume an XML file like this:
26552  * <pre><code>
26553 &lt;?xml?>
26554 &lt;dataset>
26555  &lt;results>2&lt;/results>
26556  &lt;row>
26557    &lt;id>1&lt;/id>
26558    &lt;name>Bill&lt;/name>
26559    &lt;occupation>Gardener&lt;/occupation>
26560  &lt;/row>
26561  &lt;row>
26562    &lt;id>2&lt;/id>
26563    &lt;name>Ben&lt;/name>
26564    &lt;occupation>Horticulturalist&lt;/occupation>
26565  &lt;/row>
26566 &lt;/dataset>
26567 </code></pre>
26568  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
26569  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26570  * paged from the remote server.
26571  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
26572  * @cfg {String} success The DomQuery path to the success attribute used by forms.
26573  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
26574  * a record identifier value.
26575  * @constructor
26576  * Create a new XmlReader
26577  * @param {Object} meta Metadata configuration options
26578  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
26579  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
26580  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
26581  */
26582 Roo.data.XmlReader = function(meta, recordType){
26583     meta = meta || {};
26584     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26585 };
26586 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
26587     
26588     readerType : 'Xml',
26589     
26590     /**
26591      * This method is only used by a DataProxy which has retrieved data from a remote server.
26592          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
26593          * to contain a method called 'responseXML' that returns an XML document object.
26594      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26595      * a cache of Roo.data.Records.
26596      */
26597     read : function(response){
26598         var doc = response.responseXML;
26599         if(!doc) {
26600             throw {message: "XmlReader.read: XML Document not available"};
26601         }
26602         return this.readRecords(doc);
26603     },
26604
26605     /**
26606      * Create a data block containing Roo.data.Records from an XML document.
26607          * @param {Object} doc A parsed XML document.
26608      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26609      * a cache of Roo.data.Records.
26610      */
26611     readRecords : function(doc){
26612         /**
26613          * After any data loads/reads, the raw XML Document is available for further custom processing.
26614          * @type XMLDocument
26615          */
26616         this.xmlData = doc;
26617         var root = doc.documentElement || doc;
26618         var q = Roo.DomQuery;
26619         var recordType = this.recordType, fields = recordType.prototype.fields;
26620         var sid = this.meta.id;
26621         var totalRecords = 0, success = true;
26622         if(this.meta.totalRecords){
26623             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
26624         }
26625         
26626         if(this.meta.success){
26627             var sv = q.selectValue(this.meta.success, root, true);
26628             success = sv !== false && sv !== 'false';
26629         }
26630         var records = [];
26631         var ns = q.select(this.meta.record, root);
26632         for(var i = 0, len = ns.length; i < len; i++) {
26633                 var n = ns[i];
26634                 var values = {};
26635                 var id = sid ? q.selectValue(sid, n) : undefined;
26636                 for(var j = 0, jlen = fields.length; j < jlen; j++){
26637                     var f = fields.items[j];
26638                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
26639                     v = f.convert(v);
26640                     values[f.name] = v;
26641                 }
26642                 var record = new recordType(values, id);
26643                 record.node = n;
26644                 records[records.length] = record;
26645             }
26646
26647             return {
26648                 success : success,
26649                 records : records,
26650                 totalRecords : totalRecords || records.length
26651             };
26652     }
26653 });/*
26654  * Based on:
26655  * Ext JS Library 1.1.1
26656  * Copyright(c) 2006-2007, Ext JS, LLC.
26657  *
26658  * Originally Released Under LGPL - original licence link has changed is not relivant.
26659  *
26660  * Fork - LGPL
26661  * <script type="text/javascript">
26662  */
26663
26664 /**
26665  * @class Roo.data.ArrayReader
26666  * @extends Roo.data.DataReader
26667  * Data reader class to create an Array of Roo.data.Record objects from an Array.
26668  * Each element of that Array represents a row of data fields. The
26669  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
26670  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
26671  * <p>
26672  * Example code:.
26673  * <pre><code>
26674 var RecordDef = Roo.data.Record.create([
26675     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
26676     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
26677 ]);
26678 var myReader = new Roo.data.ArrayReader({
26679     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
26680 }, RecordDef);
26681 </code></pre>
26682  * <p>
26683  * This would consume an Array like this:
26684  * <pre><code>
26685 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
26686   </code></pre>
26687  
26688  * @constructor
26689  * Create a new JsonReader
26690  * @param {Object} meta Metadata configuration options.
26691  * @param {Object|Array} recordType Either an Array of field definition objects
26692  * 
26693  * @cfg {Array} fields Array of field definition objects
26694  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26695  * as specified to {@link Roo.data.Record#create},
26696  * or an {@link Roo.data.Record} object
26697  *
26698  * 
26699  * created using {@link Roo.data.Record#create}.
26700  */
26701 Roo.data.ArrayReader = function(meta, recordType)
26702 {    
26703     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26704 };
26705
26706 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
26707     
26708       /**
26709      * Create a data block containing Roo.data.Records from an XML document.
26710      * @param {Object} o An Array of row objects which represents the dataset.
26711      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
26712      * a cache of Roo.data.Records.
26713      */
26714     readRecords : function(o)
26715     {
26716         var sid = this.meta ? this.meta.id : null;
26717         var recordType = this.recordType, fields = recordType.prototype.fields;
26718         var records = [];
26719         var root = o;
26720         for(var i = 0; i < root.length; i++){
26721             var n = root[i];
26722             var values = {};
26723             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
26724             for(var j = 0, jlen = fields.length; j < jlen; j++){
26725                 var f = fields.items[j];
26726                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
26727                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
26728                 v = f.convert(v);
26729                 values[f.name] = v;
26730             }
26731             var record = new recordType(values, id);
26732             record.json = n;
26733             records[records.length] = record;
26734         }
26735         return {
26736             records : records,
26737             totalRecords : records.length
26738         };
26739     },
26740     // used when loading children.. @see loadDataFromChildren
26741     toLoadData: function(rec)
26742     {
26743         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26744         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26745         
26746     }
26747     
26748     
26749 });/*
26750  * Based on:
26751  * Ext JS Library 1.1.1
26752  * Copyright(c) 2006-2007, Ext JS, LLC.
26753  *
26754  * Originally Released Under LGPL - original licence link has changed is not relivant.
26755  *
26756  * Fork - LGPL
26757  * <script type="text/javascript">
26758  */
26759
26760
26761 /**
26762  * @class Roo.data.Tree
26763  * @extends Roo.util.Observable
26764  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
26765  * in the tree have most standard DOM functionality.
26766  * @constructor
26767  * @param {Node} root (optional) The root node
26768  */
26769 Roo.data.Tree = function(root){
26770    this.nodeHash = {};
26771    /**
26772     * The root node for this tree
26773     * @type Node
26774     */
26775    this.root = null;
26776    if(root){
26777        this.setRootNode(root);
26778    }
26779    this.addEvents({
26780        /**
26781         * @event append
26782         * Fires when a new child node is appended to a node in this tree.
26783         * @param {Tree} tree The owner tree
26784         * @param {Node} parent The parent node
26785         * @param {Node} node The newly appended node
26786         * @param {Number} index The index of the newly appended node
26787         */
26788        "append" : true,
26789        /**
26790         * @event remove
26791         * Fires when a child node is removed from a node in this tree.
26792         * @param {Tree} tree The owner tree
26793         * @param {Node} parent The parent node
26794         * @param {Node} node The child node removed
26795         */
26796        "remove" : true,
26797        /**
26798         * @event move
26799         * Fires when a node is moved to a new location in the tree
26800         * @param {Tree} tree The owner tree
26801         * @param {Node} node The node moved
26802         * @param {Node} oldParent The old parent of this node
26803         * @param {Node} newParent The new parent of this node
26804         * @param {Number} index The index it was moved to
26805         */
26806        "move" : true,
26807        /**
26808         * @event insert
26809         * Fires when a new child node is inserted in a node in this tree.
26810         * @param {Tree} tree The owner tree
26811         * @param {Node} parent The parent node
26812         * @param {Node} node The child node inserted
26813         * @param {Node} refNode The child node the node was inserted before
26814         */
26815        "insert" : true,
26816        /**
26817         * @event beforeappend
26818         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
26819         * @param {Tree} tree The owner tree
26820         * @param {Node} parent The parent node
26821         * @param {Node} node The child node to be appended
26822         */
26823        "beforeappend" : true,
26824        /**
26825         * @event beforeremove
26826         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
26827         * @param {Tree} tree The owner tree
26828         * @param {Node} parent The parent node
26829         * @param {Node} node The child node to be removed
26830         */
26831        "beforeremove" : true,
26832        /**
26833         * @event beforemove
26834         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
26835         * @param {Tree} tree The owner tree
26836         * @param {Node} node The node being moved
26837         * @param {Node} oldParent The parent of the node
26838         * @param {Node} newParent The new parent the node is moving to
26839         * @param {Number} index The index it is being moved to
26840         */
26841        "beforemove" : true,
26842        /**
26843         * @event beforeinsert
26844         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
26845         * @param {Tree} tree The owner tree
26846         * @param {Node} parent The parent node
26847         * @param {Node} node The child node to be inserted
26848         * @param {Node} refNode The child node the node is being inserted before
26849         */
26850        "beforeinsert" : true
26851    });
26852
26853     Roo.data.Tree.superclass.constructor.call(this);
26854 };
26855
26856 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
26857     pathSeparator: "/",
26858
26859     proxyNodeEvent : function(){
26860         return this.fireEvent.apply(this, arguments);
26861     },
26862
26863     /**
26864      * Returns the root node for this tree.
26865      * @return {Node}
26866      */
26867     getRootNode : function(){
26868         return this.root;
26869     },
26870
26871     /**
26872      * Sets the root node for this tree.
26873      * @param {Node} node
26874      * @return {Node}
26875      */
26876     setRootNode : function(node){
26877         this.root = node;
26878         node.ownerTree = this;
26879         node.isRoot = true;
26880         this.registerNode(node);
26881         return node;
26882     },
26883
26884     /**
26885      * Gets a node in this tree by its id.
26886      * @param {String} id
26887      * @return {Node}
26888      */
26889     getNodeById : function(id){
26890         return this.nodeHash[id];
26891     },
26892
26893     registerNode : function(node){
26894         this.nodeHash[node.id] = node;
26895     },
26896
26897     unregisterNode : function(node){
26898         delete this.nodeHash[node.id];
26899     },
26900
26901     toString : function(){
26902         return "[Tree"+(this.id?" "+this.id:"")+"]";
26903     }
26904 });
26905
26906 /**
26907  * @class Roo.data.Node
26908  * @extends Roo.util.Observable
26909  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
26910  * @cfg {String} id The id for this node. If one is not specified, one is generated.
26911  * @constructor
26912  * @param {Object} attributes The attributes/config for the node
26913  */
26914 Roo.data.Node = function(attributes){
26915     /**
26916      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
26917      * @type {Object}
26918      */
26919     this.attributes = attributes || {};
26920     this.leaf = this.attributes.leaf;
26921     /**
26922      * The node id. @type String
26923      */
26924     this.id = this.attributes.id;
26925     if(!this.id){
26926         this.id = Roo.id(null, "ynode-");
26927         this.attributes.id = this.id;
26928     }
26929      
26930     
26931     /**
26932      * All child nodes of this node. @type Array
26933      */
26934     this.childNodes = [];
26935     if(!this.childNodes.indexOf){ // indexOf is a must
26936         this.childNodes.indexOf = function(o){
26937             for(var i = 0, len = this.length; i < len; i++){
26938                 if(this[i] == o) {
26939                     return i;
26940                 }
26941             }
26942             return -1;
26943         };
26944     }
26945     /**
26946      * The parent node for this node. @type Node
26947      */
26948     this.parentNode = null;
26949     /**
26950      * The first direct child node of this node, or null if this node has no child nodes. @type Node
26951      */
26952     this.firstChild = null;
26953     /**
26954      * The last direct child node of this node, or null if this node has no child nodes. @type Node
26955      */
26956     this.lastChild = null;
26957     /**
26958      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
26959      */
26960     this.previousSibling = null;
26961     /**
26962      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
26963      */
26964     this.nextSibling = null;
26965
26966     this.addEvents({
26967        /**
26968         * @event append
26969         * Fires when a new child node is appended
26970         * @param {Tree} tree The owner tree
26971         * @param {Node} this This node
26972         * @param {Node} node The newly appended node
26973         * @param {Number} index The index of the newly appended node
26974         */
26975        "append" : true,
26976        /**
26977         * @event remove
26978         * Fires when a child node is removed
26979         * @param {Tree} tree The owner tree
26980         * @param {Node} this This node
26981         * @param {Node} node The removed node
26982         */
26983        "remove" : true,
26984        /**
26985         * @event move
26986         * Fires when this node is moved to a new location in the tree
26987         * @param {Tree} tree The owner tree
26988         * @param {Node} this This node
26989         * @param {Node} oldParent The old parent of this node
26990         * @param {Node} newParent The new parent of this node
26991         * @param {Number} index The index it was moved to
26992         */
26993        "move" : true,
26994        /**
26995         * @event insert
26996         * Fires when a new child node is inserted.
26997         * @param {Tree} tree The owner tree
26998         * @param {Node} this This node
26999         * @param {Node} node The child node inserted
27000         * @param {Node} refNode The child node the node was inserted before
27001         */
27002        "insert" : true,
27003        /**
27004         * @event beforeappend
27005         * Fires before a new child is appended, return false to cancel the append.
27006         * @param {Tree} tree The owner tree
27007         * @param {Node} this This node
27008         * @param {Node} node The child node to be appended
27009         */
27010        "beforeappend" : true,
27011        /**
27012         * @event beforeremove
27013         * Fires before a child is removed, return false to cancel the remove.
27014         * @param {Tree} tree The owner tree
27015         * @param {Node} this This node
27016         * @param {Node} node The child node to be removed
27017         */
27018        "beforeremove" : true,
27019        /**
27020         * @event beforemove
27021         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
27022         * @param {Tree} tree The owner tree
27023         * @param {Node} this This node
27024         * @param {Node} oldParent The parent of this node
27025         * @param {Node} newParent The new parent this node is moving to
27026         * @param {Number} index The index it is being moved to
27027         */
27028        "beforemove" : true,
27029        /**
27030         * @event beforeinsert
27031         * Fires before a new child is inserted, return false to cancel the insert.
27032         * @param {Tree} tree The owner tree
27033         * @param {Node} this This node
27034         * @param {Node} node The child node to be inserted
27035         * @param {Node} refNode The child node the node is being inserted before
27036         */
27037        "beforeinsert" : true
27038    });
27039     this.listeners = this.attributes.listeners;
27040     Roo.data.Node.superclass.constructor.call(this);
27041 };
27042
27043 Roo.extend(Roo.data.Node, Roo.util.Observable, {
27044     fireEvent : function(evtName){
27045         // first do standard event for this node
27046         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
27047             return false;
27048         }
27049         // then bubble it up to the tree if the event wasn't cancelled
27050         var ot = this.getOwnerTree();
27051         if(ot){
27052             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
27053                 return false;
27054             }
27055         }
27056         return true;
27057     },
27058
27059     /**
27060      * Returns true if this node is a leaf
27061      * @return {Boolean}
27062      */
27063     isLeaf : function(){
27064         return this.leaf === true;
27065     },
27066
27067     // private
27068     setFirstChild : function(node){
27069         this.firstChild = node;
27070     },
27071
27072     //private
27073     setLastChild : function(node){
27074         this.lastChild = node;
27075     },
27076
27077
27078     /**
27079      * Returns true if this node is the last child of its parent
27080      * @return {Boolean}
27081      */
27082     isLast : function(){
27083        return (!this.parentNode ? true : this.parentNode.lastChild == this);
27084     },
27085
27086     /**
27087      * Returns true if this node is the first child of its parent
27088      * @return {Boolean}
27089      */
27090     isFirst : function(){
27091        return (!this.parentNode ? true : this.parentNode.firstChild == this);
27092     },
27093
27094     hasChildNodes : function(){
27095         return !this.isLeaf() && this.childNodes.length > 0;
27096     },
27097
27098     /**
27099      * Insert node(s) as the last child node of this node.
27100      * @param {Node/Array} node The node or Array of nodes to append
27101      * @return {Node} The appended node if single append, or null if an array was passed
27102      */
27103     appendChild : function(node){
27104         var multi = false;
27105         if(node instanceof Array){
27106             multi = node;
27107         }else if(arguments.length > 1){
27108             multi = arguments;
27109         }
27110         
27111         // if passed an array or multiple args do them one by one
27112         if(multi){
27113             for(var i = 0, len = multi.length; i < len; i++) {
27114                 this.appendChild(multi[i]);
27115             }
27116         }else{
27117             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
27118                 return false;
27119             }
27120             var index = this.childNodes.length;
27121             var oldParent = node.parentNode;
27122             // it's a move, make sure we move it cleanly
27123             if(oldParent){
27124                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
27125                     return false;
27126                 }
27127                 oldParent.removeChild(node);
27128             }
27129             
27130             index = this.childNodes.length;
27131             if(index == 0){
27132                 this.setFirstChild(node);
27133             }
27134             this.childNodes.push(node);
27135             node.parentNode = this;
27136             var ps = this.childNodes[index-1];
27137             if(ps){
27138                 node.previousSibling = ps;
27139                 ps.nextSibling = node;
27140             }else{
27141                 node.previousSibling = null;
27142             }
27143             node.nextSibling = null;
27144             this.setLastChild(node);
27145             node.setOwnerTree(this.getOwnerTree());
27146             this.fireEvent("append", this.ownerTree, this, node, index);
27147             if(this.ownerTree) {
27148                 this.ownerTree.fireEvent("appendnode", this, node, index);
27149             }
27150             if(oldParent){
27151                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
27152             }
27153             return node;
27154         }
27155     },
27156
27157     /**
27158      * Removes a child node from this node.
27159      * @param {Node} node The node to remove
27160      * @return {Node} The removed node
27161      */
27162     removeChild : function(node){
27163         var index = this.childNodes.indexOf(node);
27164         if(index == -1){
27165             return false;
27166         }
27167         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
27168             return false;
27169         }
27170
27171         // remove it from childNodes collection
27172         this.childNodes.splice(index, 1);
27173
27174         // update siblings
27175         if(node.previousSibling){
27176             node.previousSibling.nextSibling = node.nextSibling;
27177         }
27178         if(node.nextSibling){
27179             node.nextSibling.previousSibling = node.previousSibling;
27180         }
27181
27182         // update child refs
27183         if(this.firstChild == node){
27184             this.setFirstChild(node.nextSibling);
27185         }
27186         if(this.lastChild == node){
27187             this.setLastChild(node.previousSibling);
27188         }
27189
27190         node.setOwnerTree(null);
27191         // clear any references from the node
27192         node.parentNode = null;
27193         node.previousSibling = null;
27194         node.nextSibling = null;
27195         this.fireEvent("remove", this.ownerTree, this, node);
27196         return node;
27197     },
27198
27199     /**
27200      * Inserts the first node before the second node in this nodes childNodes collection.
27201      * @param {Node} node The node to insert
27202      * @param {Node} refNode The node to insert before (if null the node is appended)
27203      * @return {Node} The inserted node
27204      */
27205     insertBefore : function(node, refNode){
27206         if(!refNode){ // like standard Dom, refNode can be null for append
27207             return this.appendChild(node);
27208         }
27209         // nothing to do
27210         if(node == refNode){
27211             return false;
27212         }
27213
27214         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
27215             return false;
27216         }
27217         var index = this.childNodes.indexOf(refNode);
27218         var oldParent = node.parentNode;
27219         var refIndex = index;
27220
27221         // when moving internally, indexes will change after remove
27222         if(oldParent == this && this.childNodes.indexOf(node) < index){
27223             refIndex--;
27224         }
27225
27226         // it's a move, make sure we move it cleanly
27227         if(oldParent){
27228             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
27229                 return false;
27230             }
27231             oldParent.removeChild(node);
27232         }
27233         if(refIndex == 0){
27234             this.setFirstChild(node);
27235         }
27236         this.childNodes.splice(refIndex, 0, node);
27237         node.parentNode = this;
27238         var ps = this.childNodes[refIndex-1];
27239         if(ps){
27240             node.previousSibling = ps;
27241             ps.nextSibling = node;
27242         }else{
27243             node.previousSibling = null;
27244         }
27245         node.nextSibling = refNode;
27246         refNode.previousSibling = node;
27247         node.setOwnerTree(this.getOwnerTree());
27248         this.fireEvent("insert", this.ownerTree, this, node, refNode);
27249         if(oldParent){
27250             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
27251         }
27252         return node;
27253     },
27254
27255     /**
27256      * Returns the child node at the specified index.
27257      * @param {Number} index
27258      * @return {Node}
27259      */
27260     item : function(index){
27261         return this.childNodes[index];
27262     },
27263
27264     /**
27265      * Replaces one child node in this node with another.
27266      * @param {Node} newChild The replacement node
27267      * @param {Node} oldChild The node to replace
27268      * @return {Node} The replaced node
27269      */
27270     replaceChild : function(newChild, oldChild){
27271         this.insertBefore(newChild, oldChild);
27272         this.removeChild(oldChild);
27273         return oldChild;
27274     },
27275
27276     /**
27277      * Returns the index of a child node
27278      * @param {Node} node
27279      * @return {Number} The index of the node or -1 if it was not found
27280      */
27281     indexOf : function(child){
27282         return this.childNodes.indexOf(child);
27283     },
27284
27285     /**
27286      * Returns the tree this node is in.
27287      * @return {Tree}
27288      */
27289     getOwnerTree : function(){
27290         // if it doesn't have one, look for one
27291         if(!this.ownerTree){
27292             var p = this;
27293             while(p){
27294                 if(p.ownerTree){
27295                     this.ownerTree = p.ownerTree;
27296                     break;
27297                 }
27298                 p = p.parentNode;
27299             }
27300         }
27301         return this.ownerTree;
27302     },
27303
27304     /**
27305      * Returns depth of this node (the root node has a depth of 0)
27306      * @return {Number}
27307      */
27308     getDepth : function(){
27309         var depth = 0;
27310         var p = this;
27311         while(p.parentNode){
27312             ++depth;
27313             p = p.parentNode;
27314         }
27315         return depth;
27316     },
27317
27318     // private
27319     setOwnerTree : function(tree){
27320         // if it's move, we need to update everyone
27321         if(tree != this.ownerTree){
27322             if(this.ownerTree){
27323                 this.ownerTree.unregisterNode(this);
27324             }
27325             this.ownerTree = tree;
27326             var cs = this.childNodes;
27327             for(var i = 0, len = cs.length; i < len; i++) {
27328                 cs[i].setOwnerTree(tree);
27329             }
27330             if(tree){
27331                 tree.registerNode(this);
27332             }
27333         }
27334     },
27335
27336     /**
27337      * Returns the path for this node. The path can be used to expand or select this node programmatically.
27338      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
27339      * @return {String} The path
27340      */
27341     getPath : function(attr){
27342         attr = attr || "id";
27343         var p = this.parentNode;
27344         var b = [this.attributes[attr]];
27345         while(p){
27346             b.unshift(p.attributes[attr]);
27347             p = p.parentNode;
27348         }
27349         var sep = this.getOwnerTree().pathSeparator;
27350         return sep + b.join(sep);
27351     },
27352
27353     /**
27354      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27355      * function call will be the scope provided or the current node. The arguments to the function
27356      * will be the args provided or the current node. If the function returns false at any point,
27357      * the bubble is stopped.
27358      * @param {Function} fn The function to call
27359      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27360      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27361      */
27362     bubble : function(fn, scope, args){
27363         var p = this;
27364         while(p){
27365             if(fn.call(scope || p, args || p) === false){
27366                 break;
27367             }
27368             p = p.parentNode;
27369         }
27370     },
27371
27372     /**
27373      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27374      * function call will be the scope provided or the current node. The arguments to the function
27375      * will be the args provided or the current node. If the function returns false at any point,
27376      * the cascade is stopped on that branch.
27377      * @param {Function} fn The function to call
27378      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27379      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27380      */
27381     cascade : function(fn, scope, args){
27382         if(fn.call(scope || this, args || this) !== false){
27383             var cs = this.childNodes;
27384             for(var i = 0, len = cs.length; i < len; i++) {
27385                 cs[i].cascade(fn, scope, args);
27386             }
27387         }
27388     },
27389
27390     /**
27391      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
27392      * function call will be the scope provided or the current node. The arguments to the function
27393      * will be the args provided or the current node. If the function returns false at any point,
27394      * the iteration stops.
27395      * @param {Function} fn The function to call
27396      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27397      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27398      */
27399     eachChild : function(fn, scope, args){
27400         var cs = this.childNodes;
27401         for(var i = 0, len = cs.length; i < len; i++) {
27402                 if(fn.call(scope || this, args || cs[i]) === false){
27403                     break;
27404                 }
27405         }
27406     },
27407
27408     /**
27409      * Finds the first child that has the attribute with the specified value.
27410      * @param {String} attribute The attribute name
27411      * @param {Mixed} value The value to search for
27412      * @return {Node} The found child or null if none was found
27413      */
27414     findChild : function(attribute, value){
27415         var cs = this.childNodes;
27416         for(var i = 0, len = cs.length; i < len; i++) {
27417                 if(cs[i].attributes[attribute] == value){
27418                     return cs[i];
27419                 }
27420         }
27421         return null;
27422     },
27423
27424     /**
27425      * Finds the first child by a custom function. The child matches if the function passed
27426      * returns true.
27427      * @param {Function} fn
27428      * @param {Object} scope (optional)
27429      * @return {Node} The found child or null if none was found
27430      */
27431     findChildBy : function(fn, scope){
27432         var cs = this.childNodes;
27433         for(var i = 0, len = cs.length; i < len; i++) {
27434                 if(fn.call(scope||cs[i], cs[i]) === true){
27435                     return cs[i];
27436                 }
27437         }
27438         return null;
27439     },
27440
27441     /**
27442      * Sorts this nodes children using the supplied sort function
27443      * @param {Function} fn
27444      * @param {Object} scope (optional)
27445      */
27446     sort : function(fn, scope){
27447         var cs = this.childNodes;
27448         var len = cs.length;
27449         if(len > 0){
27450             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
27451             cs.sort(sortFn);
27452             for(var i = 0; i < len; i++){
27453                 var n = cs[i];
27454                 n.previousSibling = cs[i-1];
27455                 n.nextSibling = cs[i+1];
27456                 if(i == 0){
27457                     this.setFirstChild(n);
27458                 }
27459                 if(i == len-1){
27460                     this.setLastChild(n);
27461                 }
27462             }
27463         }
27464     },
27465
27466     /**
27467      * Returns true if this node is an ancestor (at any point) of the passed node.
27468      * @param {Node} node
27469      * @return {Boolean}
27470      */
27471     contains : function(node){
27472         return node.isAncestor(this);
27473     },
27474
27475     /**
27476      * Returns true if the passed node is an ancestor (at any point) of this node.
27477      * @param {Node} node
27478      * @return {Boolean}
27479      */
27480     isAncestor : function(node){
27481         var p = this.parentNode;
27482         while(p){
27483             if(p == node){
27484                 return true;
27485             }
27486             p = p.parentNode;
27487         }
27488         return false;
27489     },
27490
27491     toString : function(){
27492         return "[Node"+(this.id?" "+this.id:"")+"]";
27493     }
27494 });/*
27495  * Based on:
27496  * Ext JS Library 1.1.1
27497  * Copyright(c) 2006-2007, Ext JS, LLC.
27498  *
27499  * Originally Released Under LGPL - original licence link has changed is not relivant.
27500  *
27501  * Fork - LGPL
27502  * <script type="text/javascript">
27503  */
27504
27505
27506 /**
27507  * @class Roo.Shadow
27508  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
27509  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
27510  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
27511  * @constructor
27512  * Create a new Shadow
27513  * @param {Object} config The config object
27514  */
27515 Roo.Shadow = function(config){
27516     Roo.apply(this, config);
27517     if(typeof this.mode != "string"){
27518         this.mode = this.defaultMode;
27519     }
27520     var o = this.offset, a = {h: 0};
27521     var rad = Math.floor(this.offset/2);
27522     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
27523         case "drop":
27524             a.w = 0;
27525             a.l = a.t = o;
27526             a.t -= 1;
27527             if(Roo.isIE){
27528                 a.l -= this.offset + rad;
27529                 a.t -= this.offset + rad;
27530                 a.w -= rad;
27531                 a.h -= rad;
27532                 a.t += 1;
27533             }
27534         break;
27535         case "sides":
27536             a.w = (o*2);
27537             a.l = -o;
27538             a.t = o-1;
27539             if(Roo.isIE){
27540                 a.l -= (this.offset - rad);
27541                 a.t -= this.offset + rad;
27542                 a.l += 1;
27543                 a.w -= (this.offset - rad)*2;
27544                 a.w -= rad + 1;
27545                 a.h -= 1;
27546             }
27547         break;
27548         case "frame":
27549             a.w = a.h = (o*2);
27550             a.l = a.t = -o;
27551             a.t += 1;
27552             a.h -= 2;
27553             if(Roo.isIE){
27554                 a.l -= (this.offset - rad);
27555                 a.t -= (this.offset - rad);
27556                 a.l += 1;
27557                 a.w -= (this.offset + rad + 1);
27558                 a.h -= (this.offset + rad);
27559                 a.h += 1;
27560             }
27561         break;
27562     };
27563
27564     this.adjusts = a;
27565 };
27566
27567 Roo.Shadow.prototype = {
27568     /**
27569      * @cfg {String} mode
27570      * The shadow display mode.  Supports the following options:<br />
27571      * sides: Shadow displays on both sides and bottom only<br />
27572      * frame: Shadow displays equally on all four sides<br />
27573      * drop: Traditional bottom-right drop shadow (default)
27574      */
27575     mode: false,
27576     /**
27577      * @cfg {String} offset
27578      * The number of pixels to offset the shadow from the element (defaults to 4)
27579      */
27580     offset: 4,
27581
27582     // private
27583     defaultMode: "drop",
27584
27585     /**
27586      * Displays the shadow under the target element
27587      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
27588      */
27589     show : function(target){
27590         target = Roo.get(target);
27591         if(!this.el){
27592             this.el = Roo.Shadow.Pool.pull();
27593             if(this.el.dom.nextSibling != target.dom){
27594                 this.el.insertBefore(target);
27595             }
27596         }
27597         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
27598         if(Roo.isIE){
27599             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
27600         }
27601         this.realign(
27602             target.getLeft(true),
27603             target.getTop(true),
27604             target.getWidth(),
27605             target.getHeight()
27606         );
27607         this.el.dom.style.display = "block";
27608     },
27609
27610     /**
27611      * Returns true if the shadow is visible, else false
27612      */
27613     isVisible : function(){
27614         return this.el ? true : false;  
27615     },
27616
27617     /**
27618      * Direct alignment when values are already available. Show must be called at least once before
27619      * calling this method to ensure it is initialized.
27620      * @param {Number} left The target element left position
27621      * @param {Number} top The target element top position
27622      * @param {Number} width The target element width
27623      * @param {Number} height The target element height
27624      */
27625     realign : function(l, t, w, h){
27626         if(!this.el){
27627             return;
27628         }
27629         var a = this.adjusts, d = this.el.dom, s = d.style;
27630         var iea = 0;
27631         s.left = (l+a.l)+"px";
27632         s.top = (t+a.t)+"px";
27633         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
27634  
27635         if(s.width != sws || s.height != shs){
27636             s.width = sws;
27637             s.height = shs;
27638             if(!Roo.isIE){
27639                 var cn = d.childNodes;
27640                 var sww = Math.max(0, (sw-12))+"px";
27641                 cn[0].childNodes[1].style.width = sww;
27642                 cn[1].childNodes[1].style.width = sww;
27643                 cn[2].childNodes[1].style.width = sww;
27644                 cn[1].style.height = Math.max(0, (sh-12))+"px";
27645             }
27646         }
27647     },
27648
27649     /**
27650      * Hides this shadow
27651      */
27652     hide : function(){
27653         if(this.el){
27654             this.el.dom.style.display = "none";
27655             Roo.Shadow.Pool.push(this.el);
27656             delete this.el;
27657         }
27658     },
27659
27660     /**
27661      * Adjust the z-index of this shadow
27662      * @param {Number} zindex The new z-index
27663      */
27664     setZIndex : function(z){
27665         this.zIndex = z;
27666         if(this.el){
27667             this.el.setStyle("z-index", z);
27668         }
27669     }
27670 };
27671
27672 // Private utility class that manages the internal Shadow cache
27673 Roo.Shadow.Pool = function(){
27674     var p = [];
27675     var markup = Roo.isIE ?
27676                  '<div class="x-ie-shadow"></div>' :
27677                  '<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>';
27678     return {
27679         pull : function(){
27680             var sh = p.shift();
27681             if(!sh){
27682                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
27683                 sh.autoBoxAdjust = false;
27684             }
27685             return sh;
27686         },
27687
27688         push : function(sh){
27689             p.push(sh);
27690         }
27691     };
27692 }();/*
27693  * Based on:
27694  * Ext JS Library 1.1.1
27695  * Copyright(c) 2006-2007, Ext JS, LLC.
27696  *
27697  * Originally Released Under LGPL - original licence link has changed is not relivant.
27698  *
27699  * Fork - LGPL
27700  * <script type="text/javascript">
27701  */
27702
27703
27704 /**
27705  * @class Roo.SplitBar
27706  * @extends Roo.util.Observable
27707  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
27708  * <br><br>
27709  * Usage:
27710  * <pre><code>
27711 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
27712                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
27713 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
27714 split.minSize = 100;
27715 split.maxSize = 600;
27716 split.animate = true;
27717 split.on('moved', splitterMoved);
27718 </code></pre>
27719  * @constructor
27720  * Create a new SplitBar
27721  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
27722  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
27723  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27724  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
27725                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
27726                         position of the SplitBar).
27727  */
27728 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
27729     
27730     /** @private */
27731     this.el = Roo.get(dragElement, true);
27732     this.el.dom.unselectable = "on";
27733     /** @private */
27734     this.resizingEl = Roo.get(resizingElement, true);
27735
27736     /**
27737      * @private
27738      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27739      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
27740      * @type Number
27741      */
27742     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
27743     
27744     /**
27745      * The minimum size of the resizing element. (Defaults to 0)
27746      * @type Number
27747      */
27748     this.minSize = 0;
27749     
27750     /**
27751      * The maximum size of the resizing element. (Defaults to 2000)
27752      * @type Number
27753      */
27754     this.maxSize = 2000;
27755     
27756     /**
27757      * Whether to animate the transition to the new size
27758      * @type Boolean
27759      */
27760     this.animate = false;
27761     
27762     /**
27763      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
27764      * @type Boolean
27765      */
27766     this.useShim = false;
27767     
27768     /** @private */
27769     this.shim = null;
27770     
27771     if(!existingProxy){
27772         /** @private */
27773         this.proxy = Roo.SplitBar.createProxy(this.orientation);
27774     }else{
27775         this.proxy = Roo.get(existingProxy).dom;
27776     }
27777     /** @private */
27778     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
27779     
27780     /** @private */
27781     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
27782     
27783     /** @private */
27784     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
27785     
27786     /** @private */
27787     this.dragSpecs = {};
27788     
27789     /**
27790      * @private The adapter to use to positon and resize elements
27791      */
27792     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
27793     this.adapter.init(this);
27794     
27795     if(this.orientation == Roo.SplitBar.HORIZONTAL){
27796         /** @private */
27797         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
27798         this.el.addClass("x-splitbar-h");
27799     }else{
27800         /** @private */
27801         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
27802         this.el.addClass("x-splitbar-v");
27803     }
27804     
27805     this.addEvents({
27806         /**
27807          * @event resize
27808          * Fires when the splitter is moved (alias for {@link #event-moved})
27809          * @param {Roo.SplitBar} this
27810          * @param {Number} newSize the new width or height
27811          */
27812         "resize" : true,
27813         /**
27814          * @event moved
27815          * Fires when the splitter is moved
27816          * @param {Roo.SplitBar} this
27817          * @param {Number} newSize the new width or height
27818          */
27819         "moved" : true,
27820         /**
27821          * @event beforeresize
27822          * Fires before the splitter is dragged
27823          * @param {Roo.SplitBar} this
27824          */
27825         "beforeresize" : true,
27826
27827         "beforeapply" : true
27828     });
27829
27830     Roo.util.Observable.call(this);
27831 };
27832
27833 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
27834     onStartProxyDrag : function(x, y){
27835         this.fireEvent("beforeresize", this);
27836         if(!this.overlay){
27837             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
27838             o.unselectable();
27839             o.enableDisplayMode("block");
27840             // all splitbars share the same overlay
27841             Roo.SplitBar.prototype.overlay = o;
27842         }
27843         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
27844         this.overlay.show();
27845         Roo.get(this.proxy).setDisplayed("block");
27846         var size = this.adapter.getElementSize(this);
27847         this.activeMinSize = this.getMinimumSize();;
27848         this.activeMaxSize = this.getMaximumSize();;
27849         var c1 = size - this.activeMinSize;
27850         var c2 = Math.max(this.activeMaxSize - size, 0);
27851         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27852             this.dd.resetConstraints();
27853             this.dd.setXConstraint(
27854                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
27855                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
27856             );
27857             this.dd.setYConstraint(0, 0);
27858         }else{
27859             this.dd.resetConstraints();
27860             this.dd.setXConstraint(0, 0);
27861             this.dd.setYConstraint(
27862                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
27863                 this.placement == Roo.SplitBar.TOP ? c2 : c1
27864             );
27865          }
27866         this.dragSpecs.startSize = size;
27867         this.dragSpecs.startPoint = [x, y];
27868         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
27869     },
27870     
27871     /** 
27872      * @private Called after the drag operation by the DDProxy
27873      */
27874     onEndProxyDrag : function(e){
27875         Roo.get(this.proxy).setDisplayed(false);
27876         var endPoint = Roo.lib.Event.getXY(e);
27877         if(this.overlay){
27878             this.overlay.hide();
27879         }
27880         var newSize;
27881         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27882             newSize = this.dragSpecs.startSize + 
27883                 (this.placement == Roo.SplitBar.LEFT ?
27884                     endPoint[0] - this.dragSpecs.startPoint[0] :
27885                     this.dragSpecs.startPoint[0] - endPoint[0]
27886                 );
27887         }else{
27888             newSize = this.dragSpecs.startSize + 
27889                 (this.placement == Roo.SplitBar.TOP ?
27890                     endPoint[1] - this.dragSpecs.startPoint[1] :
27891                     this.dragSpecs.startPoint[1] - endPoint[1]
27892                 );
27893         }
27894         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
27895         if(newSize != this.dragSpecs.startSize){
27896             if(this.fireEvent('beforeapply', this, newSize) !== false){
27897                 this.adapter.setElementSize(this, newSize);
27898                 this.fireEvent("moved", this, newSize);
27899                 this.fireEvent("resize", this, newSize);
27900             }
27901         }
27902     },
27903     
27904     /**
27905      * Get the adapter this SplitBar uses
27906      * @return The adapter object
27907      */
27908     getAdapter : function(){
27909         return this.adapter;
27910     },
27911     
27912     /**
27913      * Set the adapter this SplitBar uses
27914      * @param {Object} adapter A SplitBar adapter object
27915      */
27916     setAdapter : function(adapter){
27917         this.adapter = adapter;
27918         this.adapter.init(this);
27919     },
27920     
27921     /**
27922      * Gets the minimum size for the resizing element
27923      * @return {Number} The minimum size
27924      */
27925     getMinimumSize : function(){
27926         return this.minSize;
27927     },
27928     
27929     /**
27930      * Sets the minimum size for the resizing element
27931      * @param {Number} minSize The minimum size
27932      */
27933     setMinimumSize : function(minSize){
27934         this.minSize = minSize;
27935     },
27936     
27937     /**
27938      * Gets the maximum size for the resizing element
27939      * @return {Number} The maximum size
27940      */
27941     getMaximumSize : function(){
27942         return this.maxSize;
27943     },
27944     
27945     /**
27946      * Sets the maximum size for the resizing element
27947      * @param {Number} maxSize The maximum size
27948      */
27949     setMaximumSize : function(maxSize){
27950         this.maxSize = maxSize;
27951     },
27952     
27953     /**
27954      * Sets the initialize size for the resizing element
27955      * @param {Number} size The initial size
27956      */
27957     setCurrentSize : function(size){
27958         var oldAnimate = this.animate;
27959         this.animate = false;
27960         this.adapter.setElementSize(this, size);
27961         this.animate = oldAnimate;
27962     },
27963     
27964     /**
27965      * Destroy this splitbar. 
27966      * @param {Boolean} removeEl True to remove the element
27967      */
27968     destroy : function(removeEl){
27969         if(this.shim){
27970             this.shim.remove();
27971         }
27972         this.dd.unreg();
27973         this.proxy.parentNode.removeChild(this.proxy);
27974         if(removeEl){
27975             this.el.remove();
27976         }
27977     }
27978 });
27979
27980 /**
27981  * @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.
27982  */
27983 Roo.SplitBar.createProxy = function(dir){
27984     var proxy = new Roo.Element(document.createElement("div"));
27985     proxy.unselectable();
27986     var cls = 'x-splitbar-proxy';
27987     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
27988     document.body.appendChild(proxy.dom);
27989     return proxy.dom;
27990 };
27991
27992 /** 
27993  * @class Roo.SplitBar.BasicLayoutAdapter
27994  * Default Adapter. It assumes the splitter and resizing element are not positioned
27995  * elements and only gets/sets the width of the element. Generally used for table based layouts.
27996  */
27997 Roo.SplitBar.BasicLayoutAdapter = function(){
27998 };
27999
28000 Roo.SplitBar.BasicLayoutAdapter.prototype = {
28001     // do nothing for now
28002     init : function(s){
28003     
28004     },
28005     /**
28006      * Called before drag operations to get the current size of the resizing element. 
28007      * @param {Roo.SplitBar} s The SplitBar using this adapter
28008      */
28009      getElementSize : function(s){
28010         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28011             return s.resizingEl.getWidth();
28012         }else{
28013             return s.resizingEl.getHeight();
28014         }
28015     },
28016     
28017     /**
28018      * Called after drag operations to set the size of the resizing element.
28019      * @param {Roo.SplitBar} s The SplitBar using this adapter
28020      * @param {Number} newSize The new size to set
28021      * @param {Function} onComplete A function to be invoked when resizing is complete
28022      */
28023     setElementSize : function(s, newSize, onComplete){
28024         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28025             if(!s.animate){
28026                 s.resizingEl.setWidth(newSize);
28027                 if(onComplete){
28028                     onComplete(s, newSize);
28029                 }
28030             }else{
28031                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
28032             }
28033         }else{
28034             
28035             if(!s.animate){
28036                 s.resizingEl.setHeight(newSize);
28037                 if(onComplete){
28038                     onComplete(s, newSize);
28039                 }
28040             }else{
28041                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
28042             }
28043         }
28044     }
28045 };
28046
28047 /** 
28048  *@class Roo.SplitBar.AbsoluteLayoutAdapter
28049  * @extends Roo.SplitBar.BasicLayoutAdapter
28050  * Adapter that  moves the splitter element to align with the resized sizing element. 
28051  * Used with an absolute positioned SplitBar.
28052  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
28053  * document.body, make sure you assign an id to the body element.
28054  */
28055 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
28056     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
28057     this.container = Roo.get(container);
28058 };
28059
28060 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
28061     init : function(s){
28062         this.basic.init(s);
28063     },
28064     
28065     getElementSize : function(s){
28066         return this.basic.getElementSize(s);
28067     },
28068     
28069     setElementSize : function(s, newSize, onComplete){
28070         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
28071     },
28072     
28073     moveSplitter : function(s){
28074         var yes = Roo.SplitBar;
28075         switch(s.placement){
28076             case yes.LEFT:
28077                 s.el.setX(s.resizingEl.getRight());
28078                 break;
28079             case yes.RIGHT:
28080                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
28081                 break;
28082             case yes.TOP:
28083                 s.el.setY(s.resizingEl.getBottom());
28084                 break;
28085             case yes.BOTTOM:
28086                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
28087                 break;
28088         }
28089     }
28090 };
28091
28092 /**
28093  * Orientation constant - Create a vertical SplitBar
28094  * @static
28095  * @type Number
28096  */
28097 Roo.SplitBar.VERTICAL = 1;
28098
28099 /**
28100  * Orientation constant - Create a horizontal SplitBar
28101  * @static
28102  * @type Number
28103  */
28104 Roo.SplitBar.HORIZONTAL = 2;
28105
28106 /**
28107  * Placement constant - The resizing element is to the left of the splitter element
28108  * @static
28109  * @type Number
28110  */
28111 Roo.SplitBar.LEFT = 1;
28112
28113 /**
28114  * Placement constant - The resizing element is to the right of the splitter element
28115  * @static
28116  * @type Number
28117  */
28118 Roo.SplitBar.RIGHT = 2;
28119
28120 /**
28121  * Placement constant - The resizing element is positioned above the splitter element
28122  * @static
28123  * @type Number
28124  */
28125 Roo.SplitBar.TOP = 3;
28126
28127 /**
28128  * Placement constant - The resizing element is positioned under splitter element
28129  * @static
28130  * @type Number
28131  */
28132 Roo.SplitBar.BOTTOM = 4;
28133 /*
28134  * Based on:
28135  * Ext JS Library 1.1.1
28136  * Copyright(c) 2006-2007, Ext JS, LLC.
28137  *
28138  * Originally Released Under LGPL - original licence link has changed is not relivant.
28139  *
28140  * Fork - LGPL
28141  * <script type="text/javascript">
28142  */
28143
28144 /**
28145  * @class Roo.View
28146  * @extends Roo.util.Observable
28147  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
28148  * This class also supports single and multi selection modes. <br>
28149  * Create a data model bound view:
28150  <pre><code>
28151  var store = new Roo.data.Store(...);
28152
28153  var view = new Roo.View({
28154     el : "my-element",
28155     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
28156  
28157     singleSelect: true,
28158     selectedClass: "ydataview-selected",
28159     store: store
28160  });
28161
28162  // listen for node click?
28163  view.on("click", function(vw, index, node, e){
28164  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28165  });
28166
28167  // load XML data
28168  dataModel.load("foobar.xml");
28169  </code></pre>
28170  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
28171  * <br><br>
28172  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
28173  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
28174  * 
28175  * Note: old style constructor is still suported (container, template, config)
28176  * 
28177  * @constructor
28178  * Create a new View
28179  * @param {Object} config The config object
28180  * 
28181  */
28182 Roo.View = function(config, depreciated_tpl, depreciated_config){
28183     
28184     this.parent = false;
28185     
28186     if (typeof(depreciated_tpl) == 'undefined') {
28187         // new way.. - universal constructor.
28188         Roo.apply(this, config);
28189         this.el  = Roo.get(this.el);
28190     } else {
28191         // old format..
28192         this.el  = Roo.get(config);
28193         this.tpl = depreciated_tpl;
28194         Roo.apply(this, depreciated_config);
28195     }
28196     this.wrapEl  = this.el.wrap().wrap();
28197     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
28198     
28199     
28200     if(typeof(this.tpl) == "string"){
28201         this.tpl = new Roo.Template(this.tpl);
28202     } else {
28203         // support xtype ctors..
28204         this.tpl = new Roo.factory(this.tpl, Roo);
28205     }
28206     
28207     
28208     this.tpl.compile();
28209     
28210     /** @private */
28211     this.addEvents({
28212         /**
28213          * @event beforeclick
28214          * Fires before a click is processed. Returns false to cancel the default action.
28215          * @param {Roo.View} this
28216          * @param {Number} index The index of the target node
28217          * @param {HTMLElement} node The target node
28218          * @param {Roo.EventObject} e The raw event object
28219          */
28220             "beforeclick" : true,
28221         /**
28222          * @event click
28223          * Fires when a template node is clicked.
28224          * @param {Roo.View} this
28225          * @param {Number} index The index of the target node
28226          * @param {HTMLElement} node The target node
28227          * @param {Roo.EventObject} e The raw event object
28228          */
28229             "click" : true,
28230         /**
28231          * @event dblclick
28232          * Fires when a template node is double clicked.
28233          * @param {Roo.View} this
28234          * @param {Number} index The index of the target node
28235          * @param {HTMLElement} node The target node
28236          * @param {Roo.EventObject} e The raw event object
28237          */
28238             "dblclick" : true,
28239         /**
28240          * @event contextmenu
28241          * Fires when a template node is right clicked.
28242          * @param {Roo.View} this
28243          * @param {Number} index The index of the target node
28244          * @param {HTMLElement} node The target node
28245          * @param {Roo.EventObject} e The raw event object
28246          */
28247             "contextmenu" : true,
28248         /**
28249          * @event selectionchange
28250          * Fires when the selected nodes change.
28251          * @param {Roo.View} this
28252          * @param {Array} selections Array of the selected nodes
28253          */
28254             "selectionchange" : true,
28255     
28256         /**
28257          * @event beforeselect
28258          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
28259          * @param {Roo.View} this
28260          * @param {HTMLElement} node The node to be selected
28261          * @param {Array} selections Array of currently selected nodes
28262          */
28263             "beforeselect" : true,
28264         /**
28265          * @event preparedata
28266          * Fires on every row to render, to allow you to change the data.
28267          * @param {Roo.View} this
28268          * @param {Object} data to be rendered (change this)
28269          */
28270           "preparedata" : true
28271           
28272           
28273         });
28274
28275
28276
28277     this.el.on({
28278         "click": this.onClick,
28279         "dblclick": this.onDblClick,
28280         "contextmenu": this.onContextMenu,
28281         scope:this
28282     });
28283
28284     this.selections = [];
28285     this.nodes = [];
28286     this.cmp = new Roo.CompositeElementLite([]);
28287     if(this.store){
28288         this.store = Roo.factory(this.store, Roo.data);
28289         this.setStore(this.store, true);
28290     }
28291     
28292     if ( this.footer && this.footer.xtype) {
28293            
28294          var fctr = this.wrapEl.appendChild(document.createElement("div"));
28295         
28296         this.footer.dataSource = this.store;
28297         this.footer.container = fctr;
28298         this.footer = Roo.factory(this.footer, Roo);
28299         fctr.insertFirst(this.el);
28300         
28301         // this is a bit insane - as the paging toolbar seems to detach the el..
28302 //        dom.parentNode.parentNode.parentNode
28303          // they get detached?
28304     }
28305     
28306     
28307     Roo.View.superclass.constructor.call(this);
28308     
28309     
28310 };
28311
28312 Roo.extend(Roo.View, Roo.util.Observable, {
28313     
28314      /**
28315      * @cfg {Roo.data.Store} store Data store to load data from.
28316      */
28317     store : false,
28318     
28319     /**
28320      * @cfg {String|Roo.Element} el The container element.
28321      */
28322     el : '',
28323     
28324     /**
28325      * @cfg {String|Roo.Template} tpl The template used by this View 
28326      */
28327     tpl : false,
28328     /**
28329      * @cfg {String} dataName the named area of the template to use as the data area
28330      *                          Works with domtemplates roo-name="name"
28331      */
28332     dataName: false,
28333     /**
28334      * @cfg {String} selectedClass The css class to add to selected nodes
28335      */
28336     selectedClass : "x-view-selected",
28337      /**
28338      * @cfg {String} emptyText The empty text to show when nothing is loaded.
28339      */
28340     emptyText : "",
28341     
28342     /**
28343      * @cfg {String} text to display on mask (default Loading)
28344      */
28345     mask : false,
28346     /**
28347      * @cfg {Boolean} multiSelect Allow multiple selection
28348      */
28349     multiSelect : false,
28350     /**
28351      * @cfg {Boolean} singleSelect Allow single selection
28352      */
28353     singleSelect:  false,
28354     
28355     /**
28356      * @cfg {Boolean} toggleSelect - selecting 
28357      */
28358     toggleSelect : false,
28359     
28360     /**
28361      * @cfg {Boolean} tickable - selecting 
28362      */
28363     tickable : false,
28364     
28365     /**
28366      * Returns the element this view is bound to.
28367      * @return {Roo.Element}
28368      */
28369     getEl : function(){
28370         return this.wrapEl;
28371     },
28372     
28373     
28374
28375     /**
28376      * Refreshes the view. - called by datachanged on the store. - do not call directly.
28377      */
28378     refresh : function(){
28379         //Roo.log('refresh');
28380         var t = this.tpl;
28381         
28382         // if we are using something like 'domtemplate', then
28383         // the what gets used is:
28384         // t.applySubtemplate(NAME, data, wrapping data..)
28385         // the outer template then get' applied with
28386         //     the store 'extra data'
28387         // and the body get's added to the
28388         //      roo-name="data" node?
28389         //      <span class='roo-tpl-{name}'></span> ?????
28390         
28391         
28392         
28393         this.clearSelections();
28394         this.el.update("");
28395         var html = [];
28396         var records = this.store.getRange();
28397         if(records.length < 1) {
28398             
28399             // is this valid??  = should it render a template??
28400             
28401             this.el.update(this.emptyText);
28402             return;
28403         }
28404         var el = this.el;
28405         if (this.dataName) {
28406             this.el.update(t.apply(this.store.meta)); //????
28407             el = this.el.child('.roo-tpl-' + this.dataName);
28408         }
28409         
28410         for(var i = 0, len = records.length; i < len; i++){
28411             var data = this.prepareData(records[i].data, i, records[i]);
28412             this.fireEvent("preparedata", this, data, i, records[i]);
28413             
28414             var d = Roo.apply({}, data);
28415             
28416             if(this.tickable){
28417                 Roo.apply(d, {'roo-id' : Roo.id()});
28418                 
28419                 var _this = this;
28420             
28421                 Roo.each(this.parent.item, function(item){
28422                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
28423                         return;
28424                     }
28425                     Roo.apply(d, {'roo-data-checked' : 'checked'});
28426                 });
28427             }
28428             
28429             html[html.length] = Roo.util.Format.trim(
28430                 this.dataName ?
28431                     t.applySubtemplate(this.dataName, d, this.store.meta) :
28432                     t.apply(d)
28433             );
28434         }
28435         
28436         
28437         
28438         el.update(html.join(""));
28439         this.nodes = el.dom.childNodes;
28440         this.updateIndexes(0);
28441     },
28442     
28443
28444     /**
28445      * Function to override to reformat the data that is sent to
28446      * the template for each node.
28447      * DEPRICATED - use the preparedata event handler.
28448      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
28449      * a JSON object for an UpdateManager bound view).
28450      */
28451     prepareData : function(data, index, record)
28452     {
28453         this.fireEvent("preparedata", this, data, index, record);
28454         return data;
28455     },
28456
28457     onUpdate : function(ds, record){
28458         // Roo.log('on update');   
28459         this.clearSelections();
28460         var index = this.store.indexOf(record);
28461         var n = this.nodes[index];
28462         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
28463         n.parentNode.removeChild(n);
28464         this.updateIndexes(index, index);
28465     },
28466
28467     
28468     
28469 // --------- FIXME     
28470     onAdd : function(ds, records, index)
28471     {
28472         //Roo.log(['on Add', ds, records, index] );        
28473         this.clearSelections();
28474         if(this.nodes.length == 0){
28475             this.refresh();
28476             return;
28477         }
28478         var n = this.nodes[index];
28479         for(var i = 0, len = records.length; i < len; i++){
28480             var d = this.prepareData(records[i].data, i, records[i]);
28481             if(n){
28482                 this.tpl.insertBefore(n, d);
28483             }else{
28484                 
28485                 this.tpl.append(this.el, d);
28486             }
28487         }
28488         this.updateIndexes(index);
28489     },
28490
28491     onRemove : function(ds, record, index){
28492        // Roo.log('onRemove');
28493         this.clearSelections();
28494         var el = this.dataName  ?
28495             this.el.child('.roo-tpl-' + this.dataName) :
28496             this.el; 
28497         
28498         el.dom.removeChild(this.nodes[index]);
28499         this.updateIndexes(index);
28500     },
28501
28502     /**
28503      * Refresh an individual node.
28504      * @param {Number} index
28505      */
28506     refreshNode : function(index){
28507         this.onUpdate(this.store, this.store.getAt(index));
28508     },
28509
28510     updateIndexes : function(startIndex, endIndex){
28511         var ns = this.nodes;
28512         startIndex = startIndex || 0;
28513         endIndex = endIndex || ns.length - 1;
28514         for(var i = startIndex; i <= endIndex; i++){
28515             ns[i].nodeIndex = i;
28516         }
28517     },
28518
28519     /**
28520      * Changes the data store this view uses and refresh the view.
28521      * @param {Store} store
28522      */
28523     setStore : function(store, initial){
28524         if(!initial && this.store){
28525             this.store.un("datachanged", this.refresh);
28526             this.store.un("add", this.onAdd);
28527             this.store.un("remove", this.onRemove);
28528             this.store.un("update", this.onUpdate);
28529             this.store.un("clear", this.refresh);
28530             this.store.un("beforeload", this.onBeforeLoad);
28531             this.store.un("load", this.onLoad);
28532             this.store.un("loadexception", this.onLoad);
28533         }
28534         if(store){
28535           
28536             store.on("datachanged", this.refresh, this);
28537             store.on("add", this.onAdd, this);
28538             store.on("remove", this.onRemove, this);
28539             store.on("update", this.onUpdate, this);
28540             store.on("clear", this.refresh, this);
28541             store.on("beforeload", this.onBeforeLoad, this);
28542             store.on("load", this.onLoad, this);
28543             store.on("loadexception", this.onLoad, this);
28544         }
28545         
28546         if(store){
28547             this.refresh();
28548         }
28549     },
28550     /**
28551      * onbeforeLoad - masks the loading area.
28552      *
28553      */
28554     onBeforeLoad : function(store,opts)
28555     {
28556          //Roo.log('onBeforeLoad');   
28557         if (!opts.add) {
28558             this.el.update("");
28559         }
28560         this.el.mask(this.mask ? this.mask : "Loading" ); 
28561     },
28562     onLoad : function ()
28563     {
28564         this.el.unmask();
28565     },
28566     
28567
28568     /**
28569      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
28570      * @param {HTMLElement} node
28571      * @return {HTMLElement} The template node
28572      */
28573     findItemFromChild : function(node){
28574         var el = this.dataName  ?
28575             this.el.child('.roo-tpl-' + this.dataName,true) :
28576             this.el.dom; 
28577         
28578         if(!node || node.parentNode == el){
28579                     return node;
28580             }
28581             var p = node.parentNode;
28582             while(p && p != el){
28583             if(p.parentNode == el){
28584                 return p;
28585             }
28586             p = p.parentNode;
28587         }
28588             return null;
28589     },
28590
28591     /** @ignore */
28592     onClick : function(e){
28593         var item = this.findItemFromChild(e.getTarget());
28594         if(item){
28595             var index = this.indexOf(item);
28596             if(this.onItemClick(item, index, e) !== false){
28597                 this.fireEvent("click", this, index, item, e);
28598             }
28599         }else{
28600             this.clearSelections();
28601         }
28602     },
28603
28604     /** @ignore */
28605     onContextMenu : function(e){
28606         var item = this.findItemFromChild(e.getTarget());
28607         if(item){
28608             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
28609         }
28610     },
28611
28612     /** @ignore */
28613     onDblClick : function(e){
28614         var item = this.findItemFromChild(e.getTarget());
28615         if(item){
28616             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
28617         }
28618     },
28619
28620     onItemClick : function(item, index, e)
28621     {
28622         if(this.fireEvent("beforeclick", this, index, item, e) === false){
28623             return false;
28624         }
28625         if (this.toggleSelect) {
28626             var m = this.isSelected(item) ? 'unselect' : 'select';
28627             //Roo.log(m);
28628             var _t = this;
28629             _t[m](item, true, false);
28630             return true;
28631         }
28632         if(this.multiSelect || this.singleSelect){
28633             if(this.multiSelect && e.shiftKey && this.lastSelection){
28634                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
28635             }else{
28636                 this.select(item, this.multiSelect && e.ctrlKey);
28637                 this.lastSelection = item;
28638             }
28639             
28640             if(!this.tickable){
28641                 e.preventDefault();
28642             }
28643             
28644         }
28645         return true;
28646     },
28647
28648     /**
28649      * Get the number of selected nodes.
28650      * @return {Number}
28651      */
28652     getSelectionCount : function(){
28653         return this.selections.length;
28654     },
28655
28656     /**
28657      * Get the currently selected nodes.
28658      * @return {Array} An array of HTMLElements
28659      */
28660     getSelectedNodes : function(){
28661         return this.selections;
28662     },
28663
28664     /**
28665      * Get the indexes of the selected nodes.
28666      * @return {Array}
28667      */
28668     getSelectedIndexes : function(){
28669         var indexes = [], s = this.selections;
28670         for(var i = 0, len = s.length; i < len; i++){
28671             indexes.push(s[i].nodeIndex);
28672         }
28673         return indexes;
28674     },
28675
28676     /**
28677      * Clear all selections
28678      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
28679      */
28680     clearSelections : function(suppressEvent){
28681         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
28682             this.cmp.elements = this.selections;
28683             this.cmp.removeClass(this.selectedClass);
28684             this.selections = [];
28685             if(!suppressEvent){
28686                 this.fireEvent("selectionchange", this, this.selections);
28687             }
28688         }
28689     },
28690
28691     /**
28692      * Returns true if the passed node is selected
28693      * @param {HTMLElement/Number} node The node or node index
28694      * @return {Boolean}
28695      */
28696     isSelected : function(node){
28697         var s = this.selections;
28698         if(s.length < 1){
28699             return false;
28700         }
28701         node = this.getNode(node);
28702         return s.indexOf(node) !== -1;
28703     },
28704
28705     /**
28706      * Selects nodes.
28707      * @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
28708      * @param {Boolean} keepExisting (optional) true to keep existing selections
28709      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28710      */
28711     select : function(nodeInfo, keepExisting, suppressEvent){
28712         if(nodeInfo instanceof Array){
28713             if(!keepExisting){
28714                 this.clearSelections(true);
28715             }
28716             for(var i = 0, len = nodeInfo.length; i < len; i++){
28717                 this.select(nodeInfo[i], true, true);
28718             }
28719             return;
28720         } 
28721         var node = this.getNode(nodeInfo);
28722         if(!node || this.isSelected(node)){
28723             return; // already selected.
28724         }
28725         if(!keepExisting){
28726             this.clearSelections(true);
28727         }
28728         
28729         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
28730             Roo.fly(node).addClass(this.selectedClass);
28731             this.selections.push(node);
28732             if(!suppressEvent){
28733                 this.fireEvent("selectionchange", this, this.selections);
28734             }
28735         }
28736         
28737         
28738     },
28739       /**
28740      * Unselects nodes.
28741      * @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
28742      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
28743      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28744      */
28745     unselect : function(nodeInfo, keepExisting, suppressEvent)
28746     {
28747         if(nodeInfo instanceof Array){
28748             Roo.each(this.selections, function(s) {
28749                 this.unselect(s, nodeInfo);
28750             }, this);
28751             return;
28752         }
28753         var node = this.getNode(nodeInfo);
28754         if(!node || !this.isSelected(node)){
28755             //Roo.log("not selected");
28756             return; // not selected.
28757         }
28758         // fireevent???
28759         var ns = [];
28760         Roo.each(this.selections, function(s) {
28761             if (s == node ) {
28762                 Roo.fly(node).removeClass(this.selectedClass);
28763
28764                 return;
28765             }
28766             ns.push(s);
28767         },this);
28768         
28769         this.selections= ns;
28770         this.fireEvent("selectionchange", this, this.selections);
28771     },
28772
28773     /**
28774      * Gets a template node.
28775      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28776      * @return {HTMLElement} The node or null if it wasn't found
28777      */
28778     getNode : function(nodeInfo){
28779         if(typeof nodeInfo == "string"){
28780             return document.getElementById(nodeInfo);
28781         }else if(typeof nodeInfo == "number"){
28782             return this.nodes[nodeInfo];
28783         }
28784         return nodeInfo;
28785     },
28786
28787     /**
28788      * Gets a range template nodes.
28789      * @param {Number} startIndex
28790      * @param {Number} endIndex
28791      * @return {Array} An array of nodes
28792      */
28793     getNodes : function(start, end){
28794         var ns = this.nodes;
28795         start = start || 0;
28796         end = typeof end == "undefined" ? ns.length - 1 : end;
28797         var nodes = [];
28798         if(start <= end){
28799             for(var i = start; i <= end; i++){
28800                 nodes.push(ns[i]);
28801             }
28802         } else{
28803             for(var i = start; i >= end; i--){
28804                 nodes.push(ns[i]);
28805             }
28806         }
28807         return nodes;
28808     },
28809
28810     /**
28811      * Finds the index of the passed node
28812      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28813      * @return {Number} The index of the node or -1
28814      */
28815     indexOf : function(node){
28816         node = this.getNode(node);
28817         if(typeof node.nodeIndex == "number"){
28818             return node.nodeIndex;
28819         }
28820         var ns = this.nodes;
28821         for(var i = 0, len = ns.length; i < len; i++){
28822             if(ns[i] == node){
28823                 return i;
28824             }
28825         }
28826         return -1;
28827     }
28828 });
28829 /*
28830  * Based on:
28831  * Ext JS Library 1.1.1
28832  * Copyright(c) 2006-2007, Ext JS, LLC.
28833  *
28834  * Originally Released Under LGPL - original licence link has changed is not relivant.
28835  *
28836  * Fork - LGPL
28837  * <script type="text/javascript">
28838  */
28839
28840 /**
28841  * @class Roo.JsonView
28842  * @extends Roo.View
28843  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
28844 <pre><code>
28845 var view = new Roo.JsonView({
28846     container: "my-element",
28847     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
28848     multiSelect: true, 
28849     jsonRoot: "data" 
28850 });
28851
28852 // listen for node click?
28853 view.on("click", function(vw, index, node, e){
28854     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28855 });
28856
28857 // direct load of JSON data
28858 view.load("foobar.php");
28859
28860 // Example from my blog list
28861 var tpl = new Roo.Template(
28862     '&lt;div class="entry"&gt;' +
28863     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
28864     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
28865     "&lt;/div&gt;&lt;hr /&gt;"
28866 );
28867
28868 var moreView = new Roo.JsonView({
28869     container :  "entry-list", 
28870     template : tpl,
28871     jsonRoot: "posts"
28872 });
28873 moreView.on("beforerender", this.sortEntries, this);
28874 moreView.load({
28875     url: "/blog/get-posts.php",
28876     params: "allposts=true",
28877     text: "Loading Blog Entries..."
28878 });
28879 </code></pre>
28880
28881 * Note: old code is supported with arguments : (container, template, config)
28882
28883
28884  * @constructor
28885  * Create a new JsonView
28886  * 
28887  * @param {Object} config The config object
28888  * 
28889  */
28890 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
28891     
28892     
28893     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
28894
28895     var um = this.el.getUpdateManager();
28896     um.setRenderer(this);
28897     um.on("update", this.onLoad, this);
28898     um.on("failure", this.onLoadException, this);
28899
28900     /**
28901      * @event beforerender
28902      * Fires before rendering of the downloaded JSON data.
28903      * @param {Roo.JsonView} this
28904      * @param {Object} data The JSON data loaded
28905      */
28906     /**
28907      * @event load
28908      * Fires when data is loaded.
28909      * @param {Roo.JsonView} this
28910      * @param {Object} data The JSON data loaded
28911      * @param {Object} response The raw Connect response object
28912      */
28913     /**
28914      * @event loadexception
28915      * Fires when loading fails.
28916      * @param {Roo.JsonView} this
28917      * @param {Object} response The raw Connect response object
28918      */
28919     this.addEvents({
28920         'beforerender' : true,
28921         'load' : true,
28922         'loadexception' : true
28923     });
28924 };
28925 Roo.extend(Roo.JsonView, Roo.View, {
28926     /**
28927      * @type {String} The root property in the loaded JSON object that contains the data
28928      */
28929     jsonRoot : "",
28930
28931     /**
28932      * Refreshes the view.
28933      */
28934     refresh : function(){
28935         this.clearSelections();
28936         this.el.update("");
28937         var html = [];
28938         var o = this.jsonData;
28939         if(o && o.length > 0){
28940             for(var i = 0, len = o.length; i < len; i++){
28941                 var data = this.prepareData(o[i], i, o);
28942                 html[html.length] = this.tpl.apply(data);
28943             }
28944         }else{
28945             html.push(this.emptyText);
28946         }
28947         this.el.update(html.join(""));
28948         this.nodes = this.el.dom.childNodes;
28949         this.updateIndexes(0);
28950     },
28951
28952     /**
28953      * 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.
28954      * @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:
28955      <pre><code>
28956      view.load({
28957          url: "your-url.php",
28958          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
28959          callback: yourFunction,
28960          scope: yourObject, //(optional scope)
28961          discardUrl: false,
28962          nocache: false,
28963          text: "Loading...",
28964          timeout: 30,
28965          scripts: false
28966      });
28967      </code></pre>
28968      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
28969      * 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.
28970      * @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}
28971      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
28972      * @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.
28973      */
28974     load : function(){
28975         var um = this.el.getUpdateManager();
28976         um.update.apply(um, arguments);
28977     },
28978
28979     // note - render is a standard framework call...
28980     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
28981     render : function(el, response){
28982         
28983         this.clearSelections();
28984         this.el.update("");
28985         var o;
28986         try{
28987             if (response != '') {
28988                 o = Roo.util.JSON.decode(response.responseText);
28989                 if(this.jsonRoot){
28990                     
28991                     o = o[this.jsonRoot];
28992                 }
28993             }
28994         } catch(e){
28995         }
28996         /**
28997          * The current JSON data or null
28998          */
28999         this.jsonData = o;
29000         this.beforeRender();
29001         this.refresh();
29002     },
29003
29004 /**
29005  * Get the number of records in the current JSON dataset
29006  * @return {Number}
29007  */
29008     getCount : function(){
29009         return this.jsonData ? this.jsonData.length : 0;
29010     },
29011
29012 /**
29013  * Returns the JSON object for the specified node(s)
29014  * @param {HTMLElement/Array} node The node or an array of nodes
29015  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
29016  * you get the JSON object for the node
29017  */
29018     getNodeData : function(node){
29019         if(node instanceof Array){
29020             var data = [];
29021             for(var i = 0, len = node.length; i < len; i++){
29022                 data.push(this.getNodeData(node[i]));
29023             }
29024             return data;
29025         }
29026         return this.jsonData[this.indexOf(node)] || null;
29027     },
29028
29029     beforeRender : function(){
29030         this.snapshot = this.jsonData;
29031         if(this.sortInfo){
29032             this.sort.apply(this, this.sortInfo);
29033         }
29034         this.fireEvent("beforerender", this, this.jsonData);
29035     },
29036
29037     onLoad : function(el, o){
29038         this.fireEvent("load", this, this.jsonData, o);
29039     },
29040
29041     onLoadException : function(el, o){
29042         this.fireEvent("loadexception", this, o);
29043     },
29044
29045 /**
29046  * Filter the data by a specific property.
29047  * @param {String} property A property on your JSON objects
29048  * @param {String/RegExp} value Either string that the property values
29049  * should start with, or a RegExp to test against the property
29050  */
29051     filter : function(property, value){
29052         if(this.jsonData){
29053             var data = [];
29054             var ss = this.snapshot;
29055             if(typeof value == "string"){
29056                 var vlen = value.length;
29057                 if(vlen == 0){
29058                     this.clearFilter();
29059                     return;
29060                 }
29061                 value = value.toLowerCase();
29062                 for(var i = 0, len = ss.length; i < len; i++){
29063                     var o = ss[i];
29064                     if(o[property].substr(0, vlen).toLowerCase() == value){
29065                         data.push(o);
29066                     }
29067                 }
29068             } else if(value.exec){ // regex?
29069                 for(var i = 0, len = ss.length; i < len; i++){
29070                     var o = ss[i];
29071                     if(value.test(o[property])){
29072                         data.push(o);
29073                     }
29074                 }
29075             } else{
29076                 return;
29077             }
29078             this.jsonData = data;
29079             this.refresh();
29080         }
29081     },
29082
29083 /**
29084  * Filter by a function. The passed function will be called with each
29085  * object in the current dataset. If the function returns true the value is kept,
29086  * otherwise it is filtered.
29087  * @param {Function} fn
29088  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
29089  */
29090     filterBy : function(fn, scope){
29091         if(this.jsonData){
29092             var data = [];
29093             var ss = this.snapshot;
29094             for(var i = 0, len = ss.length; i < len; i++){
29095                 var o = ss[i];
29096                 if(fn.call(scope || this, o)){
29097                     data.push(o);
29098                 }
29099             }
29100             this.jsonData = data;
29101             this.refresh();
29102         }
29103     },
29104
29105 /**
29106  * Clears the current filter.
29107  */
29108     clearFilter : function(){
29109         if(this.snapshot && this.jsonData != this.snapshot){
29110             this.jsonData = this.snapshot;
29111             this.refresh();
29112         }
29113     },
29114
29115
29116 /**
29117  * Sorts the data for this view and refreshes it.
29118  * @param {String} property A property on your JSON objects to sort on
29119  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
29120  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
29121  */
29122     sort : function(property, dir, sortType){
29123         this.sortInfo = Array.prototype.slice.call(arguments, 0);
29124         if(this.jsonData){
29125             var p = property;
29126             var dsc = dir && dir.toLowerCase() == "desc";
29127             var f = function(o1, o2){
29128                 var v1 = sortType ? sortType(o1[p]) : o1[p];
29129                 var v2 = sortType ? sortType(o2[p]) : o2[p];
29130                 ;
29131                 if(v1 < v2){
29132                     return dsc ? +1 : -1;
29133                 } else if(v1 > v2){
29134                     return dsc ? -1 : +1;
29135                 } else{
29136                     return 0;
29137                 }
29138             };
29139             this.jsonData.sort(f);
29140             this.refresh();
29141             if(this.jsonData != this.snapshot){
29142                 this.snapshot.sort(f);
29143             }
29144         }
29145     }
29146 });/*
29147  * Based on:
29148  * Ext JS Library 1.1.1
29149  * Copyright(c) 2006-2007, Ext JS, LLC.
29150  *
29151  * Originally Released Under LGPL - original licence link has changed is not relivant.
29152  *
29153  * Fork - LGPL
29154  * <script type="text/javascript">
29155  */
29156  
29157
29158 /**
29159  * @class Roo.ColorPalette
29160  * @extends Roo.Component
29161  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
29162  * Here's an example of typical usage:
29163  * <pre><code>
29164 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
29165 cp.render('my-div');
29166
29167 cp.on('select', function(palette, selColor){
29168     // do something with selColor
29169 });
29170 </code></pre>
29171  * @constructor
29172  * Create a new ColorPalette
29173  * @param {Object} config The config object
29174  */
29175 Roo.ColorPalette = function(config){
29176     Roo.ColorPalette.superclass.constructor.call(this, config);
29177     this.addEvents({
29178         /**
29179              * @event select
29180              * Fires when a color is selected
29181              * @param {ColorPalette} this
29182              * @param {String} color The 6-digit color hex code (without the # symbol)
29183              */
29184         select: true
29185     });
29186
29187     if(this.handler){
29188         this.on("select", this.handler, this.scope, true);
29189     }
29190 };
29191 Roo.extend(Roo.ColorPalette, Roo.Component, {
29192     /**
29193      * @cfg {String} itemCls
29194      * The CSS class to apply to the containing element (defaults to "x-color-palette")
29195      */
29196     itemCls : "x-color-palette",
29197     /**
29198      * @cfg {String} value
29199      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
29200      * the hex codes are case-sensitive.
29201      */
29202     value : null,
29203     clickEvent:'click',
29204     // private
29205     ctype: "Roo.ColorPalette",
29206
29207     /**
29208      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
29209      */
29210     allowReselect : false,
29211
29212     /**
29213      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
29214      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
29215      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
29216      * of colors with the width setting until the box is symmetrical.</p>
29217      * <p>You can override individual colors if needed:</p>
29218      * <pre><code>
29219 var cp = new Roo.ColorPalette();
29220 cp.colors[0] = "FF0000";  // change the first box to red
29221 </code></pre>
29222
29223 Or you can provide a custom array of your own for complete control:
29224 <pre><code>
29225 var cp = new Roo.ColorPalette();
29226 cp.colors = ["000000", "993300", "333300"];
29227 </code></pre>
29228      * @type Array
29229      */
29230     colors : [
29231         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
29232         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
29233         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
29234         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
29235         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
29236     ],
29237
29238     // private
29239     onRender : function(container, position){
29240         var t = new Roo.MasterTemplate(
29241             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
29242         );
29243         var c = this.colors;
29244         for(var i = 0, len = c.length; i < len; i++){
29245             t.add([c[i]]);
29246         }
29247         var el = document.createElement("div");
29248         el.className = this.itemCls;
29249         t.overwrite(el);
29250         container.dom.insertBefore(el, position);
29251         this.el = Roo.get(el);
29252         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
29253         if(this.clickEvent != 'click'){
29254             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
29255         }
29256     },
29257
29258     // private
29259     afterRender : function(){
29260         Roo.ColorPalette.superclass.afterRender.call(this);
29261         if(this.value){
29262             var s = this.value;
29263             this.value = null;
29264             this.select(s);
29265         }
29266     },
29267
29268     // private
29269     handleClick : function(e, t){
29270         e.preventDefault();
29271         if(!this.disabled){
29272             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
29273             this.select(c.toUpperCase());
29274         }
29275     },
29276
29277     /**
29278      * Selects the specified color in the palette (fires the select event)
29279      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
29280      */
29281     select : function(color){
29282         color = color.replace("#", "");
29283         if(color != this.value || this.allowReselect){
29284             var el = this.el;
29285             if(this.value){
29286                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
29287             }
29288             el.child("a.color-"+color).addClass("x-color-palette-sel");
29289             this.value = color;
29290             this.fireEvent("select", this, color);
29291         }
29292     }
29293 });/*
29294  * Based on:
29295  * Ext JS Library 1.1.1
29296  * Copyright(c) 2006-2007, Ext JS, LLC.
29297  *
29298  * Originally Released Under LGPL - original licence link has changed is not relivant.
29299  *
29300  * Fork - LGPL
29301  * <script type="text/javascript">
29302  */
29303  
29304 /**
29305  * @class Roo.DatePicker
29306  * @extends Roo.Component
29307  * Simple date picker class.
29308  * @constructor
29309  * Create a new DatePicker
29310  * @param {Object} config The config object
29311  */
29312 Roo.DatePicker = function(config){
29313     Roo.DatePicker.superclass.constructor.call(this, config);
29314
29315     this.value = config && config.value ?
29316                  config.value.clearTime() : new Date().clearTime();
29317
29318     this.addEvents({
29319         /**
29320              * @event select
29321              * Fires when a date is selected
29322              * @param {DatePicker} this
29323              * @param {Date} date The selected date
29324              */
29325         'select': true,
29326         /**
29327              * @event monthchange
29328              * Fires when the displayed month changes 
29329              * @param {DatePicker} this
29330              * @param {Date} date The selected month
29331              */
29332         'monthchange': true
29333     });
29334
29335     if(this.handler){
29336         this.on("select", this.handler,  this.scope || this);
29337     }
29338     // build the disabledDatesRE
29339     if(!this.disabledDatesRE && this.disabledDates){
29340         var dd = this.disabledDates;
29341         var re = "(?:";
29342         for(var i = 0; i < dd.length; i++){
29343             re += dd[i];
29344             if(i != dd.length-1) {
29345                 re += "|";
29346             }
29347         }
29348         this.disabledDatesRE = new RegExp(re + ")");
29349     }
29350 };
29351
29352 Roo.extend(Roo.DatePicker, Roo.Component, {
29353     /**
29354      * @cfg {String} todayText
29355      * The text to display on the button that selects the current date (defaults to "Today")
29356      */
29357     todayText : "Today",
29358     /**
29359      * @cfg {String} okText
29360      * The text to display on the ok button
29361      */
29362     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
29363     /**
29364      * @cfg {String} cancelText
29365      * The text to display on the cancel button
29366      */
29367     cancelText : "Cancel",
29368     /**
29369      * @cfg {String} todayTip
29370      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
29371      */
29372     todayTip : "{0} (Spacebar)",
29373     /**
29374      * @cfg {Date} minDate
29375      * Minimum allowable date (JavaScript date object, defaults to null)
29376      */
29377     minDate : null,
29378     /**
29379      * @cfg {Date} maxDate
29380      * Maximum allowable date (JavaScript date object, defaults to null)
29381      */
29382     maxDate : null,
29383     /**
29384      * @cfg {String} minText
29385      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
29386      */
29387     minText : "This date is before the minimum date",
29388     /**
29389      * @cfg {String} maxText
29390      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
29391      */
29392     maxText : "This date is after the maximum date",
29393     /**
29394      * @cfg {String} format
29395      * The default date format string which can be overriden for localization support.  The format must be
29396      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
29397      */
29398     format : "m/d/y",
29399     /**
29400      * @cfg {Array} disabledDays
29401      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
29402      */
29403     disabledDays : null,
29404     /**
29405      * @cfg {String} disabledDaysText
29406      * The tooltip to display when the date falls on a disabled day (defaults to "")
29407      */
29408     disabledDaysText : "",
29409     /**
29410      * @cfg {RegExp} disabledDatesRE
29411      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
29412      */
29413     disabledDatesRE : null,
29414     /**
29415      * @cfg {String} disabledDatesText
29416      * The tooltip text to display when the date falls on a disabled date (defaults to "")
29417      */
29418     disabledDatesText : "",
29419     /**
29420      * @cfg {Boolean} constrainToViewport
29421      * True to constrain the date picker to the viewport (defaults to true)
29422      */
29423     constrainToViewport : true,
29424     /**
29425      * @cfg {Array} monthNames
29426      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
29427      */
29428     monthNames : Date.monthNames,
29429     /**
29430      * @cfg {Array} dayNames
29431      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
29432      */
29433     dayNames : Date.dayNames,
29434     /**
29435      * @cfg {String} nextText
29436      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
29437      */
29438     nextText: 'Next Month (Control+Right)',
29439     /**
29440      * @cfg {String} prevText
29441      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
29442      */
29443     prevText: 'Previous Month (Control+Left)',
29444     /**
29445      * @cfg {String} monthYearText
29446      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
29447      */
29448     monthYearText: 'Choose a month (Control+Up/Down to move years)',
29449     /**
29450      * @cfg {Number} startDay
29451      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
29452      */
29453     startDay : 0,
29454     /**
29455      * @cfg {Bool} showClear
29456      * Show a clear button (usefull for date form elements that can be blank.)
29457      */
29458     
29459     showClear: false,
29460     
29461     /**
29462      * Sets the value of the date field
29463      * @param {Date} value The date to set
29464      */
29465     setValue : function(value){
29466         var old = this.value;
29467         
29468         if (typeof(value) == 'string') {
29469          
29470             value = Date.parseDate(value, this.format);
29471         }
29472         if (!value) {
29473             value = new Date();
29474         }
29475         
29476         this.value = value.clearTime(true);
29477         if(this.el){
29478             this.update(this.value);
29479         }
29480     },
29481
29482     /**
29483      * Gets the current selected value of the date field
29484      * @return {Date} The selected date
29485      */
29486     getValue : function(){
29487         return this.value;
29488     },
29489
29490     // private
29491     focus : function(){
29492         if(this.el){
29493             this.update(this.activeDate);
29494         }
29495     },
29496
29497     // privateval
29498     onRender : function(container, position){
29499         
29500         var m = [
29501              '<table cellspacing="0">',
29502                 '<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>',
29503                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
29504         var dn = this.dayNames;
29505         for(var i = 0; i < 7; i++){
29506             var d = this.startDay+i;
29507             if(d > 6){
29508                 d = d-7;
29509             }
29510             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
29511         }
29512         m[m.length] = "</tr></thead><tbody><tr>";
29513         for(var i = 0; i < 42; i++) {
29514             if(i % 7 == 0 && i != 0){
29515                 m[m.length] = "</tr><tr>";
29516             }
29517             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
29518         }
29519         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
29520             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
29521
29522         var el = document.createElement("div");
29523         el.className = "x-date-picker";
29524         el.innerHTML = m.join("");
29525
29526         container.dom.insertBefore(el, position);
29527
29528         this.el = Roo.get(el);
29529         this.eventEl = Roo.get(el.firstChild);
29530
29531         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
29532             handler: this.showPrevMonth,
29533             scope: this,
29534             preventDefault:true,
29535             stopDefault:true
29536         });
29537
29538         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
29539             handler: this.showNextMonth,
29540             scope: this,
29541             preventDefault:true,
29542             stopDefault:true
29543         });
29544
29545         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
29546
29547         this.monthPicker = this.el.down('div.x-date-mp');
29548         this.monthPicker.enableDisplayMode('block');
29549         
29550         var kn = new Roo.KeyNav(this.eventEl, {
29551             "left" : function(e){
29552                 e.ctrlKey ?
29553                     this.showPrevMonth() :
29554                     this.update(this.activeDate.add("d", -1));
29555             },
29556
29557             "right" : function(e){
29558                 e.ctrlKey ?
29559                     this.showNextMonth() :
29560                     this.update(this.activeDate.add("d", 1));
29561             },
29562
29563             "up" : function(e){
29564                 e.ctrlKey ?
29565                     this.showNextYear() :
29566                     this.update(this.activeDate.add("d", -7));
29567             },
29568
29569             "down" : function(e){
29570                 e.ctrlKey ?
29571                     this.showPrevYear() :
29572                     this.update(this.activeDate.add("d", 7));
29573             },
29574
29575             "pageUp" : function(e){
29576                 this.showNextMonth();
29577             },
29578
29579             "pageDown" : function(e){
29580                 this.showPrevMonth();
29581             },
29582
29583             "enter" : function(e){
29584                 e.stopPropagation();
29585                 return true;
29586             },
29587
29588             scope : this
29589         });
29590
29591         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
29592
29593         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
29594
29595         this.el.unselectable();
29596         
29597         this.cells = this.el.select("table.x-date-inner tbody td");
29598         this.textNodes = this.el.query("table.x-date-inner tbody span");
29599
29600         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
29601             text: "&#160;",
29602             tooltip: this.monthYearText
29603         });
29604
29605         this.mbtn.on('click', this.showMonthPicker, this);
29606         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
29607
29608
29609         var today = (new Date()).dateFormat(this.format);
29610         
29611         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
29612         if (this.showClear) {
29613             baseTb.add( new Roo.Toolbar.Fill());
29614         }
29615         baseTb.add({
29616             text: String.format(this.todayText, today),
29617             tooltip: String.format(this.todayTip, today),
29618             handler: this.selectToday,
29619             scope: this
29620         });
29621         
29622         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
29623             
29624         //});
29625         if (this.showClear) {
29626             
29627             baseTb.add( new Roo.Toolbar.Fill());
29628             baseTb.add({
29629                 text: '&#160;',
29630                 cls: 'x-btn-icon x-btn-clear',
29631                 handler: function() {
29632                     //this.value = '';
29633                     this.fireEvent("select", this, '');
29634                 },
29635                 scope: this
29636             });
29637         }
29638         
29639         
29640         if(Roo.isIE){
29641             this.el.repaint();
29642         }
29643         this.update(this.value);
29644     },
29645
29646     createMonthPicker : function(){
29647         if(!this.monthPicker.dom.firstChild){
29648             var buf = ['<table border="0" cellspacing="0">'];
29649             for(var i = 0; i < 6; i++){
29650                 buf.push(
29651                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
29652                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
29653                     i == 0 ?
29654                     '<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>' :
29655                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
29656                 );
29657             }
29658             buf.push(
29659                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
29660                     this.okText,
29661                     '</button><button type="button" class="x-date-mp-cancel">',
29662                     this.cancelText,
29663                     '</button></td></tr>',
29664                 '</table>'
29665             );
29666             this.monthPicker.update(buf.join(''));
29667             this.monthPicker.on('click', this.onMonthClick, this);
29668             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
29669
29670             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
29671             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
29672
29673             this.mpMonths.each(function(m, a, i){
29674                 i += 1;
29675                 if((i%2) == 0){
29676                     m.dom.xmonth = 5 + Math.round(i * .5);
29677                 }else{
29678                     m.dom.xmonth = Math.round((i-1) * .5);
29679                 }
29680             });
29681         }
29682     },
29683
29684     showMonthPicker : function(){
29685         this.createMonthPicker();
29686         var size = this.el.getSize();
29687         this.monthPicker.setSize(size);
29688         this.monthPicker.child('table').setSize(size);
29689
29690         this.mpSelMonth = (this.activeDate || this.value).getMonth();
29691         this.updateMPMonth(this.mpSelMonth);
29692         this.mpSelYear = (this.activeDate || this.value).getFullYear();
29693         this.updateMPYear(this.mpSelYear);
29694
29695         this.monthPicker.slideIn('t', {duration:.2});
29696     },
29697
29698     updateMPYear : function(y){
29699         this.mpyear = y;
29700         var ys = this.mpYears.elements;
29701         for(var i = 1; i <= 10; i++){
29702             var td = ys[i-1], y2;
29703             if((i%2) == 0){
29704                 y2 = y + Math.round(i * .5);
29705                 td.firstChild.innerHTML = y2;
29706                 td.xyear = y2;
29707             }else{
29708                 y2 = y - (5-Math.round(i * .5));
29709                 td.firstChild.innerHTML = y2;
29710                 td.xyear = y2;
29711             }
29712             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
29713         }
29714     },
29715
29716     updateMPMonth : function(sm){
29717         this.mpMonths.each(function(m, a, i){
29718             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
29719         });
29720     },
29721
29722     selectMPMonth: function(m){
29723         
29724     },
29725
29726     onMonthClick : function(e, t){
29727         e.stopEvent();
29728         var el = new Roo.Element(t), pn;
29729         if(el.is('button.x-date-mp-cancel')){
29730             this.hideMonthPicker();
29731         }
29732         else if(el.is('button.x-date-mp-ok')){
29733             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29734             this.hideMonthPicker();
29735         }
29736         else if(pn = el.up('td.x-date-mp-month', 2)){
29737             this.mpMonths.removeClass('x-date-mp-sel');
29738             pn.addClass('x-date-mp-sel');
29739             this.mpSelMonth = pn.dom.xmonth;
29740         }
29741         else if(pn = el.up('td.x-date-mp-year', 2)){
29742             this.mpYears.removeClass('x-date-mp-sel');
29743             pn.addClass('x-date-mp-sel');
29744             this.mpSelYear = pn.dom.xyear;
29745         }
29746         else if(el.is('a.x-date-mp-prev')){
29747             this.updateMPYear(this.mpyear-10);
29748         }
29749         else if(el.is('a.x-date-mp-next')){
29750             this.updateMPYear(this.mpyear+10);
29751         }
29752     },
29753
29754     onMonthDblClick : function(e, t){
29755         e.stopEvent();
29756         var el = new Roo.Element(t), pn;
29757         if(pn = el.up('td.x-date-mp-month', 2)){
29758             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
29759             this.hideMonthPicker();
29760         }
29761         else if(pn = el.up('td.x-date-mp-year', 2)){
29762             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29763             this.hideMonthPicker();
29764         }
29765     },
29766
29767     hideMonthPicker : function(disableAnim){
29768         if(this.monthPicker){
29769             if(disableAnim === true){
29770                 this.monthPicker.hide();
29771             }else{
29772                 this.monthPicker.slideOut('t', {duration:.2});
29773             }
29774         }
29775     },
29776
29777     // private
29778     showPrevMonth : function(e){
29779         this.update(this.activeDate.add("mo", -1));
29780     },
29781
29782     // private
29783     showNextMonth : function(e){
29784         this.update(this.activeDate.add("mo", 1));
29785     },
29786
29787     // private
29788     showPrevYear : function(){
29789         this.update(this.activeDate.add("y", -1));
29790     },
29791
29792     // private
29793     showNextYear : function(){
29794         this.update(this.activeDate.add("y", 1));
29795     },
29796
29797     // private
29798     handleMouseWheel : function(e){
29799         var delta = e.getWheelDelta();
29800         if(delta > 0){
29801             this.showPrevMonth();
29802             e.stopEvent();
29803         } else if(delta < 0){
29804             this.showNextMonth();
29805             e.stopEvent();
29806         }
29807     },
29808
29809     // private
29810     handleDateClick : function(e, t){
29811         e.stopEvent();
29812         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
29813             this.setValue(new Date(t.dateValue));
29814             this.fireEvent("select", this, this.value);
29815         }
29816     },
29817
29818     // private
29819     selectToday : function(){
29820         this.setValue(new Date().clearTime());
29821         this.fireEvent("select", this, this.value);
29822     },
29823
29824     // private
29825     update : function(date)
29826     {
29827         var vd = this.activeDate;
29828         this.activeDate = date;
29829         if(vd && this.el){
29830             var t = date.getTime();
29831             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
29832                 this.cells.removeClass("x-date-selected");
29833                 this.cells.each(function(c){
29834                    if(c.dom.firstChild.dateValue == t){
29835                        c.addClass("x-date-selected");
29836                        setTimeout(function(){
29837                             try{c.dom.firstChild.focus();}catch(e){}
29838                        }, 50);
29839                        return false;
29840                    }
29841                 });
29842                 return;
29843             }
29844         }
29845         
29846         var days = date.getDaysInMonth();
29847         var firstOfMonth = date.getFirstDateOfMonth();
29848         var startingPos = firstOfMonth.getDay()-this.startDay;
29849
29850         if(startingPos <= this.startDay){
29851             startingPos += 7;
29852         }
29853
29854         var pm = date.add("mo", -1);
29855         var prevStart = pm.getDaysInMonth()-startingPos;
29856
29857         var cells = this.cells.elements;
29858         var textEls = this.textNodes;
29859         days += startingPos;
29860
29861         // convert everything to numbers so it's fast
29862         var day = 86400000;
29863         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
29864         var today = new Date().clearTime().getTime();
29865         var sel = date.clearTime().getTime();
29866         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
29867         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
29868         var ddMatch = this.disabledDatesRE;
29869         var ddText = this.disabledDatesText;
29870         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
29871         var ddaysText = this.disabledDaysText;
29872         var format = this.format;
29873
29874         var setCellClass = function(cal, cell){
29875             cell.title = "";
29876             var t = d.getTime();
29877             cell.firstChild.dateValue = t;
29878             if(t == today){
29879                 cell.className += " x-date-today";
29880                 cell.title = cal.todayText;
29881             }
29882             if(t == sel){
29883                 cell.className += " x-date-selected";
29884                 setTimeout(function(){
29885                     try{cell.firstChild.focus();}catch(e){}
29886                 }, 50);
29887             }
29888             // disabling
29889             if(t < min) {
29890                 cell.className = " x-date-disabled";
29891                 cell.title = cal.minText;
29892                 return;
29893             }
29894             if(t > max) {
29895                 cell.className = " x-date-disabled";
29896                 cell.title = cal.maxText;
29897                 return;
29898             }
29899             if(ddays){
29900                 if(ddays.indexOf(d.getDay()) != -1){
29901                     cell.title = ddaysText;
29902                     cell.className = " x-date-disabled";
29903                 }
29904             }
29905             if(ddMatch && format){
29906                 var fvalue = d.dateFormat(format);
29907                 if(ddMatch.test(fvalue)){
29908                     cell.title = ddText.replace("%0", fvalue);
29909                     cell.className = " x-date-disabled";
29910                 }
29911             }
29912         };
29913
29914         var i = 0;
29915         for(; i < startingPos; i++) {
29916             textEls[i].innerHTML = (++prevStart);
29917             d.setDate(d.getDate()+1);
29918             cells[i].className = "x-date-prevday";
29919             setCellClass(this, cells[i]);
29920         }
29921         for(; i < days; i++){
29922             intDay = i - startingPos + 1;
29923             textEls[i].innerHTML = (intDay);
29924             d.setDate(d.getDate()+1);
29925             cells[i].className = "x-date-active";
29926             setCellClass(this, cells[i]);
29927         }
29928         var extraDays = 0;
29929         for(; i < 42; i++) {
29930              textEls[i].innerHTML = (++extraDays);
29931              d.setDate(d.getDate()+1);
29932              cells[i].className = "x-date-nextday";
29933              setCellClass(this, cells[i]);
29934         }
29935
29936         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
29937         this.fireEvent('monthchange', this, date);
29938         
29939         if(!this.internalRender){
29940             var main = this.el.dom.firstChild;
29941             var w = main.offsetWidth;
29942             this.el.setWidth(w + this.el.getBorderWidth("lr"));
29943             Roo.fly(main).setWidth(w);
29944             this.internalRender = true;
29945             // opera does not respect the auto grow header center column
29946             // then, after it gets a width opera refuses to recalculate
29947             // without a second pass
29948             if(Roo.isOpera && !this.secondPass){
29949                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
29950                 this.secondPass = true;
29951                 this.update.defer(10, this, [date]);
29952             }
29953         }
29954         
29955         
29956     }
29957 });        /*
29958  * Based on:
29959  * Ext JS Library 1.1.1
29960  * Copyright(c) 2006-2007, Ext JS, LLC.
29961  *
29962  * Originally Released Under LGPL - original licence link has changed is not relivant.
29963  *
29964  * Fork - LGPL
29965  * <script type="text/javascript">
29966  */
29967 /**
29968  * @class Roo.TabPanel
29969  * @extends Roo.util.Observable
29970  * A lightweight tab container.
29971  * <br><br>
29972  * Usage:
29973  * <pre><code>
29974 // basic tabs 1, built from existing content
29975 var tabs = new Roo.TabPanel("tabs1");
29976 tabs.addTab("script", "View Script");
29977 tabs.addTab("markup", "View Markup");
29978 tabs.activate("script");
29979
29980 // more advanced tabs, built from javascript
29981 var jtabs = new Roo.TabPanel("jtabs");
29982 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
29983
29984 // set up the UpdateManager
29985 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
29986 var updater = tab2.getUpdateManager();
29987 updater.setDefaultUrl("ajax1.htm");
29988 tab2.on('activate', updater.refresh, updater, true);
29989
29990 // Use setUrl for Ajax loading
29991 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
29992 tab3.setUrl("ajax2.htm", null, true);
29993
29994 // Disabled tab
29995 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
29996 tab4.disable();
29997
29998 jtabs.activate("jtabs-1");
29999  * </code></pre>
30000  * @constructor
30001  * Create a new TabPanel.
30002  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
30003  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
30004  */
30005 Roo.TabPanel = function(container, config){
30006     /**
30007     * The container element for this TabPanel.
30008     * @type Roo.Element
30009     */
30010     this.el = Roo.get(container, true);
30011     if(config){
30012         if(typeof config == "boolean"){
30013             this.tabPosition = config ? "bottom" : "top";
30014         }else{
30015             Roo.apply(this, config);
30016         }
30017     }
30018     if(this.tabPosition == "bottom"){
30019         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30020         this.el.addClass("x-tabs-bottom");
30021     }
30022     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
30023     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
30024     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
30025     if(Roo.isIE){
30026         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
30027     }
30028     if(this.tabPosition != "bottom"){
30029         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
30030          * @type Roo.Element
30031          */
30032         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30033         this.el.addClass("x-tabs-top");
30034     }
30035     this.items = [];
30036
30037     this.bodyEl.setStyle("position", "relative");
30038
30039     this.active = null;
30040     this.activateDelegate = this.activate.createDelegate(this);
30041
30042     this.addEvents({
30043         /**
30044          * @event tabchange
30045          * Fires when the active tab changes
30046          * @param {Roo.TabPanel} this
30047          * @param {Roo.TabPanelItem} activePanel The new active tab
30048          */
30049         "tabchange": true,
30050         /**
30051          * @event beforetabchange
30052          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
30053          * @param {Roo.TabPanel} this
30054          * @param {Object} e Set cancel to true on this object to cancel the tab change
30055          * @param {Roo.TabPanelItem} tab The tab being changed to
30056          */
30057         "beforetabchange" : true
30058     });
30059
30060     Roo.EventManager.onWindowResize(this.onResize, this);
30061     this.cpad = this.el.getPadding("lr");
30062     this.hiddenCount = 0;
30063
30064
30065     // toolbar on the tabbar support...
30066     if (this.toolbar) {
30067         var tcfg = this.toolbar;
30068         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
30069         this.toolbar = new Roo.Toolbar(tcfg);
30070         if (Roo.isSafari) {
30071             var tbl = tcfg.container.child('table', true);
30072             tbl.setAttribute('width', '100%');
30073         }
30074         
30075     }
30076    
30077
30078
30079     Roo.TabPanel.superclass.constructor.call(this);
30080 };
30081
30082 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
30083     /*
30084      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
30085      */
30086     tabPosition : "top",
30087     /*
30088      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
30089      */
30090     currentTabWidth : 0,
30091     /*
30092      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
30093      */
30094     minTabWidth : 40,
30095     /*
30096      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
30097      */
30098     maxTabWidth : 250,
30099     /*
30100      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
30101      */
30102     preferredTabWidth : 175,
30103     /*
30104      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
30105      */
30106     resizeTabs : false,
30107     /*
30108      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
30109      */
30110     monitorResize : true,
30111     /*
30112      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
30113      */
30114     toolbar : false,
30115
30116     /**
30117      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
30118      * @param {String} id The id of the div to use <b>or create</b>
30119      * @param {String} text The text for the tab
30120      * @param {String} content (optional) Content to put in the TabPanelItem body
30121      * @param {Boolean} closable (optional) True to create a close icon on the tab
30122      * @return {Roo.TabPanelItem} The created TabPanelItem
30123      */
30124     addTab : function(id, text, content, closable){
30125         var item = new Roo.TabPanelItem(this, id, text, closable);
30126         this.addTabItem(item);
30127         if(content){
30128             item.setContent(content);
30129         }
30130         return item;
30131     },
30132
30133     /**
30134      * Returns the {@link Roo.TabPanelItem} with the specified id/index
30135      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
30136      * @return {Roo.TabPanelItem}
30137      */
30138     getTab : function(id){
30139         return this.items[id];
30140     },
30141
30142     /**
30143      * Hides the {@link Roo.TabPanelItem} with the specified id/index
30144      * @param {String/Number} id The id or index of the TabPanelItem to hide.
30145      */
30146     hideTab : function(id){
30147         var t = this.items[id];
30148         if(!t.isHidden()){
30149            t.setHidden(true);
30150            this.hiddenCount++;
30151            this.autoSizeTabs();
30152         }
30153     },
30154
30155     /**
30156      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
30157      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
30158      */
30159     unhideTab : function(id){
30160         var t = this.items[id];
30161         if(t.isHidden()){
30162            t.setHidden(false);
30163            this.hiddenCount--;
30164            this.autoSizeTabs();
30165         }
30166     },
30167
30168     /**
30169      * Adds an existing {@link Roo.TabPanelItem}.
30170      * @param {Roo.TabPanelItem} item The TabPanelItem to add
30171      */
30172     addTabItem : function(item){
30173         this.items[item.id] = item;
30174         this.items.push(item);
30175         if(this.resizeTabs){
30176            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
30177            this.autoSizeTabs();
30178         }else{
30179             item.autoSize();
30180         }
30181     },
30182
30183     /**
30184      * Removes a {@link Roo.TabPanelItem}.
30185      * @param {String/Number} id The id or index of the TabPanelItem to remove.
30186      */
30187     removeTab : function(id){
30188         var items = this.items;
30189         var tab = items[id];
30190         if(!tab) { return; }
30191         var index = items.indexOf(tab);
30192         if(this.active == tab && items.length > 1){
30193             var newTab = this.getNextAvailable(index);
30194             if(newTab) {
30195                 newTab.activate();
30196             }
30197         }
30198         this.stripEl.dom.removeChild(tab.pnode.dom);
30199         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
30200             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
30201         }
30202         items.splice(index, 1);
30203         delete this.items[tab.id];
30204         tab.fireEvent("close", tab);
30205         tab.purgeListeners();
30206         this.autoSizeTabs();
30207     },
30208
30209     getNextAvailable : function(start){
30210         var items = this.items;
30211         var index = start;
30212         // look for a next tab that will slide over to
30213         // replace the one being removed
30214         while(index < items.length){
30215             var item = items[++index];
30216             if(item && !item.isHidden()){
30217                 return item;
30218             }
30219         }
30220         // if one isn't found select the previous tab (on the left)
30221         index = start;
30222         while(index >= 0){
30223             var item = items[--index];
30224             if(item && !item.isHidden()){
30225                 return item;
30226             }
30227         }
30228         return null;
30229     },
30230
30231     /**
30232      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
30233      * @param {String/Number} id The id or index of the TabPanelItem to disable.
30234      */
30235     disableTab : function(id){
30236         var tab = this.items[id];
30237         if(tab && this.active != tab){
30238             tab.disable();
30239         }
30240     },
30241
30242     /**
30243      * Enables a {@link Roo.TabPanelItem} that is disabled.
30244      * @param {String/Number} id The id or index of the TabPanelItem to enable.
30245      */
30246     enableTab : function(id){
30247         var tab = this.items[id];
30248         tab.enable();
30249     },
30250
30251     /**
30252      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
30253      * @param {String/Number} id The id or index of the TabPanelItem to activate.
30254      * @return {Roo.TabPanelItem} The TabPanelItem.
30255      */
30256     activate : function(id){
30257         var tab = this.items[id];
30258         if(!tab){
30259             return null;
30260         }
30261         if(tab == this.active || tab.disabled){
30262             return tab;
30263         }
30264         var e = {};
30265         this.fireEvent("beforetabchange", this, e, tab);
30266         if(e.cancel !== true && !tab.disabled){
30267             if(this.active){
30268                 this.active.hide();
30269             }
30270             this.active = this.items[id];
30271             this.active.show();
30272             this.fireEvent("tabchange", this, this.active);
30273         }
30274         return tab;
30275     },
30276
30277     /**
30278      * Gets the active {@link Roo.TabPanelItem}.
30279      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
30280      */
30281     getActiveTab : function(){
30282         return this.active;
30283     },
30284
30285     /**
30286      * Updates the tab body element to fit the height of the container element
30287      * for overflow scrolling
30288      * @param {Number} targetHeight (optional) Override the starting height from the elements height
30289      */
30290     syncHeight : function(targetHeight){
30291         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
30292         var bm = this.bodyEl.getMargins();
30293         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
30294         this.bodyEl.setHeight(newHeight);
30295         return newHeight;
30296     },
30297
30298     onResize : function(){
30299         if(this.monitorResize){
30300             this.autoSizeTabs();
30301         }
30302     },
30303
30304     /**
30305      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
30306      */
30307     beginUpdate : function(){
30308         this.updating = true;
30309     },
30310
30311     /**
30312      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
30313      */
30314     endUpdate : function(){
30315         this.updating = false;
30316         this.autoSizeTabs();
30317     },
30318
30319     /**
30320      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
30321      */
30322     autoSizeTabs : function(){
30323         var count = this.items.length;
30324         var vcount = count - this.hiddenCount;
30325         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
30326             return;
30327         }
30328         var w = Math.max(this.el.getWidth() - this.cpad, 10);
30329         var availWidth = Math.floor(w / vcount);
30330         var b = this.stripBody;
30331         if(b.getWidth() > w){
30332             var tabs = this.items;
30333             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
30334             if(availWidth < this.minTabWidth){
30335                 /*if(!this.sleft){    // incomplete scrolling code
30336                     this.createScrollButtons();
30337                 }
30338                 this.showScroll();
30339                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
30340             }
30341         }else{
30342             if(this.currentTabWidth < this.preferredTabWidth){
30343                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
30344             }
30345         }
30346     },
30347
30348     /**
30349      * Returns the number of tabs in this TabPanel.
30350      * @return {Number}
30351      */
30352      getCount : function(){
30353          return this.items.length;
30354      },
30355
30356     /**
30357      * Resizes all the tabs to the passed width
30358      * @param {Number} The new width
30359      */
30360     setTabWidth : function(width){
30361         this.currentTabWidth = width;
30362         for(var i = 0, len = this.items.length; i < len; i++) {
30363                 if(!this.items[i].isHidden()) {
30364                 this.items[i].setWidth(width);
30365             }
30366         }
30367     },
30368
30369     /**
30370      * Destroys this TabPanel
30371      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
30372      */
30373     destroy : function(removeEl){
30374         Roo.EventManager.removeResizeListener(this.onResize, this);
30375         for(var i = 0, len = this.items.length; i < len; i++){
30376             this.items[i].purgeListeners();
30377         }
30378         if(removeEl === true){
30379             this.el.update("");
30380             this.el.remove();
30381         }
30382     }
30383 });
30384
30385 /**
30386  * @class Roo.TabPanelItem
30387  * @extends Roo.util.Observable
30388  * Represents an individual item (tab plus body) in a TabPanel.
30389  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
30390  * @param {String} id The id of this TabPanelItem
30391  * @param {String} text The text for the tab of this TabPanelItem
30392  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
30393  */
30394 Roo.TabPanelItem = function(tabPanel, id, text, closable){
30395     /**
30396      * The {@link Roo.TabPanel} this TabPanelItem belongs to
30397      * @type Roo.TabPanel
30398      */
30399     this.tabPanel = tabPanel;
30400     /**
30401      * The id for this TabPanelItem
30402      * @type String
30403      */
30404     this.id = id;
30405     /** @private */
30406     this.disabled = false;
30407     /** @private */
30408     this.text = text;
30409     /** @private */
30410     this.loaded = false;
30411     this.closable = closable;
30412
30413     /**
30414      * The body element for this TabPanelItem.
30415      * @type Roo.Element
30416      */
30417     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
30418     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
30419     this.bodyEl.setStyle("display", "block");
30420     this.bodyEl.setStyle("zoom", "1");
30421     this.hideAction();
30422
30423     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
30424     /** @private */
30425     this.el = Roo.get(els.el, true);
30426     this.inner = Roo.get(els.inner, true);
30427     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
30428     this.pnode = Roo.get(els.el.parentNode, true);
30429     this.el.on("mousedown", this.onTabMouseDown, this);
30430     this.el.on("click", this.onTabClick, this);
30431     /** @private */
30432     if(closable){
30433         var c = Roo.get(els.close, true);
30434         c.dom.title = this.closeText;
30435         c.addClassOnOver("close-over");
30436         c.on("click", this.closeClick, this);
30437      }
30438
30439     this.addEvents({
30440          /**
30441          * @event activate
30442          * Fires when this tab becomes the active tab.
30443          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30444          * @param {Roo.TabPanelItem} this
30445          */
30446         "activate": true,
30447         /**
30448          * @event beforeclose
30449          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
30450          * @param {Roo.TabPanelItem} this
30451          * @param {Object} e Set cancel to true on this object to cancel the close.
30452          */
30453         "beforeclose": true,
30454         /**
30455          * @event close
30456          * Fires when this tab is closed.
30457          * @param {Roo.TabPanelItem} this
30458          */
30459          "close": true,
30460         /**
30461          * @event deactivate
30462          * Fires when this tab is no longer the active tab.
30463          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30464          * @param {Roo.TabPanelItem} this
30465          */
30466          "deactivate" : true
30467     });
30468     this.hidden = false;
30469
30470     Roo.TabPanelItem.superclass.constructor.call(this);
30471 };
30472
30473 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
30474     purgeListeners : function(){
30475        Roo.util.Observable.prototype.purgeListeners.call(this);
30476        this.el.removeAllListeners();
30477     },
30478     /**
30479      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
30480      */
30481     show : function(){
30482         this.pnode.addClass("on");
30483         this.showAction();
30484         if(Roo.isOpera){
30485             this.tabPanel.stripWrap.repaint();
30486         }
30487         this.fireEvent("activate", this.tabPanel, this);
30488     },
30489
30490     /**
30491      * Returns true if this tab is the active tab.
30492      * @return {Boolean}
30493      */
30494     isActive : function(){
30495         return this.tabPanel.getActiveTab() == this;
30496     },
30497
30498     /**
30499      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
30500      */
30501     hide : function(){
30502         this.pnode.removeClass("on");
30503         this.hideAction();
30504         this.fireEvent("deactivate", this.tabPanel, this);
30505     },
30506
30507     hideAction : function(){
30508         this.bodyEl.hide();
30509         this.bodyEl.setStyle("position", "absolute");
30510         this.bodyEl.setLeft("-20000px");
30511         this.bodyEl.setTop("-20000px");
30512     },
30513
30514     showAction : function(){
30515         this.bodyEl.setStyle("position", "relative");
30516         this.bodyEl.setTop("");
30517         this.bodyEl.setLeft("");
30518         this.bodyEl.show();
30519     },
30520
30521     /**
30522      * Set the tooltip for the tab.
30523      * @param {String} tooltip The tab's tooltip
30524      */
30525     setTooltip : function(text){
30526         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
30527             this.textEl.dom.qtip = text;
30528             this.textEl.dom.removeAttribute('title');
30529         }else{
30530             this.textEl.dom.title = text;
30531         }
30532     },
30533
30534     onTabClick : function(e){
30535         e.preventDefault();
30536         this.tabPanel.activate(this.id);
30537     },
30538
30539     onTabMouseDown : function(e){
30540         e.preventDefault();
30541         this.tabPanel.activate(this.id);
30542     },
30543
30544     getWidth : function(){
30545         return this.inner.getWidth();
30546     },
30547
30548     setWidth : function(width){
30549         var iwidth = width - this.pnode.getPadding("lr");
30550         this.inner.setWidth(iwidth);
30551         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
30552         this.pnode.setWidth(width);
30553     },
30554
30555     /**
30556      * Show or hide the tab
30557      * @param {Boolean} hidden True to hide or false to show.
30558      */
30559     setHidden : function(hidden){
30560         this.hidden = hidden;
30561         this.pnode.setStyle("display", hidden ? "none" : "");
30562     },
30563
30564     /**
30565      * Returns true if this tab is "hidden"
30566      * @return {Boolean}
30567      */
30568     isHidden : function(){
30569         return this.hidden;
30570     },
30571
30572     /**
30573      * Returns the text for this tab
30574      * @return {String}
30575      */
30576     getText : function(){
30577         return this.text;
30578     },
30579
30580     autoSize : function(){
30581         //this.el.beginMeasure();
30582         this.textEl.setWidth(1);
30583         /*
30584          *  #2804 [new] Tabs in Roojs
30585          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
30586          */
30587         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
30588         //this.el.endMeasure();
30589     },
30590
30591     /**
30592      * Sets the text for the tab (Note: this also sets the tooltip text)
30593      * @param {String} text The tab's text and tooltip
30594      */
30595     setText : function(text){
30596         this.text = text;
30597         this.textEl.update(text);
30598         this.setTooltip(text);
30599         if(!this.tabPanel.resizeTabs){
30600             this.autoSize();
30601         }
30602     },
30603     /**
30604      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
30605      */
30606     activate : function(){
30607         this.tabPanel.activate(this.id);
30608     },
30609
30610     /**
30611      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
30612      */
30613     disable : function(){
30614         if(this.tabPanel.active != this){
30615             this.disabled = true;
30616             this.pnode.addClass("disabled");
30617         }
30618     },
30619
30620     /**
30621      * Enables this TabPanelItem if it was previously disabled.
30622      */
30623     enable : function(){
30624         this.disabled = false;
30625         this.pnode.removeClass("disabled");
30626     },
30627
30628     /**
30629      * Sets the content for this TabPanelItem.
30630      * @param {String} content The content
30631      * @param {Boolean} loadScripts true to look for and load scripts
30632      */
30633     setContent : function(content, loadScripts){
30634         this.bodyEl.update(content, loadScripts);
30635     },
30636
30637     /**
30638      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
30639      * @return {Roo.UpdateManager} The UpdateManager
30640      */
30641     getUpdateManager : function(){
30642         return this.bodyEl.getUpdateManager();
30643     },
30644
30645     /**
30646      * Set a URL to be used to load the content for this TabPanelItem.
30647      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
30648      * @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)
30649      * @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)
30650      * @return {Roo.UpdateManager} The UpdateManager
30651      */
30652     setUrl : function(url, params, loadOnce){
30653         if(this.refreshDelegate){
30654             this.un('activate', this.refreshDelegate);
30655         }
30656         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
30657         this.on("activate", this.refreshDelegate);
30658         return this.bodyEl.getUpdateManager();
30659     },
30660
30661     /** @private */
30662     _handleRefresh : function(url, params, loadOnce){
30663         if(!loadOnce || !this.loaded){
30664             var updater = this.bodyEl.getUpdateManager();
30665             updater.update(url, params, this._setLoaded.createDelegate(this));
30666         }
30667     },
30668
30669     /**
30670      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
30671      *   Will fail silently if the setUrl method has not been called.
30672      *   This does not activate the panel, just updates its content.
30673      */
30674     refresh : function(){
30675         if(this.refreshDelegate){
30676            this.loaded = false;
30677            this.refreshDelegate();
30678         }
30679     },
30680
30681     /** @private */
30682     _setLoaded : function(){
30683         this.loaded = true;
30684     },
30685
30686     /** @private */
30687     closeClick : function(e){
30688         var o = {};
30689         e.stopEvent();
30690         this.fireEvent("beforeclose", this, o);
30691         if(o.cancel !== true){
30692             this.tabPanel.removeTab(this.id);
30693         }
30694     },
30695     /**
30696      * The text displayed in the tooltip for the close icon.
30697      * @type String
30698      */
30699     closeText : "Close this tab"
30700 });
30701
30702 /** @private */
30703 Roo.TabPanel.prototype.createStrip = function(container){
30704     var strip = document.createElement("div");
30705     strip.className = "x-tabs-wrap";
30706     container.appendChild(strip);
30707     return strip;
30708 };
30709 /** @private */
30710 Roo.TabPanel.prototype.createStripList = function(strip){
30711     // div wrapper for retard IE
30712     // returns the "tr" element.
30713     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
30714         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
30715         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
30716     return strip.firstChild.firstChild.firstChild.firstChild;
30717 };
30718 /** @private */
30719 Roo.TabPanel.prototype.createBody = function(container){
30720     var body = document.createElement("div");
30721     Roo.id(body, "tab-body");
30722     Roo.fly(body).addClass("x-tabs-body");
30723     container.appendChild(body);
30724     return body;
30725 };
30726 /** @private */
30727 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
30728     var body = Roo.getDom(id);
30729     if(!body){
30730         body = document.createElement("div");
30731         body.id = id;
30732     }
30733     Roo.fly(body).addClass("x-tabs-item-body");
30734     bodyEl.insertBefore(body, bodyEl.firstChild);
30735     return body;
30736 };
30737 /** @private */
30738 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
30739     var td = document.createElement("td");
30740     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
30741     //stripEl.appendChild(td);
30742     if(closable){
30743         td.className = "x-tabs-closable";
30744         if(!this.closeTpl){
30745             this.closeTpl = new Roo.Template(
30746                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30747                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
30748                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
30749             );
30750         }
30751         var el = this.closeTpl.overwrite(td, {"text": text});
30752         var close = el.getElementsByTagName("div")[0];
30753         var inner = el.getElementsByTagName("em")[0];
30754         return {"el": el, "close": close, "inner": inner};
30755     } else {
30756         if(!this.tabTpl){
30757             this.tabTpl = new Roo.Template(
30758                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30759                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
30760             );
30761         }
30762         var el = this.tabTpl.overwrite(td, {"text": text});
30763         var inner = el.getElementsByTagName("em")[0];
30764         return {"el": el, "inner": inner};
30765     }
30766 };/*
30767  * Based on:
30768  * Ext JS Library 1.1.1
30769  * Copyright(c) 2006-2007, Ext JS, LLC.
30770  *
30771  * Originally Released Under LGPL - original licence link has changed is not relivant.
30772  *
30773  * Fork - LGPL
30774  * <script type="text/javascript">
30775  */
30776
30777 /**
30778  * @class Roo.Button
30779  * @extends Roo.util.Observable
30780  * Simple Button class
30781  * @cfg {String} text The button text
30782  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
30783  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
30784  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
30785  * @cfg {Object} scope The scope of the handler
30786  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
30787  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
30788  * @cfg {Boolean} hidden True to start hidden (defaults to false)
30789  * @cfg {Boolean} disabled True to start disabled (defaults to false)
30790  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
30791  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
30792    applies if enableToggle = true)
30793  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
30794  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
30795   an {@link Roo.util.ClickRepeater} config object (defaults to false).
30796  * @constructor
30797  * Create a new button
30798  * @param {Object} config The config object
30799  */
30800 Roo.Button = function(renderTo, config)
30801 {
30802     if (!config) {
30803         config = renderTo;
30804         renderTo = config.renderTo || false;
30805     }
30806     
30807     Roo.apply(this, config);
30808     this.addEvents({
30809         /**
30810              * @event click
30811              * Fires when this button is clicked
30812              * @param {Button} this
30813              * @param {EventObject} e The click event
30814              */
30815             "click" : true,
30816         /**
30817              * @event toggle
30818              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
30819              * @param {Button} this
30820              * @param {Boolean} pressed
30821              */
30822             "toggle" : true,
30823         /**
30824              * @event mouseover
30825              * Fires when the mouse hovers over the button
30826              * @param {Button} this
30827              * @param {Event} e The event object
30828              */
30829         'mouseover' : true,
30830         /**
30831              * @event mouseout
30832              * Fires when the mouse exits the button
30833              * @param {Button} this
30834              * @param {Event} e The event object
30835              */
30836         'mouseout': true,
30837          /**
30838              * @event render
30839              * Fires when the button is rendered
30840              * @param {Button} this
30841              */
30842         'render': true
30843     });
30844     if(this.menu){
30845         this.menu = Roo.menu.MenuMgr.get(this.menu);
30846     }
30847     // register listeners first!!  - so render can be captured..
30848     Roo.util.Observable.call(this);
30849     if(renderTo){
30850         this.render(renderTo);
30851     }
30852     
30853   
30854 };
30855
30856 Roo.extend(Roo.Button, Roo.util.Observable, {
30857     /**
30858      * 
30859      */
30860     
30861     /**
30862      * Read-only. True if this button is hidden
30863      * @type Boolean
30864      */
30865     hidden : false,
30866     /**
30867      * Read-only. True if this button is disabled
30868      * @type Boolean
30869      */
30870     disabled : false,
30871     /**
30872      * Read-only. True if this button is pressed (only if enableToggle = true)
30873      * @type Boolean
30874      */
30875     pressed : false,
30876
30877     /**
30878      * @cfg {Number} tabIndex 
30879      * The DOM tabIndex for this button (defaults to undefined)
30880      */
30881     tabIndex : undefined,
30882
30883     /**
30884      * @cfg {Boolean} enableToggle
30885      * True to enable pressed/not pressed toggling (defaults to false)
30886      */
30887     enableToggle: false,
30888     /**
30889      * @cfg {Roo.menu.Menu} menu
30890      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
30891      */
30892     menu : undefined,
30893     /**
30894      * @cfg {String} menuAlign
30895      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
30896      */
30897     menuAlign : "tl-bl?",
30898
30899     /**
30900      * @cfg {String} iconCls
30901      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
30902      */
30903     iconCls : undefined,
30904     /**
30905      * @cfg {String} type
30906      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
30907      */
30908     type : 'button',
30909
30910     // private
30911     menuClassTarget: 'tr',
30912
30913     /**
30914      * @cfg {String} clickEvent
30915      * The type of event to map to the button's event handler (defaults to 'click')
30916      */
30917     clickEvent : 'click',
30918
30919     /**
30920      * @cfg {Boolean} handleMouseEvents
30921      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
30922      */
30923     handleMouseEvents : true,
30924
30925     /**
30926      * @cfg {String} tooltipType
30927      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
30928      */
30929     tooltipType : 'qtip',
30930
30931     /**
30932      * @cfg {String} cls
30933      * A CSS class to apply to the button's main element.
30934      */
30935     
30936     /**
30937      * @cfg {Roo.Template} template (Optional)
30938      * An {@link Roo.Template} with which to create the Button's main element. This Template must
30939      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
30940      * require code modifications if required elements (e.g. a button) aren't present.
30941      */
30942
30943     // private
30944     render : function(renderTo){
30945         var btn;
30946         if(this.hideParent){
30947             this.parentEl = Roo.get(renderTo);
30948         }
30949         if(!this.dhconfig){
30950             if(!this.template){
30951                 if(!Roo.Button.buttonTemplate){
30952                     // hideous table template
30953                     Roo.Button.buttonTemplate = new Roo.Template(
30954                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
30955                         '<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>',
30956                         "</tr></tbody></table>");
30957                 }
30958                 this.template = Roo.Button.buttonTemplate;
30959             }
30960             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
30961             var btnEl = btn.child("button:first");
30962             btnEl.on('focus', this.onFocus, this);
30963             btnEl.on('blur', this.onBlur, this);
30964             if(this.cls){
30965                 btn.addClass(this.cls);
30966             }
30967             if(this.icon){
30968                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
30969             }
30970             if(this.iconCls){
30971                 btnEl.addClass(this.iconCls);
30972                 if(!this.cls){
30973                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
30974                 }
30975             }
30976             if(this.tabIndex !== undefined){
30977                 btnEl.dom.tabIndex = this.tabIndex;
30978             }
30979             if(this.tooltip){
30980                 if(typeof this.tooltip == 'object'){
30981                     Roo.QuickTips.tips(Roo.apply({
30982                           target: btnEl.id
30983                     }, this.tooltip));
30984                 } else {
30985                     btnEl.dom[this.tooltipType] = this.tooltip;
30986                 }
30987             }
30988         }else{
30989             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
30990         }
30991         this.el = btn;
30992         if(this.id){
30993             this.el.dom.id = this.el.id = this.id;
30994         }
30995         if(this.menu){
30996             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
30997             this.menu.on("show", this.onMenuShow, this);
30998             this.menu.on("hide", this.onMenuHide, this);
30999         }
31000         btn.addClass("x-btn");
31001         if(Roo.isIE && !Roo.isIE7){
31002             this.autoWidth.defer(1, this);
31003         }else{
31004             this.autoWidth();
31005         }
31006         if(this.handleMouseEvents){
31007             btn.on("mouseover", this.onMouseOver, this);
31008             btn.on("mouseout", this.onMouseOut, this);
31009             btn.on("mousedown", this.onMouseDown, this);
31010         }
31011         btn.on(this.clickEvent, this.onClick, this);
31012         //btn.on("mouseup", this.onMouseUp, this);
31013         if(this.hidden){
31014             this.hide();
31015         }
31016         if(this.disabled){
31017             this.disable();
31018         }
31019         Roo.ButtonToggleMgr.register(this);
31020         if(this.pressed){
31021             this.el.addClass("x-btn-pressed");
31022         }
31023         if(this.repeat){
31024             var repeater = new Roo.util.ClickRepeater(btn,
31025                 typeof this.repeat == "object" ? this.repeat : {}
31026             );
31027             repeater.on("click", this.onClick,  this);
31028         }
31029         
31030         this.fireEvent('render', this);
31031         
31032     },
31033     /**
31034      * Returns the button's underlying element
31035      * @return {Roo.Element} The element
31036      */
31037     getEl : function(){
31038         return this.el;  
31039     },
31040     
31041     /**
31042      * Destroys this Button and removes any listeners.
31043      */
31044     destroy : function(){
31045         Roo.ButtonToggleMgr.unregister(this);
31046         this.el.removeAllListeners();
31047         this.purgeListeners();
31048         this.el.remove();
31049     },
31050
31051     // private
31052     autoWidth : function(){
31053         if(this.el){
31054             this.el.setWidth("auto");
31055             if(Roo.isIE7 && Roo.isStrict){
31056                 var ib = this.el.child('button');
31057                 if(ib && ib.getWidth() > 20){
31058                     ib.clip();
31059                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31060                 }
31061             }
31062             if(this.minWidth){
31063                 if(this.hidden){
31064                     this.el.beginMeasure();
31065                 }
31066                 if(this.el.getWidth() < this.minWidth){
31067                     this.el.setWidth(this.minWidth);
31068                 }
31069                 if(this.hidden){
31070                     this.el.endMeasure();
31071                 }
31072             }
31073         }
31074     },
31075
31076     /**
31077      * Assigns this button's click handler
31078      * @param {Function} handler The function to call when the button is clicked
31079      * @param {Object} scope (optional) Scope for the function passed in
31080      */
31081     setHandler : function(handler, scope){
31082         this.handler = handler;
31083         this.scope = scope;  
31084     },
31085     
31086     /**
31087      * Sets this button's text
31088      * @param {String} text The button text
31089      */
31090     setText : function(text){
31091         this.text = text;
31092         if(this.el){
31093             this.el.child("td.x-btn-center button.x-btn-text").update(text);
31094         }
31095         this.autoWidth();
31096     },
31097     
31098     /**
31099      * Gets the text for this button
31100      * @return {String} The button text
31101      */
31102     getText : function(){
31103         return this.text;  
31104     },
31105     
31106     /**
31107      * Show this button
31108      */
31109     show: function(){
31110         this.hidden = false;
31111         if(this.el){
31112             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
31113         }
31114     },
31115     
31116     /**
31117      * Hide this button
31118      */
31119     hide: function(){
31120         this.hidden = true;
31121         if(this.el){
31122             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
31123         }
31124     },
31125     
31126     /**
31127      * Convenience function for boolean show/hide
31128      * @param {Boolean} visible True to show, false to hide
31129      */
31130     setVisible: function(visible){
31131         if(visible) {
31132             this.show();
31133         }else{
31134             this.hide();
31135         }
31136     },
31137     /**
31138          * Similar to toggle, but does not trigger event.
31139          * @param {Boolean} state [required] Force a particular state
31140          */
31141         setPressed : function(state)
31142         {
31143             if(state != this.pressed){
31144             if(state){
31145                 this.el.addClass("x-btn-pressed");
31146                 this.pressed = true;
31147             }else{
31148                 this.el.removeClass("x-btn-pressed");
31149                 this.pressed = false;
31150             }
31151         }
31152         },
31153         
31154     /**
31155      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
31156      * @param {Boolean} state (optional) Force a particular state
31157      */
31158     toggle : function(state){
31159         state = state === undefined ? !this.pressed : state;
31160         if(state != this.pressed){
31161             if(state){
31162                 this.el.addClass("x-btn-pressed");
31163                 this.pressed = true;
31164                 this.fireEvent("toggle", this, true);
31165             }else{
31166                 this.el.removeClass("x-btn-pressed");
31167                 this.pressed = false;
31168                 this.fireEvent("toggle", this, false);
31169             }
31170             if(this.toggleHandler){
31171                 this.toggleHandler.call(this.scope || this, this, state);
31172             }
31173         }
31174     },
31175     
31176         
31177         
31178     /**
31179      * Focus the button
31180      */
31181     focus : function(){
31182         this.el.child('button:first').focus();
31183     },
31184     
31185     /**
31186      * Disable this button
31187      */
31188     disable : function(){
31189         if(this.el){
31190             this.el.addClass("x-btn-disabled");
31191         }
31192         this.disabled = true;
31193     },
31194     
31195     /**
31196      * Enable this button
31197      */
31198     enable : function(){
31199         if(this.el){
31200             this.el.removeClass("x-btn-disabled");
31201         }
31202         this.disabled = false;
31203     },
31204
31205     /**
31206      * Convenience function for boolean enable/disable
31207      * @param {Boolean} enabled True to enable, false to disable
31208      */
31209     setDisabled : function(v){
31210         this[v !== true ? "enable" : "disable"]();
31211     },
31212
31213     // private
31214     onClick : function(e)
31215     {
31216         if(e){
31217             e.preventDefault();
31218         }
31219         if(e.button != 0){
31220             return;
31221         }
31222         if(!this.disabled){
31223             if(this.enableToggle){
31224                 this.toggle();
31225             }
31226             if(this.menu && !this.menu.isVisible()){
31227                 this.menu.show(this.el, this.menuAlign);
31228             }
31229             this.fireEvent("click", this, e);
31230             if(this.handler){
31231                 this.el.removeClass("x-btn-over");
31232                 this.handler.call(this.scope || this, this, e);
31233             }
31234         }
31235     },
31236     // private
31237     onMouseOver : function(e){
31238         if(!this.disabled){
31239             this.el.addClass("x-btn-over");
31240             this.fireEvent('mouseover', this, e);
31241         }
31242     },
31243     // private
31244     onMouseOut : function(e){
31245         if(!e.within(this.el,  true)){
31246             this.el.removeClass("x-btn-over");
31247             this.fireEvent('mouseout', this, e);
31248         }
31249     },
31250     // private
31251     onFocus : function(e){
31252         if(!this.disabled){
31253             this.el.addClass("x-btn-focus");
31254         }
31255     },
31256     // private
31257     onBlur : function(e){
31258         this.el.removeClass("x-btn-focus");
31259     },
31260     // private
31261     onMouseDown : function(e){
31262         if(!this.disabled && e.button == 0){
31263             this.el.addClass("x-btn-click");
31264             Roo.get(document).on('mouseup', this.onMouseUp, this);
31265         }
31266     },
31267     // private
31268     onMouseUp : function(e){
31269         if(e.button == 0){
31270             this.el.removeClass("x-btn-click");
31271             Roo.get(document).un('mouseup', this.onMouseUp, this);
31272         }
31273     },
31274     // private
31275     onMenuShow : function(e){
31276         this.el.addClass("x-btn-menu-active");
31277     },
31278     // private
31279     onMenuHide : function(e){
31280         this.el.removeClass("x-btn-menu-active");
31281     }   
31282 });
31283
31284 // Private utility class used by Button
31285 Roo.ButtonToggleMgr = function(){
31286    var groups = {};
31287    
31288    function toggleGroup(btn, state){
31289        if(state){
31290            var g = groups[btn.toggleGroup];
31291            for(var i = 0, l = g.length; i < l; i++){
31292                if(g[i] != btn){
31293                    g[i].toggle(false);
31294                }
31295            }
31296        }
31297    }
31298    
31299    return {
31300        register : function(btn){
31301            if(!btn.toggleGroup){
31302                return;
31303            }
31304            var g = groups[btn.toggleGroup];
31305            if(!g){
31306                g = groups[btn.toggleGroup] = [];
31307            }
31308            g.push(btn);
31309            btn.on("toggle", toggleGroup);
31310        },
31311        
31312        unregister : function(btn){
31313            if(!btn.toggleGroup){
31314                return;
31315            }
31316            var g = groups[btn.toggleGroup];
31317            if(g){
31318                g.remove(btn);
31319                btn.un("toggle", toggleGroup);
31320            }
31321        }
31322    };
31323 }();/*
31324  * Based on:
31325  * Ext JS Library 1.1.1
31326  * Copyright(c) 2006-2007, Ext JS, LLC.
31327  *
31328  * Originally Released Under LGPL - original licence link has changed is not relivant.
31329  *
31330  * Fork - LGPL
31331  * <script type="text/javascript">
31332  */
31333  
31334 /**
31335  * @class Roo.SplitButton
31336  * @extends Roo.Button
31337  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
31338  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
31339  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
31340  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
31341  * @cfg {String} arrowTooltip The title attribute of the arrow
31342  * @constructor
31343  * Create a new menu button
31344  * @param {String/HTMLElement/Element} renderTo The element to append the button to
31345  * @param {Object} config The config object
31346  */
31347 Roo.SplitButton = function(renderTo, config){
31348     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
31349     /**
31350      * @event arrowclick
31351      * Fires when this button's arrow is clicked
31352      * @param {SplitButton} this
31353      * @param {EventObject} e The click event
31354      */
31355     this.addEvents({"arrowclick":true});
31356 };
31357
31358 Roo.extend(Roo.SplitButton, Roo.Button, {
31359     render : function(renderTo){
31360         // this is one sweet looking template!
31361         var tpl = new Roo.Template(
31362             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
31363             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
31364             '<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>',
31365             "</tbody></table></td><td>",
31366             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
31367             '<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>',
31368             "</tbody></table></td></tr></table>"
31369         );
31370         var btn = tpl.append(renderTo, [this.text, this.type], true);
31371         var btnEl = btn.child("button");
31372         if(this.cls){
31373             btn.addClass(this.cls);
31374         }
31375         if(this.icon){
31376             btnEl.setStyle('background-image', 'url(' +this.icon +')');
31377         }
31378         if(this.iconCls){
31379             btnEl.addClass(this.iconCls);
31380             if(!this.cls){
31381                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
31382             }
31383         }
31384         this.el = btn;
31385         if(this.handleMouseEvents){
31386             btn.on("mouseover", this.onMouseOver, this);
31387             btn.on("mouseout", this.onMouseOut, this);
31388             btn.on("mousedown", this.onMouseDown, this);
31389             btn.on("mouseup", this.onMouseUp, this);
31390         }
31391         btn.on(this.clickEvent, this.onClick, this);
31392         if(this.tooltip){
31393             if(typeof this.tooltip == 'object'){
31394                 Roo.QuickTips.tips(Roo.apply({
31395                       target: btnEl.id
31396                 }, this.tooltip));
31397             } else {
31398                 btnEl.dom[this.tooltipType] = this.tooltip;
31399             }
31400         }
31401         if(this.arrowTooltip){
31402             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
31403         }
31404         if(this.hidden){
31405             this.hide();
31406         }
31407         if(this.disabled){
31408             this.disable();
31409         }
31410         if(this.pressed){
31411             this.el.addClass("x-btn-pressed");
31412         }
31413         if(Roo.isIE && !Roo.isIE7){
31414             this.autoWidth.defer(1, this);
31415         }else{
31416             this.autoWidth();
31417         }
31418         if(this.menu){
31419             this.menu.on("show", this.onMenuShow, this);
31420             this.menu.on("hide", this.onMenuHide, this);
31421         }
31422         this.fireEvent('render', this);
31423     },
31424
31425     // private
31426     autoWidth : function(){
31427         if(this.el){
31428             var tbl = this.el.child("table:first");
31429             var tbl2 = this.el.child("table:last");
31430             this.el.setWidth("auto");
31431             tbl.setWidth("auto");
31432             if(Roo.isIE7 && Roo.isStrict){
31433                 var ib = this.el.child('button:first');
31434                 if(ib && ib.getWidth() > 20){
31435                     ib.clip();
31436                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31437                 }
31438             }
31439             if(this.minWidth){
31440                 if(this.hidden){
31441                     this.el.beginMeasure();
31442                 }
31443                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
31444                     tbl.setWidth(this.minWidth-tbl2.getWidth());
31445                 }
31446                 if(this.hidden){
31447                     this.el.endMeasure();
31448                 }
31449             }
31450             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
31451         } 
31452     },
31453     /**
31454      * Sets this button's click handler
31455      * @param {Function} handler The function to call when the button is clicked
31456      * @param {Object} scope (optional) Scope for the function passed above
31457      */
31458     setHandler : function(handler, scope){
31459         this.handler = handler;
31460         this.scope = scope;  
31461     },
31462     
31463     /**
31464      * Sets this button's arrow click handler
31465      * @param {Function} handler The function to call when the arrow is clicked
31466      * @param {Object} scope (optional) Scope for the function passed above
31467      */
31468     setArrowHandler : function(handler, scope){
31469         this.arrowHandler = handler;
31470         this.scope = scope;  
31471     },
31472     
31473     /**
31474      * Focus the button
31475      */
31476     focus : function(){
31477         if(this.el){
31478             this.el.child("button:first").focus();
31479         }
31480     },
31481
31482     // private
31483     onClick : function(e){
31484         e.preventDefault();
31485         if(!this.disabled){
31486             if(e.getTarget(".x-btn-menu-arrow-wrap")){
31487                 if(this.menu && !this.menu.isVisible()){
31488                     this.menu.show(this.el, this.menuAlign);
31489                 }
31490                 this.fireEvent("arrowclick", this, e);
31491                 if(this.arrowHandler){
31492                     this.arrowHandler.call(this.scope || this, this, e);
31493                 }
31494             }else{
31495                 this.fireEvent("click", this, e);
31496                 if(this.handler){
31497                     this.handler.call(this.scope || this, this, e);
31498                 }
31499             }
31500         }
31501     },
31502     // private
31503     onMouseDown : function(e){
31504         if(!this.disabled){
31505             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
31506         }
31507     },
31508     // private
31509     onMouseUp : function(e){
31510         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
31511     }   
31512 });
31513
31514
31515 // backwards compat
31516 Roo.MenuButton = Roo.SplitButton;/*
31517  * Based on:
31518  * Ext JS Library 1.1.1
31519  * Copyright(c) 2006-2007, Ext JS, LLC.
31520  *
31521  * Originally Released Under LGPL - original licence link has changed is not relivant.
31522  *
31523  * Fork - LGPL
31524  * <script type="text/javascript">
31525  */
31526
31527 /**
31528  * @class Roo.Toolbar
31529  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field 
31530  * Basic Toolbar class.
31531  * @constructor
31532  * Creates a new Toolbar
31533  * @param {Object} container The config object
31534  */ 
31535 Roo.Toolbar = function(container, buttons, config)
31536 {
31537     /// old consturctor format still supported..
31538     if(container instanceof Array){ // omit the container for later rendering
31539         buttons = container;
31540         config = buttons;
31541         container = null;
31542     }
31543     if (typeof(container) == 'object' && container.xtype) {
31544         config = container;
31545         container = config.container;
31546         buttons = config.buttons || []; // not really - use items!!
31547     }
31548     var xitems = [];
31549     if (config && config.items) {
31550         xitems = config.items;
31551         delete config.items;
31552     }
31553     Roo.apply(this, config);
31554     this.buttons = buttons;
31555     
31556     if(container){
31557         this.render(container);
31558     }
31559     this.xitems = xitems;
31560     Roo.each(xitems, function(b) {
31561         this.add(b);
31562     }, this);
31563     
31564 };
31565
31566 Roo.Toolbar.prototype = {
31567     /**
31568      * @cfg {Array} items
31569      * array of button configs or elements to add (will be converted to a MixedCollection)
31570      */
31571     items: false,
31572     /**
31573      * @cfg {String/HTMLElement/Element} container
31574      * The id or element that will contain the toolbar
31575      */
31576     // private
31577     render : function(ct){
31578         this.el = Roo.get(ct);
31579         if(this.cls){
31580             this.el.addClass(this.cls);
31581         }
31582         // using a table allows for vertical alignment
31583         // 100% width is needed by Safari...
31584         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
31585         this.tr = this.el.child("tr", true);
31586         var autoId = 0;
31587         this.items = new Roo.util.MixedCollection(false, function(o){
31588             return o.id || ("item" + (++autoId));
31589         });
31590         if(this.buttons){
31591             this.add.apply(this, this.buttons);
31592             delete this.buttons;
31593         }
31594     },
31595
31596     /**
31597      * Adds element(s) to the toolbar -- this function takes a variable number of 
31598      * arguments of mixed type and adds them to the toolbar.
31599      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
31600      * <ul>
31601      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
31602      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
31603      * <li>Field: Any form field (equivalent to {@link #addField})</li>
31604      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
31605      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
31606      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
31607      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
31608      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
31609      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
31610      * </ul>
31611      * @param {Mixed} arg2
31612      * @param {Mixed} etc.
31613      */
31614     add : function(){
31615         var a = arguments, l = a.length;
31616         for(var i = 0; i < l; i++){
31617             this._add(a[i]);
31618         }
31619     },
31620     // private..
31621     _add : function(el) {
31622         
31623         if (el.xtype) {
31624             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
31625         }
31626         
31627         if (el.applyTo){ // some kind of form field
31628             return this.addField(el);
31629         } 
31630         if (el.render){ // some kind of Toolbar.Item
31631             return this.addItem(el);
31632         }
31633         if (typeof el == "string"){ // string
31634             if(el == "separator" || el == "-"){
31635                 return this.addSeparator();
31636             }
31637             if (el == " "){
31638                 return this.addSpacer();
31639             }
31640             if(el == "->"){
31641                 return this.addFill();
31642             }
31643             return this.addText(el);
31644             
31645         }
31646         if(el.tagName){ // element
31647             return this.addElement(el);
31648         }
31649         if(typeof el == "object"){ // must be button config?
31650             return this.addButton(el);
31651         }
31652         // and now what?!?!
31653         return false;
31654         
31655     },
31656     
31657     /**
31658      * Add an Xtype element
31659      * @param {Object} xtype Xtype Object
31660      * @return {Object} created Object
31661      */
31662     addxtype : function(e){
31663         return this.add(e);  
31664     },
31665     
31666     /**
31667      * Returns the Element for this toolbar.
31668      * @return {Roo.Element}
31669      */
31670     getEl : function(){
31671         return this.el;  
31672     },
31673     
31674     /**
31675      * Adds a separator
31676      * @return {Roo.Toolbar.Item} The separator item
31677      */
31678     addSeparator : function(){
31679         return this.addItem(new Roo.Toolbar.Separator());
31680     },
31681
31682     /**
31683      * Adds a spacer element
31684      * @return {Roo.Toolbar.Spacer} The spacer item
31685      */
31686     addSpacer : function(){
31687         return this.addItem(new Roo.Toolbar.Spacer());
31688     },
31689
31690     /**
31691      * Adds a fill element that forces subsequent additions to the right side of the toolbar
31692      * @return {Roo.Toolbar.Fill} The fill item
31693      */
31694     addFill : function(){
31695         return this.addItem(new Roo.Toolbar.Fill());
31696     },
31697
31698     /**
31699      * Adds any standard HTML element to the toolbar
31700      * @param {String/HTMLElement/Element} el The element or id of the element to add
31701      * @return {Roo.Toolbar.Item} The element's item
31702      */
31703     addElement : function(el){
31704         return this.addItem(new Roo.Toolbar.Item(el));
31705     },
31706     /**
31707      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
31708      * @type Roo.util.MixedCollection  
31709      */
31710     items : false,
31711      
31712     /**
31713      * Adds any Toolbar.Item or subclass
31714      * @param {Roo.Toolbar.Item} item
31715      * @return {Roo.Toolbar.Item} The item
31716      */
31717     addItem : function(item){
31718         var td = this.nextBlock();
31719         item.render(td);
31720         this.items.add(item);
31721         return item;
31722     },
31723     
31724     /**
31725      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
31726      * @param {Object/Array} config A button config or array of configs
31727      * @return {Roo.Toolbar.Button/Array}
31728      */
31729     addButton : function(config){
31730         if(config instanceof Array){
31731             var buttons = [];
31732             for(var i = 0, len = config.length; i < len; i++) {
31733                 buttons.push(this.addButton(config[i]));
31734             }
31735             return buttons;
31736         }
31737         var b = config;
31738         if(!(config instanceof Roo.Toolbar.Button)){
31739             b = config.split ?
31740                 new Roo.Toolbar.SplitButton(config) :
31741                 new Roo.Toolbar.Button(config);
31742         }
31743         var td = this.nextBlock();
31744         b.render(td);
31745         this.items.add(b);
31746         return b;
31747     },
31748     
31749     /**
31750      * Adds text to the toolbar
31751      * @param {String} text The text to add
31752      * @return {Roo.Toolbar.Item} The element's item
31753      */
31754     addText : function(text){
31755         return this.addItem(new Roo.Toolbar.TextItem(text));
31756     },
31757     
31758     /**
31759      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
31760      * @param {Number} index The index where the item is to be inserted
31761      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
31762      * @return {Roo.Toolbar.Button/Item}
31763      */
31764     insertButton : function(index, item){
31765         if(item instanceof Array){
31766             var buttons = [];
31767             for(var i = 0, len = item.length; i < len; i++) {
31768                buttons.push(this.insertButton(index + i, item[i]));
31769             }
31770             return buttons;
31771         }
31772         if (!(item instanceof Roo.Toolbar.Button)){
31773            item = new Roo.Toolbar.Button(item);
31774         }
31775         var td = document.createElement("td");
31776         this.tr.insertBefore(td, this.tr.childNodes[index]);
31777         item.render(td);
31778         this.items.insert(index, item);
31779         return item;
31780     },
31781     
31782     /**
31783      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
31784      * @param {Object} config
31785      * @return {Roo.Toolbar.Item} The element's item
31786      */
31787     addDom : function(config, returnEl){
31788         var td = this.nextBlock();
31789         Roo.DomHelper.overwrite(td, config);
31790         var ti = new Roo.Toolbar.Item(td.firstChild);
31791         ti.render(td);
31792         this.items.add(ti);
31793         return ti;
31794     },
31795
31796     /**
31797      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
31798      * @type Roo.util.MixedCollection  
31799      */
31800     fields : false,
31801     
31802     /**
31803      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
31804      * Note: the field should not have been rendered yet. For a field that has already been
31805      * rendered, use {@link #addElement}.
31806      * @param {Roo.form.Field} field
31807      * @return {Roo.ToolbarItem}
31808      */
31809      
31810       
31811     addField : function(field) {
31812         if (!this.fields) {
31813             var autoId = 0;
31814             this.fields = new Roo.util.MixedCollection(false, function(o){
31815                 return o.id || ("item" + (++autoId));
31816             });
31817
31818         }
31819         
31820         var td = this.nextBlock();
31821         field.render(td);
31822         var ti = new Roo.Toolbar.Item(td.firstChild);
31823         ti.render(td);
31824         this.items.add(ti);
31825         this.fields.add(field);
31826         return ti;
31827     },
31828     /**
31829      * Hide the toolbar
31830      * @method hide
31831      */
31832      
31833       
31834     hide : function()
31835     {
31836         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
31837         this.el.child('div').hide();
31838     },
31839     /**
31840      * Show the toolbar
31841      * @method show
31842      */
31843     show : function()
31844     {
31845         this.el.child('div').show();
31846     },
31847       
31848     // private
31849     nextBlock : function(){
31850         var td = document.createElement("td");
31851         this.tr.appendChild(td);
31852         return td;
31853     },
31854
31855     // private
31856     destroy : function(){
31857         if(this.items){ // rendered?
31858             Roo.destroy.apply(Roo, this.items.items);
31859         }
31860         if(this.fields){ // rendered?
31861             Roo.destroy.apply(Roo, this.fields.items);
31862         }
31863         Roo.Element.uncache(this.el, this.tr);
31864     }
31865 };
31866
31867 /**
31868  * @class Roo.Toolbar.Item
31869  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
31870  * @constructor
31871  * Creates a new Item
31872  * @param {HTMLElement} el 
31873  */
31874 Roo.Toolbar.Item = function(el){
31875     var cfg = {};
31876     if (typeof (el.xtype) != 'undefined') {
31877         cfg = el;
31878         el = cfg.el;
31879     }
31880     
31881     this.el = Roo.getDom(el);
31882     this.id = Roo.id(this.el);
31883     this.hidden = false;
31884     
31885     this.addEvents({
31886          /**
31887              * @event render
31888              * Fires when the button is rendered
31889              * @param {Button} this
31890              */
31891         'render': true
31892     });
31893     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
31894 };
31895 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
31896 //Roo.Toolbar.Item.prototype = {
31897     
31898     /**
31899      * Get this item's HTML Element
31900      * @return {HTMLElement}
31901      */
31902     getEl : function(){
31903        return this.el;  
31904     },
31905
31906     // private
31907     render : function(td){
31908         
31909          this.td = td;
31910         td.appendChild(this.el);
31911         
31912         this.fireEvent('render', this);
31913     },
31914     
31915     /**
31916      * Removes and destroys this item.
31917      */
31918     destroy : function(){
31919         this.td.parentNode.removeChild(this.td);
31920     },
31921     
31922     /**
31923      * Shows this item.
31924      */
31925     show: function(){
31926         this.hidden = false;
31927         this.td.style.display = "";
31928     },
31929     
31930     /**
31931      * Hides this item.
31932      */
31933     hide: function(){
31934         this.hidden = true;
31935         this.td.style.display = "none";
31936     },
31937     
31938     /**
31939      * Convenience function for boolean show/hide.
31940      * @param {Boolean} visible true to show/false to hide
31941      */
31942     setVisible: function(visible){
31943         if(visible) {
31944             this.show();
31945         }else{
31946             this.hide();
31947         }
31948     },
31949     
31950     /**
31951      * Try to focus this item.
31952      */
31953     focus : function(){
31954         Roo.fly(this.el).focus();
31955     },
31956     
31957     /**
31958      * Disables this item.
31959      */
31960     disable : function(){
31961         Roo.fly(this.td).addClass("x-item-disabled");
31962         this.disabled = true;
31963         this.el.disabled = true;
31964     },
31965     
31966     /**
31967      * Enables this item.
31968      */
31969     enable : function(){
31970         Roo.fly(this.td).removeClass("x-item-disabled");
31971         this.disabled = false;
31972         this.el.disabled = false;
31973     }
31974 });
31975
31976
31977 /**
31978  * @class Roo.Toolbar.Separator
31979  * @extends Roo.Toolbar.Item
31980  * A simple toolbar separator class
31981  * @constructor
31982  * Creates a new Separator
31983  */
31984 Roo.Toolbar.Separator = function(cfg){
31985     
31986     var s = document.createElement("span");
31987     s.className = "ytb-sep";
31988     if (cfg) {
31989         cfg.el = s;
31990     }
31991     
31992     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
31993 };
31994 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
31995     enable:Roo.emptyFn,
31996     disable:Roo.emptyFn,
31997     focus:Roo.emptyFn
31998 });
31999
32000 /**
32001  * @class Roo.Toolbar.Spacer
32002  * @extends Roo.Toolbar.Item
32003  * A simple element that adds extra horizontal space to a toolbar.
32004  * @constructor
32005  * Creates a new Spacer
32006  */
32007 Roo.Toolbar.Spacer = function(cfg){
32008     var s = document.createElement("div");
32009     s.className = "ytb-spacer";
32010     if (cfg) {
32011         cfg.el = s;
32012     }
32013     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
32014 };
32015 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
32016     enable:Roo.emptyFn,
32017     disable:Roo.emptyFn,
32018     focus:Roo.emptyFn
32019 });
32020
32021 /**
32022  * @class Roo.Toolbar.Fill
32023  * @extends Roo.Toolbar.Spacer
32024  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
32025  * @constructor
32026  * Creates a new Spacer
32027  */
32028 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
32029     // private
32030     render : function(td){
32031         td.style.width = '100%';
32032         Roo.Toolbar.Fill.superclass.render.call(this, td);
32033     }
32034 });
32035
32036 /**
32037  * @class Roo.Toolbar.TextItem
32038  * @extends Roo.Toolbar.Item
32039  * A simple class that renders text directly into a toolbar.
32040  * @constructor
32041  * Creates a new TextItem
32042  * @cfg {string} text 
32043  */
32044 Roo.Toolbar.TextItem = function(cfg){
32045     var  text = cfg || "";
32046     if (typeof(cfg) == 'object') {
32047         text = cfg.text || "";
32048     }  else {
32049         cfg = null;
32050     }
32051     var s = document.createElement("span");
32052     s.className = "ytb-text";
32053     s.innerHTML = text;
32054     if (cfg) {
32055         cfg.el  = s;
32056     }
32057     
32058     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
32059 };
32060 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
32061     
32062      
32063     enable:Roo.emptyFn,
32064     disable:Roo.emptyFn,
32065     focus:Roo.emptyFn,
32066      /**
32067      * Shows this button
32068      */
32069     show: function(){
32070         this.hidden = false;
32071         this.el.style.display = "";
32072     },
32073     
32074     /**
32075      * Hides this button
32076      */
32077     hide: function(){
32078         this.hidden = true;
32079         this.el.style.display = "none";
32080     }
32081     
32082 });
32083
32084 /**
32085  * @class Roo.Toolbar.Button
32086  * @extends Roo.Button
32087  * A button that renders into a toolbar.
32088  * @constructor
32089  * Creates a new Button
32090  * @param {Object} config A standard {@link Roo.Button} config object
32091  */
32092 Roo.Toolbar.Button = function(config){
32093     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
32094 };
32095 Roo.extend(Roo.Toolbar.Button, Roo.Button,
32096 {
32097     
32098     
32099     render : function(td){
32100         this.td = td;
32101         Roo.Toolbar.Button.superclass.render.call(this, td);
32102     },
32103     
32104     /**
32105      * Removes and destroys this button
32106      */
32107     destroy : function(){
32108         Roo.Toolbar.Button.superclass.destroy.call(this);
32109         this.td.parentNode.removeChild(this.td);
32110     },
32111     
32112     /**
32113      * Shows this button
32114      */
32115     show: function(){
32116         this.hidden = false;
32117         this.td.style.display = "";
32118     },
32119     
32120     /**
32121      * Hides this button
32122      */
32123     hide: function(){
32124         this.hidden = true;
32125         this.td.style.display = "none";
32126     },
32127
32128     /**
32129      * Disables this item
32130      */
32131     disable : function(){
32132         Roo.fly(this.td).addClass("x-item-disabled");
32133         this.disabled = true;
32134     },
32135
32136     /**
32137      * Enables this item
32138      */
32139     enable : function(){
32140         Roo.fly(this.td).removeClass("x-item-disabled");
32141         this.disabled = false;
32142     }
32143 });
32144 // backwards compat
32145 Roo.ToolbarButton = Roo.Toolbar.Button;
32146
32147 /**
32148  * @class Roo.Toolbar.SplitButton
32149  * @extends Roo.SplitButton
32150  * A menu button that renders into a toolbar.
32151  * @constructor
32152  * Creates a new SplitButton
32153  * @param {Object} config A standard {@link Roo.SplitButton} config object
32154  */
32155 Roo.Toolbar.SplitButton = function(config){
32156     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
32157 };
32158 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
32159     render : function(td){
32160         this.td = td;
32161         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
32162     },
32163     
32164     /**
32165      * Removes and destroys this button
32166      */
32167     destroy : function(){
32168         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
32169         this.td.parentNode.removeChild(this.td);
32170     },
32171     
32172     /**
32173      * Shows this button
32174      */
32175     show: function(){
32176         this.hidden = false;
32177         this.td.style.display = "";
32178     },
32179     
32180     /**
32181      * Hides this button
32182      */
32183     hide: function(){
32184         this.hidden = true;
32185         this.td.style.display = "none";
32186     }
32187 });
32188
32189 // backwards compat
32190 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
32191  * Based on:
32192  * Ext JS Library 1.1.1
32193  * Copyright(c) 2006-2007, Ext JS, LLC.
32194  *
32195  * Originally Released Under LGPL - original licence link has changed is not relivant.
32196  *
32197  * Fork - LGPL
32198  * <script type="text/javascript">
32199  */
32200  
32201 /**
32202  * @class Roo.PagingToolbar
32203  * @extends Roo.Toolbar
32204  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field
32205  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
32206  * @constructor
32207  * Create a new PagingToolbar
32208  * @param {Object} config The config object
32209  */
32210 Roo.PagingToolbar = function(el, ds, config)
32211 {
32212     // old args format still supported... - xtype is prefered..
32213     if (typeof(el) == 'object' && el.xtype) {
32214         // created from xtype...
32215         config = el;
32216         ds = el.dataSource;
32217         el = config.container;
32218     }
32219     var items = [];
32220     if (config.items) {
32221         items = config.items;
32222         config.items = [];
32223     }
32224     
32225     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
32226     this.ds = ds;
32227     this.cursor = 0;
32228     this.renderButtons(this.el);
32229     this.bind(ds);
32230     
32231     // supprot items array.
32232    
32233     Roo.each(items, function(e) {
32234         this.add(Roo.factory(e));
32235     },this);
32236     
32237 };
32238
32239 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
32240    
32241     /**
32242      * @cfg {String/HTMLElement/Element} container
32243      * container The id or element that will contain the toolbar
32244      */
32245     /**
32246      * @cfg {Boolean} displayInfo
32247      * True to display the displayMsg (defaults to false)
32248      */
32249     
32250     
32251     /**
32252      * @cfg {Number} pageSize
32253      * The number of records to display per page (defaults to 20)
32254      */
32255     pageSize: 20,
32256     /**
32257      * @cfg {String} displayMsg
32258      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
32259      */
32260     displayMsg : 'Displaying {0} - {1} of {2}',
32261     /**
32262      * @cfg {String} emptyMsg
32263      * The message to display when no records are found (defaults to "No data to display")
32264      */
32265     emptyMsg : 'No data to display',
32266     /**
32267      * Customizable piece of the default paging text (defaults to "Page")
32268      * @type String
32269      */
32270     beforePageText : "Page",
32271     /**
32272      * Customizable piece of the default paging text (defaults to "of %0")
32273      * @type String
32274      */
32275     afterPageText : "of {0}",
32276     /**
32277      * Customizable piece of the default paging text (defaults to "First Page")
32278      * @type String
32279      */
32280     firstText : "First Page",
32281     /**
32282      * Customizable piece of the default paging text (defaults to "Previous Page")
32283      * @type String
32284      */
32285     prevText : "Previous Page",
32286     /**
32287      * Customizable piece of the default paging text (defaults to "Next Page")
32288      * @type String
32289      */
32290     nextText : "Next Page",
32291     /**
32292      * Customizable piece of the default paging text (defaults to "Last Page")
32293      * @type String
32294      */
32295     lastText : "Last Page",
32296     /**
32297      * Customizable piece of the default paging text (defaults to "Refresh")
32298      * @type String
32299      */
32300     refreshText : "Refresh",
32301
32302     // private
32303     renderButtons : function(el){
32304         Roo.PagingToolbar.superclass.render.call(this, el);
32305         this.first = this.addButton({
32306             tooltip: this.firstText,
32307             cls: "x-btn-icon x-grid-page-first",
32308             disabled: true,
32309             handler: this.onClick.createDelegate(this, ["first"])
32310         });
32311         this.prev = this.addButton({
32312             tooltip: this.prevText,
32313             cls: "x-btn-icon x-grid-page-prev",
32314             disabled: true,
32315             handler: this.onClick.createDelegate(this, ["prev"])
32316         });
32317         //this.addSeparator();
32318         this.add(this.beforePageText);
32319         this.field = Roo.get(this.addDom({
32320            tag: "input",
32321            type: "text",
32322            size: "3",
32323            value: "1",
32324            cls: "x-grid-page-number"
32325         }).el);
32326         this.field.on("keydown", this.onPagingKeydown, this);
32327         this.field.on("focus", function(){this.dom.select();});
32328         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
32329         this.field.setHeight(18);
32330         //this.addSeparator();
32331         this.next = this.addButton({
32332             tooltip: this.nextText,
32333             cls: "x-btn-icon x-grid-page-next",
32334             disabled: true,
32335             handler: this.onClick.createDelegate(this, ["next"])
32336         });
32337         this.last = this.addButton({
32338             tooltip: this.lastText,
32339             cls: "x-btn-icon x-grid-page-last",
32340             disabled: true,
32341             handler: this.onClick.createDelegate(this, ["last"])
32342         });
32343         //this.addSeparator();
32344         this.loading = this.addButton({
32345             tooltip: this.refreshText,
32346             cls: "x-btn-icon x-grid-loading",
32347             handler: this.onClick.createDelegate(this, ["refresh"])
32348         });
32349
32350         if(this.displayInfo){
32351             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
32352         }
32353     },
32354
32355     // private
32356     updateInfo : function(){
32357         if(this.displayEl){
32358             var count = this.ds.getCount();
32359             var msg = count == 0 ?
32360                 this.emptyMsg :
32361                 String.format(
32362                     this.displayMsg,
32363                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
32364                 );
32365             this.displayEl.update(msg);
32366         }
32367     },
32368
32369     // private
32370     onLoad : function(ds, r, o){
32371        this.cursor = o.params ? o.params.start : 0;
32372        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
32373
32374        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
32375        this.field.dom.value = ap;
32376        this.first.setDisabled(ap == 1);
32377        this.prev.setDisabled(ap == 1);
32378        this.next.setDisabled(ap == ps);
32379        this.last.setDisabled(ap == ps);
32380        this.loading.enable();
32381        this.updateInfo();
32382     },
32383
32384     // private
32385     getPageData : function(){
32386         var total = this.ds.getTotalCount();
32387         return {
32388             total : total,
32389             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
32390             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
32391         };
32392     },
32393
32394     // private
32395     onLoadError : function(){
32396         this.loading.enable();
32397     },
32398
32399     // private
32400     onPagingKeydown : function(e){
32401         var k = e.getKey();
32402         var d = this.getPageData();
32403         if(k == e.RETURN){
32404             var v = this.field.dom.value, pageNum;
32405             if(!v || isNaN(pageNum = parseInt(v, 10))){
32406                 this.field.dom.value = d.activePage;
32407                 return;
32408             }
32409             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
32410             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32411             e.stopEvent();
32412         }
32413         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))
32414         {
32415           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
32416           this.field.dom.value = pageNum;
32417           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
32418           e.stopEvent();
32419         }
32420         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
32421         {
32422           var v = this.field.dom.value, pageNum; 
32423           var increment = (e.shiftKey) ? 10 : 1;
32424           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
32425             increment *= -1;
32426           }
32427           if(!v || isNaN(pageNum = parseInt(v, 10))) {
32428             this.field.dom.value = d.activePage;
32429             return;
32430           }
32431           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
32432           {
32433             this.field.dom.value = parseInt(v, 10) + increment;
32434             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
32435             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32436           }
32437           e.stopEvent();
32438         }
32439     },
32440
32441     // private
32442     beforeLoad : function(){
32443         if(this.loading){
32444             this.loading.disable();
32445         }
32446     },
32447     /**
32448      * event that occurs when you click on the navigation buttons - can be used to trigger load of a grid.
32449      * @param {String} which (first|prev|next|last|refresh)  which button to press.
32450      *
32451      */
32452     // private
32453     onClick : function(which){
32454         var ds = this.ds;
32455         switch(which){
32456             case "first":
32457                 ds.load({params:{start: 0, limit: this.pageSize}});
32458             break;
32459             case "prev":
32460                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
32461             break;
32462             case "next":
32463                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
32464             break;
32465             case "last":
32466                 var total = ds.getTotalCount();
32467                 var extra = total % this.pageSize;
32468                 var lastStart = extra ? (total - extra) : total-this.pageSize;
32469                 ds.load({params:{start: lastStart, limit: this.pageSize}});
32470             break;
32471             case "refresh":
32472                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
32473             break;
32474         }
32475     },
32476
32477     /**
32478      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
32479      * @param {Roo.data.Store} store The data store to unbind
32480      */
32481     unbind : function(ds){
32482         ds.un("beforeload", this.beforeLoad, this);
32483         ds.un("load", this.onLoad, this);
32484         ds.un("loadexception", this.onLoadError, this);
32485         ds.un("remove", this.updateInfo, this);
32486         ds.un("add", this.updateInfo, this);
32487         this.ds = undefined;
32488     },
32489
32490     /**
32491      * Binds the paging toolbar to the specified {@link Roo.data.Store}
32492      * @param {Roo.data.Store} store The data store to bind
32493      */
32494     bind : function(ds){
32495         ds.on("beforeload", this.beforeLoad, this);
32496         ds.on("load", this.onLoad, this);
32497         ds.on("loadexception", this.onLoadError, this);
32498         ds.on("remove", this.updateInfo, this);
32499         ds.on("add", this.updateInfo, this);
32500         this.ds = ds;
32501     }
32502 });/*
32503  * Based on:
32504  * Ext JS Library 1.1.1
32505  * Copyright(c) 2006-2007, Ext JS, LLC.
32506  *
32507  * Originally Released Under LGPL - original licence link has changed is not relivant.
32508  *
32509  * Fork - LGPL
32510  * <script type="text/javascript">
32511  */
32512
32513 /**
32514  * @class Roo.Resizable
32515  * @extends Roo.util.Observable
32516  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
32517  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
32518  * 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
32519  * the element will be wrapped for you automatically.</p>
32520  * <p>Here is the list of valid resize handles:</p>
32521  * <pre>
32522 Value   Description
32523 ------  -------------------
32524  'n'     north
32525  's'     south
32526  'e'     east
32527  'w'     west
32528  'nw'    northwest
32529  'sw'    southwest
32530  'se'    southeast
32531  'ne'    northeast
32532  'hd'    horizontal drag
32533  'all'   all
32534 </pre>
32535  * <p>Here's an example showing the creation of a typical Resizable:</p>
32536  * <pre><code>
32537 var resizer = new Roo.Resizable("element-id", {
32538     handles: 'all',
32539     minWidth: 200,
32540     minHeight: 100,
32541     maxWidth: 500,
32542     maxHeight: 400,
32543     pinned: true
32544 });
32545 resizer.on("resize", myHandler);
32546 </code></pre>
32547  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
32548  * resizer.east.setDisplayed(false);</p>
32549  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
32550  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
32551  * resize operation's new size (defaults to [0, 0])
32552  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
32553  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
32554  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
32555  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
32556  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
32557  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
32558  * @cfg {Number} width The width of the element in pixels (defaults to null)
32559  * @cfg {Number} height The height of the element in pixels (defaults to null)
32560  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
32561  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
32562  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
32563  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
32564  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
32565  * in favor of the handles config option (defaults to false)
32566  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
32567  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
32568  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
32569  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
32570  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
32571  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
32572  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
32573  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
32574  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
32575  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
32576  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
32577  * @constructor
32578  * Create a new resizable component
32579  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
32580  * @param {Object} config configuration options
32581   */
32582 Roo.Resizable = function(el, config)
32583 {
32584     this.el = Roo.get(el);
32585
32586     if(config && config.wrap){
32587         config.resizeChild = this.el;
32588         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
32589         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
32590         this.el.setStyle("overflow", "hidden");
32591         this.el.setPositioning(config.resizeChild.getPositioning());
32592         config.resizeChild.clearPositioning();
32593         if(!config.width || !config.height){
32594             var csize = config.resizeChild.getSize();
32595             this.el.setSize(csize.width, csize.height);
32596         }
32597         if(config.pinned && !config.adjustments){
32598             config.adjustments = "auto";
32599         }
32600     }
32601
32602     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
32603     this.proxy.unselectable();
32604     this.proxy.enableDisplayMode('block');
32605
32606     Roo.apply(this, config);
32607
32608     if(this.pinned){
32609         this.disableTrackOver = true;
32610         this.el.addClass("x-resizable-pinned");
32611     }
32612     // if the element isn't positioned, make it relative
32613     var position = this.el.getStyle("position");
32614     if(position != "absolute" && position != "fixed"){
32615         this.el.setStyle("position", "relative");
32616     }
32617     if(!this.handles){ // no handles passed, must be legacy style
32618         this.handles = 's,e,se';
32619         if(this.multiDirectional){
32620             this.handles += ',n,w';
32621         }
32622     }
32623     if(this.handles == "all"){
32624         this.handles = "n s e w ne nw se sw";
32625     }
32626     var hs = this.handles.split(/\s*?[,;]\s*?| /);
32627     var ps = Roo.Resizable.positions;
32628     for(var i = 0, len = hs.length; i < len; i++){
32629         if(hs[i] && ps[hs[i]]){
32630             var pos = ps[hs[i]];
32631             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
32632         }
32633     }
32634     // legacy
32635     this.corner = this.southeast;
32636     
32637     // updateBox = the box can move..
32638     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
32639         this.updateBox = true;
32640     }
32641
32642     this.activeHandle = null;
32643
32644     if(this.resizeChild){
32645         if(typeof this.resizeChild == "boolean"){
32646             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
32647         }else{
32648             this.resizeChild = Roo.get(this.resizeChild, true);
32649         }
32650     }
32651     
32652     if(this.adjustments == "auto"){
32653         var rc = this.resizeChild;
32654         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
32655         if(rc && (hw || hn)){
32656             rc.position("relative");
32657             rc.setLeft(hw ? hw.el.getWidth() : 0);
32658             rc.setTop(hn ? hn.el.getHeight() : 0);
32659         }
32660         this.adjustments = [
32661             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
32662             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
32663         ];
32664     }
32665
32666     if(this.draggable){
32667         this.dd = this.dynamic ?
32668             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
32669         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
32670     }
32671
32672     // public events
32673     this.addEvents({
32674         /**
32675          * @event beforeresize
32676          * Fired before resize is allowed. Set enabled to false to cancel resize.
32677          * @param {Roo.Resizable} this
32678          * @param {Roo.EventObject} e The mousedown event
32679          */
32680         "beforeresize" : true,
32681         /**
32682          * @event resizing
32683          * Fired a resizing.
32684          * @param {Roo.Resizable} this
32685          * @param {Number} x The new x position
32686          * @param {Number} y The new y position
32687          * @param {Number} w The new w width
32688          * @param {Number} h The new h hight
32689          * @param {Roo.EventObject} e The mouseup event
32690          */
32691         "resizing" : true,
32692         /**
32693          * @event resize
32694          * Fired after a resize.
32695          * @param {Roo.Resizable} this
32696          * @param {Number} width The new width
32697          * @param {Number} height The new height
32698          * @param {Roo.EventObject} e The mouseup event
32699          */
32700         "resize" : true
32701     });
32702
32703     if(this.width !== null && this.height !== null){
32704         this.resizeTo(this.width, this.height);
32705     }else{
32706         this.updateChildSize();
32707     }
32708     if(Roo.isIE){
32709         this.el.dom.style.zoom = 1;
32710     }
32711     Roo.Resizable.superclass.constructor.call(this);
32712 };
32713
32714 Roo.extend(Roo.Resizable, Roo.util.Observable, {
32715         resizeChild : false,
32716         adjustments : [0, 0],
32717         minWidth : 5,
32718         minHeight : 5,
32719         maxWidth : 10000,
32720         maxHeight : 10000,
32721         enabled : true,
32722         animate : false,
32723         duration : .35,
32724         dynamic : false,
32725         handles : false,
32726         multiDirectional : false,
32727         disableTrackOver : false,
32728         easing : 'easeOutStrong',
32729         widthIncrement : 0,
32730         heightIncrement : 0,
32731         pinned : false,
32732         width : null,
32733         height : null,
32734         preserveRatio : false,
32735         transparent: false,
32736         minX: 0,
32737         minY: 0,
32738         draggable: false,
32739
32740         /**
32741          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
32742          */
32743         constrainTo: undefined,
32744         /**
32745          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
32746          */
32747         resizeRegion: undefined,
32748
32749
32750     /**
32751      * Perform a manual resize
32752      * @param {Number} width
32753      * @param {Number} height
32754      */
32755     resizeTo : function(width, height){
32756         this.el.setSize(width, height);
32757         this.updateChildSize();
32758         this.fireEvent("resize", this, width, height, null);
32759     },
32760
32761     // private
32762     startSizing : function(e, handle){
32763         this.fireEvent("beforeresize", this, e);
32764         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
32765
32766             if(!this.overlay){
32767                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
32768                 this.overlay.unselectable();
32769                 this.overlay.enableDisplayMode("block");
32770                 this.overlay.on("mousemove", this.onMouseMove, this);
32771                 this.overlay.on("mouseup", this.onMouseUp, this);
32772             }
32773             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
32774
32775             this.resizing = true;
32776             this.startBox = this.el.getBox();
32777             this.startPoint = e.getXY();
32778             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
32779                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
32780
32781             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32782             this.overlay.show();
32783
32784             if(this.constrainTo) {
32785                 var ct = Roo.get(this.constrainTo);
32786                 this.resizeRegion = ct.getRegion().adjust(
32787                     ct.getFrameWidth('t'),
32788                     ct.getFrameWidth('l'),
32789                     -ct.getFrameWidth('b'),
32790                     -ct.getFrameWidth('r')
32791                 );
32792             }
32793
32794             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
32795             this.proxy.show();
32796             this.proxy.setBox(this.startBox);
32797             if(!this.dynamic){
32798                 this.proxy.setStyle('visibility', 'visible');
32799             }
32800         }
32801     },
32802
32803     // private
32804     onMouseDown : function(handle, e){
32805         if(this.enabled){
32806             e.stopEvent();
32807             this.activeHandle = handle;
32808             this.startSizing(e, handle);
32809         }
32810     },
32811
32812     // private
32813     onMouseUp : function(e){
32814         var size = this.resizeElement();
32815         this.resizing = false;
32816         this.handleOut();
32817         this.overlay.hide();
32818         this.proxy.hide();
32819         this.fireEvent("resize", this, size.width, size.height, e);
32820     },
32821
32822     // private
32823     updateChildSize : function(){
32824         
32825         if(this.resizeChild){
32826             var el = this.el;
32827             var child = this.resizeChild;
32828             var adj = this.adjustments;
32829             if(el.dom.offsetWidth){
32830                 var b = el.getSize(true);
32831                 child.setSize(b.width+adj[0], b.height+adj[1]);
32832             }
32833             // Second call here for IE
32834             // The first call enables instant resizing and
32835             // the second call corrects scroll bars if they
32836             // exist
32837             if(Roo.isIE){
32838                 setTimeout(function(){
32839                     if(el.dom.offsetWidth){
32840                         var b = el.getSize(true);
32841                         child.setSize(b.width+adj[0], b.height+adj[1]);
32842                     }
32843                 }, 10);
32844             }
32845         }
32846     },
32847
32848     // private
32849     snap : function(value, inc, min){
32850         if(!inc || !value) {
32851             return value;
32852         }
32853         var newValue = value;
32854         var m = value % inc;
32855         if(m > 0){
32856             if(m > (inc/2)){
32857                 newValue = value + (inc-m);
32858             }else{
32859                 newValue = value - m;
32860             }
32861         }
32862         return Math.max(min, newValue);
32863     },
32864
32865     // private
32866     resizeElement : function(){
32867         var box = this.proxy.getBox();
32868         if(this.updateBox){
32869             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
32870         }else{
32871             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
32872         }
32873         this.updateChildSize();
32874         if(!this.dynamic){
32875             this.proxy.hide();
32876         }
32877         return box;
32878     },
32879
32880     // private
32881     constrain : function(v, diff, m, mx){
32882         if(v - diff < m){
32883             diff = v - m;
32884         }else if(v - diff > mx){
32885             diff = mx - v;
32886         }
32887         return diff;
32888     },
32889
32890     // private
32891     onMouseMove : function(e){
32892         
32893         if(this.enabled){
32894             try{// try catch so if something goes wrong the user doesn't get hung
32895
32896             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
32897                 return;
32898             }
32899
32900             //var curXY = this.startPoint;
32901             var curSize = this.curSize || this.startBox;
32902             var x = this.startBox.x, y = this.startBox.y;
32903             var ox = x, oy = y;
32904             var w = curSize.width, h = curSize.height;
32905             var ow = w, oh = h;
32906             var mw = this.minWidth, mh = this.minHeight;
32907             var mxw = this.maxWidth, mxh = this.maxHeight;
32908             var wi = this.widthIncrement;
32909             var hi = this.heightIncrement;
32910
32911             var eventXY = e.getXY();
32912             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
32913             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
32914
32915             var pos = this.activeHandle.position;
32916
32917             switch(pos){
32918                 case "east":
32919                     w += diffX;
32920                     w = Math.min(Math.max(mw, w), mxw);
32921                     break;
32922              
32923                 case "south":
32924                     h += diffY;
32925                     h = Math.min(Math.max(mh, h), mxh);
32926                     break;
32927                 case "southeast":
32928                     w += diffX;
32929                     h += diffY;
32930                     w = Math.min(Math.max(mw, w), mxw);
32931                     h = Math.min(Math.max(mh, h), mxh);
32932                     break;
32933                 case "north":
32934                     diffY = this.constrain(h, diffY, mh, mxh);
32935                     y += diffY;
32936                     h -= diffY;
32937                     break;
32938                 case "hdrag":
32939                     
32940                     if (wi) {
32941                         var adiffX = Math.abs(diffX);
32942                         var sub = (adiffX % wi); // how much 
32943                         if (sub > (wi/2)) { // far enough to snap
32944                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
32945                         } else {
32946                             // remove difference.. 
32947                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
32948                         }
32949                     }
32950                     x += diffX;
32951                     x = Math.max(this.minX, x);
32952                     break;
32953                 case "west":
32954                     diffX = this.constrain(w, diffX, mw, mxw);
32955                     x += diffX;
32956                     w -= diffX;
32957                     break;
32958                 case "northeast":
32959                     w += diffX;
32960                     w = Math.min(Math.max(mw, w), mxw);
32961                     diffY = this.constrain(h, diffY, mh, mxh);
32962                     y += diffY;
32963                     h -= diffY;
32964                     break;
32965                 case "northwest":
32966                     diffX = this.constrain(w, diffX, mw, mxw);
32967                     diffY = this.constrain(h, diffY, mh, mxh);
32968                     y += diffY;
32969                     h -= diffY;
32970                     x += diffX;
32971                     w -= diffX;
32972                     break;
32973                case "southwest":
32974                     diffX = this.constrain(w, diffX, mw, mxw);
32975                     h += diffY;
32976                     h = Math.min(Math.max(mh, h), mxh);
32977                     x += diffX;
32978                     w -= diffX;
32979                     break;
32980             }
32981
32982             var sw = this.snap(w, wi, mw);
32983             var sh = this.snap(h, hi, mh);
32984             if(sw != w || sh != h){
32985                 switch(pos){
32986                     case "northeast":
32987                         y -= sh - h;
32988                     break;
32989                     case "north":
32990                         y -= sh - h;
32991                         break;
32992                     case "southwest":
32993                         x -= sw - w;
32994                     break;
32995                     case "west":
32996                         x -= sw - w;
32997                         break;
32998                     case "northwest":
32999                         x -= sw - w;
33000                         y -= sh - h;
33001                     break;
33002                 }
33003                 w = sw;
33004                 h = sh;
33005             }
33006
33007             if(this.preserveRatio){
33008                 switch(pos){
33009                     case "southeast":
33010                     case "east":
33011                         h = oh * (w/ow);
33012                         h = Math.min(Math.max(mh, h), mxh);
33013                         w = ow * (h/oh);
33014                        break;
33015                     case "south":
33016                         w = ow * (h/oh);
33017                         w = Math.min(Math.max(mw, w), mxw);
33018                         h = oh * (w/ow);
33019                         break;
33020                     case "northeast":
33021                         w = ow * (h/oh);
33022                         w = Math.min(Math.max(mw, w), mxw);
33023                         h = oh * (w/ow);
33024                     break;
33025                     case "north":
33026                         var tw = w;
33027                         w = ow * (h/oh);
33028                         w = Math.min(Math.max(mw, w), mxw);
33029                         h = oh * (w/ow);
33030                         x += (tw - w) / 2;
33031                         break;
33032                     case "southwest":
33033                         h = oh * (w/ow);
33034                         h = Math.min(Math.max(mh, h), mxh);
33035                         var tw = w;
33036                         w = ow * (h/oh);
33037                         x += tw - w;
33038                         break;
33039                     case "west":
33040                         var th = h;
33041                         h = oh * (w/ow);
33042                         h = Math.min(Math.max(mh, h), mxh);
33043                         y += (th - h) / 2;
33044                         var tw = w;
33045                         w = ow * (h/oh);
33046                         x += tw - w;
33047                        break;
33048                     case "northwest":
33049                         var tw = w;
33050                         var th = h;
33051                         h = oh * (w/ow);
33052                         h = Math.min(Math.max(mh, h), mxh);
33053                         w = ow * (h/oh);
33054                         y += th - h;
33055                         x += tw - w;
33056                        break;
33057
33058                 }
33059             }
33060             if (pos == 'hdrag') {
33061                 w = ow;
33062             }
33063             this.proxy.setBounds(x, y, w, h);
33064             if(this.dynamic){
33065                 this.resizeElement();
33066             }
33067             }catch(e){}
33068         }
33069         this.fireEvent("resizing", this, x, y, w, h, e);
33070     },
33071
33072     // private
33073     handleOver : function(){
33074         if(this.enabled){
33075             this.el.addClass("x-resizable-over");
33076         }
33077     },
33078
33079     // private
33080     handleOut : function(){
33081         if(!this.resizing){
33082             this.el.removeClass("x-resizable-over");
33083         }
33084     },
33085
33086     /**
33087      * Returns the element this component is bound to.
33088      * @return {Roo.Element}
33089      */
33090     getEl : function(){
33091         return this.el;
33092     },
33093
33094     /**
33095      * Returns the resizeChild element (or null).
33096      * @return {Roo.Element}
33097      */
33098     getResizeChild : function(){
33099         return this.resizeChild;
33100     },
33101     groupHandler : function()
33102     {
33103         
33104     },
33105     /**
33106      * Destroys this resizable. If the element was wrapped and
33107      * removeEl is not true then the element remains.
33108      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
33109      */
33110     destroy : function(removeEl){
33111         this.proxy.remove();
33112         if(this.overlay){
33113             this.overlay.removeAllListeners();
33114             this.overlay.remove();
33115         }
33116         var ps = Roo.Resizable.positions;
33117         for(var k in ps){
33118             if(typeof ps[k] != "function" && this[ps[k]]){
33119                 var h = this[ps[k]];
33120                 h.el.removeAllListeners();
33121                 h.el.remove();
33122             }
33123         }
33124         if(removeEl){
33125             this.el.update("");
33126             this.el.remove();
33127         }
33128     }
33129 });
33130
33131 // private
33132 // hash to map config positions to true positions
33133 Roo.Resizable.positions = {
33134     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
33135     hd: "hdrag"
33136 };
33137
33138 // private
33139 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
33140     if(!this.tpl){
33141         // only initialize the template if resizable is used
33142         var tpl = Roo.DomHelper.createTemplate(
33143             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
33144         );
33145         tpl.compile();
33146         Roo.Resizable.Handle.prototype.tpl = tpl;
33147     }
33148     this.position = pos;
33149     this.rz = rz;
33150     // show north drag fro topdra
33151     var handlepos = pos == 'hdrag' ? 'north' : pos;
33152     
33153     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
33154     if (pos == 'hdrag') {
33155         this.el.setStyle('cursor', 'pointer');
33156     }
33157     this.el.unselectable();
33158     if(transparent){
33159         this.el.setOpacity(0);
33160     }
33161     this.el.on("mousedown", this.onMouseDown, this);
33162     if(!disableTrackOver){
33163         this.el.on("mouseover", this.onMouseOver, this);
33164         this.el.on("mouseout", this.onMouseOut, this);
33165     }
33166 };
33167
33168 // private
33169 Roo.Resizable.Handle.prototype = {
33170     afterResize : function(rz){
33171         Roo.log('after?');
33172         // do nothing
33173     },
33174     // private
33175     onMouseDown : function(e){
33176         this.rz.onMouseDown(this, e);
33177     },
33178     // private
33179     onMouseOver : function(e){
33180         this.rz.handleOver(this, e);
33181     },
33182     // private
33183     onMouseOut : function(e){
33184         this.rz.handleOut(this, e);
33185     }
33186 };/*
33187  * Based on:
33188  * Ext JS Library 1.1.1
33189  * Copyright(c) 2006-2007, Ext JS, LLC.
33190  *
33191  * Originally Released Under LGPL - original licence link has changed is not relivant.
33192  *
33193  * Fork - LGPL
33194  * <script type="text/javascript">
33195  */
33196
33197 /**
33198  * @class Roo.Editor
33199  * @extends Roo.Component
33200  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
33201  * @constructor
33202  * Create a new Editor
33203  * @param {Roo.form.Field} field The Field object (or descendant)
33204  * @param {Object} config The config object
33205  */
33206 Roo.Editor = function(field, config){
33207     Roo.Editor.superclass.constructor.call(this, config);
33208     this.field = field;
33209     this.addEvents({
33210         /**
33211              * @event beforestartedit
33212              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
33213              * false from the handler of this event.
33214              * @param {Editor} this
33215              * @param {Roo.Element} boundEl The underlying element bound to this editor
33216              * @param {Mixed} value The field value being set
33217              */
33218         "beforestartedit" : true,
33219         /**
33220              * @event startedit
33221              * Fires when this editor is displayed
33222              * @param {Roo.Element} boundEl The underlying element bound to this editor
33223              * @param {Mixed} value The starting field value
33224              */
33225         "startedit" : true,
33226         /**
33227              * @event beforecomplete
33228              * Fires after a change has been made to the field, but before the change is reflected in the underlying
33229              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
33230              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
33231              * event will not fire since no edit actually occurred.
33232              * @param {Editor} this
33233              * @param {Mixed} value The current field value
33234              * @param {Mixed} startValue The original field value
33235              */
33236         "beforecomplete" : true,
33237         /**
33238              * @event complete
33239              * Fires after editing is complete and any changed value has been written to the underlying field.
33240              * @param {Editor} this
33241              * @param {Mixed} value The current field value
33242              * @param {Mixed} startValue The original field value
33243              */
33244         "complete" : true,
33245         /**
33246          * @event specialkey
33247          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
33248          * {@link Roo.EventObject#getKey} to determine which key was pressed.
33249          * @param {Roo.form.Field} this
33250          * @param {Roo.EventObject} e The event object
33251          */
33252         "specialkey" : true
33253     });
33254 };
33255
33256 Roo.extend(Roo.Editor, Roo.Component, {
33257     /**
33258      * @cfg {Boolean/String} autosize
33259      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
33260      * or "height" to adopt the height only (defaults to false)
33261      */
33262     /**
33263      * @cfg {Boolean} revertInvalid
33264      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
33265      * validation fails (defaults to true)
33266      */
33267     /**
33268      * @cfg {Boolean} ignoreNoChange
33269      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
33270      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
33271      * will never be ignored.
33272      */
33273     /**
33274      * @cfg {Boolean} hideEl
33275      * False to keep the bound element visible while the editor is displayed (defaults to true)
33276      */
33277     /**
33278      * @cfg {Mixed} value
33279      * The data value of the underlying field (defaults to "")
33280      */
33281     value : "",
33282     /**
33283      * @cfg {String} alignment
33284      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
33285      */
33286     alignment: "c-c?",
33287     /**
33288      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
33289      * for bottom-right shadow (defaults to "frame")
33290      */
33291     shadow : "frame",
33292     /**
33293      * @cfg {Boolean} constrain True to constrain the editor to the viewport
33294      */
33295     constrain : false,
33296     /**
33297      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
33298      */
33299     completeOnEnter : false,
33300     /**
33301      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
33302      */
33303     cancelOnEsc : false,
33304     /**
33305      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
33306      */
33307     updateEl : false,
33308
33309     // private
33310     onRender : function(ct, position){
33311         this.el = new Roo.Layer({
33312             shadow: this.shadow,
33313             cls: "x-editor",
33314             parentEl : ct,
33315             shim : this.shim,
33316             shadowOffset:4,
33317             id: this.id,
33318             constrain: this.constrain
33319         });
33320         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
33321         if(this.field.msgTarget != 'title'){
33322             this.field.msgTarget = 'qtip';
33323         }
33324         this.field.render(this.el);
33325         if(Roo.isGecko){
33326             this.field.el.dom.setAttribute('autocomplete', 'off');
33327         }
33328         this.field.on("specialkey", this.onSpecialKey, this);
33329         if(this.swallowKeys){
33330             this.field.el.swallowEvent(['keydown','keypress']);
33331         }
33332         this.field.show();
33333         this.field.on("blur", this.onBlur, this);
33334         if(this.field.grow){
33335             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
33336         }
33337     },
33338
33339     onSpecialKey : function(field, e)
33340     {
33341         //Roo.log('editor onSpecialKey');
33342         if(this.completeOnEnter && e.getKey() == e.ENTER){
33343             e.stopEvent();
33344             this.completeEdit();
33345             return;
33346         }
33347         // do not fire special key otherwise it might hide close the editor...
33348         if(e.getKey() == e.ENTER){    
33349             return;
33350         }
33351         if(this.cancelOnEsc && e.getKey() == e.ESC){
33352             this.cancelEdit();
33353             return;
33354         } 
33355         this.fireEvent('specialkey', field, e);
33356     
33357     },
33358
33359     /**
33360      * Starts the editing process and shows the editor.
33361      * @param {String/HTMLElement/Element} el The element to edit
33362      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
33363       * to the innerHTML of el.
33364      */
33365     startEdit : function(el, value){
33366         if(this.editing){
33367             this.completeEdit();
33368         }
33369         this.boundEl = Roo.get(el);
33370         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
33371         if(!this.rendered){
33372             this.render(this.parentEl || document.body);
33373         }
33374         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
33375             return;
33376         }
33377         this.startValue = v;
33378         this.field.setValue(v);
33379         if(this.autoSize){
33380             var sz = this.boundEl.getSize();
33381             switch(this.autoSize){
33382                 case "width":
33383                 this.setSize(sz.width,  "");
33384                 break;
33385                 case "height":
33386                 this.setSize("",  sz.height);
33387                 break;
33388                 default:
33389                 this.setSize(sz.width,  sz.height);
33390             }
33391         }
33392         this.el.alignTo(this.boundEl, this.alignment);
33393         this.editing = true;
33394         if(Roo.QuickTips){
33395             Roo.QuickTips.disable();
33396         }
33397         this.show();
33398     },
33399
33400     /**
33401      * Sets the height and width of this editor.
33402      * @param {Number} width The new width
33403      * @param {Number} height The new height
33404      */
33405     setSize : function(w, h){
33406         this.field.setSize(w, h);
33407         if(this.el){
33408             this.el.sync();
33409         }
33410     },
33411
33412     /**
33413      * Realigns the editor to the bound field based on the current alignment config value.
33414      */
33415     realign : function(){
33416         this.el.alignTo(this.boundEl, this.alignment);
33417     },
33418
33419     /**
33420      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
33421      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
33422      */
33423     completeEdit : function(remainVisible){
33424         if(!this.editing){
33425             return;
33426         }
33427         var v = this.getValue();
33428         if(this.revertInvalid !== false && !this.field.isValid()){
33429             v = this.startValue;
33430             this.cancelEdit(true);
33431         }
33432         if(String(v) === String(this.startValue) && this.ignoreNoChange){
33433             this.editing = false;
33434             this.hide();
33435             return;
33436         }
33437         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
33438             this.editing = false;
33439             if(this.updateEl && this.boundEl){
33440                 this.boundEl.update(v);
33441             }
33442             if(remainVisible !== true){
33443                 this.hide();
33444             }
33445             this.fireEvent("complete", this, v, this.startValue);
33446         }
33447     },
33448
33449     // private
33450     onShow : function(){
33451         this.el.show();
33452         if(this.hideEl !== false){
33453             this.boundEl.hide();
33454         }
33455         this.field.show();
33456         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
33457             this.fixIEFocus = true;
33458             this.deferredFocus.defer(50, this);
33459         }else{
33460             this.field.focus();
33461         }
33462         this.fireEvent("startedit", this.boundEl, this.startValue);
33463     },
33464
33465     deferredFocus : function(){
33466         if(this.editing){
33467             this.field.focus();
33468         }
33469     },
33470
33471     /**
33472      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
33473      * reverted to the original starting value.
33474      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
33475      * cancel (defaults to false)
33476      */
33477     cancelEdit : function(remainVisible){
33478         if(this.editing){
33479             this.setValue(this.startValue);
33480             if(remainVisible !== true){
33481                 this.hide();
33482             }
33483         }
33484     },
33485
33486     // private
33487     onBlur : function(){
33488         if(this.allowBlur !== true && this.editing){
33489             this.completeEdit();
33490         }
33491     },
33492
33493     // private
33494     onHide : function(){
33495         if(this.editing){
33496             this.completeEdit();
33497             return;
33498         }
33499         this.field.blur();
33500         if(this.field.collapse){
33501             this.field.collapse();
33502         }
33503         this.el.hide();
33504         if(this.hideEl !== false){
33505             this.boundEl.show();
33506         }
33507         if(Roo.QuickTips){
33508             Roo.QuickTips.enable();
33509         }
33510     },
33511
33512     /**
33513      * Sets the data value of the editor
33514      * @param {Mixed} value Any valid value supported by the underlying field
33515      */
33516     setValue : function(v){
33517         this.field.setValue(v);
33518     },
33519
33520     /**
33521      * Gets the data value of the editor
33522      * @return {Mixed} The data value
33523      */
33524     getValue : function(){
33525         return this.field.getValue();
33526     }
33527 });/*
33528  * Based on:
33529  * Ext JS Library 1.1.1
33530  * Copyright(c) 2006-2007, Ext JS, LLC.
33531  *
33532  * Originally Released Under LGPL - original licence link has changed is not relivant.
33533  *
33534  * Fork - LGPL
33535  * <script type="text/javascript">
33536  */
33537  
33538 /**
33539  * @class Roo.BasicDialog
33540  * @extends Roo.util.Observable
33541  * @parent none builder
33542  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
33543  * <pre><code>
33544 var dlg = new Roo.BasicDialog("my-dlg", {
33545     height: 200,
33546     width: 300,
33547     minHeight: 100,
33548     minWidth: 150,
33549     modal: true,
33550     proxyDrag: true,
33551     shadow: true
33552 });
33553 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
33554 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
33555 dlg.addButton('Cancel', dlg.hide, dlg);
33556 dlg.show();
33557 </code></pre>
33558   <b>A Dialog should always be a direct child of the body element.</b>
33559  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
33560  * @cfg {String} title Default text to display in the title bar (defaults to null)
33561  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33562  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33563  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
33564  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
33565  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
33566  * (defaults to null with no animation)
33567  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
33568  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
33569  * property for valid values (defaults to 'all')
33570  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
33571  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
33572  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
33573  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
33574  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
33575  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
33576  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
33577  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
33578  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
33579  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
33580  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
33581  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
33582  * draggable = true (defaults to false)
33583  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
33584  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
33585  * shadow (defaults to false)
33586  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
33587  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
33588  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
33589  * @cfg {Array} buttons Array of buttons
33590  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
33591  * @constructor
33592  * Create a new BasicDialog.
33593  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
33594  * @param {Object} config Configuration options
33595  */
33596 Roo.BasicDialog = function(el, config){
33597     this.el = Roo.get(el);
33598     var dh = Roo.DomHelper;
33599     if(!this.el && config && config.autoCreate){
33600         if(typeof config.autoCreate == "object"){
33601             if(!config.autoCreate.id){
33602                 config.autoCreate.id = el;
33603             }
33604             this.el = dh.append(document.body,
33605                         config.autoCreate, true);
33606         }else{
33607             this.el = dh.append(document.body,
33608                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
33609         }
33610     }
33611     el = this.el;
33612     el.setDisplayed(true);
33613     el.hide = this.hideAction;
33614     this.id = el.id;
33615     el.addClass("x-dlg");
33616
33617     Roo.apply(this, config);
33618
33619     this.proxy = el.createProxy("x-dlg-proxy");
33620     this.proxy.hide = this.hideAction;
33621     this.proxy.setOpacity(.5);
33622     this.proxy.hide();
33623
33624     if(config.width){
33625         el.setWidth(config.width);
33626     }
33627     if(config.height){
33628         el.setHeight(config.height);
33629     }
33630     this.size = el.getSize();
33631     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
33632         this.xy = [config.x,config.y];
33633     }else{
33634         this.xy = el.getCenterXY(true);
33635     }
33636     /** The header element @type Roo.Element */
33637     this.header = el.child("> .x-dlg-hd");
33638     /** The body element @type Roo.Element */
33639     this.body = el.child("> .x-dlg-bd");
33640     /** The footer element @type Roo.Element */
33641     this.footer = el.child("> .x-dlg-ft");
33642
33643     if(!this.header){
33644         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
33645     }
33646     if(!this.body){
33647         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
33648     }
33649
33650     this.header.unselectable();
33651     if(this.title){
33652         this.header.update(this.title);
33653     }
33654     // this element allows the dialog to be focused for keyboard event
33655     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
33656     this.focusEl.swallowEvent("click", true);
33657
33658     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
33659
33660     // wrap the body and footer for special rendering
33661     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
33662     if(this.footer){
33663         this.bwrap.dom.appendChild(this.footer.dom);
33664     }
33665
33666     this.bg = this.el.createChild({
33667         tag: "div", cls:"x-dlg-bg",
33668         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
33669     });
33670     this.centerBg = this.bg.child("div.x-dlg-bg-center");
33671
33672
33673     if(this.autoScroll !== false && !this.autoTabs){
33674         this.body.setStyle("overflow", "auto");
33675     }
33676
33677     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
33678
33679     if(this.closable !== false){
33680         this.el.addClass("x-dlg-closable");
33681         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
33682         this.close.on("click", this.closeClick, this);
33683         this.close.addClassOnOver("x-dlg-close-over");
33684     }
33685     if(this.collapsible !== false){
33686         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
33687         this.collapseBtn.on("click", this.collapseClick, this);
33688         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
33689         this.header.on("dblclick", this.collapseClick, this);
33690     }
33691     if(this.resizable !== false){
33692         this.el.addClass("x-dlg-resizable");
33693         this.resizer = new Roo.Resizable(el, {
33694             minWidth: this.minWidth || 80,
33695             minHeight:this.minHeight || 80,
33696             handles: this.resizeHandles || "all",
33697             pinned: true
33698         });
33699         this.resizer.on("beforeresize", this.beforeResize, this);
33700         this.resizer.on("resize", this.onResize, this);
33701     }
33702     if(this.draggable !== false){
33703         el.addClass("x-dlg-draggable");
33704         if (!this.proxyDrag) {
33705             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
33706         }
33707         else {
33708             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
33709         }
33710         dd.setHandleElId(this.header.id);
33711         dd.endDrag = this.endMove.createDelegate(this);
33712         dd.startDrag = this.startMove.createDelegate(this);
33713         dd.onDrag = this.onDrag.createDelegate(this);
33714         dd.scroll = false;
33715         this.dd = dd;
33716     }
33717     if(this.modal){
33718         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
33719         this.mask.enableDisplayMode("block");
33720         this.mask.hide();
33721         this.el.addClass("x-dlg-modal");
33722     }
33723     if(this.shadow){
33724         this.shadow = new Roo.Shadow({
33725             mode : typeof this.shadow == "string" ? this.shadow : "sides",
33726             offset : this.shadowOffset
33727         });
33728     }else{
33729         this.shadowOffset = 0;
33730     }
33731     if(Roo.useShims && this.shim !== false){
33732         this.shim = this.el.createShim();
33733         this.shim.hide = this.hideAction;
33734         this.shim.hide();
33735     }else{
33736         this.shim = false;
33737     }
33738     if(this.autoTabs){
33739         this.initTabs();
33740     }
33741     if (this.buttons) { 
33742         var bts= this.buttons;
33743         this.buttons = [];
33744         Roo.each(bts, function(b) {
33745             this.addButton(b);
33746         }, this);
33747     }
33748     
33749     
33750     this.addEvents({
33751         /**
33752          * @event keydown
33753          * Fires when a key is pressed
33754          * @param {Roo.BasicDialog} this
33755          * @param {Roo.EventObject} e
33756          */
33757         "keydown" : true,
33758         /**
33759          * @event move
33760          * Fires when this dialog is moved by the user.
33761          * @param {Roo.BasicDialog} this
33762          * @param {Number} x The new page X
33763          * @param {Number} y The new page Y
33764          */
33765         "move" : true,
33766         /**
33767          * @event resize
33768          * Fires when this dialog is resized by the user.
33769          * @param {Roo.BasicDialog} this
33770          * @param {Number} width The new width
33771          * @param {Number} height The new height
33772          */
33773         "resize" : true,
33774         /**
33775          * @event beforehide
33776          * Fires before this dialog is hidden.
33777          * @param {Roo.BasicDialog} this
33778          */
33779         "beforehide" : true,
33780         /**
33781          * @event hide
33782          * Fires when this dialog is hidden.
33783          * @param {Roo.BasicDialog} this
33784          */
33785         "hide" : true,
33786         /**
33787          * @event beforeshow
33788          * Fires before this dialog is shown.
33789          * @param {Roo.BasicDialog} this
33790          */
33791         "beforeshow" : true,
33792         /**
33793          * @event show
33794          * Fires when this dialog is shown.
33795          * @param {Roo.BasicDialog} this
33796          */
33797         "show" : true
33798     });
33799     el.on("keydown", this.onKeyDown, this);
33800     el.on("mousedown", this.toFront, this);
33801     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
33802     this.el.hide();
33803     Roo.DialogManager.register(this);
33804     Roo.BasicDialog.superclass.constructor.call(this);
33805 };
33806
33807 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
33808     shadowOffset: Roo.isIE ? 6 : 5,
33809     minHeight: 80,
33810     minWidth: 200,
33811     minButtonWidth: 75,
33812     defaultButton: null,
33813     buttonAlign: "right",
33814     tabTag: 'div',
33815     firstShow: true,
33816
33817     /**
33818      * Sets the dialog title text
33819      * @param {String} text The title text to display
33820      * @return {Roo.BasicDialog} this
33821      */
33822     setTitle : function(text){
33823         this.header.update(text);
33824         return this;
33825     },
33826
33827     // private
33828     closeClick : function(){
33829         this.hide();
33830     },
33831
33832     // private
33833     collapseClick : function(){
33834         this[this.collapsed ? "expand" : "collapse"]();
33835     },
33836
33837     /**
33838      * Collapses the dialog to its minimized state (only the title bar is visible).
33839      * Equivalent to the user clicking the collapse dialog button.
33840      */
33841     collapse : function(){
33842         if(!this.collapsed){
33843             this.collapsed = true;
33844             this.el.addClass("x-dlg-collapsed");
33845             this.restoreHeight = this.el.getHeight();
33846             this.resizeTo(this.el.getWidth(), this.header.getHeight());
33847         }
33848     },
33849
33850     /**
33851      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
33852      * clicking the expand dialog button.
33853      */
33854     expand : function(){
33855         if(this.collapsed){
33856             this.collapsed = false;
33857             this.el.removeClass("x-dlg-collapsed");
33858             this.resizeTo(this.el.getWidth(), this.restoreHeight);
33859         }
33860     },
33861
33862     /**
33863      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
33864      * @return {Roo.TabPanel} The tabs component
33865      */
33866     initTabs : function(){
33867         var tabs = this.getTabs();
33868         while(tabs.getTab(0)){
33869             tabs.removeTab(0);
33870         }
33871         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
33872             var dom = el.dom;
33873             tabs.addTab(Roo.id(dom), dom.title);
33874             dom.title = "";
33875         });
33876         tabs.activate(0);
33877         return tabs;
33878     },
33879
33880     // private
33881     beforeResize : function(){
33882         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
33883     },
33884
33885     // private
33886     onResize : function(){
33887         this.refreshSize();
33888         this.syncBodyHeight();
33889         this.adjustAssets();
33890         this.focus();
33891         this.fireEvent("resize", this, this.size.width, this.size.height);
33892     },
33893
33894     // private
33895     onKeyDown : function(e){
33896         if(this.isVisible()){
33897             this.fireEvent("keydown", this, e);
33898         }
33899     },
33900
33901     /**
33902      * Resizes the dialog.
33903      * @param {Number} width
33904      * @param {Number} height
33905      * @return {Roo.BasicDialog} this
33906      */
33907     resizeTo : function(width, height){
33908         this.el.setSize(width, height);
33909         this.size = {width: width, height: height};
33910         this.syncBodyHeight();
33911         if(this.fixedcenter){
33912             this.center();
33913         }
33914         if(this.isVisible()){
33915             this.constrainXY();
33916             this.adjustAssets();
33917         }
33918         this.fireEvent("resize", this, width, height);
33919         return this;
33920     },
33921
33922
33923     /**
33924      * Resizes the dialog to fit the specified content size.
33925      * @param {Number} width
33926      * @param {Number} height
33927      * @return {Roo.BasicDialog} this
33928      */
33929     setContentSize : function(w, h){
33930         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
33931         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
33932         //if(!this.el.isBorderBox()){
33933             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
33934             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
33935         //}
33936         if(this.tabs){
33937             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
33938             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
33939         }
33940         this.resizeTo(w, h);
33941         return this;
33942     },
33943
33944     /**
33945      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
33946      * executed in response to a particular key being pressed while the dialog is active.
33947      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
33948      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
33949      * @param {Function} fn The function to call
33950      * @param {Object} scope (optional) The scope of the function
33951      * @return {Roo.BasicDialog} this
33952      */
33953     addKeyListener : function(key, fn, scope){
33954         var keyCode, shift, ctrl, alt;
33955         if(typeof key == "object" && !(key instanceof Array)){
33956             keyCode = key["key"];
33957             shift = key["shift"];
33958             ctrl = key["ctrl"];
33959             alt = key["alt"];
33960         }else{
33961             keyCode = key;
33962         }
33963         var handler = function(dlg, e){
33964             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
33965                 var k = e.getKey();
33966                 if(keyCode instanceof Array){
33967                     for(var i = 0, len = keyCode.length; i < len; i++){
33968                         if(keyCode[i] == k){
33969                           fn.call(scope || window, dlg, k, e);
33970                           return;
33971                         }
33972                     }
33973                 }else{
33974                     if(k == keyCode){
33975                         fn.call(scope || window, dlg, k, e);
33976                     }
33977                 }
33978             }
33979         };
33980         this.on("keydown", handler);
33981         return this;
33982     },
33983
33984     /**
33985      * Returns the TabPanel component (creates it if it doesn't exist).
33986      * Note: If you wish to simply check for the existence of tabs without creating them,
33987      * check for a null 'tabs' property.
33988      * @return {Roo.TabPanel} The tabs component
33989      */
33990     getTabs : function(){
33991         if(!this.tabs){
33992             this.el.addClass("x-dlg-auto-tabs");
33993             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
33994             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
33995         }
33996         return this.tabs;
33997     },
33998
33999     /**
34000      * Adds a button to the footer section of the dialog.
34001      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
34002      * object or a valid Roo.DomHelper element config
34003      * @param {Function} handler The function called when the button is clicked
34004      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
34005      * @return {Roo.Button} The new button
34006      */
34007     addButton : function(config, handler, scope){
34008         var dh = Roo.DomHelper;
34009         if(!this.footer){
34010             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
34011         }
34012         if(!this.btnContainer){
34013             var tb = this.footer.createChild({
34014
34015                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
34016                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
34017             }, null, true);
34018             this.btnContainer = tb.firstChild.firstChild.firstChild;
34019         }
34020         var bconfig = {
34021             handler: handler,
34022             scope: scope,
34023             minWidth: this.minButtonWidth,
34024             hideParent:true
34025         };
34026         if(typeof config == "string"){
34027             bconfig.text = config;
34028         }else{
34029             if(config.tag){
34030                 bconfig.dhconfig = config;
34031             }else{
34032                 Roo.apply(bconfig, config);
34033             }
34034         }
34035         var fc = false;
34036         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
34037             bconfig.position = Math.max(0, bconfig.position);
34038             fc = this.btnContainer.childNodes[bconfig.position];
34039         }
34040          
34041         var btn = new Roo.Button(
34042             fc ? 
34043                 this.btnContainer.insertBefore(document.createElement("td"),fc)
34044                 : this.btnContainer.appendChild(document.createElement("td")),
34045             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
34046             bconfig
34047         );
34048         this.syncBodyHeight();
34049         if(!this.buttons){
34050             /**
34051              * Array of all the buttons that have been added to this dialog via addButton
34052              * @type Array
34053              */
34054             this.buttons = [];
34055         }
34056         this.buttons.push(btn);
34057         return btn;
34058     },
34059
34060     /**
34061      * Sets the default button to be focused when the dialog is displayed.
34062      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
34063      * @return {Roo.BasicDialog} this
34064      */
34065     setDefaultButton : function(btn){
34066         this.defaultButton = btn;
34067         return this;
34068     },
34069
34070     // private
34071     getHeaderFooterHeight : function(safe){
34072         var height = 0;
34073         if(this.header){
34074            height += this.header.getHeight();
34075         }
34076         if(this.footer){
34077            var fm = this.footer.getMargins();
34078             height += (this.footer.getHeight()+fm.top+fm.bottom);
34079         }
34080         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
34081         height += this.centerBg.getPadding("tb");
34082         return height;
34083     },
34084
34085     // private
34086     syncBodyHeight : function()
34087     {
34088         var bd = this.body, // the text
34089             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
34090             bw = this.bwrap;
34091         var height = this.size.height - this.getHeaderFooterHeight(false);
34092         bd.setHeight(height-bd.getMargins("tb"));
34093         var hh = this.header.getHeight();
34094         var h = this.size.height-hh;
34095         cb.setHeight(h);
34096         
34097         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
34098         bw.setHeight(h-cb.getPadding("tb"));
34099         
34100         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
34101         bd.setWidth(bw.getWidth(true));
34102         if(this.tabs){
34103             this.tabs.syncHeight();
34104             if(Roo.isIE){
34105                 this.tabs.el.repaint();
34106             }
34107         }
34108     },
34109
34110     /**
34111      * Restores the previous state of the dialog if Roo.state is configured.
34112      * @return {Roo.BasicDialog} this
34113      */
34114     restoreState : function(){
34115         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
34116         if(box && box.width){
34117             this.xy = [box.x, box.y];
34118             this.resizeTo(box.width, box.height);
34119         }
34120         return this;
34121     },
34122
34123     // private
34124     beforeShow : function(){
34125         this.expand();
34126         if(this.fixedcenter){
34127             this.xy = this.el.getCenterXY(true);
34128         }
34129         if(this.modal){
34130             Roo.get(document.body).addClass("x-body-masked");
34131             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34132             this.mask.show();
34133         }
34134         this.constrainXY();
34135     },
34136
34137     // private
34138     animShow : function(){
34139         var b = Roo.get(this.animateTarget).getBox();
34140         this.proxy.setSize(b.width, b.height);
34141         this.proxy.setLocation(b.x, b.y);
34142         this.proxy.show();
34143         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
34144                     true, .35, this.showEl.createDelegate(this));
34145     },
34146
34147     /**
34148      * Shows the dialog.
34149      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
34150      * @return {Roo.BasicDialog} this
34151      */
34152     show : function(animateTarget){
34153         if (this.fireEvent("beforeshow", this) === false){
34154             return;
34155         }
34156         if(this.syncHeightBeforeShow){
34157             this.syncBodyHeight();
34158         }else if(this.firstShow){
34159             this.firstShow = false;
34160             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
34161         }
34162         this.animateTarget = animateTarget || this.animateTarget;
34163         if(!this.el.isVisible()){
34164             this.beforeShow();
34165             if(this.animateTarget && Roo.get(this.animateTarget)){
34166                 this.animShow();
34167             }else{
34168                 this.showEl();
34169             }
34170         }
34171         return this;
34172     },
34173
34174     // private
34175     showEl : function(){
34176         this.proxy.hide();
34177         this.el.setXY(this.xy);
34178         this.el.show();
34179         this.adjustAssets(true);
34180         this.toFront();
34181         this.focus();
34182         // IE peekaboo bug - fix found by Dave Fenwick
34183         if(Roo.isIE){
34184             this.el.repaint();
34185         }
34186         this.fireEvent("show", this);
34187     },
34188
34189     /**
34190      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
34191      * dialog itself will receive focus.
34192      */
34193     focus : function(){
34194         if(this.defaultButton){
34195             this.defaultButton.focus();
34196         }else{
34197             this.focusEl.focus();
34198         }
34199     },
34200
34201     // private
34202     constrainXY : function(){
34203         if(this.constraintoviewport !== false){
34204             if(!this.viewSize){
34205                 if(this.container){
34206                     var s = this.container.getSize();
34207                     this.viewSize = [s.width, s.height];
34208                 }else{
34209                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
34210                 }
34211             }
34212             var s = Roo.get(this.container||document).getScroll();
34213
34214             var x = this.xy[0], y = this.xy[1];
34215             var w = this.size.width, h = this.size.height;
34216             var vw = this.viewSize[0], vh = this.viewSize[1];
34217             // only move it if it needs it
34218             var moved = false;
34219             // first validate right/bottom
34220             if(x + w > vw+s.left){
34221                 x = vw - w;
34222                 moved = true;
34223             }
34224             if(y + h > vh+s.top){
34225                 y = vh - h;
34226                 moved = true;
34227             }
34228             // then make sure top/left isn't negative
34229             if(x < s.left){
34230                 x = s.left;
34231                 moved = true;
34232             }
34233             if(y < s.top){
34234                 y = s.top;
34235                 moved = true;
34236             }
34237             if(moved){
34238                 // cache xy
34239                 this.xy = [x, y];
34240                 if(this.isVisible()){
34241                     this.el.setLocation(x, y);
34242                     this.adjustAssets();
34243                 }
34244             }
34245         }
34246     },
34247
34248     // private
34249     onDrag : function(){
34250         if(!this.proxyDrag){
34251             this.xy = this.el.getXY();
34252             this.adjustAssets();
34253         }
34254     },
34255
34256     // private
34257     adjustAssets : function(doShow){
34258         var x = this.xy[0], y = this.xy[1];
34259         var w = this.size.width, h = this.size.height;
34260         if(doShow === true){
34261             if(this.shadow){
34262                 this.shadow.show(this.el);
34263             }
34264             if(this.shim){
34265                 this.shim.show();
34266             }
34267         }
34268         if(this.shadow && this.shadow.isVisible()){
34269             this.shadow.show(this.el);
34270         }
34271         if(this.shim && this.shim.isVisible()){
34272             this.shim.setBounds(x, y, w, h);
34273         }
34274     },
34275
34276     // private
34277     adjustViewport : function(w, h){
34278         if(!w || !h){
34279             w = Roo.lib.Dom.getViewWidth();
34280             h = Roo.lib.Dom.getViewHeight();
34281         }
34282         // cache the size
34283         this.viewSize = [w, h];
34284         if(this.modal && this.mask.isVisible()){
34285             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
34286             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34287         }
34288         if(this.isVisible()){
34289             this.constrainXY();
34290         }
34291     },
34292
34293     /**
34294      * Destroys this dialog and all its supporting elements (including any tabs, shim,
34295      * shadow, proxy, mask, etc.)  Also removes all event listeners.
34296      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
34297      */
34298     destroy : function(removeEl){
34299         if(this.isVisible()){
34300             this.animateTarget = null;
34301             this.hide();
34302         }
34303         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
34304         if(this.tabs){
34305             this.tabs.destroy(removeEl);
34306         }
34307         Roo.destroy(
34308              this.shim,
34309              this.proxy,
34310              this.resizer,
34311              this.close,
34312              this.mask
34313         );
34314         if(this.dd){
34315             this.dd.unreg();
34316         }
34317         if(this.buttons){
34318            for(var i = 0, len = this.buttons.length; i < len; i++){
34319                this.buttons[i].destroy();
34320            }
34321         }
34322         this.el.removeAllListeners();
34323         if(removeEl === true){
34324             this.el.update("");
34325             this.el.remove();
34326         }
34327         Roo.DialogManager.unregister(this);
34328     },
34329
34330     // private
34331     startMove : function(){
34332         if(this.proxyDrag){
34333             this.proxy.show();
34334         }
34335         if(this.constraintoviewport !== false){
34336             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
34337         }
34338     },
34339
34340     // private
34341     endMove : function(){
34342         if(!this.proxyDrag){
34343             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
34344         }else{
34345             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
34346             this.proxy.hide();
34347         }
34348         this.refreshSize();
34349         this.adjustAssets();
34350         this.focus();
34351         this.fireEvent("move", this, this.xy[0], this.xy[1]);
34352     },
34353
34354     /**
34355      * Brings this dialog to the front of any other visible dialogs
34356      * @return {Roo.BasicDialog} this
34357      */
34358     toFront : function(){
34359         Roo.DialogManager.bringToFront(this);
34360         return this;
34361     },
34362
34363     /**
34364      * Sends this dialog to the back (under) of any other visible dialogs
34365      * @return {Roo.BasicDialog} this
34366      */
34367     toBack : function(){
34368         Roo.DialogManager.sendToBack(this);
34369         return this;
34370     },
34371
34372     /**
34373      * Centers this dialog in the viewport
34374      * @return {Roo.BasicDialog} this
34375      */
34376     center : function(){
34377         var xy = this.el.getCenterXY(true);
34378         this.moveTo(xy[0], xy[1]);
34379         return this;
34380     },
34381
34382     /**
34383      * Moves the dialog's top-left corner to the specified point
34384      * @param {Number} x
34385      * @param {Number} y
34386      * @return {Roo.BasicDialog} this
34387      */
34388     moveTo : function(x, y){
34389         this.xy = [x,y];
34390         if(this.isVisible()){
34391             this.el.setXY(this.xy);
34392             this.adjustAssets();
34393         }
34394         return this;
34395     },
34396
34397     /**
34398      * Aligns the dialog to the specified element
34399      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34400      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
34401      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34402      * @return {Roo.BasicDialog} this
34403      */
34404     alignTo : function(element, position, offsets){
34405         this.xy = this.el.getAlignToXY(element, position, offsets);
34406         if(this.isVisible()){
34407             this.el.setXY(this.xy);
34408             this.adjustAssets();
34409         }
34410         return this;
34411     },
34412
34413     /**
34414      * Anchors an element to another element and realigns it when the window is resized.
34415      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34416      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
34417      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34418      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
34419      * is a number, it is used as the buffer delay (defaults to 50ms).
34420      * @return {Roo.BasicDialog} this
34421      */
34422     anchorTo : function(el, alignment, offsets, monitorScroll){
34423         var action = function(){
34424             this.alignTo(el, alignment, offsets);
34425         };
34426         Roo.EventManager.onWindowResize(action, this);
34427         var tm = typeof monitorScroll;
34428         if(tm != 'undefined'){
34429             Roo.EventManager.on(window, 'scroll', action, this,
34430                 {buffer: tm == 'number' ? monitorScroll : 50});
34431         }
34432         action.call(this);
34433         return this;
34434     },
34435
34436     /**
34437      * Returns true if the dialog is visible
34438      * @return {Boolean}
34439      */
34440     isVisible : function(){
34441         return this.el.isVisible();
34442     },
34443
34444     // private
34445     animHide : function(callback){
34446         var b = Roo.get(this.animateTarget).getBox();
34447         this.proxy.show();
34448         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
34449         this.el.hide();
34450         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
34451                     this.hideEl.createDelegate(this, [callback]));
34452     },
34453
34454     /**
34455      * Hides the dialog.
34456      * @param {Function} callback (optional) Function to call when the dialog is hidden
34457      * @return {Roo.BasicDialog} this
34458      */
34459     hide : function(callback){
34460         if (this.fireEvent("beforehide", this) === false){
34461             return;
34462         }
34463         if(this.shadow){
34464             this.shadow.hide();
34465         }
34466         if(this.shim) {
34467           this.shim.hide();
34468         }
34469         // sometimes animateTarget seems to get set.. causing problems...
34470         // this just double checks..
34471         if(this.animateTarget && Roo.get(this.animateTarget)) {
34472            this.animHide(callback);
34473         }else{
34474             this.el.hide();
34475             this.hideEl(callback);
34476         }
34477         return this;
34478     },
34479
34480     // private
34481     hideEl : function(callback){
34482         this.proxy.hide();
34483         if(this.modal){
34484             this.mask.hide();
34485             Roo.get(document.body).removeClass("x-body-masked");
34486         }
34487         this.fireEvent("hide", this);
34488         if(typeof callback == "function"){
34489             callback();
34490         }
34491     },
34492
34493     // private
34494     hideAction : function(){
34495         this.setLeft("-10000px");
34496         this.setTop("-10000px");
34497         this.setStyle("visibility", "hidden");
34498     },
34499
34500     // private
34501     refreshSize : function(){
34502         this.size = this.el.getSize();
34503         this.xy = this.el.getXY();
34504         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
34505     },
34506
34507     // private
34508     // z-index is managed by the DialogManager and may be overwritten at any time
34509     setZIndex : function(index){
34510         if(this.modal){
34511             this.mask.setStyle("z-index", index);
34512         }
34513         if(this.shim){
34514             this.shim.setStyle("z-index", ++index);
34515         }
34516         if(this.shadow){
34517             this.shadow.setZIndex(++index);
34518         }
34519         this.el.setStyle("z-index", ++index);
34520         if(this.proxy){
34521             this.proxy.setStyle("z-index", ++index);
34522         }
34523         if(this.resizer){
34524             this.resizer.proxy.setStyle("z-index", ++index);
34525         }
34526
34527         this.lastZIndex = index;
34528     },
34529
34530     /**
34531      * Returns the element for this dialog
34532      * @return {Roo.Element} The underlying dialog Element
34533      */
34534     getEl : function(){
34535         return this.el;
34536     }
34537 });
34538
34539 /**
34540  * @class Roo.DialogManager
34541  * Provides global access to BasicDialogs that have been created and
34542  * support for z-indexing (layering) multiple open dialogs.
34543  */
34544 Roo.DialogManager = function(){
34545     var list = {};
34546     var accessList = [];
34547     var front = null;
34548
34549     // private
34550     var sortDialogs = function(d1, d2){
34551         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
34552     };
34553
34554     // private
34555     var orderDialogs = function(){
34556         accessList.sort(sortDialogs);
34557         var seed = Roo.DialogManager.zseed;
34558         for(var i = 0, len = accessList.length; i < len; i++){
34559             var dlg = accessList[i];
34560             if(dlg){
34561                 dlg.setZIndex(seed + (i*10));
34562             }
34563         }
34564     };
34565
34566     return {
34567         /**
34568          * The starting z-index for BasicDialogs (defaults to 9000)
34569          * @type Number The z-index value
34570          */
34571         zseed : 9000,
34572
34573         // private
34574         register : function(dlg){
34575             list[dlg.id] = dlg;
34576             accessList.push(dlg);
34577         },
34578
34579         // private
34580         unregister : function(dlg){
34581             delete list[dlg.id];
34582             var i=0;
34583             var len=0;
34584             if(!accessList.indexOf){
34585                 for(  i = 0, len = accessList.length; i < len; i++){
34586                     if(accessList[i] == dlg){
34587                         accessList.splice(i, 1);
34588                         return;
34589                     }
34590                 }
34591             }else{
34592                  i = accessList.indexOf(dlg);
34593                 if(i != -1){
34594                     accessList.splice(i, 1);
34595                 }
34596             }
34597         },
34598
34599         /**
34600          * Gets a registered dialog by id
34601          * @param {String/Object} id The id of the dialog or a dialog
34602          * @return {Roo.BasicDialog} this
34603          */
34604         get : function(id){
34605             return typeof id == "object" ? id : list[id];
34606         },
34607
34608         /**
34609          * Brings the specified dialog to the front
34610          * @param {String/Object} dlg The id of the dialog or a dialog
34611          * @return {Roo.BasicDialog} this
34612          */
34613         bringToFront : function(dlg){
34614             dlg = this.get(dlg);
34615             if(dlg != front){
34616                 front = dlg;
34617                 dlg._lastAccess = new Date().getTime();
34618                 orderDialogs();
34619             }
34620             return dlg;
34621         },
34622
34623         /**
34624          * Sends the specified dialog to the back
34625          * @param {String/Object} dlg The id of the dialog or a dialog
34626          * @return {Roo.BasicDialog} this
34627          */
34628         sendToBack : function(dlg){
34629             dlg = this.get(dlg);
34630             dlg._lastAccess = -(new Date().getTime());
34631             orderDialogs();
34632             return dlg;
34633         },
34634
34635         /**
34636          * Hides all dialogs
34637          */
34638         hideAll : function(){
34639             for(var id in list){
34640                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
34641                     list[id].hide();
34642                 }
34643             }
34644         }
34645     };
34646 }();
34647
34648 /**
34649  * @class Roo.LayoutDialog
34650  * @extends Roo.BasicDialog
34651  * @children Roo.ContentPanel
34652  * @parent builder none
34653  * Dialog which provides adjustments for working with a layout in a Dialog.
34654  * Add your necessary layout config options to the dialog's config.<br>
34655  * Example usage (including a nested layout):
34656  * <pre><code>
34657 if(!dialog){
34658     dialog = new Roo.LayoutDialog("download-dlg", {
34659         modal: true,
34660         width:600,
34661         height:450,
34662         shadow:true,
34663         minWidth:500,
34664         minHeight:350,
34665         autoTabs:true,
34666         proxyDrag:true,
34667         // layout config merges with the dialog config
34668         center:{
34669             tabPosition: "top",
34670             alwaysShowTabs: true
34671         }
34672     });
34673     dialog.addKeyListener(27, dialog.hide, dialog);
34674     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
34675     dialog.addButton("Build It!", this.getDownload, this);
34676
34677     // we can even add nested layouts
34678     var innerLayout = new Roo.BorderLayout("dl-inner", {
34679         east: {
34680             initialSize: 200,
34681             autoScroll:true,
34682             split:true
34683         },
34684         center: {
34685             autoScroll:true
34686         }
34687     });
34688     innerLayout.beginUpdate();
34689     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
34690     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
34691     innerLayout.endUpdate(true);
34692
34693     var layout = dialog.getLayout();
34694     layout.beginUpdate();
34695     layout.add("center", new Roo.ContentPanel("standard-panel",
34696                         {title: "Download the Source", fitToFrame:true}));
34697     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
34698                {title: "Build your own roo.js"}));
34699     layout.getRegion("center").showPanel(sp);
34700     layout.endUpdate();
34701 }
34702 </code></pre>
34703     * @constructor
34704     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
34705     * @param {Object} config configuration options
34706   */
34707 Roo.LayoutDialog = function(el, cfg){
34708     
34709     var config=  cfg;
34710     if (typeof(cfg) == 'undefined') {
34711         config = Roo.apply({}, el);
34712         // not sure why we use documentElement here.. - it should always be body.
34713         // IE7 borks horribly if we use documentElement.
34714         // webkit also does not like documentElement - it creates a body element...
34715         el = Roo.get( document.body || document.documentElement ).createChild();
34716         //config.autoCreate = true;
34717     }
34718     
34719     
34720     config.autoTabs = false;
34721     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
34722     this.body.setStyle({overflow:"hidden", position:"relative"});
34723     this.layout = new Roo.BorderLayout(this.body.dom, config);
34724     this.layout.monitorWindowResize = false;
34725     this.el.addClass("x-dlg-auto-layout");
34726     // fix case when center region overwrites center function
34727     this.center = Roo.BasicDialog.prototype.center;
34728     this.on("show", this.layout.layout, this.layout, true);
34729     if (config.items) {
34730         var xitems = config.items;
34731         delete config.items;
34732         Roo.each(xitems, this.addxtype, this);
34733     }
34734     
34735     
34736 };
34737 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
34738     
34739     
34740     /**
34741      * @cfg {Roo.LayoutRegion} east  
34742      */
34743     /**
34744      * @cfg {Roo.LayoutRegion} west
34745      */
34746     /**
34747      * @cfg {Roo.LayoutRegion} south
34748      */
34749     /**
34750      * @cfg {Roo.LayoutRegion} north
34751      */
34752     /**
34753      * @cfg {Roo.LayoutRegion} center
34754      */
34755     /**
34756      * @cfg {Roo.Button} buttons[]  Bottom buttons..
34757      */
34758     
34759     
34760     /**
34761      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
34762      * @deprecated
34763      */
34764     endUpdate : function(){
34765         this.layout.endUpdate();
34766     },
34767
34768     /**
34769      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
34770      *  @deprecated
34771      */
34772     beginUpdate : function(){
34773         this.layout.beginUpdate();
34774     },
34775
34776     /**
34777      * Get the BorderLayout for this dialog
34778      * @return {Roo.BorderLayout}
34779      */
34780     getLayout : function(){
34781         return this.layout;
34782     },
34783
34784     showEl : function(){
34785         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
34786         if(Roo.isIE7){
34787             this.layout.layout();
34788         }
34789     },
34790
34791     // private
34792     // Use the syncHeightBeforeShow config option to control this automatically
34793     syncBodyHeight : function(){
34794         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
34795         if(this.layout){this.layout.layout();}
34796     },
34797     
34798       /**
34799      * Add an xtype element (actually adds to the layout.)
34800      * @return {Object} xdata xtype object data.
34801      */
34802     
34803     addxtype : function(c) {
34804         return this.layout.addxtype(c);
34805     }
34806 });/*
34807  * Based on:
34808  * Ext JS Library 1.1.1
34809  * Copyright(c) 2006-2007, Ext JS, LLC.
34810  *
34811  * Originally Released Under LGPL - original licence link has changed is not relivant.
34812  *
34813  * Fork - LGPL
34814  * <script type="text/javascript">
34815  */
34816  
34817 /**
34818  * @class Roo.MessageBox
34819  * @static
34820  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
34821  * Example usage:
34822  *<pre><code>
34823 // Basic alert:
34824 Roo.Msg.alert('Status', 'Changes saved successfully.');
34825
34826 // Prompt for user data:
34827 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
34828     if (btn == 'ok'){
34829         // process text value...
34830     }
34831 });
34832
34833 // Show a dialog using config options:
34834 Roo.Msg.show({
34835    title:'Save Changes?',
34836    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
34837    buttons: Roo.Msg.YESNOCANCEL,
34838    fn: processResult,
34839    animEl: 'elId'
34840 });
34841 </code></pre>
34842  * @static
34843  */
34844 Roo.MessageBox = function(){
34845     var dlg, opt, mask, waitTimer;
34846     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
34847     var buttons, activeTextEl, bwidth;
34848
34849     // private
34850     var handleButton = function(button){
34851         dlg.hide();
34852         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
34853     };
34854
34855     // private
34856     var handleHide = function(){
34857         if(opt && opt.cls){
34858             dlg.el.removeClass(opt.cls);
34859         }
34860         if(waitTimer){
34861             Roo.TaskMgr.stop(waitTimer);
34862             waitTimer = null;
34863         }
34864     };
34865
34866     // private
34867     var updateButtons = function(b){
34868         var width = 0;
34869         if(!b){
34870             buttons["ok"].hide();
34871             buttons["cancel"].hide();
34872             buttons["yes"].hide();
34873             buttons["no"].hide();
34874             dlg.footer.dom.style.display = 'none';
34875             return width;
34876         }
34877         dlg.footer.dom.style.display = '';
34878         for(var k in buttons){
34879             if(typeof buttons[k] != "function"){
34880                 if(b[k]){
34881                     buttons[k].show();
34882                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
34883                     width += buttons[k].el.getWidth()+15;
34884                 }else{
34885                     buttons[k].hide();
34886                 }
34887             }
34888         }
34889         return width;
34890     };
34891
34892     // private
34893     var handleEsc = function(d, k, e){
34894         if(opt && opt.closable !== false){
34895             dlg.hide();
34896         }
34897         if(e){
34898             e.stopEvent();
34899         }
34900     };
34901
34902     return {
34903         /**
34904          * Returns a reference to the underlying {@link Roo.BasicDialog} element
34905          * @return {Roo.BasicDialog} The BasicDialog element
34906          */
34907         getDialog : function(){
34908            if(!dlg){
34909                 dlg = new Roo.BasicDialog("x-msg-box", {
34910                     autoCreate : true,
34911                     shadow: true,
34912                     draggable: true,
34913                     resizable:false,
34914                     constraintoviewport:false,
34915                     fixedcenter:true,
34916                     collapsible : false,
34917                     shim:true,
34918                     modal: true,
34919                     width:400, height:100,
34920                     buttonAlign:"center",
34921                     closeClick : function(){
34922                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
34923                             handleButton("no");
34924                         }else{
34925                             handleButton("cancel");
34926                         }
34927                     }
34928                 });
34929               
34930                 dlg.on("hide", handleHide);
34931                 mask = dlg.mask;
34932                 dlg.addKeyListener(27, handleEsc);
34933                 buttons = {};
34934                 var bt = this.buttonText;
34935                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
34936                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
34937                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
34938                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
34939                 bodyEl = dlg.body.createChild({
34940
34941                     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>'
34942                 });
34943                 msgEl = bodyEl.dom.firstChild;
34944                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
34945                 textboxEl.enableDisplayMode();
34946                 textboxEl.addKeyListener([10,13], function(){
34947                     if(dlg.isVisible() && opt && opt.buttons){
34948                         if(opt.buttons.ok){
34949                             handleButton("ok");
34950                         }else if(opt.buttons.yes){
34951                             handleButton("yes");
34952                         }
34953                     }
34954                 });
34955                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
34956                 textareaEl.enableDisplayMode();
34957                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
34958                 progressEl.enableDisplayMode();
34959                 var pf = progressEl.dom.firstChild;
34960                 if (pf) {
34961                     pp = Roo.get(pf.firstChild);
34962                     pp.setHeight(pf.offsetHeight);
34963                 }
34964                 
34965             }
34966             return dlg;
34967         },
34968
34969         /**
34970          * Updates the message box body text
34971          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
34972          * the XHTML-compliant non-breaking space character '&amp;#160;')
34973          * @return {Roo.MessageBox} This message box
34974          */
34975         updateText : function(text){
34976             if(!dlg.isVisible() && !opt.width){
34977                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
34978             }
34979             msgEl.innerHTML = text || '&#160;';
34980       
34981             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
34982             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
34983             var w = Math.max(
34984                     Math.min(opt.width || cw , this.maxWidth), 
34985                     Math.max(opt.minWidth || this.minWidth, bwidth)
34986             );
34987             if(opt.prompt){
34988                 activeTextEl.setWidth(w);
34989             }
34990             if(dlg.isVisible()){
34991                 dlg.fixedcenter = false;
34992             }
34993             // to big, make it scroll. = But as usual stupid IE does not support
34994             // !important..
34995             
34996             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
34997                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
34998                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
34999             } else {
35000                 bodyEl.dom.style.height = '';
35001                 bodyEl.dom.style.overflowY = '';
35002             }
35003             if (cw > w) {
35004                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
35005             } else {
35006                 bodyEl.dom.style.overflowX = '';
35007             }
35008             
35009             dlg.setContentSize(w, bodyEl.getHeight());
35010             if(dlg.isVisible()){
35011                 dlg.fixedcenter = true;
35012             }
35013             return this;
35014         },
35015
35016         /**
35017          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
35018          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
35019          * @param {Number} value Any number between 0 and 1 (e.g., .5)
35020          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
35021          * @return {Roo.MessageBox} This message box
35022          */
35023         updateProgress : function(value, text){
35024             if(text){
35025                 this.updateText(text);
35026             }
35027             if (pp) { // weird bug on my firefox - for some reason this is not defined
35028                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
35029             }
35030             return this;
35031         },        
35032
35033         /**
35034          * Returns true if the message box is currently displayed
35035          * @return {Boolean} True if the message box is visible, else false
35036          */
35037         isVisible : function(){
35038             return dlg && dlg.isVisible();  
35039         },
35040
35041         /**
35042          * Hides the message box if it is displayed
35043          */
35044         hide : function(){
35045             if(this.isVisible()){
35046                 dlg.hide();
35047             }  
35048         },
35049
35050         /**
35051          * Displays a new message box, or reinitializes an existing message box, based on the config options
35052          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
35053          * The following config object properties are supported:
35054          * <pre>
35055 Property    Type             Description
35056 ----------  ---------------  ------------------------------------------------------------------------------------
35057 animEl            String/Element   An id or Element from which the message box should animate as it opens and
35058                                    closes (defaults to undefined)
35059 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
35060                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
35061 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
35062                                    progress and wait dialogs will ignore this property and always hide the
35063                                    close button as they can only be closed programmatically.
35064 cls               String           A custom CSS class to apply to the message box element
35065 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
35066                                    displayed (defaults to 75)
35067 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
35068                                    function will be btn (the name of the button that was clicked, if applicable,
35069                                    e.g. "ok"), and text (the value of the active text field, if applicable).
35070                                    Progress and wait dialogs will ignore this option since they do not respond to
35071                                    user actions and can only be closed programmatically, so any required function
35072                                    should be called by the same code after it closes the dialog.
35073 icon              String           A CSS class that provides a background image to be used as an icon for
35074                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
35075 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
35076 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
35077 modal             Boolean          False to allow user interaction with the page while the message box is
35078                                    displayed (defaults to true)
35079 msg               String           A string that will replace the existing message box body text (defaults
35080                                    to the XHTML-compliant non-breaking space character '&#160;')
35081 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
35082 progress          Boolean          True to display a progress bar (defaults to false)
35083 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
35084 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
35085 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
35086 title             String           The title text
35087 value             String           The string value to set into the active textbox element if displayed
35088 wait              Boolean          True to display a progress bar (defaults to false)
35089 width             Number           The width of the dialog in pixels
35090 </pre>
35091          *
35092          * Example usage:
35093          * <pre><code>
35094 Roo.Msg.show({
35095    title: 'Address',
35096    msg: 'Please enter your address:',
35097    width: 300,
35098    buttons: Roo.MessageBox.OKCANCEL,
35099    multiline: true,
35100    fn: saveAddress,
35101    animEl: 'addAddressBtn'
35102 });
35103 </code></pre>
35104          * @param {Object} config Configuration options
35105          * @return {Roo.MessageBox} This message box
35106          */
35107         show : function(options)
35108         {
35109             
35110             // this causes nightmares if you show one dialog after another
35111             // especially on callbacks..
35112              
35113             if(this.isVisible()){
35114                 
35115                 this.hide();
35116                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
35117                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
35118                 Roo.log("New Dialog Message:" +  options.msg )
35119                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
35120                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
35121                 
35122             }
35123             var d = this.getDialog();
35124             opt = options;
35125             d.setTitle(opt.title || "&#160;");
35126             d.close.setDisplayed(opt.closable !== false);
35127             activeTextEl = textboxEl;
35128             opt.prompt = opt.prompt || (opt.multiline ? true : false);
35129             if(opt.prompt){
35130                 if(opt.multiline){
35131                     textboxEl.hide();
35132                     textareaEl.show();
35133                     textareaEl.setHeight(typeof opt.multiline == "number" ?
35134                         opt.multiline : this.defaultTextHeight);
35135                     activeTextEl = textareaEl;
35136                 }else{
35137                     textboxEl.show();
35138                     textareaEl.hide();
35139                 }
35140             }else{
35141                 textboxEl.hide();
35142                 textareaEl.hide();
35143             }
35144             progressEl.setDisplayed(opt.progress === true);
35145             this.updateProgress(0);
35146             activeTextEl.dom.value = opt.value || "";
35147             if(opt.prompt){
35148                 dlg.setDefaultButton(activeTextEl);
35149             }else{
35150                 var bs = opt.buttons;
35151                 var db = null;
35152                 if(bs && bs.ok){
35153                     db = buttons["ok"];
35154                 }else if(bs && bs.yes){
35155                     db = buttons["yes"];
35156                 }
35157                 dlg.setDefaultButton(db);
35158             }
35159             bwidth = updateButtons(opt.buttons);
35160             this.updateText(opt.msg);
35161             if(opt.cls){
35162                 d.el.addClass(opt.cls);
35163             }
35164             d.proxyDrag = opt.proxyDrag === true;
35165             d.modal = opt.modal !== false;
35166             d.mask = opt.modal !== false ? mask : false;
35167             if(!d.isVisible()){
35168                 // force it to the end of the z-index stack so it gets a cursor in FF
35169                 document.body.appendChild(dlg.el.dom);
35170                 d.animateTarget = null;
35171                 d.show(options.animEl);
35172             }
35173             dlg.toFront();
35174             return this;
35175         },
35176
35177         /**
35178          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
35179          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
35180          * and closing the message box when the process is complete.
35181          * @param {String} title The title bar text
35182          * @param {String} msg The message box body text
35183          * @return {Roo.MessageBox} This message box
35184          */
35185         progress : function(title, msg){
35186             this.show({
35187                 title : title,
35188                 msg : msg,
35189                 buttons: false,
35190                 progress:true,
35191                 closable:false,
35192                 minWidth: this.minProgressWidth,
35193                 modal : true
35194             });
35195             return this;
35196         },
35197
35198         /**
35199          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
35200          * If a callback function is passed it will be called after the user clicks the button, and the
35201          * id of the button that was clicked will be passed as the only parameter to the callback
35202          * (could also be the top-right close button).
35203          * @param {String} title The title bar text
35204          * @param {String} msg The message box body text
35205          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35206          * @param {Object} scope (optional) The scope of the callback function
35207          * @return {Roo.MessageBox} This message box
35208          */
35209         alert : function(title, msg, fn, scope){
35210             this.show({
35211                 title : title,
35212                 msg : msg,
35213                 buttons: this.OK,
35214                 fn: fn,
35215                 scope : scope,
35216                 modal : true
35217             });
35218             return this;
35219         },
35220
35221         /**
35222          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
35223          * interaction while waiting for a long-running process to complete that does not have defined intervals.
35224          * You are responsible for closing the message box when the process is complete.
35225          * @param {String} msg The message box body text
35226          * @param {String} title (optional) The title bar text
35227          * @return {Roo.MessageBox} This message box
35228          */
35229         wait : function(msg, title){
35230             this.show({
35231                 title : title,
35232                 msg : msg,
35233                 buttons: false,
35234                 closable:false,
35235                 progress:true,
35236                 modal:true,
35237                 width:300,
35238                 wait:true
35239             });
35240             waitTimer = Roo.TaskMgr.start({
35241                 run: function(i){
35242                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
35243                 },
35244                 interval: 1000
35245             });
35246             return this;
35247         },
35248
35249         /**
35250          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
35251          * If a callback function is passed it will be called after the user clicks either button, and the id of the
35252          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
35253          * @param {String} title The title bar text
35254          * @param {String} msg The message box body text
35255          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35256          * @param {Object} scope (optional) The scope of the callback function
35257          * @return {Roo.MessageBox} This message box
35258          */
35259         confirm : function(title, msg, fn, scope){
35260             this.show({
35261                 title : title,
35262                 msg : msg,
35263                 buttons: this.YESNO,
35264                 fn: fn,
35265                 scope : scope,
35266                 modal : true
35267             });
35268             return this;
35269         },
35270
35271         /**
35272          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
35273          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
35274          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
35275          * (could also be the top-right close button) and the text that was entered will be passed as the two
35276          * parameters to the callback.
35277          * @param {String} title The title bar text
35278          * @param {String} msg The message box body text
35279          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35280          * @param {Object} scope (optional) The scope of the callback function
35281          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
35282          * property, or the height in pixels to create the textbox (defaults to false / single-line)
35283          * @return {Roo.MessageBox} This message box
35284          */
35285         prompt : function(title, msg, fn, scope, multiline){
35286             this.show({
35287                 title : title,
35288                 msg : msg,
35289                 buttons: this.OKCANCEL,
35290                 fn: fn,
35291                 minWidth:250,
35292                 scope : scope,
35293                 prompt:true,
35294                 multiline: multiline,
35295                 modal : true
35296             });
35297             return this;
35298         },
35299
35300         /**
35301          * Button config that displays a single OK button
35302          * @type Object
35303          */
35304         OK : {ok:true},
35305         /**
35306          * Button config that displays Yes and No buttons
35307          * @type Object
35308          */
35309         YESNO : {yes:true, no:true},
35310         /**
35311          * Button config that displays OK and Cancel buttons
35312          * @type Object
35313          */
35314         OKCANCEL : {ok:true, cancel:true},
35315         /**
35316          * Button config that displays Yes, No and Cancel buttons
35317          * @type Object
35318          */
35319         YESNOCANCEL : {yes:true, no:true, cancel:true},
35320
35321         /**
35322          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
35323          * @type Number
35324          */
35325         defaultTextHeight : 75,
35326         /**
35327          * The maximum width in pixels of the message box (defaults to 600)
35328          * @type Number
35329          */
35330         maxWidth : 600,
35331         /**
35332          * The minimum width in pixels of the message box (defaults to 100)
35333          * @type Number
35334          */
35335         minWidth : 100,
35336         /**
35337          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
35338          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
35339          * @type Number
35340          */
35341         minProgressWidth : 250,
35342         /**
35343          * An object containing the default button text strings that can be overriden for localized language support.
35344          * Supported properties are: ok, cancel, yes and no.
35345          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
35346          * @type Object
35347          */
35348         buttonText : {
35349             ok : "OK",
35350             cancel : "Cancel",
35351             yes : "Yes",
35352             no : "No"
35353         }
35354     };
35355 }();
35356
35357 /**
35358  * Shorthand for {@link Roo.MessageBox}
35359  */
35360 Roo.Msg = Roo.MessageBox;/*
35361  * Based on:
35362  * Ext JS Library 1.1.1
35363  * Copyright(c) 2006-2007, Ext JS, LLC.
35364  *
35365  * Originally Released Under LGPL - original licence link has changed is not relivant.
35366  *
35367  * Fork - LGPL
35368  * <script type="text/javascript">
35369  */
35370 /**
35371  * @class Roo.QuickTips
35372  * Provides attractive and customizable tooltips for any element.
35373  * @static
35374  */
35375 Roo.QuickTips = function(){
35376     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
35377     var ce, bd, xy, dd;
35378     var visible = false, disabled = true, inited = false;
35379     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
35380     
35381     var onOver = function(e){
35382         if(disabled){
35383             return;
35384         }
35385         var t = e.getTarget();
35386         if(!t || t.nodeType !== 1 || t == document || t == document.body){
35387             return;
35388         }
35389         if(ce && t == ce.el){
35390             clearTimeout(hideProc);
35391             return;
35392         }
35393         if(t && tagEls[t.id]){
35394             tagEls[t.id].el = t;
35395             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
35396             return;
35397         }
35398         var ttp, et = Roo.fly(t);
35399         var ns = cfg.namespace;
35400         if(tm.interceptTitles && t.title){
35401             ttp = t.title;
35402             t.qtip = ttp;
35403             t.removeAttribute("title");
35404             e.preventDefault();
35405         }else{
35406             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
35407         }
35408         if(ttp){
35409             showProc = show.defer(tm.showDelay, tm, [{
35410                 el: t, 
35411                 text: ttp.replace(/\\n/g,'<br/>'),
35412                 width: et.getAttributeNS(ns, cfg.width),
35413                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
35414                 title: et.getAttributeNS(ns, cfg.title),
35415                     cls: et.getAttributeNS(ns, cfg.cls)
35416             }]);
35417         }
35418     };
35419     
35420     var onOut = function(e){
35421         clearTimeout(showProc);
35422         var t = e.getTarget();
35423         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
35424             hideProc = setTimeout(hide, tm.hideDelay);
35425         }
35426     };
35427     
35428     var onMove = function(e){
35429         if(disabled){
35430             return;
35431         }
35432         xy = e.getXY();
35433         xy[1] += 18;
35434         if(tm.trackMouse && ce){
35435             el.setXY(xy);
35436         }
35437     };
35438     
35439     var onDown = function(e){
35440         clearTimeout(showProc);
35441         clearTimeout(hideProc);
35442         if(!e.within(el)){
35443             if(tm.hideOnClick){
35444                 hide();
35445                 tm.disable();
35446                 tm.enable.defer(100, tm);
35447             }
35448         }
35449     };
35450     
35451     var getPad = function(){
35452         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
35453     };
35454
35455     var show = function(o){
35456         if(disabled){
35457             return;
35458         }
35459         clearTimeout(dismissProc);
35460         ce = o;
35461         if(removeCls){ // in case manually hidden
35462             el.removeClass(removeCls);
35463             removeCls = null;
35464         }
35465         if(ce.cls){
35466             el.addClass(ce.cls);
35467             removeCls = ce.cls;
35468         }
35469         if(ce.title){
35470             tipTitle.update(ce.title);
35471             tipTitle.show();
35472         }else{
35473             tipTitle.update('');
35474             tipTitle.hide();
35475         }
35476         el.dom.style.width  = tm.maxWidth+'px';
35477         //tipBody.dom.style.width = '';
35478         tipBodyText.update(o.text);
35479         var p = getPad(), w = ce.width;
35480         if(!w){
35481             var td = tipBodyText.dom;
35482             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
35483             if(aw > tm.maxWidth){
35484                 w = tm.maxWidth;
35485             }else if(aw < tm.minWidth){
35486                 w = tm.minWidth;
35487             }else{
35488                 w = aw;
35489             }
35490         }
35491         //tipBody.setWidth(w);
35492         el.setWidth(parseInt(w, 10) + p);
35493         if(ce.autoHide === false){
35494             close.setDisplayed(true);
35495             if(dd){
35496                 dd.unlock();
35497             }
35498         }else{
35499             close.setDisplayed(false);
35500             if(dd){
35501                 dd.lock();
35502             }
35503         }
35504         if(xy){
35505             el.avoidY = xy[1]-18;
35506             el.setXY(xy);
35507         }
35508         if(tm.animate){
35509             el.setOpacity(.1);
35510             el.setStyle("visibility", "visible");
35511             el.fadeIn({callback: afterShow});
35512         }else{
35513             afterShow();
35514         }
35515     };
35516     
35517     var afterShow = function(){
35518         if(ce){
35519             el.show();
35520             esc.enable();
35521             if(tm.autoDismiss && ce.autoHide !== false){
35522                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
35523             }
35524         }
35525     };
35526     
35527     var hide = function(noanim){
35528         clearTimeout(dismissProc);
35529         clearTimeout(hideProc);
35530         ce = null;
35531         if(el.isVisible()){
35532             esc.disable();
35533             if(noanim !== true && tm.animate){
35534                 el.fadeOut({callback: afterHide});
35535             }else{
35536                 afterHide();
35537             } 
35538         }
35539     };
35540     
35541     var afterHide = function(){
35542         el.hide();
35543         if(removeCls){
35544             el.removeClass(removeCls);
35545             removeCls = null;
35546         }
35547     };
35548     
35549     return {
35550         /**
35551         * @cfg {Number} minWidth
35552         * The minimum width of the quick tip (defaults to 40)
35553         */
35554        minWidth : 40,
35555         /**
35556         * @cfg {Number} maxWidth
35557         * The maximum width of the quick tip (defaults to 300)
35558         */
35559        maxWidth : 300,
35560         /**
35561         * @cfg {Boolean} interceptTitles
35562         * True to automatically use the element's DOM title value if available (defaults to false)
35563         */
35564        interceptTitles : false,
35565         /**
35566         * @cfg {Boolean} trackMouse
35567         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
35568         */
35569        trackMouse : false,
35570         /**
35571         * @cfg {Boolean} hideOnClick
35572         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
35573         */
35574        hideOnClick : true,
35575         /**
35576         * @cfg {Number} showDelay
35577         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
35578         */
35579        showDelay : 500,
35580         /**
35581         * @cfg {Number} hideDelay
35582         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
35583         */
35584        hideDelay : 200,
35585         /**
35586         * @cfg {Boolean} autoHide
35587         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
35588         * Used in conjunction with hideDelay.
35589         */
35590        autoHide : true,
35591         /**
35592         * @cfg {Boolean}
35593         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
35594         * (defaults to true).  Used in conjunction with autoDismissDelay.
35595         */
35596        autoDismiss : true,
35597         /**
35598         * @cfg {Number}
35599         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
35600         */
35601        autoDismissDelay : 5000,
35602        /**
35603         * @cfg {Boolean} animate
35604         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
35605         */
35606        animate : false,
35607
35608        /**
35609         * @cfg {String} title
35610         * Title text to display (defaults to '').  This can be any valid HTML markup.
35611         */
35612         title: '',
35613        /**
35614         * @cfg {String} text
35615         * Body text to display (defaults to '').  This can be any valid HTML markup.
35616         */
35617         text : '',
35618        /**
35619         * @cfg {String} cls
35620         * A CSS class to apply to the base quick tip element (defaults to '').
35621         */
35622         cls : '',
35623        /**
35624         * @cfg {Number} width
35625         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
35626         * minWidth or maxWidth.
35627         */
35628         width : null,
35629
35630     /**
35631      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
35632      * or display QuickTips in a page.
35633      */
35634        init : function(){
35635           tm = Roo.QuickTips;
35636           cfg = tm.tagConfig;
35637           if(!inited){
35638               if(!Roo.isReady){ // allow calling of init() before onReady
35639                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
35640                   return;
35641               }
35642               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
35643               el.fxDefaults = {stopFx: true};
35644               // maximum custom styling
35645               //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>');
35646               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>');              
35647               tipTitle = el.child('h3');
35648               tipTitle.enableDisplayMode("block");
35649               tipBody = el.child('div.x-tip-bd');
35650               tipBodyText = el.child('div.x-tip-bd-inner');
35651               //bdLeft = el.child('div.x-tip-bd-left');
35652               //bdRight = el.child('div.x-tip-bd-right');
35653               close = el.child('div.x-tip-close');
35654               close.enableDisplayMode("block");
35655               close.on("click", hide);
35656               var d = Roo.get(document);
35657               d.on("mousedown", onDown);
35658               d.on("mouseover", onOver);
35659               d.on("mouseout", onOut);
35660               d.on("mousemove", onMove);
35661               esc = d.addKeyListener(27, hide);
35662               esc.disable();
35663               if(Roo.dd.DD){
35664                   dd = el.initDD("default", null, {
35665                       onDrag : function(){
35666                           el.sync();  
35667                       }
35668                   });
35669                   dd.setHandleElId(tipTitle.id);
35670                   dd.lock();
35671               }
35672               inited = true;
35673           }
35674           this.enable(); 
35675        },
35676
35677     /**
35678      * Configures a new quick tip instance and assigns it to a target element.  The following config options
35679      * are supported:
35680      * <pre>
35681 Property    Type                   Description
35682 ----------  ---------------------  ------------------------------------------------------------------------
35683 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
35684      * </ul>
35685      * @param {Object} config The config object
35686      */
35687        register : function(config){
35688            var cs = config instanceof Array ? config : arguments;
35689            for(var i = 0, len = cs.length; i < len; i++) {
35690                var c = cs[i];
35691                var target = c.target;
35692                if(target){
35693                    if(target instanceof Array){
35694                        for(var j = 0, jlen = target.length; j < jlen; j++){
35695                            tagEls[target[j]] = c;
35696                        }
35697                    }else{
35698                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
35699                    }
35700                }
35701            }
35702        },
35703
35704     /**
35705      * Removes this quick tip from its element and destroys it.
35706      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
35707      */
35708        unregister : function(el){
35709            delete tagEls[Roo.id(el)];
35710        },
35711
35712     /**
35713      * Enable this quick tip.
35714      */
35715        enable : function(){
35716            if(inited && disabled){
35717                locks.pop();
35718                if(locks.length < 1){
35719                    disabled = false;
35720                }
35721            }
35722        },
35723
35724     /**
35725      * Disable this quick tip.
35726      */
35727        disable : function(){
35728           disabled = true;
35729           clearTimeout(showProc);
35730           clearTimeout(hideProc);
35731           clearTimeout(dismissProc);
35732           if(ce){
35733               hide(true);
35734           }
35735           locks.push(1);
35736        },
35737
35738     /**
35739      * Returns true if the quick tip is enabled, else false.
35740      */
35741        isEnabled : function(){
35742             return !disabled;
35743        },
35744
35745         // private
35746        tagConfig : {
35747            namespace : "roo", // was ext?? this may break..
35748            alt_namespace : "ext",
35749            attribute : "qtip",
35750            width : "width",
35751            target : "target",
35752            title : "qtitle",
35753            hide : "hide",
35754            cls : "qclass"
35755        }
35756    };
35757 }();
35758
35759 // backwards compat
35760 Roo.QuickTips.tips = Roo.QuickTips.register;/*
35761  * Based on:
35762  * Ext JS Library 1.1.1
35763  * Copyright(c) 2006-2007, Ext JS, LLC.
35764  *
35765  * Originally Released Under LGPL - original licence link has changed is not relivant.
35766  *
35767  * Fork - LGPL
35768  * <script type="text/javascript">
35769  */
35770  
35771
35772 /**
35773  * @class Roo.tree.TreePanel
35774  * @extends Roo.data.Tree
35775  * @cfg {Roo.tree.TreeNode} root The root node
35776  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
35777  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
35778  * @cfg {Boolean} enableDD true to enable drag and drop
35779  * @cfg {Boolean} enableDrag true to enable just drag
35780  * @cfg {Boolean} enableDrop true to enable just drop
35781  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
35782  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
35783  * @cfg {String} ddGroup The DD group this TreePanel belongs to
35784  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
35785  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
35786  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
35787  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
35788  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
35789  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
35790  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
35791  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
35792  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
35793  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
35794  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
35795  * @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>
35796  * @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>
35797  * 
35798  * @constructor
35799  * @param {String/HTMLElement/Element} el The container element
35800  * @param {Object} config
35801  */
35802 Roo.tree.TreePanel = function(el, config){
35803     var root = false;
35804     var loader = false;
35805     if (config.root) {
35806         root = config.root;
35807         delete config.root;
35808     }
35809     if (config.loader) {
35810         loader = config.loader;
35811         delete config.loader;
35812     }
35813     
35814     Roo.apply(this, config);
35815     Roo.tree.TreePanel.superclass.constructor.call(this);
35816     this.el = Roo.get(el);
35817     this.el.addClass('x-tree');
35818     //console.log(root);
35819     if (root) {
35820         this.setRootNode( Roo.factory(root, Roo.tree));
35821     }
35822     if (loader) {
35823         this.loader = Roo.factory(loader, Roo.tree);
35824     }
35825    /**
35826     * Read-only. The id of the container element becomes this TreePanel's id.
35827     */
35828     this.id = this.el.id;
35829     this.addEvents({
35830         /**
35831         * @event beforeload
35832         * Fires before a node is loaded, return false to cancel
35833         * @param {Node} node The node being loaded
35834         */
35835         "beforeload" : true,
35836         /**
35837         * @event load
35838         * Fires when a node is loaded
35839         * @param {Node} node The node that was loaded
35840         */
35841         "load" : true,
35842         /**
35843         * @event textchange
35844         * Fires when the text for a node is changed
35845         * @param {Node} node The node
35846         * @param {String} text The new text
35847         * @param {String} oldText The old text
35848         */
35849         "textchange" : true,
35850         /**
35851         * @event beforeexpand
35852         * Fires before a node is expanded, return false to cancel.
35853         * @param {Node} node The node
35854         * @param {Boolean} deep
35855         * @param {Boolean} anim
35856         */
35857         "beforeexpand" : true,
35858         /**
35859         * @event beforecollapse
35860         * Fires before a node is collapsed, return false to cancel.
35861         * @param {Node} node The node
35862         * @param {Boolean} deep
35863         * @param {Boolean} anim
35864         */
35865         "beforecollapse" : true,
35866         /**
35867         * @event expand
35868         * Fires when a node is expanded
35869         * @param {Node} node The node
35870         */
35871         "expand" : true,
35872         /**
35873         * @event disabledchange
35874         * Fires when the disabled status of a node changes
35875         * @param {Node} node The node
35876         * @param {Boolean} disabled
35877         */
35878         "disabledchange" : true,
35879         /**
35880         * @event collapse
35881         * Fires when a node is collapsed
35882         * @param {Node} node The node
35883         */
35884         "collapse" : true,
35885         /**
35886         * @event beforeclick
35887         * Fires before click processing on a node. Return false to cancel the default action.
35888         * @param {Node} node The node
35889         * @param {Roo.EventObject} e The event object
35890         */
35891         "beforeclick":true,
35892         /**
35893         * @event checkchange
35894         * Fires when a node with a checkbox's checked property changes
35895         * @param {Node} this This node
35896         * @param {Boolean} checked
35897         */
35898         "checkchange":true,
35899         /**
35900         * @event click
35901         * Fires when a node is clicked
35902         * @param {Node} node The node
35903         * @param {Roo.EventObject} e The event object
35904         */
35905         "click":true,
35906         /**
35907         * @event dblclick
35908         * Fires when a node is double clicked
35909         * @param {Node} node The node
35910         * @param {Roo.EventObject} e The event object
35911         */
35912         "dblclick":true,
35913         /**
35914         * @event contextmenu
35915         * Fires when a node is right clicked
35916         * @param {Node} node The node
35917         * @param {Roo.EventObject} e The event object
35918         */
35919         "contextmenu":true,
35920         /**
35921         * @event beforechildrenrendered
35922         * Fires right before the child nodes for a node are rendered
35923         * @param {Node} node The node
35924         */
35925         "beforechildrenrendered":true,
35926         /**
35927         * @event startdrag
35928         * Fires when a node starts being dragged
35929         * @param {Roo.tree.TreePanel} this
35930         * @param {Roo.tree.TreeNode} node
35931         * @param {event} e The raw browser event
35932         */ 
35933        "startdrag" : true,
35934        /**
35935         * @event enddrag
35936         * Fires when a drag operation is complete
35937         * @param {Roo.tree.TreePanel} this
35938         * @param {Roo.tree.TreeNode} node
35939         * @param {event} e The raw browser event
35940         */
35941        "enddrag" : true,
35942        /**
35943         * @event dragdrop
35944         * Fires when a dragged node is dropped on a valid DD target
35945         * @param {Roo.tree.TreePanel} this
35946         * @param {Roo.tree.TreeNode} node
35947         * @param {DD} dd The dd it was dropped on
35948         * @param {event} e The raw browser event
35949         */
35950        "dragdrop" : true,
35951        /**
35952         * @event beforenodedrop
35953         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
35954         * passed to handlers has the following properties:<br />
35955         * <ul style="padding:5px;padding-left:16px;">
35956         * <li>tree - The TreePanel</li>
35957         * <li>target - The node being targeted for the drop</li>
35958         * <li>data - The drag data from the drag source</li>
35959         * <li>point - The point of the drop - append, above or below</li>
35960         * <li>source - The drag source</li>
35961         * <li>rawEvent - Raw mouse event</li>
35962         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
35963         * to be inserted by setting them on this object.</li>
35964         * <li>cancel - Set this to true to cancel the drop.</li>
35965         * </ul>
35966         * @param {Object} dropEvent
35967         */
35968        "beforenodedrop" : true,
35969        /**
35970         * @event nodedrop
35971         * Fires after a DD object is dropped on a node in this tree. The dropEvent
35972         * passed to handlers has the following properties:<br />
35973         * <ul style="padding:5px;padding-left:16px;">
35974         * <li>tree - The TreePanel</li>
35975         * <li>target - The node being targeted for the drop</li>
35976         * <li>data - The drag data from the drag source</li>
35977         * <li>point - The point of the drop - append, above or below</li>
35978         * <li>source - The drag source</li>
35979         * <li>rawEvent - Raw mouse event</li>
35980         * <li>dropNode - Dropped node(s).</li>
35981         * </ul>
35982         * @param {Object} dropEvent
35983         */
35984        "nodedrop" : true,
35985         /**
35986         * @event nodedragover
35987         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
35988         * passed to handlers has the following properties:<br />
35989         * <ul style="padding:5px;padding-left:16px;">
35990         * <li>tree - The TreePanel</li>
35991         * <li>target - The node being targeted for the drop</li>
35992         * <li>data - The drag data from the drag source</li>
35993         * <li>point - The point of the drop - append, above or below</li>
35994         * <li>source - The drag source</li>
35995         * <li>rawEvent - Raw mouse event</li>
35996         * <li>dropNode - Drop node(s) provided by the source.</li>
35997         * <li>cancel - Set this to true to signal drop not allowed.</li>
35998         * </ul>
35999         * @param {Object} dragOverEvent
36000         */
36001        "nodedragover" : true,
36002        /**
36003         * @event appendnode
36004         * Fires when append node to the tree
36005         * @param {Roo.tree.TreePanel} this
36006         * @param {Roo.tree.TreeNode} node
36007         * @param {Number} index The index of the newly appended node
36008         */
36009        "appendnode" : true
36010         
36011     });
36012     if(this.singleExpand){
36013        this.on("beforeexpand", this.restrictExpand, this);
36014     }
36015     if (this.editor) {
36016         this.editor.tree = this;
36017         this.editor = Roo.factory(this.editor, Roo.tree);
36018     }
36019     
36020     if (this.selModel) {
36021         this.selModel = Roo.factory(this.selModel, Roo.tree);
36022     }
36023    
36024 };
36025 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
36026     rootVisible : true,
36027     animate: Roo.enableFx,
36028     lines : true,
36029     enableDD : false,
36030     hlDrop : Roo.enableFx,
36031   
36032     renderer: false,
36033     
36034     rendererTip: false,
36035     // private
36036     restrictExpand : function(node){
36037         var p = node.parentNode;
36038         if(p){
36039             if(p.expandedChild && p.expandedChild.parentNode == p){
36040                 p.expandedChild.collapse();
36041             }
36042             p.expandedChild = node;
36043         }
36044     },
36045
36046     // private override
36047     setRootNode : function(node){
36048         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
36049         if(!this.rootVisible){
36050             node.ui = new Roo.tree.RootTreeNodeUI(node);
36051         }
36052         return node;
36053     },
36054
36055     /**
36056      * Returns the container element for this TreePanel
36057      */
36058     getEl : function(){
36059         return this.el;
36060     },
36061
36062     /**
36063      * Returns the default TreeLoader for this TreePanel
36064      */
36065     getLoader : function(){
36066         return this.loader;
36067     },
36068
36069     /**
36070      * Expand all nodes
36071      */
36072     expandAll : function(){
36073         this.root.expand(true);
36074     },
36075
36076     /**
36077      * Collapse all nodes
36078      */
36079     collapseAll : function(){
36080         this.root.collapse(true);
36081     },
36082
36083     /**
36084      * Returns the selection model used by this TreePanel
36085      */
36086     getSelectionModel : function(){
36087         if(!this.selModel){
36088             this.selModel = new Roo.tree.DefaultSelectionModel();
36089         }
36090         return this.selModel;
36091     },
36092
36093     /**
36094      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
36095      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
36096      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
36097      * @return {Array}
36098      */
36099     getChecked : function(a, startNode){
36100         startNode = startNode || this.root;
36101         var r = [];
36102         var f = function(){
36103             if(this.attributes.checked){
36104                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
36105             }
36106         }
36107         startNode.cascade(f);
36108         return r;
36109     },
36110
36111     /**
36112      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36113      * @param {String} path
36114      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36115      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
36116      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
36117      */
36118     expandPath : function(path, attr, callback){
36119         attr = attr || "id";
36120         var keys = path.split(this.pathSeparator);
36121         var curNode = this.root;
36122         if(curNode.attributes[attr] != keys[1]){ // invalid root
36123             if(callback){
36124                 callback(false, null);
36125             }
36126             return;
36127         }
36128         var index = 1;
36129         var f = function(){
36130             if(++index == keys.length){
36131                 if(callback){
36132                     callback(true, curNode);
36133                 }
36134                 return;
36135             }
36136             var c = curNode.findChild(attr, keys[index]);
36137             if(!c){
36138                 if(callback){
36139                     callback(false, curNode);
36140                 }
36141                 return;
36142             }
36143             curNode = c;
36144             c.expand(false, false, f);
36145         };
36146         curNode.expand(false, false, f);
36147     },
36148
36149     /**
36150      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36151      * @param {String} path
36152      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36153      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
36154      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
36155      */
36156     selectPath : function(path, attr, callback){
36157         attr = attr || "id";
36158         var keys = path.split(this.pathSeparator);
36159         var v = keys.pop();
36160         if(keys.length > 0){
36161             var f = function(success, node){
36162                 if(success && node){
36163                     var n = node.findChild(attr, v);
36164                     if(n){
36165                         n.select();
36166                         if(callback){
36167                             callback(true, n);
36168                         }
36169                     }else if(callback){
36170                         callback(false, n);
36171                     }
36172                 }else{
36173                     if(callback){
36174                         callback(false, n);
36175                     }
36176                 }
36177             };
36178             this.expandPath(keys.join(this.pathSeparator), attr, f);
36179         }else{
36180             this.root.select();
36181             if(callback){
36182                 callback(true, this.root);
36183             }
36184         }
36185     },
36186
36187     getTreeEl : function(){
36188         return this.el;
36189     },
36190
36191     /**
36192      * Trigger rendering of this TreePanel
36193      */
36194     render : function(){
36195         if (this.innerCt) {
36196             return this; // stop it rendering more than once!!
36197         }
36198         
36199         this.innerCt = this.el.createChild({tag:"ul",
36200                cls:"x-tree-root-ct " +
36201                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
36202
36203         if(this.containerScroll){
36204             Roo.dd.ScrollManager.register(this.el);
36205         }
36206         if((this.enableDD || this.enableDrop) && !this.dropZone){
36207            /**
36208             * The dropZone used by this tree if drop is enabled
36209             * @type Roo.tree.TreeDropZone
36210             */
36211              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
36212                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
36213            });
36214         }
36215         if((this.enableDD || this.enableDrag) && !this.dragZone){
36216            /**
36217             * The dragZone used by this tree if drag is enabled
36218             * @type Roo.tree.TreeDragZone
36219             */
36220             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
36221                ddGroup: this.ddGroup || "TreeDD",
36222                scroll: this.ddScroll
36223            });
36224         }
36225         this.getSelectionModel().init(this);
36226         if (!this.root) {
36227             Roo.log("ROOT not set in tree");
36228             return this;
36229         }
36230         this.root.render();
36231         if(!this.rootVisible){
36232             this.root.renderChildren();
36233         }
36234         return this;
36235     }
36236 });/*
36237  * Based on:
36238  * Ext JS Library 1.1.1
36239  * Copyright(c) 2006-2007, Ext JS, LLC.
36240  *
36241  * Originally Released Under LGPL - original licence link has changed is not relivant.
36242  *
36243  * Fork - LGPL
36244  * <script type="text/javascript">
36245  */
36246  
36247
36248 /**
36249  * @class Roo.tree.DefaultSelectionModel
36250  * @extends Roo.util.Observable
36251  * The default single selection for a TreePanel.
36252  * @param {Object} cfg Configuration
36253  */
36254 Roo.tree.DefaultSelectionModel = function(cfg){
36255    this.selNode = null;
36256    
36257    
36258    
36259    this.addEvents({
36260        /**
36261         * @event selectionchange
36262         * Fires when the selected node changes
36263         * @param {DefaultSelectionModel} this
36264         * @param {TreeNode} node the new selection
36265         */
36266        "selectionchange" : true,
36267
36268        /**
36269         * @event beforeselect
36270         * Fires before the selected node changes, return false to cancel the change
36271         * @param {DefaultSelectionModel} this
36272         * @param {TreeNode} node the new selection
36273         * @param {TreeNode} node the old selection
36274         */
36275        "beforeselect" : true
36276    });
36277    
36278     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
36279 };
36280
36281 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
36282     init : function(tree){
36283         this.tree = tree;
36284         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36285         tree.on("click", this.onNodeClick, this);
36286     },
36287     
36288     onNodeClick : function(node, e){
36289         if (e.ctrlKey && this.selNode == node)  {
36290             this.unselect(node);
36291             return;
36292         }
36293         this.select(node);
36294     },
36295     
36296     /**
36297      * Select a node.
36298      * @param {TreeNode} node The node to select
36299      * @return {TreeNode} The selected node
36300      */
36301     select : function(node){
36302         var last = this.selNode;
36303         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
36304             if(last){
36305                 last.ui.onSelectedChange(false);
36306             }
36307             this.selNode = node;
36308             node.ui.onSelectedChange(true);
36309             this.fireEvent("selectionchange", this, node, last);
36310         }
36311         return node;
36312     },
36313     
36314     /**
36315      * Deselect a node.
36316      * @param {TreeNode} node The node to unselect
36317      */
36318     unselect : function(node){
36319         if(this.selNode == node){
36320             this.clearSelections();
36321         }    
36322     },
36323     
36324     /**
36325      * Clear all selections
36326      */
36327     clearSelections : function(){
36328         var n = this.selNode;
36329         if(n){
36330             n.ui.onSelectedChange(false);
36331             this.selNode = null;
36332             this.fireEvent("selectionchange", this, null);
36333         }
36334         return n;
36335     },
36336     
36337     /**
36338      * Get the selected node
36339      * @return {TreeNode} The selected node
36340      */
36341     getSelectedNode : function(){
36342         return this.selNode;    
36343     },
36344     
36345     /**
36346      * Returns true if the node is selected
36347      * @param {TreeNode} node The node to check
36348      * @return {Boolean}
36349      */
36350     isSelected : function(node){
36351         return this.selNode == node;  
36352     },
36353
36354     /**
36355      * Selects the node above the selected node in the tree, intelligently walking the nodes
36356      * @return TreeNode The new selection
36357      */
36358     selectPrevious : function(){
36359         var s = this.selNode || this.lastSelNode;
36360         if(!s){
36361             return null;
36362         }
36363         var ps = s.previousSibling;
36364         if(ps){
36365             if(!ps.isExpanded() || ps.childNodes.length < 1){
36366                 return this.select(ps);
36367             } else{
36368                 var lc = ps.lastChild;
36369                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
36370                     lc = lc.lastChild;
36371                 }
36372                 return this.select(lc);
36373             }
36374         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
36375             return this.select(s.parentNode);
36376         }
36377         return null;
36378     },
36379
36380     /**
36381      * Selects the node above the selected node in the tree, intelligently walking the nodes
36382      * @return TreeNode The new selection
36383      */
36384     selectNext : function(){
36385         var s = this.selNode || this.lastSelNode;
36386         if(!s){
36387             return null;
36388         }
36389         if(s.firstChild && s.isExpanded()){
36390              return this.select(s.firstChild);
36391          }else if(s.nextSibling){
36392              return this.select(s.nextSibling);
36393          }else if(s.parentNode){
36394             var newS = null;
36395             s.parentNode.bubble(function(){
36396                 if(this.nextSibling){
36397                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
36398                     return false;
36399                 }
36400             });
36401             return newS;
36402          }
36403         return null;
36404     },
36405
36406     onKeyDown : function(e){
36407         var s = this.selNode || this.lastSelNode;
36408         // undesirable, but required
36409         var sm = this;
36410         if(!s){
36411             return;
36412         }
36413         var k = e.getKey();
36414         switch(k){
36415              case e.DOWN:
36416                  e.stopEvent();
36417                  this.selectNext();
36418              break;
36419              case e.UP:
36420                  e.stopEvent();
36421                  this.selectPrevious();
36422              break;
36423              case e.RIGHT:
36424                  e.preventDefault();
36425                  if(s.hasChildNodes()){
36426                      if(!s.isExpanded()){
36427                          s.expand();
36428                      }else if(s.firstChild){
36429                          this.select(s.firstChild, e);
36430                      }
36431                  }
36432              break;
36433              case e.LEFT:
36434                  e.preventDefault();
36435                  if(s.hasChildNodes() && s.isExpanded()){
36436                      s.collapse();
36437                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
36438                      this.select(s.parentNode, e);
36439                  }
36440              break;
36441         };
36442     }
36443 });
36444
36445 /**
36446  * @class Roo.tree.MultiSelectionModel
36447  * @extends Roo.util.Observable
36448  * Multi selection for a TreePanel.
36449  * @param {Object} cfg Configuration
36450  */
36451 Roo.tree.MultiSelectionModel = function(){
36452    this.selNodes = [];
36453    this.selMap = {};
36454    this.addEvents({
36455        /**
36456         * @event selectionchange
36457         * Fires when the selected nodes change
36458         * @param {MultiSelectionModel} this
36459         * @param {Array} nodes Array of the selected nodes
36460         */
36461        "selectionchange" : true
36462    });
36463    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
36464    
36465 };
36466
36467 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
36468     init : function(tree){
36469         this.tree = tree;
36470         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36471         tree.on("click", this.onNodeClick, this);
36472     },
36473     
36474     onNodeClick : function(node, e){
36475         this.select(node, e, e.ctrlKey);
36476     },
36477     
36478     /**
36479      * Select a node.
36480      * @param {TreeNode} node The node to select
36481      * @param {EventObject} e (optional) An event associated with the selection
36482      * @param {Boolean} keepExisting True to retain existing selections
36483      * @return {TreeNode} The selected node
36484      */
36485     select : function(node, e, keepExisting){
36486         if(keepExisting !== true){
36487             this.clearSelections(true);
36488         }
36489         if(this.isSelected(node)){
36490             this.lastSelNode = node;
36491             return node;
36492         }
36493         this.selNodes.push(node);
36494         this.selMap[node.id] = node;
36495         this.lastSelNode = node;
36496         node.ui.onSelectedChange(true);
36497         this.fireEvent("selectionchange", this, this.selNodes);
36498         return node;
36499     },
36500     
36501     /**
36502      * Deselect a node.
36503      * @param {TreeNode} node The node to unselect
36504      */
36505     unselect : function(node){
36506         if(this.selMap[node.id]){
36507             node.ui.onSelectedChange(false);
36508             var sn = this.selNodes;
36509             var index = -1;
36510             if(sn.indexOf){
36511                 index = sn.indexOf(node);
36512             }else{
36513                 for(var i = 0, len = sn.length; i < len; i++){
36514                     if(sn[i] == node){
36515                         index = i;
36516                         break;
36517                     }
36518                 }
36519             }
36520             if(index != -1){
36521                 this.selNodes.splice(index, 1);
36522             }
36523             delete this.selMap[node.id];
36524             this.fireEvent("selectionchange", this, this.selNodes);
36525         }
36526     },
36527     
36528     /**
36529      * Clear all selections
36530      */
36531     clearSelections : function(suppressEvent){
36532         var sn = this.selNodes;
36533         if(sn.length > 0){
36534             for(var i = 0, len = sn.length; i < len; i++){
36535                 sn[i].ui.onSelectedChange(false);
36536             }
36537             this.selNodes = [];
36538             this.selMap = {};
36539             if(suppressEvent !== true){
36540                 this.fireEvent("selectionchange", this, this.selNodes);
36541             }
36542         }
36543     },
36544     
36545     /**
36546      * Returns true if the node is selected
36547      * @param {TreeNode} node The node to check
36548      * @return {Boolean}
36549      */
36550     isSelected : function(node){
36551         return this.selMap[node.id] ? true : false;  
36552     },
36553     
36554     /**
36555      * Returns an array of the selected nodes
36556      * @return {Array}
36557      */
36558     getSelectedNodes : function(){
36559         return this.selNodes;    
36560     },
36561
36562     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
36563
36564     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
36565
36566     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
36567 });/*
36568  * Based on:
36569  * Ext JS Library 1.1.1
36570  * Copyright(c) 2006-2007, Ext JS, LLC.
36571  *
36572  * Originally Released Under LGPL - original licence link has changed is not relivant.
36573  *
36574  * Fork - LGPL
36575  * <script type="text/javascript">
36576  */
36577  
36578 /**
36579  * @class Roo.tree.TreeNode
36580  * @extends Roo.data.Node
36581  * @cfg {String} text The text for this node
36582  * @cfg {Boolean} expanded true to start the node expanded
36583  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
36584  * @cfg {Boolean} allowDrop false if this node cannot be drop on
36585  * @cfg {Boolean} disabled true to start the node disabled
36586  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
36587  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
36588  * @cfg {String} cls A css class to be added to the node
36589  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
36590  * @cfg {String} href URL of the link used for the node (defaults to #)
36591  * @cfg {String} hrefTarget target frame for the link
36592  * @cfg {String} qtip An Ext QuickTip for the node
36593  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
36594  * @cfg {Boolean} singleClickExpand True for single click expand on this node
36595  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
36596  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
36597  * (defaults to undefined with no checkbox rendered)
36598  * @constructor
36599  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
36600  */
36601 Roo.tree.TreeNode = function(attributes){
36602     attributes = attributes || {};
36603     if(typeof attributes == "string"){
36604         attributes = {text: attributes};
36605     }
36606     this.childrenRendered = false;
36607     this.rendered = false;
36608     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
36609     this.expanded = attributes.expanded === true;
36610     this.isTarget = attributes.isTarget !== false;
36611     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
36612     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
36613
36614     /**
36615      * Read-only. The text for this node. To change it use setText().
36616      * @type String
36617      */
36618     this.text = attributes.text;
36619     /**
36620      * True if this node is disabled.
36621      * @type Boolean
36622      */
36623     this.disabled = attributes.disabled === true;
36624
36625     this.addEvents({
36626         /**
36627         * @event textchange
36628         * Fires when the text for this node is changed
36629         * @param {Node} this This node
36630         * @param {String} text The new text
36631         * @param {String} oldText The old text
36632         */
36633         "textchange" : true,
36634         /**
36635         * @event beforeexpand
36636         * Fires before this node is expanded, return false to cancel.
36637         * @param {Node} this This node
36638         * @param {Boolean} deep
36639         * @param {Boolean} anim
36640         */
36641         "beforeexpand" : true,
36642         /**
36643         * @event beforecollapse
36644         * Fires before this node is collapsed, return false to cancel.
36645         * @param {Node} this This node
36646         * @param {Boolean} deep
36647         * @param {Boolean} anim
36648         */
36649         "beforecollapse" : true,
36650         /**
36651         * @event expand
36652         * Fires when this node is expanded
36653         * @param {Node} this This node
36654         */
36655         "expand" : true,
36656         /**
36657         * @event disabledchange
36658         * Fires when the disabled status of this node changes
36659         * @param {Node} this This node
36660         * @param {Boolean} disabled
36661         */
36662         "disabledchange" : true,
36663         /**
36664         * @event collapse
36665         * Fires when this node is collapsed
36666         * @param {Node} this This node
36667         */
36668         "collapse" : true,
36669         /**
36670         * @event beforeclick
36671         * Fires before click processing. Return false to cancel the default action.
36672         * @param {Node} this This node
36673         * @param {Roo.EventObject} e The event object
36674         */
36675         "beforeclick":true,
36676         /**
36677         * @event checkchange
36678         * Fires when a node with a checkbox's checked property changes
36679         * @param {Node} this This node
36680         * @param {Boolean} checked
36681         */
36682         "checkchange":true,
36683         /**
36684         * @event click
36685         * Fires when this node is clicked
36686         * @param {Node} this This node
36687         * @param {Roo.EventObject} e The event object
36688         */
36689         "click":true,
36690         /**
36691         * @event dblclick
36692         * Fires when this node is double clicked
36693         * @param {Node} this This node
36694         * @param {Roo.EventObject} e The event object
36695         */
36696         "dblclick":true,
36697         /**
36698         * @event contextmenu
36699         * Fires when this node is right clicked
36700         * @param {Node} this This node
36701         * @param {Roo.EventObject} e The event object
36702         */
36703         "contextmenu":true,
36704         /**
36705         * @event beforechildrenrendered
36706         * Fires right before the child nodes for this node are rendered
36707         * @param {Node} this This node
36708         */
36709         "beforechildrenrendered":true
36710     });
36711
36712     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
36713
36714     /**
36715      * Read-only. The UI for this node
36716      * @type TreeNodeUI
36717      */
36718     this.ui = new uiClass(this);
36719     
36720     // finally support items[]
36721     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
36722         return;
36723     }
36724     
36725     
36726     Roo.each(this.attributes.items, function(c) {
36727         this.appendChild(Roo.factory(c,Roo.Tree));
36728     }, this);
36729     delete this.attributes.items;
36730     
36731     
36732     
36733 };
36734 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
36735     preventHScroll: true,
36736     /**
36737      * Returns true if this node is expanded
36738      * @return {Boolean}
36739      */
36740     isExpanded : function(){
36741         return this.expanded;
36742     },
36743
36744     /**
36745      * Returns the UI object for this node
36746      * @return {TreeNodeUI}
36747      */
36748     getUI : function(){
36749         return this.ui;
36750     },
36751
36752     // private override
36753     setFirstChild : function(node){
36754         var of = this.firstChild;
36755         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
36756         if(this.childrenRendered && of && node != of){
36757             of.renderIndent(true, true);
36758         }
36759         if(this.rendered){
36760             this.renderIndent(true, true);
36761         }
36762     },
36763
36764     // private override
36765     setLastChild : function(node){
36766         var ol = this.lastChild;
36767         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
36768         if(this.childrenRendered && ol && node != ol){
36769             ol.renderIndent(true, true);
36770         }
36771         if(this.rendered){
36772             this.renderIndent(true, true);
36773         }
36774     },
36775
36776     // these methods are overridden to provide lazy rendering support
36777     // private override
36778     appendChild : function()
36779     {
36780         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
36781         if(node && this.childrenRendered){
36782             node.render();
36783         }
36784         this.ui.updateExpandIcon();
36785         return node;
36786     },
36787
36788     // private override
36789     removeChild : function(node){
36790         this.ownerTree.getSelectionModel().unselect(node);
36791         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
36792         // if it's been rendered remove dom node
36793         if(this.childrenRendered){
36794             node.ui.remove();
36795         }
36796         if(this.childNodes.length < 1){
36797             this.collapse(false, false);
36798         }else{
36799             this.ui.updateExpandIcon();
36800         }
36801         if(!this.firstChild) {
36802             this.childrenRendered = false;
36803         }
36804         return node;
36805     },
36806
36807     // private override
36808     insertBefore : function(node, refNode){
36809         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
36810         if(newNode && refNode && this.childrenRendered){
36811             node.render();
36812         }
36813         this.ui.updateExpandIcon();
36814         return newNode;
36815     },
36816
36817     /**
36818      * Sets the text for this node
36819      * @param {String} text
36820      */
36821     setText : function(text){
36822         var oldText = this.text;
36823         this.text = text;
36824         this.attributes.text = text;
36825         if(this.rendered){ // event without subscribing
36826             this.ui.onTextChange(this, text, oldText);
36827         }
36828         this.fireEvent("textchange", this, text, oldText);
36829     },
36830
36831     /**
36832      * Triggers selection of this node
36833      */
36834     select : function(){
36835         this.getOwnerTree().getSelectionModel().select(this);
36836     },
36837
36838     /**
36839      * Triggers deselection of this node
36840      */
36841     unselect : function(){
36842         this.getOwnerTree().getSelectionModel().unselect(this);
36843     },
36844
36845     /**
36846      * Returns true if this node is selected
36847      * @return {Boolean}
36848      */
36849     isSelected : function(){
36850         return this.getOwnerTree().getSelectionModel().isSelected(this);
36851     },
36852
36853     /**
36854      * Expand this node.
36855      * @param {Boolean} deep (optional) True to expand all children as well
36856      * @param {Boolean} anim (optional) false to cancel the default animation
36857      * @param {Function} callback (optional) A callback to be called when
36858      * expanding this node completes (does not wait for deep expand to complete).
36859      * Called with 1 parameter, this node.
36860      */
36861     expand : function(deep, anim, callback){
36862         if(!this.expanded){
36863             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
36864                 return;
36865             }
36866             if(!this.childrenRendered){
36867                 this.renderChildren();
36868             }
36869             this.expanded = true;
36870             
36871             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
36872                 this.ui.animExpand(function(){
36873                     this.fireEvent("expand", this);
36874                     if(typeof callback == "function"){
36875                         callback(this);
36876                     }
36877                     if(deep === true){
36878                         this.expandChildNodes(true);
36879                     }
36880                 }.createDelegate(this));
36881                 return;
36882             }else{
36883                 this.ui.expand();
36884                 this.fireEvent("expand", this);
36885                 if(typeof callback == "function"){
36886                     callback(this);
36887                 }
36888             }
36889         }else{
36890            if(typeof callback == "function"){
36891                callback(this);
36892            }
36893         }
36894         if(deep === true){
36895             this.expandChildNodes(true);
36896         }
36897     },
36898
36899     isHiddenRoot : function(){
36900         return this.isRoot && !this.getOwnerTree().rootVisible;
36901     },
36902
36903     /**
36904      * Collapse this node.
36905      * @param {Boolean} deep (optional) True to collapse all children as well
36906      * @param {Boolean} anim (optional) false to cancel the default animation
36907      */
36908     collapse : function(deep, anim){
36909         if(this.expanded && !this.isHiddenRoot()){
36910             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
36911                 return;
36912             }
36913             this.expanded = false;
36914             if((this.getOwnerTree().animate && anim !== false) || anim){
36915                 this.ui.animCollapse(function(){
36916                     this.fireEvent("collapse", this);
36917                     if(deep === true){
36918                         this.collapseChildNodes(true);
36919                     }
36920                 }.createDelegate(this));
36921                 return;
36922             }else{
36923                 this.ui.collapse();
36924                 this.fireEvent("collapse", this);
36925             }
36926         }
36927         if(deep === true){
36928             var cs = this.childNodes;
36929             for(var i = 0, len = cs.length; i < len; i++) {
36930                 cs[i].collapse(true, false);
36931             }
36932         }
36933     },
36934
36935     // private
36936     delayedExpand : function(delay){
36937         if(!this.expandProcId){
36938             this.expandProcId = this.expand.defer(delay, this);
36939         }
36940     },
36941
36942     // private
36943     cancelExpand : function(){
36944         if(this.expandProcId){
36945             clearTimeout(this.expandProcId);
36946         }
36947         this.expandProcId = false;
36948     },
36949
36950     /**
36951      * Toggles expanded/collapsed state of the node
36952      */
36953     toggle : function(){
36954         if(this.expanded){
36955             this.collapse();
36956         }else{
36957             this.expand();
36958         }
36959     },
36960
36961     /**
36962      * Ensures all parent nodes are expanded
36963      */
36964     ensureVisible : function(callback){
36965         var tree = this.getOwnerTree();
36966         tree.expandPath(this.parentNode.getPath(), false, function(){
36967             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
36968             Roo.callback(callback);
36969         }.createDelegate(this));
36970     },
36971
36972     /**
36973      * Expand all child nodes
36974      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
36975      */
36976     expandChildNodes : function(deep){
36977         var cs = this.childNodes;
36978         for(var i = 0, len = cs.length; i < len; i++) {
36979                 cs[i].expand(deep);
36980         }
36981     },
36982
36983     /**
36984      * Collapse all child nodes
36985      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
36986      */
36987     collapseChildNodes : function(deep){
36988         var cs = this.childNodes;
36989         for(var i = 0, len = cs.length; i < len; i++) {
36990                 cs[i].collapse(deep);
36991         }
36992     },
36993
36994     /**
36995      * Disables this node
36996      */
36997     disable : function(){
36998         this.disabled = true;
36999         this.unselect();
37000         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37001             this.ui.onDisableChange(this, true);
37002         }
37003         this.fireEvent("disabledchange", this, true);
37004     },
37005
37006     /**
37007      * Enables this node
37008      */
37009     enable : function(){
37010         this.disabled = false;
37011         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37012             this.ui.onDisableChange(this, false);
37013         }
37014         this.fireEvent("disabledchange", this, false);
37015     },
37016
37017     // private
37018     renderChildren : function(suppressEvent){
37019         if(suppressEvent !== false){
37020             this.fireEvent("beforechildrenrendered", this);
37021         }
37022         var cs = this.childNodes;
37023         for(var i = 0, len = cs.length; i < len; i++){
37024             cs[i].render(true);
37025         }
37026         this.childrenRendered = true;
37027     },
37028
37029     // private
37030     sort : function(fn, scope){
37031         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
37032         if(this.childrenRendered){
37033             var cs = this.childNodes;
37034             for(var i = 0, len = cs.length; i < len; i++){
37035                 cs[i].render(true);
37036             }
37037         }
37038     },
37039
37040     // private
37041     render : function(bulkRender){
37042         this.ui.render(bulkRender);
37043         if(!this.rendered){
37044             this.rendered = true;
37045             if(this.expanded){
37046                 this.expanded = false;
37047                 this.expand(false, false);
37048             }
37049         }
37050     },
37051
37052     // private
37053     renderIndent : function(deep, refresh){
37054         if(refresh){
37055             this.ui.childIndent = null;
37056         }
37057         this.ui.renderIndent();
37058         if(deep === true && this.childrenRendered){
37059             var cs = this.childNodes;
37060             for(var i = 0, len = cs.length; i < len; i++){
37061                 cs[i].renderIndent(true, refresh);
37062             }
37063         }
37064     }
37065 });/*
37066  * Based on:
37067  * Ext JS Library 1.1.1
37068  * Copyright(c) 2006-2007, Ext JS, LLC.
37069  *
37070  * Originally Released Under LGPL - original licence link has changed is not relivant.
37071  *
37072  * Fork - LGPL
37073  * <script type="text/javascript">
37074  */
37075  
37076 /**
37077  * @class Roo.tree.AsyncTreeNode
37078  * @extends Roo.tree.TreeNode
37079  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
37080  * @constructor
37081  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
37082  */
37083  Roo.tree.AsyncTreeNode = function(config){
37084     this.loaded = false;
37085     this.loading = false;
37086     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
37087     /**
37088     * @event beforeload
37089     * Fires before this node is loaded, return false to cancel
37090     * @param {Node} this This node
37091     */
37092     this.addEvents({'beforeload':true, 'load': true});
37093     /**
37094     * @event load
37095     * Fires when this node is loaded
37096     * @param {Node} this This node
37097     */
37098     /**
37099      * The loader used by this node (defaults to using the tree's defined loader)
37100      * @type TreeLoader
37101      * @property loader
37102      */
37103 };
37104 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
37105     expand : function(deep, anim, callback){
37106         if(this.loading){ // if an async load is already running, waiting til it's done
37107             var timer;
37108             var f = function(){
37109                 if(!this.loading){ // done loading
37110                     clearInterval(timer);
37111                     this.expand(deep, anim, callback);
37112                 }
37113             }.createDelegate(this);
37114             timer = setInterval(f, 200);
37115             return;
37116         }
37117         if(!this.loaded){
37118             if(this.fireEvent("beforeload", this) === false){
37119                 return;
37120             }
37121             this.loading = true;
37122             this.ui.beforeLoad(this);
37123             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
37124             if(loader){
37125                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
37126                 return;
37127             }
37128         }
37129         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
37130     },
37131     
37132     /**
37133      * Returns true if this node is currently loading
37134      * @return {Boolean}
37135      */
37136     isLoading : function(){
37137         return this.loading;  
37138     },
37139     
37140     loadComplete : function(deep, anim, callback){
37141         this.loading = false;
37142         this.loaded = true;
37143         this.ui.afterLoad(this);
37144         this.fireEvent("load", this);
37145         this.expand(deep, anim, callback);
37146     },
37147     
37148     /**
37149      * Returns true if this node has been loaded
37150      * @return {Boolean}
37151      */
37152     isLoaded : function(){
37153         return this.loaded;
37154     },
37155     
37156     hasChildNodes : function(){
37157         if(!this.isLeaf() && !this.loaded){
37158             return true;
37159         }else{
37160             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
37161         }
37162     },
37163
37164     /**
37165      * Trigger a reload for this node
37166      * @param {Function} callback
37167      */
37168     reload : function(callback){
37169         this.collapse(false, false);
37170         while(this.firstChild){
37171             this.removeChild(this.firstChild);
37172         }
37173         this.childrenRendered = false;
37174         this.loaded = false;
37175         if(this.isHiddenRoot()){
37176             this.expanded = false;
37177         }
37178         this.expand(false, false, callback);
37179     }
37180 });/*
37181  * Based on:
37182  * Ext JS Library 1.1.1
37183  * Copyright(c) 2006-2007, Ext JS, LLC.
37184  *
37185  * Originally Released Under LGPL - original licence link has changed is not relivant.
37186  *
37187  * Fork - LGPL
37188  * <script type="text/javascript">
37189  */
37190  
37191 /**
37192  * @class Roo.tree.TreeNodeUI
37193  * @constructor
37194  * @param {Object} node The node to render
37195  * The TreeNode UI implementation is separate from the
37196  * tree implementation. Unless you are customizing the tree UI,
37197  * you should never have to use this directly.
37198  */
37199 Roo.tree.TreeNodeUI = function(node){
37200     this.node = node;
37201     this.rendered = false;
37202     this.animating = false;
37203     this.emptyIcon = Roo.BLANK_IMAGE_URL;
37204 };
37205
37206 Roo.tree.TreeNodeUI.prototype = {
37207     removeChild : function(node){
37208         if(this.rendered){
37209             this.ctNode.removeChild(node.ui.getEl());
37210         }
37211     },
37212
37213     beforeLoad : function(){
37214          this.addClass("x-tree-node-loading");
37215     },
37216
37217     afterLoad : function(){
37218          this.removeClass("x-tree-node-loading");
37219     },
37220
37221     onTextChange : function(node, text, oldText){
37222         if(this.rendered){
37223             this.textNode.innerHTML = text;
37224         }
37225     },
37226
37227     onDisableChange : function(node, state){
37228         this.disabled = state;
37229         if(state){
37230             this.addClass("x-tree-node-disabled");
37231         }else{
37232             this.removeClass("x-tree-node-disabled");
37233         }
37234     },
37235
37236     onSelectedChange : function(state){
37237         if(state){
37238             this.focus();
37239             this.addClass("x-tree-selected");
37240         }else{
37241             //this.blur();
37242             this.removeClass("x-tree-selected");
37243         }
37244     },
37245
37246     onMove : function(tree, node, oldParent, newParent, index, refNode){
37247         this.childIndent = null;
37248         if(this.rendered){
37249             var targetNode = newParent.ui.getContainer();
37250             if(!targetNode){//target not rendered
37251                 this.holder = document.createElement("div");
37252                 this.holder.appendChild(this.wrap);
37253                 return;
37254             }
37255             var insertBefore = refNode ? refNode.ui.getEl() : null;
37256             if(insertBefore){
37257                 targetNode.insertBefore(this.wrap, insertBefore);
37258             }else{
37259                 targetNode.appendChild(this.wrap);
37260             }
37261             this.node.renderIndent(true);
37262         }
37263     },
37264
37265     addClass : function(cls){
37266         if(this.elNode){
37267             Roo.fly(this.elNode).addClass(cls);
37268         }
37269     },
37270
37271     removeClass : function(cls){
37272         if(this.elNode){
37273             Roo.fly(this.elNode).removeClass(cls);
37274         }
37275     },
37276
37277     remove : function(){
37278         if(this.rendered){
37279             this.holder = document.createElement("div");
37280             this.holder.appendChild(this.wrap);
37281         }
37282     },
37283
37284     fireEvent : function(){
37285         return this.node.fireEvent.apply(this.node, arguments);
37286     },
37287
37288     initEvents : function(){
37289         this.node.on("move", this.onMove, this);
37290         var E = Roo.EventManager;
37291         var a = this.anchor;
37292
37293         var el = Roo.fly(a, '_treeui');
37294
37295         if(Roo.isOpera){ // opera render bug ignores the CSS
37296             el.setStyle("text-decoration", "none");
37297         }
37298
37299         el.on("click", this.onClick, this);
37300         el.on("dblclick", this.onDblClick, this);
37301
37302         if(this.checkbox){
37303             Roo.EventManager.on(this.checkbox,
37304                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
37305         }
37306
37307         el.on("contextmenu", this.onContextMenu, this);
37308
37309         var icon = Roo.fly(this.iconNode);
37310         icon.on("click", this.onClick, this);
37311         icon.on("dblclick", this.onDblClick, this);
37312         icon.on("contextmenu", this.onContextMenu, this);
37313         E.on(this.ecNode, "click", this.ecClick, this, true);
37314
37315         if(this.node.disabled){
37316             this.addClass("x-tree-node-disabled");
37317         }
37318         if(this.node.hidden){
37319             this.addClass("x-tree-node-disabled");
37320         }
37321         var ot = this.node.getOwnerTree();
37322         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
37323         if(dd && (!this.node.isRoot || ot.rootVisible)){
37324             Roo.dd.Registry.register(this.elNode, {
37325                 node: this.node,
37326                 handles: this.getDDHandles(),
37327                 isHandle: false
37328             });
37329         }
37330     },
37331
37332     getDDHandles : function(){
37333         return [this.iconNode, this.textNode];
37334     },
37335
37336     hide : function(){
37337         if(this.rendered){
37338             this.wrap.style.display = "none";
37339         }
37340     },
37341
37342     show : function(){
37343         if(this.rendered){
37344             this.wrap.style.display = "";
37345         }
37346     },
37347
37348     onContextMenu : function(e){
37349         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
37350             e.preventDefault();
37351             this.focus();
37352             this.fireEvent("contextmenu", this.node, e);
37353         }
37354     },
37355
37356     onClick : function(e){
37357         if(this.dropping){
37358             e.stopEvent();
37359             return;
37360         }
37361         if(this.fireEvent("beforeclick", this.node, e) !== false){
37362             if(!this.disabled && this.node.attributes.href){
37363                 this.fireEvent("click", this.node, e);
37364                 return;
37365             }
37366             e.preventDefault();
37367             if(this.disabled){
37368                 return;
37369             }
37370
37371             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
37372                 this.node.toggle();
37373             }
37374
37375             this.fireEvent("click", this.node, e);
37376         }else{
37377             e.stopEvent();
37378         }
37379     },
37380
37381     onDblClick : function(e){
37382         e.preventDefault();
37383         if(this.disabled){
37384             return;
37385         }
37386         if(this.checkbox){
37387             this.toggleCheck();
37388         }
37389         if(!this.animating && this.node.hasChildNodes()){
37390             this.node.toggle();
37391         }
37392         this.fireEvent("dblclick", this.node, e);
37393     },
37394
37395     onCheckChange : function(){
37396         var checked = this.checkbox.checked;
37397         this.node.attributes.checked = checked;
37398         this.fireEvent('checkchange', this.node, checked);
37399     },
37400
37401     ecClick : function(e){
37402         if(!this.animating && this.node.hasChildNodes()){
37403             this.node.toggle();
37404         }
37405     },
37406
37407     startDrop : function(){
37408         this.dropping = true;
37409     },
37410
37411     // delayed drop so the click event doesn't get fired on a drop
37412     endDrop : function(){
37413        setTimeout(function(){
37414            this.dropping = false;
37415        }.createDelegate(this), 50);
37416     },
37417
37418     expand : function(){
37419         this.updateExpandIcon();
37420         this.ctNode.style.display = "";
37421     },
37422
37423     focus : function(){
37424         if(!this.node.preventHScroll){
37425             try{this.anchor.focus();
37426             }catch(e){}
37427         }else if(!Roo.isIE){
37428             try{
37429                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
37430                 var l = noscroll.scrollLeft;
37431                 this.anchor.focus();
37432                 noscroll.scrollLeft = l;
37433             }catch(e){}
37434         }
37435     },
37436
37437     toggleCheck : function(value){
37438         var cb = this.checkbox;
37439         if(cb){
37440             cb.checked = (value === undefined ? !cb.checked : value);
37441         }
37442     },
37443
37444     blur : function(){
37445         try{
37446             this.anchor.blur();
37447         }catch(e){}
37448     },
37449
37450     animExpand : function(callback){
37451         var ct = Roo.get(this.ctNode);
37452         ct.stopFx();
37453         if(!this.node.hasChildNodes()){
37454             this.updateExpandIcon();
37455             this.ctNode.style.display = "";
37456             Roo.callback(callback);
37457             return;
37458         }
37459         this.animating = true;
37460         this.updateExpandIcon();
37461
37462         ct.slideIn('t', {
37463            callback : function(){
37464                this.animating = false;
37465                Roo.callback(callback);
37466             },
37467             scope: this,
37468             duration: this.node.ownerTree.duration || .25
37469         });
37470     },
37471
37472     highlight : function(){
37473         var tree = this.node.getOwnerTree();
37474         Roo.fly(this.wrap).highlight(
37475             tree.hlColor || "C3DAF9",
37476             {endColor: tree.hlBaseColor}
37477         );
37478     },
37479
37480     collapse : function(){
37481         this.updateExpandIcon();
37482         this.ctNode.style.display = "none";
37483     },
37484
37485     animCollapse : function(callback){
37486         var ct = Roo.get(this.ctNode);
37487         ct.enableDisplayMode('block');
37488         ct.stopFx();
37489
37490         this.animating = true;
37491         this.updateExpandIcon();
37492
37493         ct.slideOut('t', {
37494             callback : function(){
37495                this.animating = false;
37496                Roo.callback(callback);
37497             },
37498             scope: this,
37499             duration: this.node.ownerTree.duration || .25
37500         });
37501     },
37502
37503     getContainer : function(){
37504         return this.ctNode;
37505     },
37506
37507     getEl : function(){
37508         return this.wrap;
37509     },
37510
37511     appendDDGhost : function(ghostNode){
37512         ghostNode.appendChild(this.elNode.cloneNode(true));
37513     },
37514
37515     getDDRepairXY : function(){
37516         return Roo.lib.Dom.getXY(this.iconNode);
37517     },
37518
37519     onRender : function(){
37520         this.render();
37521     },
37522
37523     render : function(bulkRender){
37524         var n = this.node, a = n.attributes;
37525         var targetNode = n.parentNode ?
37526               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
37527
37528         if(!this.rendered){
37529             this.rendered = true;
37530
37531             this.renderElements(n, a, targetNode, bulkRender);
37532
37533             if(a.qtip){
37534                if(this.textNode.setAttributeNS){
37535                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
37536                    if(a.qtipTitle){
37537                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
37538                    }
37539                }else{
37540                    this.textNode.setAttribute("ext:qtip", a.qtip);
37541                    if(a.qtipTitle){
37542                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
37543                    }
37544                }
37545             }else if(a.qtipCfg){
37546                 a.qtipCfg.target = Roo.id(this.textNode);
37547                 Roo.QuickTips.register(a.qtipCfg);
37548             }
37549             this.initEvents();
37550             if(!this.node.expanded){
37551                 this.updateExpandIcon();
37552             }
37553         }else{
37554             if(bulkRender === true) {
37555                 targetNode.appendChild(this.wrap);
37556             }
37557         }
37558     },
37559
37560     renderElements : function(n, a, targetNode, bulkRender)
37561     {
37562         // add some indent caching, this helps performance when rendering a large tree
37563         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37564         var t = n.getOwnerTree();
37565         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
37566         if (typeof(n.attributes.html) != 'undefined') {
37567             txt = n.attributes.html;
37568         }
37569         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
37570         var cb = typeof a.checked == 'boolean';
37571         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37572         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
37573             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
37574             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
37575             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
37576             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
37577             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
37578              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
37579                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
37580             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37581             "</li>"];
37582
37583         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37584             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37585                                 n.nextSibling.ui.getEl(), buf.join(""));
37586         }else{
37587             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37588         }
37589
37590         this.elNode = this.wrap.childNodes[0];
37591         this.ctNode = this.wrap.childNodes[1];
37592         var cs = this.elNode.childNodes;
37593         this.indentNode = cs[0];
37594         this.ecNode = cs[1];
37595         this.iconNode = cs[2];
37596         var index = 3;
37597         if(cb){
37598             this.checkbox = cs[3];
37599             index++;
37600         }
37601         this.anchor = cs[index];
37602         this.textNode = cs[index].firstChild;
37603     },
37604
37605     getAnchor : function(){
37606         return this.anchor;
37607     },
37608
37609     getTextEl : function(){
37610         return this.textNode;
37611     },
37612
37613     getIconEl : function(){
37614         return this.iconNode;
37615     },
37616
37617     isChecked : function(){
37618         return this.checkbox ? this.checkbox.checked : false;
37619     },
37620
37621     updateExpandIcon : function(){
37622         if(this.rendered){
37623             var n = this.node, c1, c2;
37624             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
37625             var hasChild = n.hasChildNodes();
37626             if(hasChild){
37627                 if(n.expanded){
37628                     cls += "-minus";
37629                     c1 = "x-tree-node-collapsed";
37630                     c2 = "x-tree-node-expanded";
37631                 }else{
37632                     cls += "-plus";
37633                     c1 = "x-tree-node-expanded";
37634                     c2 = "x-tree-node-collapsed";
37635                 }
37636                 if(this.wasLeaf){
37637                     this.removeClass("x-tree-node-leaf");
37638                     this.wasLeaf = false;
37639                 }
37640                 if(this.c1 != c1 || this.c2 != c2){
37641                     Roo.fly(this.elNode).replaceClass(c1, c2);
37642                     this.c1 = c1; this.c2 = c2;
37643                 }
37644             }else{
37645                 // this changes non-leafs into leafs if they have no children.
37646                 // it's not very rational behaviour..
37647                 
37648                 if(!this.wasLeaf && this.node.leaf){
37649                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
37650                     delete this.c1;
37651                     delete this.c2;
37652                     this.wasLeaf = true;
37653                 }
37654             }
37655             var ecc = "x-tree-ec-icon "+cls;
37656             if(this.ecc != ecc){
37657                 this.ecNode.className = ecc;
37658                 this.ecc = ecc;
37659             }
37660         }
37661     },
37662
37663     getChildIndent : function(){
37664         if(!this.childIndent){
37665             var buf = [];
37666             var p = this.node;
37667             while(p){
37668                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
37669                     if(!p.isLast()) {
37670                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
37671                     } else {
37672                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
37673                     }
37674                 }
37675                 p = p.parentNode;
37676             }
37677             this.childIndent = buf.join("");
37678         }
37679         return this.childIndent;
37680     },
37681
37682     renderIndent : function(){
37683         if(this.rendered){
37684             var indent = "";
37685             var p = this.node.parentNode;
37686             if(p){
37687                 indent = p.ui.getChildIndent();
37688             }
37689             if(this.indentMarkup != indent){ // don't rerender if not required
37690                 this.indentNode.innerHTML = indent;
37691                 this.indentMarkup = indent;
37692             }
37693             this.updateExpandIcon();
37694         }
37695     }
37696 };
37697
37698 Roo.tree.RootTreeNodeUI = function(){
37699     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
37700 };
37701 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
37702     render : function(){
37703         if(!this.rendered){
37704             var targetNode = this.node.ownerTree.innerCt.dom;
37705             this.node.expanded = true;
37706             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
37707             this.wrap = this.ctNode = targetNode.firstChild;
37708         }
37709     },
37710     collapse : function(){
37711     },
37712     expand : function(){
37713     }
37714 });/*
37715  * Based on:
37716  * Ext JS Library 1.1.1
37717  * Copyright(c) 2006-2007, Ext JS, LLC.
37718  *
37719  * Originally Released Under LGPL - original licence link has changed is not relivant.
37720  *
37721  * Fork - LGPL
37722  * <script type="text/javascript">
37723  */
37724 /**
37725  * @class Roo.tree.TreeLoader
37726  * @extends Roo.util.Observable
37727  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
37728  * nodes from a specified URL. The response must be a javascript Array definition
37729  * who's elements are node definition objects. eg:
37730  * <pre><code>
37731 {  success : true,
37732    data :      [
37733    
37734     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
37735     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
37736     ]
37737 }
37738
37739
37740 </code></pre>
37741  * <br><br>
37742  * The old style respose with just an array is still supported, but not recommended.
37743  * <br><br>
37744  *
37745  * A server request is sent, and child nodes are loaded only when a node is expanded.
37746  * The loading node's id is passed to the server under the parameter name "node" to
37747  * enable the server to produce the correct child nodes.
37748  * <br><br>
37749  * To pass extra parameters, an event handler may be attached to the "beforeload"
37750  * event, and the parameters specified in the TreeLoader's baseParams property:
37751  * <pre><code>
37752     myTreeLoader.on("beforeload", function(treeLoader, node) {
37753         this.baseParams.category = node.attributes.category;
37754     }, this);
37755     
37756 </code></pre>
37757  *
37758  * This would pass an HTTP parameter called "category" to the server containing
37759  * the value of the Node's "category" attribute.
37760  * @constructor
37761  * Creates a new Treeloader.
37762  * @param {Object} config A config object containing config properties.
37763  */
37764 Roo.tree.TreeLoader = function(config){
37765     this.baseParams = {};
37766     this.requestMethod = "POST";
37767     Roo.apply(this, config);
37768
37769     this.addEvents({
37770     
37771         /**
37772          * @event beforeload
37773          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
37774          * @param {Object} This TreeLoader object.
37775          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37776          * @param {Object} callback The callback function specified in the {@link #load} call.
37777          */
37778         beforeload : true,
37779         /**
37780          * @event load
37781          * Fires when the node has been successfuly loaded.
37782          * @param {Object} This TreeLoader object.
37783          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37784          * @param {Object} response The response object containing the data from the server.
37785          */
37786         load : true,
37787         /**
37788          * @event loadexception
37789          * Fires if the network request failed.
37790          * @param {Object} This TreeLoader object.
37791          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37792          * @param {Object} response The response object containing the data from the server.
37793          */
37794         loadexception : true,
37795         /**
37796          * @event create
37797          * Fires before a node is created, enabling you to return custom Node types 
37798          * @param {Object} This TreeLoader object.
37799          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
37800          */
37801         create : true
37802     });
37803
37804     Roo.tree.TreeLoader.superclass.constructor.call(this);
37805 };
37806
37807 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
37808     /**
37809     * @cfg {String} dataUrl The URL from which to request a Json string which
37810     * specifies an array of node definition object representing the child nodes
37811     * to be loaded.
37812     */
37813     /**
37814     * @cfg {String} requestMethod either GET or POST
37815     * defaults to POST (due to BC)
37816     * to be loaded.
37817     */
37818     /**
37819     * @cfg {Object} baseParams (optional) An object containing properties which
37820     * specify HTTP parameters to be passed to each request for child nodes.
37821     */
37822     /**
37823     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
37824     * created by this loader. If the attributes sent by the server have an attribute in this object,
37825     * they take priority.
37826     */
37827     /**
37828     * @cfg {Object} uiProviders (optional) An object containing properties which
37829     * 
37830     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
37831     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
37832     * <i>uiProvider</i> attribute of a returned child node is a string rather
37833     * than a reference to a TreeNodeUI implementation, this that string value
37834     * is used as a property name in the uiProviders object. You can define the provider named
37835     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
37836     */
37837     uiProviders : {},
37838
37839     /**
37840     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
37841     * child nodes before loading.
37842     */
37843     clearOnLoad : true,
37844
37845     /**
37846     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
37847     * property on loading, rather than expecting an array. (eg. more compatible to a standard
37848     * Grid query { data : [ .....] }
37849     */
37850     
37851     root : false,
37852      /**
37853     * @cfg {String} queryParam (optional) 
37854     * Name of the query as it will be passed on the querystring (defaults to 'node')
37855     * eg. the request will be ?node=[id]
37856     */
37857     
37858     
37859     queryParam: false,
37860     
37861     /**
37862      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
37863      * This is called automatically when a node is expanded, but may be used to reload
37864      * a node (or append new children if the {@link #clearOnLoad} option is false.)
37865      * @param {Roo.tree.TreeNode} node
37866      * @param {Function} callback
37867      */
37868     load : function(node, callback){
37869         if(this.clearOnLoad){
37870             while(node.firstChild){
37871                 node.removeChild(node.firstChild);
37872             }
37873         }
37874         if(node.attributes.children){ // preloaded json children
37875             var cs = node.attributes.children;
37876             for(var i = 0, len = cs.length; i < len; i++){
37877                 node.appendChild(this.createNode(cs[i]));
37878             }
37879             if(typeof callback == "function"){
37880                 callback();
37881             }
37882         }else if(this.dataUrl){
37883             this.requestData(node, callback);
37884         }
37885     },
37886
37887     getParams: function(node){
37888         var buf = [], bp = this.baseParams;
37889         for(var key in bp){
37890             if(typeof bp[key] != "function"){
37891                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
37892             }
37893         }
37894         var n = this.queryParam === false ? 'node' : this.queryParam;
37895         buf.push(n + "=", encodeURIComponent(node.id));
37896         return buf.join("");
37897     },
37898
37899     requestData : function(node, callback){
37900         if(this.fireEvent("beforeload", this, node, callback) !== false){
37901             this.transId = Roo.Ajax.request({
37902                 method:this.requestMethod,
37903                 url: this.dataUrl||this.url,
37904                 success: this.handleResponse,
37905                 failure: this.handleFailure,
37906                 scope: this,
37907                 argument: {callback: callback, node: node},
37908                 params: this.getParams(node)
37909             });
37910         }else{
37911             // if the load is cancelled, make sure we notify
37912             // the node that we are done
37913             if(typeof callback == "function"){
37914                 callback();
37915             }
37916         }
37917     },
37918
37919     isLoading : function(){
37920         return this.transId ? true : false;
37921     },
37922
37923     abort : function(){
37924         if(this.isLoading()){
37925             Roo.Ajax.abort(this.transId);
37926         }
37927     },
37928
37929     // private
37930     createNode : function(attr)
37931     {
37932         // apply baseAttrs, nice idea Corey!
37933         if(this.baseAttrs){
37934             Roo.applyIf(attr, this.baseAttrs);
37935         }
37936         if(this.applyLoader !== false){
37937             attr.loader = this;
37938         }
37939         // uiProvider = depreciated..
37940         
37941         if(typeof(attr.uiProvider) == 'string'){
37942            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
37943                 /**  eval:var:attr */ eval(attr.uiProvider);
37944         }
37945         if(typeof(this.uiProviders['default']) != 'undefined') {
37946             attr.uiProvider = this.uiProviders['default'];
37947         }
37948         
37949         this.fireEvent('create', this, attr);
37950         
37951         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
37952         return(attr.leaf ?
37953                         new Roo.tree.TreeNode(attr) :
37954                         new Roo.tree.AsyncTreeNode(attr));
37955     },
37956
37957     processResponse : function(response, node, callback)
37958     {
37959         var json = response.responseText;
37960         try {
37961             
37962             var o = Roo.decode(json);
37963             
37964             if (this.root === false && typeof(o.success) != undefined) {
37965                 this.root = 'data'; // the default behaviour for list like data..
37966                 }
37967                 
37968             if (this.root !== false &&  !o.success) {
37969                 // it's a failure condition.
37970                 var a = response.argument;
37971                 this.fireEvent("loadexception", this, a.node, response);
37972                 Roo.log("Load failed - should have a handler really");
37973                 return;
37974             }
37975             
37976             
37977             
37978             if (this.root !== false) {
37979                  o = o[this.root];
37980             }
37981             
37982             for(var i = 0, len = o.length; i < len; i++){
37983                 var n = this.createNode(o[i]);
37984                 if(n){
37985                     node.appendChild(n);
37986                 }
37987             }
37988             if(typeof callback == "function"){
37989                 callback(this, node);
37990             }
37991         }catch(e){
37992             this.handleFailure(response);
37993         }
37994     },
37995
37996     handleResponse : function(response){
37997         this.transId = false;
37998         var a = response.argument;
37999         this.processResponse(response, a.node, a.callback);
38000         this.fireEvent("load", this, a.node, response);
38001     },
38002
38003     handleFailure : function(response)
38004     {
38005         // should handle failure better..
38006         this.transId = false;
38007         var a = response.argument;
38008         this.fireEvent("loadexception", this, a.node, response);
38009         if(typeof a.callback == "function"){
38010             a.callback(this, a.node);
38011         }
38012     }
38013 });/*
38014  * Based on:
38015  * Ext JS Library 1.1.1
38016  * Copyright(c) 2006-2007, Ext JS, LLC.
38017  *
38018  * Originally Released Under LGPL - original licence link has changed is not relivant.
38019  *
38020  * Fork - LGPL
38021  * <script type="text/javascript">
38022  */
38023
38024 /**
38025 * @class Roo.tree.TreeFilter
38026 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
38027 * @param {TreePanel} tree
38028 * @param {Object} config (optional)
38029  */
38030 Roo.tree.TreeFilter = function(tree, config){
38031     this.tree = tree;
38032     this.filtered = {};
38033     Roo.apply(this, config);
38034 };
38035
38036 Roo.tree.TreeFilter.prototype = {
38037     clearBlank:false,
38038     reverse:false,
38039     autoClear:false,
38040     remove:false,
38041
38042      /**
38043      * Filter the data by a specific attribute.
38044      * @param {String/RegExp} value Either string that the attribute value
38045      * should start with or a RegExp to test against the attribute
38046      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
38047      * @param {TreeNode} startNode (optional) The node to start the filter at.
38048      */
38049     filter : function(value, attr, startNode){
38050         attr = attr || "text";
38051         var f;
38052         if(typeof value == "string"){
38053             var vlen = value.length;
38054             // auto clear empty filter
38055             if(vlen == 0 && this.clearBlank){
38056                 this.clear();
38057                 return;
38058             }
38059             value = value.toLowerCase();
38060             f = function(n){
38061                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
38062             };
38063         }else if(value.exec){ // regex?
38064             f = function(n){
38065                 return value.test(n.attributes[attr]);
38066             };
38067         }else{
38068             throw 'Illegal filter type, must be string or regex';
38069         }
38070         this.filterBy(f, null, startNode);
38071         },
38072
38073     /**
38074      * Filter by a function. The passed function will be called with each
38075      * node in the tree (or from the startNode). If the function returns true, the node is kept
38076      * otherwise it is filtered. If a node is filtered, its children are also filtered.
38077      * @param {Function} fn The filter function
38078      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
38079      */
38080     filterBy : function(fn, scope, startNode){
38081         startNode = startNode || this.tree.root;
38082         if(this.autoClear){
38083             this.clear();
38084         }
38085         var af = this.filtered, rv = this.reverse;
38086         var f = function(n){
38087             if(n == startNode){
38088                 return true;
38089             }
38090             if(af[n.id]){
38091                 return false;
38092             }
38093             var m = fn.call(scope || n, n);
38094             if(!m || rv){
38095                 af[n.id] = n;
38096                 n.ui.hide();
38097                 return false;
38098             }
38099             return true;
38100         };
38101         startNode.cascade(f);
38102         if(this.remove){
38103            for(var id in af){
38104                if(typeof id != "function"){
38105                    var n = af[id];
38106                    if(n && n.parentNode){
38107                        n.parentNode.removeChild(n);
38108                    }
38109                }
38110            }
38111         }
38112     },
38113
38114     /**
38115      * Clears the current filter. Note: with the "remove" option
38116      * set a filter cannot be cleared.
38117      */
38118     clear : function(){
38119         var t = this.tree;
38120         var af = this.filtered;
38121         for(var id in af){
38122             if(typeof id != "function"){
38123                 var n = af[id];
38124                 if(n){
38125                     n.ui.show();
38126                 }
38127             }
38128         }
38129         this.filtered = {};
38130     }
38131 };
38132 /*
38133  * Based on:
38134  * Ext JS Library 1.1.1
38135  * Copyright(c) 2006-2007, Ext JS, LLC.
38136  *
38137  * Originally Released Under LGPL - original licence link has changed is not relivant.
38138  *
38139  * Fork - LGPL
38140  * <script type="text/javascript">
38141  */
38142  
38143
38144 /**
38145  * @class Roo.tree.TreeSorter
38146  * Provides sorting of nodes in a TreePanel
38147  * 
38148  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
38149  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
38150  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
38151  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
38152  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
38153  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
38154  * @constructor
38155  * @param {TreePanel} tree
38156  * @param {Object} config
38157  */
38158 Roo.tree.TreeSorter = function(tree, config){
38159     Roo.apply(this, config);
38160     tree.on("beforechildrenrendered", this.doSort, this);
38161     tree.on("append", this.updateSort, this);
38162     tree.on("insert", this.updateSort, this);
38163     
38164     var dsc = this.dir && this.dir.toLowerCase() == "desc";
38165     var p = this.property || "text";
38166     var sortType = this.sortType;
38167     var fs = this.folderSort;
38168     var cs = this.caseSensitive === true;
38169     var leafAttr = this.leafAttr || 'leaf';
38170
38171     this.sortFn = function(n1, n2){
38172         if(fs){
38173             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
38174                 return 1;
38175             }
38176             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
38177                 return -1;
38178             }
38179         }
38180         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
38181         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
38182         if(v1 < v2){
38183                         return dsc ? +1 : -1;
38184                 }else if(v1 > v2){
38185                         return dsc ? -1 : +1;
38186         }else{
38187                 return 0;
38188         }
38189     };
38190 };
38191
38192 Roo.tree.TreeSorter.prototype = {
38193     doSort : function(node){
38194         node.sort(this.sortFn);
38195     },
38196     
38197     compareNodes : function(n1, n2){
38198         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
38199     },
38200     
38201     updateSort : function(tree, node){
38202         if(node.childrenRendered){
38203             this.doSort.defer(1, this, [node]);
38204         }
38205     }
38206 };/*
38207  * Based on:
38208  * Ext JS Library 1.1.1
38209  * Copyright(c) 2006-2007, Ext JS, LLC.
38210  *
38211  * Originally Released Under LGPL - original licence link has changed is not relivant.
38212  *
38213  * Fork - LGPL
38214  * <script type="text/javascript">
38215  */
38216
38217 if(Roo.dd.DropZone){
38218     
38219 Roo.tree.TreeDropZone = function(tree, config){
38220     this.allowParentInsert = false;
38221     this.allowContainerDrop = false;
38222     this.appendOnly = false;
38223     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
38224     this.tree = tree;
38225     this.lastInsertClass = "x-tree-no-status";
38226     this.dragOverData = {};
38227 };
38228
38229 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
38230     ddGroup : "TreeDD",
38231     scroll:  true,
38232     
38233     expandDelay : 1000,
38234     
38235     expandNode : function(node){
38236         if(node.hasChildNodes() && !node.isExpanded()){
38237             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
38238         }
38239     },
38240     
38241     queueExpand : function(node){
38242         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
38243     },
38244     
38245     cancelExpand : function(){
38246         if(this.expandProcId){
38247             clearTimeout(this.expandProcId);
38248             this.expandProcId = false;
38249         }
38250     },
38251     
38252     isValidDropPoint : function(n, pt, dd, e, data){
38253         if(!n || !data){ return false; }
38254         var targetNode = n.node;
38255         var dropNode = data.node;
38256         // default drop rules
38257         if(!(targetNode && targetNode.isTarget && pt)){
38258             return false;
38259         }
38260         if(pt == "append" && targetNode.allowChildren === false){
38261             return false;
38262         }
38263         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
38264             return false;
38265         }
38266         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
38267             return false;
38268         }
38269         // reuse the object
38270         var overEvent = this.dragOverData;
38271         overEvent.tree = this.tree;
38272         overEvent.target = targetNode;
38273         overEvent.data = data;
38274         overEvent.point = pt;
38275         overEvent.source = dd;
38276         overEvent.rawEvent = e;
38277         overEvent.dropNode = dropNode;
38278         overEvent.cancel = false;  
38279         var result = this.tree.fireEvent("nodedragover", overEvent);
38280         return overEvent.cancel === false && result !== false;
38281     },
38282     
38283     getDropPoint : function(e, n, dd)
38284     {
38285         var tn = n.node;
38286         if(tn.isRoot){
38287             return tn.allowChildren !== false ? "append" : false; // always append for root
38288         }
38289         var dragEl = n.ddel;
38290         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
38291         var y = Roo.lib.Event.getPageY(e);
38292         //var noAppend = tn.allowChildren === false || tn.isLeaf();
38293         
38294         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
38295         var noAppend = tn.allowChildren === false;
38296         if(this.appendOnly || tn.parentNode.allowChildren === false){
38297             return noAppend ? false : "append";
38298         }
38299         var noBelow = false;
38300         if(!this.allowParentInsert){
38301             noBelow = tn.hasChildNodes() && tn.isExpanded();
38302         }
38303         var q = (b - t) / (noAppend ? 2 : 3);
38304         if(y >= t && y < (t + q)){
38305             return "above";
38306         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
38307             return "below";
38308         }else{
38309             return "append";
38310         }
38311     },
38312     
38313     onNodeEnter : function(n, dd, e, data)
38314     {
38315         this.cancelExpand();
38316     },
38317     
38318     onNodeOver : function(n, dd, e, data)
38319     {
38320        
38321         var pt = this.getDropPoint(e, n, dd);
38322         var node = n.node;
38323         
38324         // auto node expand check
38325         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
38326             this.queueExpand(node);
38327         }else if(pt != "append"){
38328             this.cancelExpand();
38329         }
38330         
38331         // set the insert point style on the target node
38332         var returnCls = this.dropNotAllowed;
38333         if(this.isValidDropPoint(n, pt, dd, e, data)){
38334            if(pt){
38335                var el = n.ddel;
38336                var cls;
38337                if(pt == "above"){
38338                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
38339                    cls = "x-tree-drag-insert-above";
38340                }else if(pt == "below"){
38341                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
38342                    cls = "x-tree-drag-insert-below";
38343                }else{
38344                    returnCls = "x-tree-drop-ok-append";
38345                    cls = "x-tree-drag-append";
38346                }
38347                if(this.lastInsertClass != cls){
38348                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
38349                    this.lastInsertClass = cls;
38350                }
38351            }
38352        }
38353        return returnCls;
38354     },
38355     
38356     onNodeOut : function(n, dd, e, data){
38357         
38358         this.cancelExpand();
38359         this.removeDropIndicators(n);
38360     },
38361     
38362     onNodeDrop : function(n, dd, e, data){
38363         var point = this.getDropPoint(e, n, dd);
38364         var targetNode = n.node;
38365         targetNode.ui.startDrop();
38366         if(!this.isValidDropPoint(n, point, dd, e, data)){
38367             targetNode.ui.endDrop();
38368             return false;
38369         }
38370         // first try to find the drop node
38371         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
38372         var dropEvent = {
38373             tree : this.tree,
38374             target: targetNode,
38375             data: data,
38376             point: point,
38377             source: dd,
38378             rawEvent: e,
38379             dropNode: dropNode,
38380             cancel: !dropNode   
38381         };
38382         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
38383         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
38384             targetNode.ui.endDrop();
38385             return false;
38386         }
38387         // allow target changing
38388         targetNode = dropEvent.target;
38389         if(point == "append" && !targetNode.isExpanded()){
38390             targetNode.expand(false, null, function(){
38391                 this.completeDrop(dropEvent);
38392             }.createDelegate(this));
38393         }else{
38394             this.completeDrop(dropEvent);
38395         }
38396         return true;
38397     },
38398     
38399     completeDrop : function(de){
38400         var ns = de.dropNode, p = de.point, t = de.target;
38401         if(!(ns instanceof Array)){
38402             ns = [ns];
38403         }
38404         var n;
38405         for(var i = 0, len = ns.length; i < len; i++){
38406             n = ns[i];
38407             if(p == "above"){
38408                 t.parentNode.insertBefore(n, t);
38409             }else if(p == "below"){
38410                 t.parentNode.insertBefore(n, t.nextSibling);
38411             }else{
38412                 t.appendChild(n);
38413             }
38414         }
38415         n.ui.focus();
38416         if(this.tree.hlDrop){
38417             n.ui.highlight();
38418         }
38419         t.ui.endDrop();
38420         this.tree.fireEvent("nodedrop", de);
38421     },
38422     
38423     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
38424         if(this.tree.hlDrop){
38425             dropNode.ui.focus();
38426             dropNode.ui.highlight();
38427         }
38428         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
38429     },
38430     
38431     getTree : function(){
38432         return this.tree;
38433     },
38434     
38435     removeDropIndicators : function(n){
38436         if(n && n.ddel){
38437             var el = n.ddel;
38438             Roo.fly(el).removeClass([
38439                     "x-tree-drag-insert-above",
38440                     "x-tree-drag-insert-below",
38441                     "x-tree-drag-append"]);
38442             this.lastInsertClass = "_noclass";
38443         }
38444     },
38445     
38446     beforeDragDrop : function(target, e, id){
38447         this.cancelExpand();
38448         return true;
38449     },
38450     
38451     afterRepair : function(data){
38452         if(data && Roo.enableFx){
38453             data.node.ui.highlight();
38454         }
38455         this.hideProxy();
38456     } 
38457     
38458 });
38459
38460 }
38461 /*
38462  * Based on:
38463  * Ext JS Library 1.1.1
38464  * Copyright(c) 2006-2007, Ext JS, LLC.
38465  *
38466  * Originally Released Under LGPL - original licence link has changed is not relivant.
38467  *
38468  * Fork - LGPL
38469  * <script type="text/javascript">
38470  */
38471  
38472
38473 if(Roo.dd.DragZone){
38474 Roo.tree.TreeDragZone = function(tree, config){
38475     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
38476     this.tree = tree;
38477 };
38478
38479 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
38480     ddGroup : "TreeDD",
38481    
38482     onBeforeDrag : function(data, e){
38483         var n = data.node;
38484         return n && n.draggable && !n.disabled;
38485     },
38486      
38487     
38488     onInitDrag : function(e){
38489         var data = this.dragData;
38490         this.tree.getSelectionModel().select(data.node);
38491         this.proxy.update("");
38492         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
38493         this.tree.fireEvent("startdrag", this.tree, data.node, e);
38494     },
38495     
38496     getRepairXY : function(e, data){
38497         return data.node.ui.getDDRepairXY();
38498     },
38499     
38500     onEndDrag : function(data, e){
38501         this.tree.fireEvent("enddrag", this.tree, data.node, e);
38502         
38503         
38504     },
38505     
38506     onValidDrop : function(dd, e, id){
38507         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
38508         this.hideProxy();
38509     },
38510     
38511     beforeInvalidDrop : function(e, id){
38512         // this scrolls the original position back into view
38513         var sm = this.tree.getSelectionModel();
38514         sm.clearSelections();
38515         sm.select(this.dragData.node);
38516     }
38517 });
38518 }/*
38519  * Based on:
38520  * Ext JS Library 1.1.1
38521  * Copyright(c) 2006-2007, Ext JS, LLC.
38522  *
38523  * Originally Released Under LGPL - original licence link has changed is not relivant.
38524  *
38525  * Fork - LGPL
38526  * <script type="text/javascript">
38527  */
38528 /**
38529  * @class Roo.tree.TreeEditor
38530  * @extends Roo.Editor
38531  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
38532  * as the editor field.
38533  * @constructor
38534  * @param {Object} config (used to be the tree panel.)
38535  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
38536  * 
38537  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
38538  * @cfg {Roo.form.TextField} field [required] The field configuration
38539  *
38540  * 
38541  */
38542 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
38543     var tree = config;
38544     var field;
38545     if (oldconfig) { // old style..
38546         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
38547     } else {
38548         // new style..
38549         tree = config.tree;
38550         config.field = config.field  || {};
38551         config.field.xtype = 'TextField';
38552         field = Roo.factory(config.field, Roo.form);
38553     }
38554     config = config || {};
38555     
38556     
38557     this.addEvents({
38558         /**
38559          * @event beforenodeedit
38560          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
38561          * false from the handler of this event.
38562          * @param {Editor} this
38563          * @param {Roo.tree.Node} node 
38564          */
38565         "beforenodeedit" : true
38566     });
38567     
38568     //Roo.log(config);
38569     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
38570
38571     this.tree = tree;
38572
38573     tree.on('beforeclick', this.beforeNodeClick, this);
38574     tree.getTreeEl().on('mousedown', this.hide, this);
38575     this.on('complete', this.updateNode, this);
38576     this.on('beforestartedit', this.fitToTree, this);
38577     this.on('startedit', this.bindScroll, this, {delay:10});
38578     this.on('specialkey', this.onSpecialKey, this);
38579 };
38580
38581 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
38582     /**
38583      * @cfg {String} alignment
38584      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
38585      */
38586     alignment: "l-l",
38587     // inherit
38588     autoSize: false,
38589     /**
38590      * @cfg {Boolean} hideEl
38591      * True to hide the bound element while the editor is displayed (defaults to false)
38592      */
38593     hideEl : false,
38594     /**
38595      * @cfg {String} cls
38596      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
38597      */
38598     cls: "x-small-editor x-tree-editor",
38599     /**
38600      * @cfg {Boolean} shim
38601      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
38602      */
38603     shim:false,
38604     // inherit
38605     shadow:"frame",
38606     /**
38607      * @cfg {Number} maxWidth
38608      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
38609      * the containing tree element's size, it will be automatically limited for you to the container width, taking
38610      * scroll and client offsets into account prior to each edit.
38611      */
38612     maxWidth: 250,
38613
38614     editDelay : 350,
38615
38616     // private
38617     fitToTree : function(ed, el){
38618         var td = this.tree.getTreeEl().dom, nd = el.dom;
38619         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
38620             td.scrollLeft = nd.offsetLeft;
38621         }
38622         var w = Math.min(
38623                 this.maxWidth,
38624                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
38625         this.setSize(w, '');
38626         
38627         return this.fireEvent('beforenodeedit', this, this.editNode);
38628         
38629     },
38630
38631     // private
38632     triggerEdit : function(node){
38633         this.completeEdit();
38634         this.editNode = node;
38635         this.startEdit(node.ui.textNode, node.text);
38636     },
38637
38638     // private
38639     bindScroll : function(){
38640         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
38641     },
38642
38643     // private
38644     beforeNodeClick : function(node, e){
38645         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
38646         this.lastClick = new Date();
38647         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
38648             e.stopEvent();
38649             this.triggerEdit(node);
38650             return false;
38651         }
38652         return true;
38653     },
38654
38655     // private
38656     updateNode : function(ed, value){
38657         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
38658         this.editNode.setText(value);
38659     },
38660
38661     // private
38662     onHide : function(){
38663         Roo.tree.TreeEditor.superclass.onHide.call(this);
38664         if(this.editNode){
38665             this.editNode.ui.focus();
38666         }
38667     },
38668
38669     // private
38670     onSpecialKey : function(field, e){
38671         var k = e.getKey();
38672         if(k == e.ESC){
38673             e.stopEvent();
38674             this.cancelEdit();
38675         }else if(k == e.ENTER && !e.hasModifier()){
38676             e.stopEvent();
38677             this.completeEdit();
38678         }
38679     }
38680 });//<Script type="text/javascript">
38681 /*
38682  * Based on:
38683  * Ext JS Library 1.1.1
38684  * Copyright(c) 2006-2007, Ext JS, LLC.
38685  *
38686  * Originally Released Under LGPL - original licence link has changed is not relivant.
38687  *
38688  * Fork - LGPL
38689  * <script type="text/javascript">
38690  */
38691  
38692 /**
38693  * Not documented??? - probably should be...
38694  */
38695
38696 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
38697     //focus: Roo.emptyFn, // prevent odd scrolling behavior
38698     
38699     renderElements : function(n, a, targetNode, bulkRender){
38700         //consel.log("renderElements?");
38701         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
38702
38703         var t = n.getOwnerTree();
38704         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
38705         
38706         var cols = t.columns;
38707         var bw = t.borderWidth;
38708         var c = cols[0];
38709         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
38710          var cb = typeof a.checked == "boolean";
38711         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38712         var colcls = 'x-t-' + tid + '-c0';
38713         var buf = [
38714             '<li class="x-tree-node">',
38715             
38716                 
38717                 '<div class="x-tree-node-el ', a.cls,'">',
38718                     // extran...
38719                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
38720                 
38721                 
38722                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
38723                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
38724                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
38725                            (a.icon ? ' x-tree-node-inline-icon' : ''),
38726                            (a.iconCls ? ' '+a.iconCls : ''),
38727                            '" unselectable="on" />',
38728                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
38729                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
38730                              
38731                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38732                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
38733                             '<span unselectable="on" qtip="' + tx + '">',
38734                              tx,
38735                              '</span></a>' ,
38736                     '</div>',
38737                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38738                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
38739                  ];
38740         for(var i = 1, len = cols.length; i < len; i++){
38741             c = cols[i];
38742             colcls = 'x-t-' + tid + '-c' +i;
38743             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38744             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
38745                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
38746                       "</div>");
38747          }
38748          
38749          buf.push(
38750             '</a>',
38751             '<div class="x-clear"></div></div>',
38752             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
38753             "</li>");
38754         
38755         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
38756             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
38757                                 n.nextSibling.ui.getEl(), buf.join(""));
38758         }else{
38759             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
38760         }
38761         var el = this.wrap.firstChild;
38762         this.elRow = el;
38763         this.elNode = el.firstChild;
38764         this.ranchor = el.childNodes[1];
38765         this.ctNode = this.wrap.childNodes[1];
38766         var cs = el.firstChild.childNodes;
38767         this.indentNode = cs[0];
38768         this.ecNode = cs[1];
38769         this.iconNode = cs[2];
38770         var index = 3;
38771         if(cb){
38772             this.checkbox = cs[3];
38773             index++;
38774         }
38775         this.anchor = cs[index];
38776         
38777         this.textNode = cs[index].firstChild;
38778         
38779         //el.on("click", this.onClick, this);
38780         //el.on("dblclick", this.onDblClick, this);
38781         
38782         
38783        // console.log(this);
38784     },
38785     initEvents : function(){
38786         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
38787         
38788             
38789         var a = this.ranchor;
38790
38791         var el = Roo.get(a);
38792
38793         if(Roo.isOpera){ // opera render bug ignores the CSS
38794             el.setStyle("text-decoration", "none");
38795         }
38796
38797         el.on("click", this.onClick, this);
38798         el.on("dblclick", this.onDblClick, this);
38799         el.on("contextmenu", this.onContextMenu, this);
38800         
38801     },
38802     
38803     /*onSelectedChange : function(state){
38804         if(state){
38805             this.focus();
38806             this.addClass("x-tree-selected");
38807         }else{
38808             //this.blur();
38809             this.removeClass("x-tree-selected");
38810         }
38811     },*/
38812     addClass : function(cls){
38813         if(this.elRow){
38814             Roo.fly(this.elRow).addClass(cls);
38815         }
38816         
38817     },
38818     
38819     
38820     removeClass : function(cls){
38821         if(this.elRow){
38822             Roo.fly(this.elRow).removeClass(cls);
38823         }
38824     }
38825
38826     
38827     
38828 });//<Script type="text/javascript">
38829
38830 /*
38831  * Based on:
38832  * Ext JS Library 1.1.1
38833  * Copyright(c) 2006-2007, Ext JS, LLC.
38834  *
38835  * Originally Released Under LGPL - original licence link has changed is not relivant.
38836  *
38837  * Fork - LGPL
38838  * <script type="text/javascript">
38839  */
38840  
38841
38842 /**
38843  * @class Roo.tree.ColumnTree
38844  * @extends Roo.tree.TreePanel
38845  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
38846  * @cfg {int} borderWidth  compined right/left border allowance
38847  * @constructor
38848  * @param {String/HTMLElement/Element} el The container element
38849  * @param {Object} config
38850  */
38851 Roo.tree.ColumnTree =  function(el, config)
38852 {
38853    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
38854    this.addEvents({
38855         /**
38856         * @event resize
38857         * Fire this event on a container when it resizes
38858         * @param {int} w Width
38859         * @param {int} h Height
38860         */
38861        "resize" : true
38862     });
38863     this.on('resize', this.onResize, this);
38864 };
38865
38866 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
38867     //lines:false,
38868     
38869     
38870     borderWidth: Roo.isBorderBox ? 0 : 2, 
38871     headEls : false,
38872     
38873     render : function(){
38874         // add the header.....
38875        
38876         Roo.tree.ColumnTree.superclass.render.apply(this);
38877         
38878         this.el.addClass('x-column-tree');
38879         
38880         this.headers = this.el.createChild(
38881             {cls:'x-tree-headers'},this.innerCt.dom);
38882    
38883         var cols = this.columns, c;
38884         var totalWidth = 0;
38885         this.headEls = [];
38886         var  len = cols.length;
38887         for(var i = 0; i < len; i++){
38888              c = cols[i];
38889              totalWidth += c.width;
38890             this.headEls.push(this.headers.createChild({
38891                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
38892                  cn: {
38893                      cls:'x-tree-hd-text',
38894                      html: c.header
38895                  },
38896                  style:'width:'+(c.width-this.borderWidth)+'px;'
38897              }));
38898         }
38899         this.headers.createChild({cls:'x-clear'});
38900         // prevent floats from wrapping when clipped
38901         this.headers.setWidth(totalWidth);
38902         //this.innerCt.setWidth(totalWidth);
38903         this.innerCt.setStyle({ overflow: 'auto' });
38904         this.onResize(this.width, this.height);
38905              
38906         
38907     },
38908     onResize : function(w,h)
38909     {
38910         this.height = h;
38911         this.width = w;
38912         // resize cols..
38913         this.innerCt.setWidth(this.width);
38914         this.innerCt.setHeight(this.height-20);
38915         
38916         // headers...
38917         var cols = this.columns, c;
38918         var totalWidth = 0;
38919         var expEl = false;
38920         var len = cols.length;
38921         for(var i = 0; i < len; i++){
38922             c = cols[i];
38923             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
38924                 // it's the expander..
38925                 expEl  = this.headEls[i];
38926                 continue;
38927             }
38928             totalWidth += c.width;
38929             
38930         }
38931         if (expEl) {
38932             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
38933         }
38934         this.headers.setWidth(w-20);
38935
38936         
38937         
38938         
38939     }
38940 });
38941 /*
38942  * Based on:
38943  * Ext JS Library 1.1.1
38944  * Copyright(c) 2006-2007, Ext JS, LLC.
38945  *
38946  * Originally Released Under LGPL - original licence link has changed is not relivant.
38947  *
38948  * Fork - LGPL
38949  * <script type="text/javascript">
38950  */
38951  
38952 /**
38953  * @class Roo.menu.Menu
38954  * @extends Roo.util.Observable
38955  * @children Roo.menu.Item Roo.menu.Separator Roo.menu.TextItem
38956  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
38957  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
38958  * @constructor
38959  * Creates a new Menu
38960  * @param {Object} config Configuration options
38961  */
38962 Roo.menu.Menu = function(config){
38963     
38964     Roo.menu.Menu.superclass.constructor.call(this, config);
38965     
38966     this.id = this.id || Roo.id();
38967     this.addEvents({
38968         /**
38969          * @event beforeshow
38970          * Fires before this menu is displayed
38971          * @param {Roo.menu.Menu} this
38972          */
38973         beforeshow : true,
38974         /**
38975          * @event beforehide
38976          * Fires before this menu is hidden
38977          * @param {Roo.menu.Menu} this
38978          */
38979         beforehide : true,
38980         /**
38981          * @event show
38982          * Fires after this menu is displayed
38983          * @param {Roo.menu.Menu} this
38984          */
38985         show : true,
38986         /**
38987          * @event hide
38988          * Fires after this menu is hidden
38989          * @param {Roo.menu.Menu} this
38990          */
38991         hide : true,
38992         /**
38993          * @event click
38994          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
38995          * @param {Roo.menu.Menu} this
38996          * @param {Roo.menu.Item} menuItem The menu item that was clicked
38997          * @param {Roo.EventObject} e
38998          */
38999         click : true,
39000         /**
39001          * @event mouseover
39002          * Fires when the mouse is hovering over this menu
39003          * @param {Roo.menu.Menu} this
39004          * @param {Roo.EventObject} e
39005          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39006          */
39007         mouseover : true,
39008         /**
39009          * @event mouseout
39010          * Fires when the mouse exits this menu
39011          * @param {Roo.menu.Menu} this
39012          * @param {Roo.EventObject} e
39013          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39014          */
39015         mouseout : true,
39016         /**
39017          * @event itemclick
39018          * Fires when a menu item contained in this menu is clicked
39019          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
39020          * @param {Roo.EventObject} e
39021          */
39022         itemclick: true
39023     });
39024     if (this.registerMenu) {
39025         Roo.menu.MenuMgr.register(this);
39026     }
39027     
39028     var mis = this.items;
39029     this.items = new Roo.util.MixedCollection();
39030     if(mis){
39031         this.add.apply(this, mis);
39032     }
39033 };
39034
39035 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
39036     /**
39037      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
39038      */
39039     minWidth : 120,
39040     /**
39041      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
39042      * for bottom-right shadow (defaults to "sides")
39043      */
39044     shadow : "sides",
39045     /**
39046      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
39047      * this menu (defaults to "tl-tr?")
39048      */
39049     subMenuAlign : "tl-tr?",
39050     /**
39051      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
39052      * relative to its element of origin (defaults to "tl-bl?")
39053      */
39054     defaultAlign : "tl-bl?",
39055     /**
39056      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
39057      */
39058     allowOtherMenus : false,
39059     /**
39060      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
39061      */
39062     registerMenu : true,
39063
39064     hidden:true,
39065
39066     // private
39067     render : function(){
39068         if(this.el){
39069             return;
39070         }
39071         var el = this.el = new Roo.Layer({
39072             cls: "x-menu",
39073             shadow:this.shadow,
39074             constrain: false,
39075             parentEl: this.parentEl || document.body,
39076             zindex:15000
39077         });
39078
39079         this.keyNav = new Roo.menu.MenuNav(this);
39080
39081         if(this.plain){
39082             el.addClass("x-menu-plain");
39083         }
39084         if(this.cls){
39085             el.addClass(this.cls);
39086         }
39087         // generic focus element
39088         this.focusEl = el.createChild({
39089             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
39090         });
39091         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
39092         //disabling touch- as it's causing issues ..
39093         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
39094         ul.on('click'   , this.onClick, this);
39095         
39096         
39097         ul.on("mouseover", this.onMouseOver, this);
39098         ul.on("mouseout", this.onMouseOut, this);
39099         this.items.each(function(item){
39100             if (item.hidden) {
39101                 return;
39102             }
39103             
39104             var li = document.createElement("li");
39105             li.className = "x-menu-list-item";
39106             ul.dom.appendChild(li);
39107             item.render(li, this);
39108         }, this);
39109         this.ul = ul;
39110         this.autoWidth();
39111     },
39112
39113     // private
39114     autoWidth : function(){
39115         var el = this.el, ul = this.ul;
39116         if(!el){
39117             return;
39118         }
39119         var w = this.width;
39120         if(w){
39121             el.setWidth(w);
39122         }else if(Roo.isIE){
39123             el.setWidth(this.minWidth);
39124             var t = el.dom.offsetWidth; // force recalc
39125             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
39126         }
39127     },
39128
39129     // private
39130     delayAutoWidth : function(){
39131         if(this.rendered){
39132             if(!this.awTask){
39133                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
39134             }
39135             this.awTask.delay(20);
39136         }
39137     },
39138
39139     // private
39140     findTargetItem : function(e){
39141         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
39142         if(t && t.menuItemId){
39143             return this.items.get(t.menuItemId);
39144         }
39145     },
39146
39147     // private
39148     onClick : function(e){
39149         Roo.log("menu.onClick");
39150         var t = this.findTargetItem(e);
39151         if(!t){
39152             return;
39153         }
39154         Roo.log(e);
39155         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
39156             if(t == this.activeItem && t.shouldDeactivate(e)){
39157                 this.activeItem.deactivate();
39158                 delete this.activeItem;
39159                 return;
39160             }
39161             if(t.canActivate){
39162                 this.setActiveItem(t, true);
39163             }
39164             return;
39165             
39166             
39167         }
39168         
39169         t.onClick(e);
39170         this.fireEvent("click", this, t, e);
39171     },
39172
39173     // private
39174     setActiveItem : function(item, autoExpand){
39175         if(item != this.activeItem){
39176             if(this.activeItem){
39177                 this.activeItem.deactivate();
39178             }
39179             this.activeItem = item;
39180             item.activate(autoExpand);
39181         }else if(autoExpand){
39182             item.expandMenu();
39183         }
39184     },
39185
39186     // private
39187     tryActivate : function(start, step){
39188         var items = this.items;
39189         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
39190             var item = items.get(i);
39191             if(!item.disabled && item.canActivate){
39192                 this.setActiveItem(item, false);
39193                 return item;
39194             }
39195         }
39196         return false;
39197     },
39198
39199     // private
39200     onMouseOver : function(e){
39201         var t;
39202         if(t = this.findTargetItem(e)){
39203             if(t.canActivate && !t.disabled){
39204                 this.setActiveItem(t, true);
39205             }
39206         }
39207         this.fireEvent("mouseover", this, e, t);
39208     },
39209
39210     // private
39211     onMouseOut : function(e){
39212         var t;
39213         if(t = this.findTargetItem(e)){
39214             if(t == this.activeItem && t.shouldDeactivate(e)){
39215                 this.activeItem.deactivate();
39216                 delete this.activeItem;
39217             }
39218         }
39219         this.fireEvent("mouseout", this, e, t);
39220     },
39221
39222     /**
39223      * Read-only.  Returns true if the menu is currently displayed, else false.
39224      * @type Boolean
39225      */
39226     isVisible : function(){
39227         return this.el && !this.hidden;
39228     },
39229
39230     /**
39231      * Displays this menu relative to another element
39232      * @param {String/HTMLElement/Roo.Element} element The element to align to
39233      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
39234      * the element (defaults to this.defaultAlign)
39235      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39236      */
39237     show : function(el, pos, parentMenu){
39238         this.parentMenu = parentMenu;
39239         if(!this.el){
39240             this.render();
39241         }
39242         this.fireEvent("beforeshow", this);
39243         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
39244     },
39245
39246     /**
39247      * Displays this menu at a specific xy position
39248      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
39249      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39250      */
39251     showAt : function(xy, parentMenu, /* private: */_e){
39252         this.parentMenu = parentMenu;
39253         if(!this.el){
39254             this.render();
39255         }
39256         if(_e !== false){
39257             this.fireEvent("beforeshow", this);
39258             xy = this.el.adjustForConstraints(xy);
39259         }
39260         this.el.setXY(xy);
39261         this.el.show();
39262         this.hidden = false;
39263         this.focus();
39264         this.fireEvent("show", this);
39265     },
39266
39267     focus : function(){
39268         if(!this.hidden){
39269             this.doFocus.defer(50, this);
39270         }
39271     },
39272
39273     doFocus : function(){
39274         if(!this.hidden){
39275             this.focusEl.focus();
39276         }
39277     },
39278
39279     /**
39280      * Hides this menu and optionally all parent menus
39281      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
39282      */
39283     hide : function(deep){
39284         if(this.el && this.isVisible()){
39285             this.fireEvent("beforehide", this);
39286             if(this.activeItem){
39287                 this.activeItem.deactivate();
39288                 this.activeItem = null;
39289             }
39290             this.el.hide();
39291             this.hidden = true;
39292             this.fireEvent("hide", this);
39293         }
39294         if(deep === true && this.parentMenu){
39295             this.parentMenu.hide(true);
39296         }
39297     },
39298
39299     /**
39300      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
39301      * Any of the following are valid:
39302      * <ul>
39303      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
39304      * <li>An HTMLElement object which will be converted to a menu item</li>
39305      * <li>A menu item config object that will be created as a new menu item</li>
39306      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
39307      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
39308      * </ul>
39309      * Usage:
39310      * <pre><code>
39311 // Create the menu
39312 var menu = new Roo.menu.Menu();
39313
39314 // Create a menu item to add by reference
39315 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
39316
39317 // Add a bunch of items at once using different methods.
39318 // Only the last item added will be returned.
39319 var item = menu.add(
39320     menuItem,                // add existing item by ref
39321     'Dynamic Item',          // new TextItem
39322     '-',                     // new separator
39323     { text: 'Config Item' }  // new item by config
39324 );
39325 </code></pre>
39326      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
39327      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
39328      */
39329     add : function(){
39330         var a = arguments, l = a.length, item;
39331         for(var i = 0; i < l; i++){
39332             var el = a[i];
39333             if ((typeof(el) == "object") && el.xtype && el.xns) {
39334                 el = Roo.factory(el, Roo.menu);
39335             }
39336             
39337             if(el.render){ // some kind of Item
39338                 item = this.addItem(el);
39339             }else if(typeof el == "string"){ // string
39340                 if(el == "separator" || el == "-"){
39341                     item = this.addSeparator();
39342                 }else{
39343                     item = this.addText(el);
39344                 }
39345             }else if(el.tagName || el.el){ // element
39346                 item = this.addElement(el);
39347             }else if(typeof el == "object"){ // must be menu item config?
39348                 item = this.addMenuItem(el);
39349             }
39350         }
39351         return item;
39352     },
39353
39354     /**
39355      * Returns this menu's underlying {@link Roo.Element} object
39356      * @return {Roo.Element} The element
39357      */
39358     getEl : function(){
39359         if(!this.el){
39360             this.render();
39361         }
39362         return this.el;
39363     },
39364
39365     /**
39366      * Adds a separator bar to the menu
39367      * @return {Roo.menu.Item} The menu item that was added
39368      */
39369     addSeparator : function(){
39370         return this.addItem(new Roo.menu.Separator());
39371     },
39372
39373     /**
39374      * Adds an {@link Roo.Element} object to the menu
39375      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
39376      * @return {Roo.menu.Item} The menu item that was added
39377      */
39378     addElement : function(el){
39379         return this.addItem(new Roo.menu.BaseItem(el));
39380     },
39381
39382     /**
39383      * Adds an existing object based on {@link Roo.menu.Item} to the menu
39384      * @param {Roo.menu.Item} item The menu item to add
39385      * @return {Roo.menu.Item} The menu item that was added
39386      */
39387     addItem : function(item){
39388         this.items.add(item);
39389         if(this.ul){
39390             var li = document.createElement("li");
39391             li.className = "x-menu-list-item";
39392             this.ul.dom.appendChild(li);
39393             item.render(li, this);
39394             this.delayAutoWidth();
39395         }
39396         return item;
39397     },
39398
39399     /**
39400      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
39401      * @param {Object} config A MenuItem config object
39402      * @return {Roo.menu.Item} The menu item that was added
39403      */
39404     addMenuItem : function(config){
39405         if(!(config instanceof Roo.menu.Item)){
39406             if(typeof config.checked == "boolean"){ // must be check menu item config?
39407                 config = new Roo.menu.CheckItem(config);
39408             }else{
39409                 config = new Roo.menu.Item(config);
39410             }
39411         }
39412         return this.addItem(config);
39413     },
39414
39415     /**
39416      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
39417      * @param {String} text The text to display in the menu item
39418      * @return {Roo.menu.Item} The menu item that was added
39419      */
39420     addText : function(text){
39421         return this.addItem(new Roo.menu.TextItem({ text : text }));
39422     },
39423
39424     /**
39425      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
39426      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
39427      * @param {Roo.menu.Item} item The menu item to add
39428      * @return {Roo.menu.Item} The menu item that was added
39429      */
39430     insert : function(index, item){
39431         this.items.insert(index, item);
39432         if(this.ul){
39433             var li = document.createElement("li");
39434             li.className = "x-menu-list-item";
39435             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
39436             item.render(li, this);
39437             this.delayAutoWidth();
39438         }
39439         return item;
39440     },
39441
39442     /**
39443      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
39444      * @param {Roo.menu.Item} item The menu item to remove
39445      */
39446     remove : function(item){
39447         this.items.removeKey(item.id);
39448         item.destroy();
39449     },
39450
39451     /**
39452      * Removes and destroys all items in the menu
39453      */
39454     removeAll : function(){
39455         var f;
39456         while(f = this.items.first()){
39457             this.remove(f);
39458         }
39459     }
39460 });
39461
39462 // MenuNav is a private utility class used internally by the Menu
39463 Roo.menu.MenuNav = function(menu){
39464     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
39465     this.scope = this.menu = menu;
39466 };
39467
39468 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
39469     doRelay : function(e, h){
39470         var k = e.getKey();
39471         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
39472             this.menu.tryActivate(0, 1);
39473             return false;
39474         }
39475         return h.call(this.scope || this, e, this.menu);
39476     },
39477
39478     up : function(e, m){
39479         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
39480             m.tryActivate(m.items.length-1, -1);
39481         }
39482     },
39483
39484     down : function(e, m){
39485         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
39486             m.tryActivate(0, 1);
39487         }
39488     },
39489
39490     right : function(e, m){
39491         if(m.activeItem){
39492             m.activeItem.expandMenu(true);
39493         }
39494     },
39495
39496     left : function(e, m){
39497         m.hide();
39498         if(m.parentMenu && m.parentMenu.activeItem){
39499             m.parentMenu.activeItem.activate();
39500         }
39501     },
39502
39503     enter : function(e, m){
39504         if(m.activeItem){
39505             e.stopPropagation();
39506             m.activeItem.onClick(e);
39507             m.fireEvent("click", this, m.activeItem);
39508             return true;
39509         }
39510     }
39511 });/*
39512  * Based on:
39513  * Ext JS Library 1.1.1
39514  * Copyright(c) 2006-2007, Ext JS, LLC.
39515  *
39516  * Originally Released Under LGPL - original licence link has changed is not relivant.
39517  *
39518  * Fork - LGPL
39519  * <script type="text/javascript">
39520  */
39521  
39522 /**
39523  * @class Roo.menu.MenuMgr
39524  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
39525  * @static
39526  */
39527 Roo.menu.MenuMgr = function(){
39528    var menus, active, groups = {}, attached = false, lastShow = new Date();
39529
39530    // private - called when first menu is created
39531    function init(){
39532        menus = {};
39533        active = new Roo.util.MixedCollection();
39534        Roo.get(document).addKeyListener(27, function(){
39535            if(active.length > 0){
39536                hideAll();
39537            }
39538        });
39539    }
39540
39541    // private
39542    function hideAll(){
39543        if(active && active.length > 0){
39544            var c = active.clone();
39545            c.each(function(m){
39546                m.hide();
39547            });
39548        }
39549    }
39550
39551    // private
39552    function onHide(m){
39553        active.remove(m);
39554        if(active.length < 1){
39555            Roo.get(document).un("mousedown", onMouseDown);
39556            attached = false;
39557        }
39558    }
39559
39560    // private
39561    function onShow(m){
39562        var last = active.last();
39563        lastShow = new Date();
39564        active.add(m);
39565        if(!attached){
39566            Roo.get(document).on("mousedown", onMouseDown);
39567            attached = true;
39568        }
39569        if(m.parentMenu){
39570           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
39571           m.parentMenu.activeChild = m;
39572        }else if(last && last.isVisible()){
39573           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
39574        }
39575    }
39576
39577    // private
39578    function onBeforeHide(m){
39579        if(m.activeChild){
39580            m.activeChild.hide();
39581        }
39582        if(m.autoHideTimer){
39583            clearTimeout(m.autoHideTimer);
39584            delete m.autoHideTimer;
39585        }
39586    }
39587
39588    // private
39589    function onBeforeShow(m){
39590        var pm = m.parentMenu;
39591        if(!pm && !m.allowOtherMenus){
39592            hideAll();
39593        }else if(pm && pm.activeChild && active != m){
39594            pm.activeChild.hide();
39595        }
39596    }
39597
39598    // private
39599    function onMouseDown(e){
39600        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
39601            hideAll();
39602        }
39603    }
39604
39605    // private
39606    function onBeforeCheck(mi, state){
39607        if(state){
39608            var g = groups[mi.group];
39609            for(var i = 0, l = g.length; i < l; i++){
39610                if(g[i] != mi){
39611                    g[i].setChecked(false);
39612                }
39613            }
39614        }
39615    }
39616
39617    return {
39618
39619        /**
39620         * Hides all menus that are currently visible
39621         */
39622        hideAll : function(){
39623             hideAll();  
39624        },
39625
39626        // private
39627        register : function(menu){
39628            if(!menus){
39629                init();
39630            }
39631            menus[menu.id] = menu;
39632            menu.on("beforehide", onBeforeHide);
39633            menu.on("hide", onHide);
39634            menu.on("beforeshow", onBeforeShow);
39635            menu.on("show", onShow);
39636            var g = menu.group;
39637            if(g && menu.events["checkchange"]){
39638                if(!groups[g]){
39639                    groups[g] = [];
39640                }
39641                groups[g].push(menu);
39642                menu.on("checkchange", onCheck);
39643            }
39644        },
39645
39646         /**
39647          * Returns a {@link Roo.menu.Menu} object
39648          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
39649          * be used to generate and return a new Menu instance.
39650          */
39651        get : function(menu){
39652            if(typeof menu == "string"){ // menu id
39653                return menus[menu];
39654            }else if(menu.events){  // menu instance
39655                return menu;
39656            }else if(typeof menu.length == 'number'){ // array of menu items?
39657                return new Roo.menu.Menu({items:menu});
39658            }else{ // otherwise, must be a config
39659                return new Roo.menu.Menu(menu);
39660            }
39661        },
39662
39663        // private
39664        unregister : function(menu){
39665            delete menus[menu.id];
39666            menu.un("beforehide", onBeforeHide);
39667            menu.un("hide", onHide);
39668            menu.un("beforeshow", onBeforeShow);
39669            menu.un("show", onShow);
39670            var g = menu.group;
39671            if(g && menu.events["checkchange"]){
39672                groups[g].remove(menu);
39673                menu.un("checkchange", onCheck);
39674            }
39675        },
39676
39677        // private
39678        registerCheckable : function(menuItem){
39679            var g = menuItem.group;
39680            if(g){
39681                if(!groups[g]){
39682                    groups[g] = [];
39683                }
39684                groups[g].push(menuItem);
39685                menuItem.on("beforecheckchange", onBeforeCheck);
39686            }
39687        },
39688
39689        // private
39690        unregisterCheckable : function(menuItem){
39691            var g = menuItem.group;
39692            if(g){
39693                groups[g].remove(menuItem);
39694                menuItem.un("beforecheckchange", onBeforeCheck);
39695            }
39696        }
39697    };
39698 }();/*
39699  * Based on:
39700  * Ext JS Library 1.1.1
39701  * Copyright(c) 2006-2007, Ext JS, LLC.
39702  *
39703  * Originally Released Under LGPL - original licence link has changed is not relivant.
39704  *
39705  * Fork - LGPL
39706  * <script type="text/javascript">
39707  */
39708  
39709
39710 /**
39711  * @class Roo.menu.BaseItem
39712  * @extends Roo.Component
39713  * @abstract
39714  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
39715  * management and base configuration options shared by all menu components.
39716  * @constructor
39717  * Creates a new BaseItem
39718  * @param {Object} config Configuration options
39719  */
39720 Roo.menu.BaseItem = function(config){
39721     Roo.menu.BaseItem.superclass.constructor.call(this, config);
39722
39723     this.addEvents({
39724         /**
39725          * @event click
39726          * Fires when this item is clicked
39727          * @param {Roo.menu.BaseItem} this
39728          * @param {Roo.EventObject} e
39729          */
39730         click: true,
39731         /**
39732          * @event activate
39733          * Fires when this item is activated
39734          * @param {Roo.menu.BaseItem} this
39735          */
39736         activate : true,
39737         /**
39738          * @event deactivate
39739          * Fires when this item is deactivated
39740          * @param {Roo.menu.BaseItem} this
39741          */
39742         deactivate : true
39743     });
39744
39745     if(this.handler){
39746         this.on("click", this.handler, this.scope, true);
39747     }
39748 };
39749
39750 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
39751     /**
39752      * @cfg {Function} handler
39753      * A function that will handle the click event of this menu item (defaults to undefined)
39754      */
39755     /**
39756      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
39757      */
39758     canActivate : false,
39759     
39760      /**
39761      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
39762      */
39763     hidden: false,
39764     
39765     /**
39766      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
39767      */
39768     activeClass : "x-menu-item-active",
39769     /**
39770      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
39771      */
39772     hideOnClick : true,
39773     /**
39774      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
39775      */
39776     hideDelay : 100,
39777
39778     // private
39779     ctype: "Roo.menu.BaseItem",
39780
39781     // private
39782     actionMode : "container",
39783
39784     // private
39785     render : function(container, parentMenu){
39786         this.parentMenu = parentMenu;
39787         Roo.menu.BaseItem.superclass.render.call(this, container);
39788         this.container.menuItemId = this.id;
39789     },
39790
39791     // private
39792     onRender : function(container, position){
39793         this.el = Roo.get(this.el);
39794         container.dom.appendChild(this.el.dom);
39795     },
39796
39797     // private
39798     onClick : function(e){
39799         if(!this.disabled && this.fireEvent("click", this, e) !== false
39800                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
39801             this.handleClick(e);
39802         }else{
39803             e.stopEvent();
39804         }
39805     },
39806
39807     // private
39808     activate : function(){
39809         if(this.disabled){
39810             return false;
39811         }
39812         var li = this.container;
39813         li.addClass(this.activeClass);
39814         this.region = li.getRegion().adjust(2, 2, -2, -2);
39815         this.fireEvent("activate", this);
39816         return true;
39817     },
39818
39819     // private
39820     deactivate : function(){
39821         this.container.removeClass(this.activeClass);
39822         this.fireEvent("deactivate", this);
39823     },
39824
39825     // private
39826     shouldDeactivate : function(e){
39827         return !this.region || !this.region.contains(e.getPoint());
39828     },
39829
39830     // private
39831     handleClick : function(e){
39832         if(this.hideOnClick){
39833             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
39834         }
39835     },
39836
39837     // private
39838     expandMenu : function(autoActivate){
39839         // do nothing
39840     },
39841
39842     // private
39843     hideMenu : function(){
39844         // do nothing
39845     }
39846 });/*
39847  * Based on:
39848  * Ext JS Library 1.1.1
39849  * Copyright(c) 2006-2007, Ext JS, LLC.
39850  *
39851  * Originally Released Under LGPL - original licence link has changed is not relivant.
39852  *
39853  * Fork - LGPL
39854  * <script type="text/javascript">
39855  */
39856  
39857 /**
39858  * @class Roo.menu.Adapter
39859  * @extends Roo.menu.BaseItem
39860  * @abstract
39861  * 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.
39862  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
39863  * @constructor
39864  * Creates a new Adapter
39865  * @param {Object} config Configuration options
39866  */
39867 Roo.menu.Adapter = function(component, config){
39868     Roo.menu.Adapter.superclass.constructor.call(this, config);
39869     this.component = component;
39870 };
39871 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
39872     // private
39873     canActivate : true,
39874
39875     // private
39876     onRender : function(container, position){
39877         this.component.render(container);
39878         this.el = this.component.getEl();
39879     },
39880
39881     // private
39882     activate : function(){
39883         if(this.disabled){
39884             return false;
39885         }
39886         this.component.focus();
39887         this.fireEvent("activate", this);
39888         return true;
39889     },
39890
39891     // private
39892     deactivate : function(){
39893         this.fireEvent("deactivate", this);
39894     },
39895
39896     // private
39897     disable : function(){
39898         this.component.disable();
39899         Roo.menu.Adapter.superclass.disable.call(this);
39900     },
39901
39902     // private
39903     enable : function(){
39904         this.component.enable();
39905         Roo.menu.Adapter.superclass.enable.call(this);
39906     }
39907 });/*
39908  * Based on:
39909  * Ext JS Library 1.1.1
39910  * Copyright(c) 2006-2007, Ext JS, LLC.
39911  *
39912  * Originally Released Under LGPL - original licence link has changed is not relivant.
39913  *
39914  * Fork - LGPL
39915  * <script type="text/javascript">
39916  */
39917
39918 /**
39919  * @class Roo.menu.TextItem
39920  * @extends Roo.menu.BaseItem
39921  * Adds a static text string to a menu, usually used as either a heading or group separator.
39922  * Note: old style constructor with text is still supported.
39923  * 
39924  * @constructor
39925  * Creates a new TextItem
39926  * @param {Object} cfg Configuration
39927  */
39928 Roo.menu.TextItem = function(cfg){
39929     if (typeof(cfg) == 'string') {
39930         this.text = cfg;
39931     } else {
39932         Roo.apply(this,cfg);
39933     }
39934     
39935     Roo.menu.TextItem.superclass.constructor.call(this);
39936 };
39937
39938 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
39939     /**
39940      * @cfg {String} text Text to show on item.
39941      */
39942     text : '',
39943     
39944     /**
39945      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
39946      */
39947     hideOnClick : false,
39948     /**
39949      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
39950      */
39951     itemCls : "x-menu-text",
39952
39953     // private
39954     onRender : function(){
39955         var s = document.createElement("span");
39956         s.className = this.itemCls;
39957         s.innerHTML = this.text;
39958         this.el = s;
39959         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
39960     }
39961 });/*
39962  * Based on:
39963  * Ext JS Library 1.1.1
39964  * Copyright(c) 2006-2007, Ext JS, LLC.
39965  *
39966  * Originally Released Under LGPL - original licence link has changed is not relivant.
39967  *
39968  * Fork - LGPL
39969  * <script type="text/javascript">
39970  */
39971
39972 /**
39973  * @class Roo.menu.Separator
39974  * @extends Roo.menu.BaseItem
39975  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
39976  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
39977  * @constructor
39978  * @param {Object} config Configuration options
39979  */
39980 Roo.menu.Separator = function(config){
39981     Roo.menu.Separator.superclass.constructor.call(this, config);
39982 };
39983
39984 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
39985     /**
39986      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
39987      */
39988     itemCls : "x-menu-sep",
39989     /**
39990      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
39991      */
39992     hideOnClick : false,
39993
39994     // private
39995     onRender : function(li){
39996         var s = document.createElement("span");
39997         s.className = this.itemCls;
39998         s.innerHTML = "&#160;";
39999         this.el = s;
40000         li.addClass("x-menu-sep-li");
40001         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
40002     }
40003 });/*
40004  * Based on:
40005  * Ext JS Library 1.1.1
40006  * Copyright(c) 2006-2007, Ext JS, LLC.
40007  *
40008  * Originally Released Under LGPL - original licence link has changed is not relivant.
40009  *
40010  * Fork - LGPL
40011  * <script type="text/javascript">
40012  */
40013 /**
40014  * @class Roo.menu.Item
40015  * @extends Roo.menu.BaseItem
40016  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
40017  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
40018  * activation and click handling.
40019  * @constructor
40020  * Creates a new Item
40021  * @param {Object} config Configuration options
40022  */
40023 Roo.menu.Item = function(config){
40024     Roo.menu.Item.superclass.constructor.call(this, config);
40025     if(this.menu){
40026         this.menu = Roo.menu.MenuMgr.get(this.menu);
40027     }
40028 };
40029 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
40030     /**
40031      * @cfg {Roo.menu.Menu} menu
40032      * A Sub menu
40033      */
40034     /**
40035      * @cfg {String} text
40036      * The text to show on the menu item.
40037      */
40038     text: '',
40039      /**
40040      * @cfg {String} html to render in menu
40041      * The text to show on the menu item (HTML version).
40042      */
40043     html: '',
40044     /**
40045      * @cfg {String} icon
40046      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
40047      */
40048     icon: undefined,
40049     /**
40050      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
40051      */
40052     itemCls : "x-menu-item",
40053     /**
40054      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
40055      */
40056     canActivate : true,
40057     /**
40058      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
40059      */
40060     showDelay: 200,
40061     // doc'd in BaseItem
40062     hideDelay: 200,
40063
40064     // private
40065     ctype: "Roo.menu.Item",
40066     
40067     // private
40068     onRender : function(container, position){
40069         var el = document.createElement("a");
40070         el.hideFocus = true;
40071         el.unselectable = "on";
40072         el.href = this.href || "#";
40073         if(this.hrefTarget){
40074             el.target = this.hrefTarget;
40075         }
40076         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
40077         
40078         var html = this.html.length ? this.html  : String.format('{0}',this.text);
40079         
40080         el.innerHTML = String.format(
40081                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
40082                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
40083         this.el = el;
40084         Roo.menu.Item.superclass.onRender.call(this, container, position);
40085     },
40086
40087     /**
40088      * Sets the text to display in this menu item
40089      * @param {String} text The text to display
40090      * @param {Boolean} isHTML true to indicate text is pure html.
40091      */
40092     setText : function(text, isHTML){
40093         if (isHTML) {
40094             this.html = text;
40095         } else {
40096             this.text = text;
40097             this.html = '';
40098         }
40099         if(this.rendered){
40100             var html = this.html.length ? this.html  : String.format('{0}',this.text);
40101      
40102             this.el.update(String.format(
40103                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
40104                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
40105             this.parentMenu.autoWidth();
40106         }
40107     },
40108
40109     // private
40110     handleClick : function(e){
40111         if(!this.href){ // if no link defined, stop the event automatically
40112             e.stopEvent();
40113         }
40114         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
40115     },
40116
40117     // private
40118     activate : function(autoExpand){
40119         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
40120             this.focus();
40121             if(autoExpand){
40122                 this.expandMenu();
40123             }
40124         }
40125         return true;
40126     },
40127
40128     // private
40129     shouldDeactivate : function(e){
40130         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
40131             if(this.menu && this.menu.isVisible()){
40132                 return !this.menu.getEl().getRegion().contains(e.getPoint());
40133             }
40134             return true;
40135         }
40136         return false;
40137     },
40138
40139     // private
40140     deactivate : function(){
40141         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
40142         this.hideMenu();
40143     },
40144
40145     // private
40146     expandMenu : function(autoActivate){
40147         if(!this.disabled && this.menu){
40148             clearTimeout(this.hideTimer);
40149             delete this.hideTimer;
40150             if(!this.menu.isVisible() && !this.showTimer){
40151                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
40152             }else if (this.menu.isVisible() && autoActivate){
40153                 this.menu.tryActivate(0, 1);
40154             }
40155         }
40156     },
40157
40158     // private
40159     deferExpand : function(autoActivate){
40160         delete this.showTimer;
40161         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
40162         if(autoActivate){
40163             this.menu.tryActivate(0, 1);
40164         }
40165     },
40166
40167     // private
40168     hideMenu : function(){
40169         clearTimeout(this.showTimer);
40170         delete this.showTimer;
40171         if(!this.hideTimer && this.menu && this.menu.isVisible()){
40172             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
40173         }
40174     },
40175
40176     // private
40177     deferHide : function(){
40178         delete this.hideTimer;
40179         this.menu.hide();
40180     }
40181 });/*
40182  * Based on:
40183  * Ext JS Library 1.1.1
40184  * Copyright(c) 2006-2007, Ext JS, LLC.
40185  *
40186  * Originally Released Under LGPL - original licence link has changed is not relivant.
40187  *
40188  * Fork - LGPL
40189  * <script type="text/javascript">
40190  */
40191  
40192 /**
40193  * @class Roo.menu.CheckItem
40194  * @extends Roo.menu.Item
40195  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
40196  * @constructor
40197  * Creates a new CheckItem
40198  * @param {Object} config Configuration options
40199  */
40200 Roo.menu.CheckItem = function(config){
40201     Roo.menu.CheckItem.superclass.constructor.call(this, config);
40202     this.addEvents({
40203         /**
40204          * @event beforecheckchange
40205          * Fires before the checked value is set, providing an opportunity to cancel if needed
40206          * @param {Roo.menu.CheckItem} this
40207          * @param {Boolean} checked The new checked value that will be set
40208          */
40209         "beforecheckchange" : true,
40210         /**
40211          * @event checkchange
40212          * Fires after the checked value has been set
40213          * @param {Roo.menu.CheckItem} this
40214          * @param {Boolean} checked The checked value that was set
40215          */
40216         "checkchange" : true
40217     });
40218     if(this.checkHandler){
40219         this.on('checkchange', this.checkHandler, this.scope);
40220     }
40221 };
40222 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
40223     /**
40224      * @cfg {String} group
40225      * All check items with the same group name will automatically be grouped into a single-select
40226      * radio button group (defaults to '')
40227      */
40228     /**
40229      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
40230      */
40231     itemCls : "x-menu-item x-menu-check-item",
40232     /**
40233      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
40234      */
40235     groupClass : "x-menu-group-item",
40236
40237     /**
40238      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
40239      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
40240      * initialized with checked = true will be rendered as checked.
40241      */
40242     checked: false,
40243
40244     // private
40245     ctype: "Roo.menu.CheckItem",
40246
40247     // private
40248     onRender : function(c){
40249         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
40250         if(this.group){
40251             this.el.addClass(this.groupClass);
40252         }
40253         Roo.menu.MenuMgr.registerCheckable(this);
40254         if(this.checked){
40255             this.checked = false;
40256             this.setChecked(true, true);
40257         }
40258     },
40259
40260     // private
40261     destroy : function(){
40262         if(this.rendered){
40263             Roo.menu.MenuMgr.unregisterCheckable(this);
40264         }
40265         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
40266     },
40267
40268     /**
40269      * Set the checked state of this item
40270      * @param {Boolean} checked The new checked value
40271      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
40272      */
40273     setChecked : function(state, suppressEvent){
40274         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
40275             if(this.container){
40276                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
40277             }
40278             this.checked = state;
40279             if(suppressEvent !== true){
40280                 this.fireEvent("checkchange", this, state);
40281             }
40282         }
40283     },
40284
40285     // private
40286     handleClick : function(e){
40287        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
40288            this.setChecked(!this.checked);
40289        }
40290        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
40291     }
40292 });/*
40293  * Based on:
40294  * Ext JS Library 1.1.1
40295  * Copyright(c) 2006-2007, Ext JS, LLC.
40296  *
40297  * Originally Released Under LGPL - original licence link has changed is not relivant.
40298  *
40299  * Fork - LGPL
40300  * <script type="text/javascript">
40301  */
40302  
40303 /**
40304  * @class Roo.menu.DateItem
40305  * @extends Roo.menu.Adapter
40306  * A menu item that wraps the {@link Roo.DatPicker} component.
40307  * @constructor
40308  * Creates a new DateItem
40309  * @param {Object} config Configuration options
40310  */
40311 Roo.menu.DateItem = function(config){
40312     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
40313     /** The Roo.DatePicker object @type Roo.DatePicker */
40314     this.picker = this.component;
40315     this.addEvents({select: true});
40316     
40317     this.picker.on("render", function(picker){
40318         picker.getEl().swallowEvent("click");
40319         picker.container.addClass("x-menu-date-item");
40320     });
40321
40322     this.picker.on("select", this.onSelect, this);
40323 };
40324
40325 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
40326     // private
40327     onSelect : function(picker, date){
40328         this.fireEvent("select", this, date, picker);
40329         Roo.menu.DateItem.superclass.handleClick.call(this);
40330     }
40331 });/*
40332  * Based on:
40333  * Ext JS Library 1.1.1
40334  * Copyright(c) 2006-2007, Ext JS, LLC.
40335  *
40336  * Originally Released Under LGPL - original licence link has changed is not relivant.
40337  *
40338  * Fork - LGPL
40339  * <script type="text/javascript">
40340  */
40341  
40342 /**
40343  * @class Roo.menu.ColorItem
40344  * @extends Roo.menu.Adapter
40345  * A menu item that wraps the {@link Roo.ColorPalette} component.
40346  * @constructor
40347  * Creates a new ColorItem
40348  * @param {Object} config Configuration options
40349  */
40350 Roo.menu.ColorItem = function(config){
40351     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
40352     /** The Roo.ColorPalette object @type Roo.ColorPalette */
40353     this.palette = this.component;
40354     this.relayEvents(this.palette, ["select"]);
40355     if(this.selectHandler){
40356         this.on('select', this.selectHandler, this.scope);
40357     }
40358 };
40359 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
40360  * Based on:
40361  * Ext JS Library 1.1.1
40362  * Copyright(c) 2006-2007, Ext JS, LLC.
40363  *
40364  * Originally Released Under LGPL - original licence link has changed is not relivant.
40365  *
40366  * Fork - LGPL
40367  * <script type="text/javascript">
40368  */
40369  
40370
40371 /**
40372  * @class Roo.menu.DateMenu
40373  * @extends Roo.menu.Menu
40374  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
40375  * @constructor
40376  * Creates a new DateMenu
40377  * @param {Object} config Configuration options
40378  */
40379 Roo.menu.DateMenu = function(config){
40380     Roo.menu.DateMenu.superclass.constructor.call(this, config);
40381     this.plain = true;
40382     var di = new Roo.menu.DateItem(config);
40383     this.add(di);
40384     /**
40385      * The {@link Roo.DatePicker} instance for this DateMenu
40386      * @type DatePicker
40387      */
40388     this.picker = di.picker;
40389     /**
40390      * @event select
40391      * @param {DatePicker} picker
40392      * @param {Date} date
40393      */
40394     this.relayEvents(di, ["select"]);
40395     this.on('beforeshow', function(){
40396         if(this.picker){
40397             this.picker.hideMonthPicker(false);
40398         }
40399     }, this);
40400 };
40401 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
40402     cls:'x-date-menu'
40403 });/*
40404  * Based on:
40405  * Ext JS Library 1.1.1
40406  * Copyright(c) 2006-2007, Ext JS, LLC.
40407  *
40408  * Originally Released Under LGPL - original licence link has changed is not relivant.
40409  *
40410  * Fork - LGPL
40411  * <script type="text/javascript">
40412  */
40413  
40414
40415 /**
40416  * @class Roo.menu.ColorMenu
40417  * @extends Roo.menu.Menu
40418  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
40419  * @constructor
40420  * Creates a new ColorMenu
40421  * @param {Object} config Configuration options
40422  */
40423 Roo.menu.ColorMenu = function(config){
40424     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
40425     this.plain = true;
40426     var ci = new Roo.menu.ColorItem(config);
40427     this.add(ci);
40428     /**
40429      * The {@link Roo.ColorPalette} instance for this ColorMenu
40430      * @type ColorPalette
40431      */
40432     this.palette = ci.palette;
40433     /**
40434      * @event select
40435      * @param {ColorPalette} palette
40436      * @param {String} color
40437      */
40438     this.relayEvents(ci, ["select"]);
40439 };
40440 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
40441  * Based on:
40442  * Ext JS Library 1.1.1
40443  * Copyright(c) 2006-2007, Ext JS, LLC.
40444  *
40445  * Originally Released Under LGPL - original licence link has changed is not relivant.
40446  *
40447  * Fork - LGPL
40448  * <script type="text/javascript">
40449  */
40450  
40451 /**
40452  * @class Roo.form.TextItem
40453  * @extends Roo.BoxComponent
40454  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40455  * @constructor
40456  * Creates a new TextItem
40457  * @param {Object} config Configuration options
40458  */
40459 Roo.form.TextItem = function(config){
40460     Roo.form.TextItem.superclass.constructor.call(this, config);
40461 };
40462
40463 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
40464     
40465     /**
40466      * @cfg {String} tag the tag for this item (default div)
40467      */
40468     tag : 'div',
40469     /**
40470      * @cfg {String} html the content for this item
40471      */
40472     html : '',
40473     
40474     getAutoCreate : function()
40475     {
40476         var cfg = {
40477             id: this.id,
40478             tag: this.tag,
40479             html: this.html,
40480             cls: 'x-form-item'
40481         };
40482         
40483         return cfg;
40484         
40485     },
40486     
40487     onRender : function(ct, position)
40488     {
40489         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
40490         
40491         if(!this.el){
40492             var cfg = this.getAutoCreate();
40493             if(!cfg.name){
40494                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40495             }
40496             if (!cfg.name.length) {
40497                 delete cfg.name;
40498             }
40499             this.el = ct.createChild(cfg, position);
40500         }
40501     },
40502     /*
40503      * setHTML
40504      * @param {String} html update the Contents of the element.
40505      */
40506     setHTML : function(html)
40507     {
40508         this.fieldEl.dom.innerHTML = html;
40509     }
40510     
40511 });/*
40512  * Based on:
40513  * Ext JS Library 1.1.1
40514  * Copyright(c) 2006-2007, Ext JS, LLC.
40515  *
40516  * Originally Released Under LGPL - original licence link has changed is not relivant.
40517  *
40518  * Fork - LGPL
40519  * <script type="text/javascript">
40520  */
40521  
40522 /**
40523  * @class Roo.form.Field
40524  * @extends Roo.BoxComponent
40525  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40526  * @constructor
40527  * Creates a new Field
40528  * @param {Object} config Configuration options
40529  */
40530 Roo.form.Field = function(config){
40531     Roo.form.Field.superclass.constructor.call(this, config);
40532 };
40533
40534 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
40535     /**
40536      * @cfg {String} fieldLabel Label to use when rendering a form.
40537      */
40538        /**
40539      * @cfg {String} qtip Mouse over tip
40540      */
40541      
40542     /**
40543      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
40544      */
40545     invalidClass : "x-form-invalid",
40546     /**
40547      * @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")
40548      */
40549     invalidText : "The value in this field is invalid",
40550     /**
40551      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
40552      */
40553     focusClass : "x-form-focus",
40554     /**
40555      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
40556       automatic validation (defaults to "keyup").
40557      */
40558     validationEvent : "keyup",
40559     /**
40560      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
40561      */
40562     validateOnBlur : true,
40563     /**
40564      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
40565      */
40566     validationDelay : 250,
40567     /**
40568      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40569      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
40570      */
40571     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
40572     /**
40573      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
40574      */
40575     fieldClass : "x-form-field",
40576     /**
40577      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
40578      *<pre>
40579 Value         Description
40580 -----------   ----------------------------------------------------------------------
40581 qtip          Display a quick tip when the user hovers over the field
40582 title         Display a default browser title attribute popup
40583 under         Add a block div beneath the field containing the error text
40584 side          Add an error icon to the right of the field with a popup on hover
40585 [element id]  Add the error text directly to the innerHTML of the specified element
40586 </pre>
40587      */
40588     msgTarget : 'qtip',
40589     /**
40590      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
40591      */
40592     msgFx : 'normal',
40593
40594     /**
40595      * @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.
40596      */
40597     readOnly : false,
40598
40599     /**
40600      * @cfg {Boolean} disabled True to disable the field (defaults to false).
40601      */
40602     disabled : false,
40603
40604     /**
40605      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
40606      */
40607     inputType : undefined,
40608     
40609     /**
40610      * @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).
40611          */
40612         tabIndex : undefined,
40613         
40614     // private
40615     isFormField : true,
40616
40617     // private
40618     hasFocus : false,
40619     /**
40620      * @property {Roo.Element} fieldEl
40621      * Element Containing the rendered Field (with label etc.)
40622      */
40623     /**
40624      * @cfg {Mixed} value A value to initialize this field with.
40625      */
40626     value : undefined,
40627
40628     /**
40629      * @cfg {String} name The field's HTML name attribute.
40630      */
40631     /**
40632      * @cfg {String} cls A CSS class to apply to the field's underlying element.
40633      */
40634     // private
40635     loadedValue : false,
40636      
40637      
40638         // private ??
40639         initComponent : function(){
40640         Roo.form.Field.superclass.initComponent.call(this);
40641         this.addEvents({
40642             /**
40643              * @event focus
40644              * Fires when this field receives input focus.
40645              * @param {Roo.form.Field} this
40646              */
40647             focus : true,
40648             /**
40649              * @event blur
40650              * Fires when this field loses input focus.
40651              * @param {Roo.form.Field} this
40652              */
40653             blur : true,
40654             /**
40655              * @event specialkey
40656              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
40657              * {@link Roo.EventObject#getKey} to determine which key was pressed.
40658              * @param {Roo.form.Field} this
40659              * @param {Roo.EventObject} e The event object
40660              */
40661             specialkey : true,
40662             /**
40663              * @event change
40664              * Fires just before the field blurs if the field value has changed.
40665              * @param {Roo.form.Field} this
40666              * @param {Mixed} newValue The new value
40667              * @param {Mixed} oldValue The original value
40668              */
40669             change : true,
40670             /**
40671              * @event invalid
40672              * Fires after the field has been marked as invalid.
40673              * @param {Roo.form.Field} this
40674              * @param {String} msg The validation message
40675              */
40676             invalid : true,
40677             /**
40678              * @event valid
40679              * Fires after the field has been validated with no errors.
40680              * @param {Roo.form.Field} this
40681              */
40682             valid : true,
40683              /**
40684              * @event keyup
40685              * Fires after the key up
40686              * @param {Roo.form.Field} this
40687              * @param {Roo.EventObject}  e The event Object
40688              */
40689             keyup : true
40690         });
40691     },
40692
40693     /**
40694      * Returns the name attribute of the field if available
40695      * @return {String} name The field name
40696      */
40697     getName: function(){
40698          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
40699     },
40700
40701     // private
40702     onRender : function(ct, position){
40703         Roo.form.Field.superclass.onRender.call(this, ct, position);
40704         if(!this.el){
40705             var cfg = this.getAutoCreate();
40706             if(!cfg.name){
40707                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40708             }
40709             if (!cfg.name.length) {
40710                 delete cfg.name;
40711             }
40712             if(this.inputType){
40713                 cfg.type = this.inputType;
40714             }
40715             this.el = ct.createChild(cfg, position);
40716         }
40717         var type = this.el.dom.type;
40718         if(type){
40719             if(type == 'password'){
40720                 type = 'text';
40721             }
40722             this.el.addClass('x-form-'+type);
40723         }
40724         if(this.readOnly){
40725             this.el.dom.readOnly = true;
40726         }
40727         if(this.tabIndex !== undefined){
40728             this.el.dom.setAttribute('tabIndex', this.tabIndex);
40729         }
40730
40731         this.el.addClass([this.fieldClass, this.cls]);
40732         this.initValue();
40733     },
40734
40735     /**
40736      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
40737      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
40738      * @return {Roo.form.Field} this
40739      */
40740     applyTo : function(target){
40741         this.allowDomMove = false;
40742         this.el = Roo.get(target);
40743         this.render(this.el.dom.parentNode);
40744         return this;
40745     },
40746
40747     // private
40748     initValue : function(){
40749         if(this.value !== undefined){
40750             this.setValue(this.value);
40751         }else if(this.el.dom.value.length > 0){
40752             this.setValue(this.el.dom.value);
40753         }
40754     },
40755
40756     /**
40757      * Returns true if this field has been changed since it was originally loaded and is not disabled.
40758      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
40759      */
40760     isDirty : function() {
40761         if(this.disabled) {
40762             return false;
40763         }
40764         return String(this.getValue()) !== String(this.originalValue);
40765     },
40766
40767     /**
40768      * stores the current value in loadedValue
40769      */
40770     resetHasChanged : function()
40771     {
40772         this.loadedValue = String(this.getValue());
40773     },
40774     /**
40775      * checks the current value against the 'loaded' value.
40776      * Note - will return false if 'resetHasChanged' has not been called first.
40777      */
40778     hasChanged : function()
40779     {
40780         if(this.disabled || this.readOnly) {
40781             return false;
40782         }
40783         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
40784     },
40785     
40786     
40787     
40788     // private
40789     afterRender : function(){
40790         Roo.form.Field.superclass.afterRender.call(this);
40791         this.initEvents();
40792     },
40793
40794     // private
40795     fireKey : function(e){
40796         //Roo.log('field ' + e.getKey());
40797         if(e.isNavKeyPress()){
40798             this.fireEvent("specialkey", this, e);
40799         }
40800     },
40801
40802     /**
40803      * Resets the current field value to the originally loaded value and clears any validation messages
40804      */
40805     reset : function(){
40806         this.setValue(this.resetValue);
40807         this.originalValue = this.getValue();
40808         this.clearInvalid();
40809     },
40810
40811     // private
40812     initEvents : function(){
40813         // safari killled keypress - so keydown is now used..
40814         this.el.on("keydown" , this.fireKey,  this);
40815         this.el.on("focus", this.onFocus,  this);
40816         this.el.on("blur", this.onBlur,  this);
40817         this.el.relayEvent('keyup', this);
40818
40819         // reference to original value for reset
40820         this.originalValue = this.getValue();
40821         this.resetValue =  this.getValue();
40822     },
40823
40824     // private
40825     onFocus : function(){
40826         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40827             this.el.addClass(this.focusClass);
40828         }
40829         if(!this.hasFocus){
40830             this.hasFocus = true;
40831             this.startValue = this.getValue();
40832             this.fireEvent("focus", this);
40833         }
40834     },
40835
40836     beforeBlur : Roo.emptyFn,
40837
40838     // private
40839     onBlur : function(){
40840         this.beforeBlur();
40841         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40842             this.el.removeClass(this.focusClass);
40843         }
40844         this.hasFocus = false;
40845         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
40846             this.validate();
40847         }
40848         var v = this.getValue();
40849         if(String(v) !== String(this.startValue)){
40850             this.fireEvent('change', this, v, this.startValue);
40851         }
40852         this.fireEvent("blur", this);
40853     },
40854
40855     /**
40856      * Returns whether or not the field value is currently valid
40857      * @param {Boolean} preventMark True to disable marking the field invalid
40858      * @return {Boolean} True if the value is valid, else false
40859      */
40860     isValid : function(preventMark){
40861         if(this.disabled){
40862             return true;
40863         }
40864         var restore = this.preventMark;
40865         this.preventMark = preventMark === true;
40866         var v = this.validateValue(this.processValue(this.getRawValue()));
40867         this.preventMark = restore;
40868         return v;
40869     },
40870
40871     /**
40872      * Validates the field value
40873      * @return {Boolean} True if the value is valid, else false
40874      */
40875     validate : function(){
40876         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
40877             this.clearInvalid();
40878             return true;
40879         }
40880         return false;
40881     },
40882
40883     processValue : function(value){
40884         return value;
40885     },
40886
40887     // private
40888     // Subclasses should provide the validation implementation by overriding this
40889     validateValue : function(value){
40890         return true;
40891     },
40892
40893     /**
40894      * Mark this field as invalid
40895      * @param {String} msg The validation message
40896      */
40897     markInvalid : function(msg){
40898         if(!this.rendered || this.preventMark){ // not rendered
40899             return;
40900         }
40901         
40902         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40903         
40904         obj.el.addClass(this.invalidClass);
40905         msg = msg || this.invalidText;
40906         switch(this.msgTarget){
40907             case 'qtip':
40908                 obj.el.dom.qtip = msg;
40909                 obj.el.dom.qclass = 'x-form-invalid-tip';
40910                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
40911                     Roo.QuickTips.enable();
40912                 }
40913                 break;
40914             case 'title':
40915                 this.el.dom.title = msg;
40916                 break;
40917             case 'under':
40918                 if(!this.errorEl){
40919                     var elp = this.el.findParent('.x-form-element', 5, true);
40920                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
40921                     this.errorEl.setWidth(elp.getWidth(true)-20);
40922                 }
40923                 this.errorEl.update(msg);
40924                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
40925                 break;
40926             case 'side':
40927                 if(!this.errorIcon){
40928                     var elp = this.el.findParent('.x-form-element', 5, true);
40929                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
40930                 }
40931                 this.alignErrorIcon();
40932                 this.errorIcon.dom.qtip = msg;
40933                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
40934                 this.errorIcon.show();
40935                 this.on('resize', this.alignErrorIcon, this);
40936                 break;
40937             default:
40938                 var t = Roo.getDom(this.msgTarget);
40939                 t.innerHTML = msg;
40940                 t.style.display = this.msgDisplay;
40941                 break;
40942         }
40943         this.fireEvent('invalid', this, msg);
40944     },
40945
40946     // private
40947     alignErrorIcon : function(){
40948         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
40949     },
40950
40951     /**
40952      * Clear any invalid styles/messages for this field
40953      */
40954     clearInvalid : function(){
40955         if(!this.rendered || this.preventMark){ // not rendered
40956             return;
40957         }
40958         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40959         
40960         obj.el.removeClass(this.invalidClass);
40961         switch(this.msgTarget){
40962             case 'qtip':
40963                 obj.el.dom.qtip = '';
40964                 break;
40965             case 'title':
40966                 this.el.dom.title = '';
40967                 break;
40968             case 'under':
40969                 if(this.errorEl){
40970                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
40971                 }
40972                 break;
40973             case 'side':
40974                 if(this.errorIcon){
40975                     this.errorIcon.dom.qtip = '';
40976                     this.errorIcon.hide();
40977                     this.un('resize', this.alignErrorIcon, this);
40978                 }
40979                 break;
40980             default:
40981                 var t = Roo.getDom(this.msgTarget);
40982                 t.innerHTML = '';
40983                 t.style.display = 'none';
40984                 break;
40985         }
40986         this.fireEvent('valid', this);
40987     },
40988
40989     /**
40990      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
40991      * @return {Mixed} value The field value
40992      */
40993     getRawValue : function(){
40994         var v = this.el.getValue();
40995         
40996         return v;
40997     },
40998
40999     /**
41000      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
41001      * @return {Mixed} value The field value
41002      */
41003     getValue : function(){
41004         var v = this.el.getValue();
41005          
41006         return v;
41007     },
41008
41009     /**
41010      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
41011      * @param {Mixed} value The value to set
41012      */
41013     setRawValue : function(v){
41014         return this.el.dom.value = (v === null || v === undefined ? '' : v);
41015     },
41016
41017     /**
41018      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
41019      * @param {Mixed} value The value to set
41020      */
41021     setValue : function(v){
41022         this.value = v;
41023         if(this.rendered){
41024             this.el.dom.value = (v === null || v === undefined ? '' : v);
41025              this.validate();
41026         }
41027     },
41028
41029     adjustSize : function(w, h){
41030         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
41031         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
41032         return s;
41033     },
41034
41035     adjustWidth : function(tag, w){
41036         tag = tag.toLowerCase();
41037         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
41038             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
41039                 if(tag == 'input'){
41040                     return w + 2;
41041                 }
41042                 if(tag == 'textarea'){
41043                     return w-2;
41044                 }
41045             }else if(Roo.isOpera){
41046                 if(tag == 'input'){
41047                     return w + 2;
41048                 }
41049                 if(tag == 'textarea'){
41050                     return w-2;
41051                 }
41052             }
41053         }
41054         return w;
41055     }
41056 });
41057
41058
41059 // anything other than normal should be considered experimental
41060 Roo.form.Field.msgFx = {
41061     normal : {
41062         show: function(msgEl, f){
41063             msgEl.setDisplayed('block');
41064         },
41065
41066         hide : function(msgEl, f){
41067             msgEl.setDisplayed(false).update('');
41068         }
41069     },
41070
41071     slide : {
41072         show: function(msgEl, f){
41073             msgEl.slideIn('t', {stopFx:true});
41074         },
41075
41076         hide : function(msgEl, f){
41077             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
41078         }
41079     },
41080
41081     slideRight : {
41082         show: function(msgEl, f){
41083             msgEl.fixDisplay();
41084             msgEl.alignTo(f.el, 'tl-tr');
41085             msgEl.slideIn('l', {stopFx:true});
41086         },
41087
41088         hide : function(msgEl, f){
41089             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
41090         }
41091     }
41092 };/*
41093  * Based on:
41094  * Ext JS Library 1.1.1
41095  * Copyright(c) 2006-2007, Ext JS, LLC.
41096  *
41097  * Originally Released Under LGPL - original licence link has changed is not relivant.
41098  *
41099  * Fork - LGPL
41100  * <script type="text/javascript">
41101  */
41102  
41103
41104 /**
41105  * @class Roo.form.TextField
41106  * @extends Roo.form.Field
41107  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
41108  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
41109  * @constructor
41110  * Creates a new TextField
41111  * @param {Object} config Configuration options
41112  */
41113 Roo.form.TextField = function(config){
41114     Roo.form.TextField.superclass.constructor.call(this, config);
41115     this.addEvents({
41116         /**
41117          * @event autosize
41118          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
41119          * according to the default logic, but this event provides a hook for the developer to apply additional
41120          * logic at runtime to resize the field if needed.
41121              * @param {Roo.form.Field} this This text field
41122              * @param {Number} width The new field width
41123              */
41124         autosize : true
41125     });
41126 };
41127
41128 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
41129     /**
41130      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
41131      */
41132     grow : false,
41133     /**
41134      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
41135      */
41136     growMin : 30,
41137     /**
41138      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
41139      */
41140     growMax : 800,
41141     /**
41142      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
41143      */
41144     vtype : null,
41145     /**
41146      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
41147      */
41148     maskRe : null,
41149     /**
41150      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
41151      */
41152     disableKeyFilter : false,
41153     /**
41154      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
41155      */
41156     allowBlank : true,
41157     /**
41158      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
41159      */
41160     minLength : 0,
41161     /**
41162      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
41163      */
41164     maxLength : Number.MAX_VALUE,
41165     /**
41166      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
41167      */
41168     minLengthText : "The minimum length for this field is {0}",
41169     /**
41170      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
41171      */
41172     maxLengthText : "The maximum length for this field is {0}",
41173     /**
41174      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
41175      */
41176     selectOnFocus : false,
41177     /**
41178      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
41179      */    
41180     allowLeadingSpace : false,
41181     /**
41182      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
41183      */
41184     blankText : "This field is required",
41185     /**
41186      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
41187      * If available, this function will be called only after the basic validators all return true, and will be passed the
41188      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
41189      */
41190     validator : null,
41191     /**
41192      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
41193      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
41194      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
41195      */
41196     regex : null,
41197     /**
41198      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
41199      */
41200     regexText : "",
41201     /**
41202      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
41203      */
41204     emptyText : null,
41205    
41206
41207     // private
41208     initEvents : function()
41209     {
41210         if (this.emptyText) {
41211             this.el.attr('placeholder', this.emptyText);
41212         }
41213         
41214         Roo.form.TextField.superclass.initEvents.call(this);
41215         if(this.validationEvent == 'keyup'){
41216             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41217             this.el.on('keyup', this.filterValidation, this);
41218         }
41219         else if(this.validationEvent !== false){
41220             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41221         }
41222         
41223         if(this.selectOnFocus){
41224             this.on("focus", this.preFocus, this);
41225         }
41226         if (!this.allowLeadingSpace) {
41227             this.on('blur', this.cleanLeadingSpace, this);
41228         }
41229         
41230         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41231             this.el.on("keypress", this.filterKeys, this);
41232         }
41233         if(this.grow){
41234             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
41235             this.el.on("click", this.autoSize,  this);
41236         }
41237         if(this.el.is('input[type=password]') && Roo.isSafari){
41238             this.el.on('keydown', this.SafariOnKeyDown, this);
41239         }
41240     },
41241
41242     processValue : function(value){
41243         if(this.stripCharsRe){
41244             var newValue = value.replace(this.stripCharsRe, '');
41245             if(newValue !== value){
41246                 this.setRawValue(newValue);
41247                 return newValue;
41248             }
41249         }
41250         return value;
41251     },
41252
41253     filterValidation : function(e){
41254         if(!e.isNavKeyPress()){
41255             this.validationTask.delay(this.validationDelay);
41256         }
41257     },
41258
41259     // private
41260     onKeyUp : function(e){
41261         if(!e.isNavKeyPress()){
41262             this.autoSize();
41263         }
41264     },
41265     // private - clean the leading white space
41266     cleanLeadingSpace : function(e)
41267     {
41268         if ( this.inputType == 'file') {
41269             return;
41270         }
41271         
41272         this.setValue((this.getValue() + '').replace(/^\s+/,''));
41273     },
41274     /**
41275      * Resets the current field value to the originally-loaded value and clears any validation messages.
41276      *  
41277      */
41278     reset : function(){
41279         Roo.form.TextField.superclass.reset.call(this);
41280        
41281     }, 
41282     // private
41283     preFocus : function(){
41284         
41285         if(this.selectOnFocus){
41286             this.el.dom.select();
41287         }
41288     },
41289
41290     
41291     // private
41292     filterKeys : function(e){
41293         var k = e.getKey();
41294         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
41295             return;
41296         }
41297         var c = e.getCharCode(), cc = String.fromCharCode(c);
41298         if(Roo.isIE && (e.isSpecialKey() || !cc)){
41299             return;
41300         }
41301         if(!this.maskRe.test(cc)){
41302             e.stopEvent();
41303         }
41304     },
41305
41306     setValue : function(v){
41307         
41308         Roo.form.TextField.superclass.setValue.apply(this, arguments);
41309         
41310         this.autoSize();
41311     },
41312
41313     /**
41314      * Validates a value according to the field's validation rules and marks the field as invalid
41315      * if the validation fails
41316      * @param {Mixed} value The value to validate
41317      * @return {Boolean} True if the value is valid, else false
41318      */
41319     validateValue : function(value){
41320         if(value.length < 1)  { // if it's blank
41321              if(this.allowBlank){
41322                 this.clearInvalid();
41323                 return true;
41324              }else{
41325                 this.markInvalid(this.blankText);
41326                 return false;
41327              }
41328         }
41329         if(value.length < this.minLength){
41330             this.markInvalid(String.format(this.minLengthText, this.minLength));
41331             return false;
41332         }
41333         if(value.length > this.maxLength){
41334             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
41335             return false;
41336         }
41337         if(this.vtype){
41338             var vt = Roo.form.VTypes;
41339             if(!vt[this.vtype](value, this)){
41340                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
41341                 return false;
41342             }
41343         }
41344         if(typeof this.validator == "function"){
41345             var msg = this.validator(value);
41346             if(msg !== true){
41347                 this.markInvalid(msg);
41348                 return false;
41349             }
41350         }
41351         if(this.regex && !this.regex.test(value)){
41352             this.markInvalid(this.regexText);
41353             return false;
41354         }
41355         return true;
41356     },
41357
41358     /**
41359      * Selects text in this field
41360      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
41361      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
41362      */
41363     selectText : function(start, end){
41364         var v = this.getRawValue();
41365         if(v.length > 0){
41366             start = start === undefined ? 0 : start;
41367             end = end === undefined ? v.length : end;
41368             var d = this.el.dom;
41369             if(d.setSelectionRange){
41370                 d.setSelectionRange(start, end);
41371             }else if(d.createTextRange){
41372                 var range = d.createTextRange();
41373                 range.moveStart("character", start);
41374                 range.moveEnd("character", v.length-end);
41375                 range.select();
41376             }
41377         }
41378     },
41379
41380     /**
41381      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
41382      * This only takes effect if grow = true, and fires the autosize event.
41383      */
41384     autoSize : function(){
41385         if(!this.grow || !this.rendered){
41386             return;
41387         }
41388         if(!this.metrics){
41389             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
41390         }
41391         var el = this.el;
41392         var v = el.dom.value;
41393         var d = document.createElement('div');
41394         d.appendChild(document.createTextNode(v));
41395         v = d.innerHTML;
41396         d = null;
41397         v += "&#160;";
41398         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
41399         this.el.setWidth(w);
41400         this.fireEvent("autosize", this, w);
41401     },
41402     
41403     // private
41404     SafariOnKeyDown : function(event)
41405     {
41406         // this is a workaround for a password hang bug on chrome/ webkit.
41407         
41408         var isSelectAll = false;
41409         
41410         if(this.el.dom.selectionEnd > 0){
41411             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
41412         }
41413         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
41414             event.preventDefault();
41415             this.setValue('');
41416             return;
41417         }
41418         
41419         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
41420             
41421             event.preventDefault();
41422             // this is very hacky as keydown always get's upper case.
41423             
41424             var cc = String.fromCharCode(event.getCharCode());
41425             
41426             
41427             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
41428             
41429         }
41430         
41431         
41432     }
41433 });/*
41434  * Based on:
41435  * Ext JS Library 1.1.1
41436  * Copyright(c) 2006-2007, Ext JS, LLC.
41437  *
41438  * Originally Released Under LGPL - original licence link has changed is not relivant.
41439  *
41440  * Fork - LGPL
41441  * <script type="text/javascript">
41442  */
41443  
41444 /**
41445  * @class Roo.form.Hidden
41446  * @extends Roo.form.TextField
41447  * Simple Hidden element used on forms 
41448  * 
41449  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
41450  * 
41451  * @constructor
41452  * Creates a new Hidden form element.
41453  * @param {Object} config Configuration options
41454  */
41455
41456
41457
41458 // easy hidden field...
41459 Roo.form.Hidden = function(config){
41460     Roo.form.Hidden.superclass.constructor.call(this, config);
41461 };
41462   
41463 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
41464     fieldLabel:      '',
41465     inputType:      'hidden',
41466     width:          50,
41467     allowBlank:     true,
41468     labelSeparator: '',
41469     hidden:         true,
41470     itemCls :       'x-form-item-display-none'
41471
41472
41473 });
41474
41475
41476 /*
41477  * Based on:
41478  * Ext JS Library 1.1.1
41479  * Copyright(c) 2006-2007, Ext JS, LLC.
41480  *
41481  * Originally Released Under LGPL - original licence link has changed is not relivant.
41482  *
41483  * Fork - LGPL
41484  * <script type="text/javascript">
41485  */
41486  
41487 /**
41488  * @class Roo.form.TriggerField
41489  * @extends Roo.form.TextField
41490  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
41491  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
41492  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
41493  * for which you can provide a custom implementation.  For example:
41494  * <pre><code>
41495 var trigger = new Roo.form.TriggerField();
41496 trigger.onTriggerClick = myTriggerFn;
41497 trigger.applyTo('my-field');
41498 </code></pre>
41499  *
41500  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
41501  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
41502  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41503  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
41504  * @constructor
41505  * Create a new TriggerField.
41506  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
41507  * to the base TextField)
41508  */
41509 Roo.form.TriggerField = function(config){
41510     this.mimicing = false;
41511     Roo.form.TriggerField.superclass.constructor.call(this, config);
41512 };
41513
41514 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
41515     /**
41516      * @cfg {String} triggerClass A CSS class to apply to the trigger
41517      */
41518     /**
41519      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41520      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
41521      */
41522     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
41523     /**
41524      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
41525      */
41526     hideTrigger:false,
41527
41528     /** @cfg {Boolean} grow @hide */
41529     /** @cfg {Number} growMin @hide */
41530     /** @cfg {Number} growMax @hide */
41531
41532     /**
41533      * @hide 
41534      * @method
41535      */
41536     autoSize: Roo.emptyFn,
41537     // private
41538     monitorTab : true,
41539     // private
41540     deferHeight : true,
41541
41542     
41543     actionMode : 'wrap',
41544     // private
41545     onResize : function(w, h){
41546         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
41547         if(typeof w == 'number'){
41548             var x = w - this.trigger.getWidth();
41549             this.el.setWidth(this.adjustWidth('input', x));
41550             this.trigger.setStyle('left', x+'px');
41551         }
41552     },
41553
41554     // private
41555     adjustSize : Roo.BoxComponent.prototype.adjustSize,
41556
41557     // private
41558     getResizeEl : function(){
41559         return this.wrap;
41560     },
41561
41562     // private
41563     getPositionEl : function(){
41564         return this.wrap;
41565     },
41566
41567     // private
41568     alignErrorIcon : function(){
41569         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
41570     },
41571
41572     // private
41573     onRender : function(ct, position){
41574         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
41575         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
41576         this.trigger = this.wrap.createChild(this.triggerConfig ||
41577                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
41578         if(this.hideTrigger){
41579             this.trigger.setDisplayed(false);
41580         }
41581         this.initTrigger();
41582         if(!this.width){
41583             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
41584         }
41585     },
41586
41587     // private
41588     initTrigger : function(){
41589         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
41590         this.trigger.addClassOnOver('x-form-trigger-over');
41591         this.trigger.addClassOnClick('x-form-trigger-click');
41592     },
41593
41594     // private
41595     onDestroy : function(){
41596         if(this.trigger){
41597             this.trigger.removeAllListeners();
41598             this.trigger.remove();
41599         }
41600         if(this.wrap){
41601             this.wrap.remove();
41602         }
41603         Roo.form.TriggerField.superclass.onDestroy.call(this);
41604     },
41605
41606     // private
41607     onFocus : function(){
41608         Roo.form.TriggerField.superclass.onFocus.call(this);
41609         if(!this.mimicing){
41610             this.wrap.addClass('x-trigger-wrap-focus');
41611             this.mimicing = true;
41612             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
41613             if(this.monitorTab){
41614                 this.el.on("keydown", this.checkTab, this);
41615             }
41616         }
41617     },
41618
41619     // private
41620     checkTab : function(e){
41621         if(e.getKey() == e.TAB){
41622             this.triggerBlur();
41623         }
41624     },
41625
41626     // private
41627     onBlur : function(){
41628         // do nothing
41629     },
41630
41631     // private
41632     mimicBlur : function(e, t){
41633         if(!this.wrap.contains(t) && this.validateBlur()){
41634             this.triggerBlur();
41635         }
41636     },
41637
41638     // private
41639     triggerBlur : function(){
41640         this.mimicing = false;
41641         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
41642         if(this.monitorTab){
41643             this.el.un("keydown", this.checkTab, this);
41644         }
41645         this.wrap.removeClass('x-trigger-wrap-focus');
41646         Roo.form.TriggerField.superclass.onBlur.call(this);
41647     },
41648
41649     // private
41650     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
41651     validateBlur : function(e, t){
41652         return true;
41653     },
41654
41655     // private
41656     onDisable : function(){
41657         Roo.form.TriggerField.superclass.onDisable.call(this);
41658         if(this.wrap){
41659             this.wrap.addClass('x-item-disabled');
41660         }
41661     },
41662
41663     // private
41664     onEnable : function(){
41665         Roo.form.TriggerField.superclass.onEnable.call(this);
41666         if(this.wrap){
41667             this.wrap.removeClass('x-item-disabled');
41668         }
41669     },
41670
41671     // private
41672     onShow : function(){
41673         var ae = this.getActionEl();
41674         
41675         if(ae){
41676             ae.dom.style.display = '';
41677             ae.dom.style.visibility = 'visible';
41678         }
41679     },
41680
41681     // private
41682     
41683     onHide : function(){
41684         var ae = this.getActionEl();
41685         ae.dom.style.display = 'none';
41686     },
41687
41688     /**
41689      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
41690      * by an implementing function.
41691      * @method
41692      * @param {EventObject} e
41693      */
41694     onTriggerClick : Roo.emptyFn
41695 });
41696
41697 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
41698 // to be extended by an implementing class.  For an example of implementing this class, see the custom
41699 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
41700 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
41701     initComponent : function(){
41702         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
41703
41704         this.triggerConfig = {
41705             tag:'span', cls:'x-form-twin-triggers', cn:[
41706             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
41707             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
41708         ]};
41709     },
41710
41711     getTrigger : function(index){
41712         return this.triggers[index];
41713     },
41714
41715     initTrigger : function(){
41716         var ts = this.trigger.select('.x-form-trigger', true);
41717         this.wrap.setStyle('overflow', 'hidden');
41718         var triggerField = this;
41719         ts.each(function(t, all, index){
41720             t.hide = function(){
41721                 var w = triggerField.wrap.getWidth();
41722                 this.dom.style.display = 'none';
41723                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41724             };
41725             t.show = function(){
41726                 var w = triggerField.wrap.getWidth();
41727                 this.dom.style.display = '';
41728                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41729             };
41730             var triggerIndex = 'Trigger'+(index+1);
41731
41732             if(this['hide'+triggerIndex]){
41733                 t.dom.style.display = 'none';
41734             }
41735             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
41736             t.addClassOnOver('x-form-trigger-over');
41737             t.addClassOnClick('x-form-trigger-click');
41738         }, this);
41739         this.triggers = ts.elements;
41740     },
41741
41742     onTrigger1Click : Roo.emptyFn,
41743     onTrigger2Click : Roo.emptyFn
41744 });/*
41745  * Based on:
41746  * Ext JS Library 1.1.1
41747  * Copyright(c) 2006-2007, Ext JS, LLC.
41748  *
41749  * Originally Released Under LGPL - original licence link has changed is not relivant.
41750  *
41751  * Fork - LGPL
41752  * <script type="text/javascript">
41753  */
41754  
41755 /**
41756  * @class Roo.form.TextArea
41757  * @extends Roo.form.TextField
41758  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
41759  * support for auto-sizing.
41760  * @constructor
41761  * Creates a new TextArea
41762  * @param {Object} config Configuration options
41763  */
41764 Roo.form.TextArea = function(config){
41765     Roo.form.TextArea.superclass.constructor.call(this, config);
41766     // these are provided exchanges for backwards compat
41767     // minHeight/maxHeight were replaced by growMin/growMax to be
41768     // compatible with TextField growing config values
41769     if(this.minHeight !== undefined){
41770         this.growMin = this.minHeight;
41771     }
41772     if(this.maxHeight !== undefined){
41773         this.growMax = this.maxHeight;
41774     }
41775 };
41776
41777 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
41778     /**
41779      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
41780      */
41781     growMin : 60,
41782     /**
41783      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
41784      */
41785     growMax: 1000,
41786     /**
41787      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
41788      * in the field (equivalent to setting overflow: hidden, defaults to false)
41789      */
41790     preventScrollbars: false,
41791     /**
41792      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41793      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
41794      */
41795
41796     // private
41797     onRender : function(ct, position){
41798         if(!this.el){
41799             this.defaultAutoCreate = {
41800                 tag: "textarea",
41801                 style:"width:300px;height:60px;",
41802                 autocomplete: "new-password"
41803             };
41804         }
41805         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
41806         if(this.grow){
41807             this.textSizeEl = Roo.DomHelper.append(document.body, {
41808                 tag: "pre", cls: "x-form-grow-sizer"
41809             });
41810             if(this.preventScrollbars){
41811                 this.el.setStyle("overflow", "hidden");
41812             }
41813             this.el.setHeight(this.growMin);
41814         }
41815     },
41816
41817     onDestroy : function(){
41818         if(this.textSizeEl){
41819             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
41820         }
41821         Roo.form.TextArea.superclass.onDestroy.call(this);
41822     },
41823
41824     // private
41825     onKeyUp : function(e){
41826         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
41827             this.autoSize();
41828         }
41829     },
41830
41831     /**
41832      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
41833      * This only takes effect if grow = true, and fires the autosize event if the height changes.
41834      */
41835     autoSize : function(){
41836         if(!this.grow || !this.textSizeEl){
41837             return;
41838         }
41839         var el = this.el;
41840         var v = el.dom.value;
41841         var ts = this.textSizeEl;
41842
41843         ts.innerHTML = '';
41844         ts.appendChild(document.createTextNode(v));
41845         v = ts.innerHTML;
41846
41847         Roo.fly(ts).setWidth(this.el.getWidth());
41848         if(v.length < 1){
41849             v = "&#160;&#160;";
41850         }else{
41851             if(Roo.isIE){
41852                 v = v.replace(/\n/g, '<p>&#160;</p>');
41853             }
41854             v += "&#160;\n&#160;";
41855         }
41856         ts.innerHTML = v;
41857         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
41858         if(h != this.lastHeight){
41859             this.lastHeight = h;
41860             this.el.setHeight(h);
41861             this.fireEvent("autosize", this, h);
41862         }
41863     }
41864 });/*
41865  * Based on:
41866  * Ext JS Library 1.1.1
41867  * Copyright(c) 2006-2007, Ext JS, LLC.
41868  *
41869  * Originally Released Under LGPL - original licence link has changed is not relivant.
41870  *
41871  * Fork - LGPL
41872  * <script type="text/javascript">
41873  */
41874  
41875
41876 /**
41877  * @class Roo.form.NumberField
41878  * @extends Roo.form.TextField
41879  * Numeric text field that provides automatic keystroke filtering and numeric validation.
41880  * @constructor
41881  * Creates a new NumberField
41882  * @param {Object} config Configuration options
41883  */
41884 Roo.form.NumberField = function(config){
41885     Roo.form.NumberField.superclass.constructor.call(this, config);
41886 };
41887
41888 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
41889     /**
41890      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
41891      */
41892     fieldClass: "x-form-field x-form-num-field",
41893     /**
41894      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
41895      */
41896     allowDecimals : true,
41897     /**
41898      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
41899      */
41900     decimalSeparator : ".",
41901     /**
41902      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
41903      */
41904     decimalPrecision : 2,
41905     /**
41906      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
41907      */
41908     allowNegative : true,
41909     /**
41910      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
41911      */
41912     minValue : Number.NEGATIVE_INFINITY,
41913     /**
41914      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
41915      */
41916     maxValue : Number.MAX_VALUE,
41917     /**
41918      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
41919      */
41920     minText : "The minimum value for this field is {0}",
41921     /**
41922      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41923      */
41924     maxText : "The maximum value for this field is {0}",
41925     /**
41926      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41927      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41928      */
41929     nanText : "{0} is not a valid number",
41930
41931     // private
41932     initEvents : function(){
41933         Roo.form.NumberField.superclass.initEvents.call(this);
41934         var allowed = "0123456789";
41935         if(this.allowDecimals){
41936             allowed += this.decimalSeparator;
41937         }
41938         if(this.allowNegative){
41939             allowed += "-";
41940         }
41941         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41942         var keyPress = function(e){
41943             var k = e.getKey();
41944             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41945                 return;
41946             }
41947             var c = e.getCharCode();
41948             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41949                 e.stopEvent();
41950             }
41951         };
41952         this.el.on("keypress", keyPress, this);
41953     },
41954
41955     // private
41956     validateValue : function(value){
41957         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
41958             return false;
41959         }
41960         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41961              return true;
41962         }
41963         var num = this.parseValue(value);
41964         if(isNaN(num)){
41965             this.markInvalid(String.format(this.nanText, value));
41966             return false;
41967         }
41968         if(num < this.minValue){
41969             this.markInvalid(String.format(this.minText, this.minValue));
41970             return false;
41971         }
41972         if(num > this.maxValue){
41973             this.markInvalid(String.format(this.maxText, this.maxValue));
41974             return false;
41975         }
41976         return true;
41977     },
41978
41979     getValue : function(){
41980         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
41981     },
41982
41983     // private
41984     parseValue : function(value){
41985         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41986         return isNaN(value) ? '' : value;
41987     },
41988
41989     // private
41990     fixPrecision : function(value){
41991         var nan = isNaN(value);
41992         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41993             return nan ? '' : value;
41994         }
41995         return parseFloat(value).toFixed(this.decimalPrecision);
41996     },
41997
41998     setValue : function(v){
41999         v = this.fixPrecision(v);
42000         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
42001     },
42002
42003     // private
42004     decimalPrecisionFcn : function(v){
42005         return Math.floor(v);
42006     },
42007
42008     beforeBlur : function(){
42009         var v = this.parseValue(this.getRawValue());
42010         if(v){
42011             this.setValue(v);
42012         }
42013     }
42014 });/*
42015  * Based on:
42016  * Ext JS Library 1.1.1
42017  * Copyright(c) 2006-2007, Ext JS, LLC.
42018  *
42019  * Originally Released Under LGPL - original licence link has changed is not relivant.
42020  *
42021  * Fork - LGPL
42022  * <script type="text/javascript">
42023  */
42024  
42025 /**
42026  * @class Roo.form.DateField
42027  * @extends Roo.form.TriggerField
42028  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42029 * @constructor
42030 * Create a new DateField
42031 * @param {Object} config
42032  */
42033 Roo.form.DateField = function(config)
42034 {
42035     Roo.form.DateField.superclass.constructor.call(this, config);
42036     
42037       this.addEvents({
42038          
42039         /**
42040          * @event select
42041          * Fires when a date is selected
42042              * @param {Roo.form.DateField} combo This combo box
42043              * @param {Date} date The date selected
42044              */
42045         'select' : true
42046          
42047     });
42048     
42049     
42050     if(typeof this.minValue == "string") {
42051         this.minValue = this.parseDate(this.minValue);
42052     }
42053     if(typeof this.maxValue == "string") {
42054         this.maxValue = this.parseDate(this.maxValue);
42055     }
42056     this.ddMatch = null;
42057     if(this.disabledDates){
42058         var dd = this.disabledDates;
42059         var re = "(?:";
42060         for(var i = 0; i < dd.length; i++){
42061             re += dd[i];
42062             if(i != dd.length-1) {
42063                 re += "|";
42064             }
42065         }
42066         this.ddMatch = new RegExp(re + ")");
42067     }
42068 };
42069
42070 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
42071     /**
42072      * @cfg {String} format
42073      * The default date format string which can be overriden for localization support.  The format must be
42074      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42075      */
42076     format : "m/d/y",
42077     /**
42078      * @cfg {String} altFormats
42079      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42080      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42081      */
42082     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
42083     /**
42084      * @cfg {Array} disabledDays
42085      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42086      */
42087     disabledDays : null,
42088     /**
42089      * @cfg {String} disabledDaysText
42090      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42091      */
42092     disabledDaysText : "Disabled",
42093     /**
42094      * @cfg {Array} disabledDates
42095      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42096      * expression so they are very powerful. Some examples:
42097      * <ul>
42098      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42099      * <li>["03/08", "09/16"] would disable those days for every year</li>
42100      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42101      * <li>["03/../2006"] would disable every day in March 2006</li>
42102      * <li>["^03"] would disable every day in every March</li>
42103      * </ul>
42104      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42105      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42106      */
42107     disabledDates : null,
42108     /**
42109      * @cfg {String} disabledDatesText
42110      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42111      */
42112     disabledDatesText : "Disabled",
42113         
42114         
42115         /**
42116      * @cfg {Date/String} zeroValue
42117      * if the date is less that this number, then the field is rendered as empty
42118      * default is 1800
42119      */
42120         zeroValue : '1800-01-01',
42121         
42122         
42123     /**
42124      * @cfg {Date/String} minValue
42125      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42126      * valid format (defaults to null).
42127      */
42128     minValue : null,
42129     /**
42130      * @cfg {Date/String} maxValue
42131      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42132      * valid format (defaults to null).
42133      */
42134     maxValue : null,
42135     /**
42136      * @cfg {String} minText
42137      * The error text to display when the date in the cell is before minValue (defaults to
42138      * 'The date in this field must be after {minValue}').
42139      */
42140     minText : "The date in this field must be equal to or after {0}",
42141     /**
42142      * @cfg {String} maxText
42143      * The error text to display when the date in the cell is after maxValue (defaults to
42144      * 'The date in this field must be before {maxValue}').
42145      */
42146     maxText : "The date in this field must be equal to or before {0}",
42147     /**
42148      * @cfg {String} invalidText
42149      * The error text to display when the date in the field is invalid (defaults to
42150      * '{value} is not a valid date - it must be in the format {format}').
42151      */
42152     invalidText : "{0} is not a valid date - it must be in the format {1}",
42153     /**
42154      * @cfg {String} triggerClass
42155      * An additional CSS class used to style the trigger button.  The trigger will always get the
42156      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42157      * which displays a calendar icon).
42158      */
42159     triggerClass : 'x-form-date-trigger',
42160     
42161
42162     /**
42163      * @cfg {Boolean} useIso
42164      * if enabled, then the date field will use a hidden field to store the 
42165      * real value as iso formated date. default (false)
42166      */ 
42167     useIso : false,
42168     /**
42169      * @cfg {String/Object} autoCreate
42170      * A DomHelper element spec, or true for a default element spec (defaults to
42171      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42172      */ 
42173     // private
42174     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
42175     
42176     // private
42177     hiddenField: false,
42178     
42179     onRender : function(ct, position)
42180     {
42181         Roo.form.DateField.superclass.onRender.call(this, ct, position);
42182         if (this.useIso) {
42183             //this.el.dom.removeAttribute('name'); 
42184             Roo.log("Changing name?");
42185             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
42186             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42187                     'before', true);
42188             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42189             // prevent input submission
42190             this.hiddenName = this.name;
42191         }
42192             
42193             
42194     },
42195     
42196     // private
42197     validateValue : function(value)
42198     {
42199         value = this.formatDate(value);
42200         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
42201             Roo.log('super failed');
42202             return false;
42203         }
42204         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42205              return true;
42206         }
42207         var svalue = value;
42208         value = this.parseDate(value);
42209         if(!value){
42210             Roo.log('parse date failed' + svalue);
42211             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42212             return false;
42213         }
42214         var time = value.getTime();
42215         if(this.minValue && time < this.minValue.getTime()){
42216             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42217             return false;
42218         }
42219         if(this.maxValue && time > this.maxValue.getTime()){
42220             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42221             return false;
42222         }
42223         if(this.disabledDays){
42224             var day = value.getDay();
42225             for(var i = 0; i < this.disabledDays.length; i++) {
42226                 if(day === this.disabledDays[i]){
42227                     this.markInvalid(this.disabledDaysText);
42228                     return false;
42229                 }
42230             }
42231         }
42232         var fvalue = this.formatDate(value);
42233         if(this.ddMatch && this.ddMatch.test(fvalue)){
42234             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42235             return false;
42236         }
42237         return true;
42238     },
42239
42240     // private
42241     // Provides logic to override the default TriggerField.validateBlur which just returns true
42242     validateBlur : function(){
42243         return !this.menu || !this.menu.isVisible();
42244     },
42245     
42246     getName: function()
42247     {
42248         // returns hidden if it's set..
42249         if (!this.rendered) {return ''};
42250         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42251         
42252     },
42253
42254     /**
42255      * Returns the current date value of the date field.
42256      * @return {Date} The date value
42257      */
42258     getValue : function(){
42259         
42260         return  this.hiddenField ?
42261                 this.hiddenField.value :
42262                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
42263     },
42264
42265     /**
42266      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42267      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
42268      * (the default format used is "m/d/y").
42269      * <br />Usage:
42270      * <pre><code>
42271 //All of these calls set the same date value (May 4, 2006)
42272
42273 //Pass a date object:
42274 var dt = new Date('5/4/06');
42275 dateField.setValue(dt);
42276
42277 //Pass a date string (default format):
42278 dateField.setValue('5/4/06');
42279
42280 //Pass a date string (custom format):
42281 dateField.format = 'Y-m-d';
42282 dateField.setValue('2006-5-4');
42283 </code></pre>
42284      * @param {String/Date} date The date or valid date string
42285      */
42286     setValue : function(date){
42287         if (this.hiddenField) {
42288             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42289         }
42290         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42291         // make sure the value field is always stored as a date..
42292         this.value = this.parseDate(date);
42293         
42294         
42295     },
42296
42297     // private
42298     parseDate : function(value){
42299                 
42300                 if (value instanceof Date) {
42301                         if (value < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42302                                 return  '';
42303                         }
42304                         return value;
42305                 }
42306                 
42307                 
42308         if(!value || value instanceof Date){
42309             return value;
42310         }
42311         var v = Date.parseDate(value, this.format);
42312          if (!v && this.useIso) {
42313             v = Date.parseDate(value, 'Y-m-d');
42314         }
42315         if(!v && this.altFormats){
42316             if(!this.altFormatsArray){
42317                 this.altFormatsArray = this.altFormats.split("|");
42318             }
42319             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42320                 v = Date.parseDate(value, this.altFormatsArray[i]);
42321             }
42322         }
42323                 if (v < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42324                         v = '';
42325                 }
42326         return v;
42327     },
42328
42329     // private
42330     formatDate : function(date, fmt){
42331         return (!date || !(date instanceof Date)) ?
42332                date : date.dateFormat(fmt || this.format);
42333     },
42334
42335     // private
42336     menuListeners : {
42337         select: function(m, d){
42338             
42339             this.setValue(d);
42340             this.fireEvent('select', this, d);
42341         },
42342         show : function(){ // retain focus styling
42343             this.onFocus();
42344         },
42345         hide : function(){
42346             this.focus.defer(10, this);
42347             var ml = this.menuListeners;
42348             this.menu.un("select", ml.select,  this);
42349             this.menu.un("show", ml.show,  this);
42350             this.menu.un("hide", ml.hide,  this);
42351         }
42352     },
42353
42354     // private
42355     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42356     onTriggerClick : function(){
42357         if(this.disabled){
42358             return;
42359         }
42360         if(this.menu == null){
42361             this.menu = new Roo.menu.DateMenu();
42362         }
42363         Roo.apply(this.menu.picker,  {
42364             showClear: this.allowBlank,
42365             minDate : this.minValue,
42366             maxDate : this.maxValue,
42367             disabledDatesRE : this.ddMatch,
42368             disabledDatesText : this.disabledDatesText,
42369             disabledDays : this.disabledDays,
42370             disabledDaysText : this.disabledDaysText,
42371             format : this.useIso ? 'Y-m-d' : this.format,
42372             minText : String.format(this.minText, this.formatDate(this.minValue)),
42373             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42374         });
42375         this.menu.on(Roo.apply({}, this.menuListeners, {
42376             scope:this
42377         }));
42378         this.menu.picker.setValue(this.getValue() || new Date());
42379         this.menu.show(this.el, "tl-bl?");
42380     },
42381
42382     beforeBlur : function(){
42383         var v = this.parseDate(this.getRawValue());
42384         if(v){
42385             this.setValue(v);
42386         }
42387     },
42388
42389     /*@
42390      * overide
42391      * 
42392      */
42393     isDirty : function() {
42394         if(this.disabled) {
42395             return false;
42396         }
42397         
42398         if(typeof(this.startValue) === 'undefined'){
42399             return false;
42400         }
42401         
42402         return String(this.getValue()) !== String(this.startValue);
42403         
42404     },
42405     // @overide
42406     cleanLeadingSpace : function(e)
42407     {
42408        return;
42409     }
42410     
42411 });/*
42412  * Based on:
42413  * Ext JS Library 1.1.1
42414  * Copyright(c) 2006-2007, Ext JS, LLC.
42415  *
42416  * Originally Released Under LGPL - original licence link has changed is not relivant.
42417  *
42418  * Fork - LGPL
42419  * <script type="text/javascript">
42420  */
42421  
42422 /**
42423  * @class Roo.form.MonthField
42424  * @extends Roo.form.TriggerField
42425  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42426 * @constructor
42427 * Create a new MonthField
42428 * @param {Object} config
42429  */
42430 Roo.form.MonthField = function(config){
42431     
42432     Roo.form.MonthField.superclass.constructor.call(this, config);
42433     
42434       this.addEvents({
42435          
42436         /**
42437          * @event select
42438          * Fires when a date is selected
42439              * @param {Roo.form.MonthFieeld} combo This combo box
42440              * @param {Date} date The date selected
42441              */
42442         'select' : true
42443          
42444     });
42445     
42446     
42447     if(typeof this.minValue == "string") {
42448         this.minValue = this.parseDate(this.minValue);
42449     }
42450     if(typeof this.maxValue == "string") {
42451         this.maxValue = this.parseDate(this.maxValue);
42452     }
42453     this.ddMatch = null;
42454     if(this.disabledDates){
42455         var dd = this.disabledDates;
42456         var re = "(?:";
42457         for(var i = 0; i < dd.length; i++){
42458             re += dd[i];
42459             if(i != dd.length-1) {
42460                 re += "|";
42461             }
42462         }
42463         this.ddMatch = new RegExp(re + ")");
42464     }
42465 };
42466
42467 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
42468     /**
42469      * @cfg {String} format
42470      * The default date format string which can be overriden for localization support.  The format must be
42471      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42472      */
42473     format : "M Y",
42474     /**
42475      * @cfg {String} altFormats
42476      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42477      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42478      */
42479     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
42480     /**
42481      * @cfg {Array} disabledDays
42482      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42483      */
42484     disabledDays : [0,1,2,3,4,5,6],
42485     /**
42486      * @cfg {String} disabledDaysText
42487      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42488      */
42489     disabledDaysText : "Disabled",
42490     /**
42491      * @cfg {Array} disabledDates
42492      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42493      * expression so they are very powerful. Some examples:
42494      * <ul>
42495      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42496      * <li>["03/08", "09/16"] would disable those days for every year</li>
42497      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42498      * <li>["03/../2006"] would disable every day in March 2006</li>
42499      * <li>["^03"] would disable every day in every March</li>
42500      * </ul>
42501      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42502      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42503      */
42504     disabledDates : null,
42505     /**
42506      * @cfg {String} disabledDatesText
42507      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42508      */
42509     disabledDatesText : "Disabled",
42510     /**
42511      * @cfg {Date/String} minValue
42512      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42513      * valid format (defaults to null).
42514      */
42515     minValue : null,
42516     /**
42517      * @cfg {Date/String} maxValue
42518      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42519      * valid format (defaults to null).
42520      */
42521     maxValue : null,
42522     /**
42523      * @cfg {String} minText
42524      * The error text to display when the date in the cell is before minValue (defaults to
42525      * 'The date in this field must be after {minValue}').
42526      */
42527     minText : "The date in this field must be equal to or after {0}",
42528     /**
42529      * @cfg {String} maxTextf
42530      * The error text to display when the date in the cell is after maxValue (defaults to
42531      * 'The date in this field must be before {maxValue}').
42532      */
42533     maxText : "The date in this field must be equal to or before {0}",
42534     /**
42535      * @cfg {String} invalidText
42536      * The error text to display when the date in the field is invalid (defaults to
42537      * '{value} is not a valid date - it must be in the format {format}').
42538      */
42539     invalidText : "{0} is not a valid date - it must be in the format {1}",
42540     /**
42541      * @cfg {String} triggerClass
42542      * An additional CSS class used to style the trigger button.  The trigger will always get the
42543      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42544      * which displays a calendar icon).
42545      */
42546     triggerClass : 'x-form-date-trigger',
42547     
42548
42549     /**
42550      * @cfg {Boolean} useIso
42551      * if enabled, then the date field will use a hidden field to store the 
42552      * real value as iso formated date. default (true)
42553      */ 
42554     useIso : true,
42555     /**
42556      * @cfg {String/Object} autoCreate
42557      * A DomHelper element spec, or true for a default element spec (defaults to
42558      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42559      */ 
42560     // private
42561     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
42562     
42563     // private
42564     hiddenField: false,
42565     
42566     hideMonthPicker : false,
42567     
42568     onRender : function(ct, position)
42569     {
42570         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
42571         if (this.useIso) {
42572             this.el.dom.removeAttribute('name'); 
42573             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42574                     'before', true);
42575             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42576             // prevent input submission
42577             this.hiddenName = this.name;
42578         }
42579             
42580             
42581     },
42582     
42583     // private
42584     validateValue : function(value)
42585     {
42586         value = this.formatDate(value);
42587         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
42588             return false;
42589         }
42590         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42591              return true;
42592         }
42593         var svalue = value;
42594         value = this.parseDate(value);
42595         if(!value){
42596             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42597             return false;
42598         }
42599         var time = value.getTime();
42600         if(this.minValue && time < this.minValue.getTime()){
42601             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42602             return false;
42603         }
42604         if(this.maxValue && time > this.maxValue.getTime()){
42605             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42606             return false;
42607         }
42608         /*if(this.disabledDays){
42609             var day = value.getDay();
42610             for(var i = 0; i < this.disabledDays.length; i++) {
42611                 if(day === this.disabledDays[i]){
42612                     this.markInvalid(this.disabledDaysText);
42613                     return false;
42614                 }
42615             }
42616         }
42617         */
42618         var fvalue = this.formatDate(value);
42619         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
42620             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42621             return false;
42622         }
42623         */
42624         return true;
42625     },
42626
42627     // private
42628     // Provides logic to override the default TriggerField.validateBlur which just returns true
42629     validateBlur : function(){
42630         return !this.menu || !this.menu.isVisible();
42631     },
42632
42633     /**
42634      * Returns the current date value of the date field.
42635      * @return {Date} The date value
42636      */
42637     getValue : function(){
42638         
42639         
42640         
42641         return  this.hiddenField ?
42642                 this.hiddenField.value :
42643                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
42644     },
42645
42646     /**
42647      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42648      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
42649      * (the default format used is "m/d/y").
42650      * <br />Usage:
42651      * <pre><code>
42652 //All of these calls set the same date value (May 4, 2006)
42653
42654 //Pass a date object:
42655 var dt = new Date('5/4/06');
42656 monthField.setValue(dt);
42657
42658 //Pass a date string (default format):
42659 monthField.setValue('5/4/06');
42660
42661 //Pass a date string (custom format):
42662 monthField.format = 'Y-m-d';
42663 monthField.setValue('2006-5-4');
42664 </code></pre>
42665      * @param {String/Date} date The date or valid date string
42666      */
42667     setValue : function(date){
42668         Roo.log('month setValue' + date);
42669         // can only be first of month..
42670         
42671         var val = this.parseDate(date);
42672         
42673         if (this.hiddenField) {
42674             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42675         }
42676         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42677         this.value = this.parseDate(date);
42678     },
42679
42680     // private
42681     parseDate : function(value){
42682         if(!value || value instanceof Date){
42683             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
42684             return value;
42685         }
42686         var v = Date.parseDate(value, this.format);
42687         if (!v && this.useIso) {
42688             v = Date.parseDate(value, 'Y-m-d');
42689         }
42690         if (v) {
42691             // 
42692             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
42693         }
42694         
42695         
42696         if(!v && this.altFormats){
42697             if(!this.altFormatsArray){
42698                 this.altFormatsArray = this.altFormats.split("|");
42699             }
42700             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42701                 v = Date.parseDate(value, this.altFormatsArray[i]);
42702             }
42703         }
42704         return v;
42705     },
42706
42707     // private
42708     formatDate : function(date, fmt){
42709         return (!date || !(date instanceof Date)) ?
42710                date : date.dateFormat(fmt || this.format);
42711     },
42712
42713     // private
42714     menuListeners : {
42715         select: function(m, d){
42716             this.setValue(d);
42717             this.fireEvent('select', this, d);
42718         },
42719         show : function(){ // retain focus styling
42720             this.onFocus();
42721         },
42722         hide : function(){
42723             this.focus.defer(10, this);
42724             var ml = this.menuListeners;
42725             this.menu.un("select", ml.select,  this);
42726             this.menu.un("show", ml.show,  this);
42727             this.menu.un("hide", ml.hide,  this);
42728         }
42729     },
42730     // private
42731     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42732     onTriggerClick : function(){
42733         if(this.disabled){
42734             return;
42735         }
42736         if(this.menu == null){
42737             this.menu = new Roo.menu.DateMenu();
42738            
42739         }
42740         
42741         Roo.apply(this.menu.picker,  {
42742             
42743             showClear: this.allowBlank,
42744             minDate : this.minValue,
42745             maxDate : this.maxValue,
42746             disabledDatesRE : this.ddMatch,
42747             disabledDatesText : this.disabledDatesText,
42748             
42749             format : this.useIso ? 'Y-m-d' : this.format,
42750             minText : String.format(this.minText, this.formatDate(this.minValue)),
42751             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42752             
42753         });
42754          this.menu.on(Roo.apply({}, this.menuListeners, {
42755             scope:this
42756         }));
42757        
42758         
42759         var m = this.menu;
42760         var p = m.picker;
42761         
42762         // hide month picker get's called when we called by 'before hide';
42763         
42764         var ignorehide = true;
42765         p.hideMonthPicker  = function(disableAnim){
42766             if (ignorehide) {
42767                 return;
42768             }
42769              if(this.monthPicker){
42770                 Roo.log("hideMonthPicker called");
42771                 if(disableAnim === true){
42772                     this.monthPicker.hide();
42773                 }else{
42774                     this.monthPicker.slideOut('t', {duration:.2});
42775                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
42776                     p.fireEvent("select", this, this.value);
42777                     m.hide();
42778                 }
42779             }
42780         }
42781         
42782         Roo.log('picker set value');
42783         Roo.log(this.getValue());
42784         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
42785         m.show(this.el, 'tl-bl?');
42786         ignorehide  = false;
42787         // this will trigger hideMonthPicker..
42788         
42789         
42790         // hidden the day picker
42791         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
42792         
42793         
42794         
42795       
42796         
42797         p.showMonthPicker.defer(100, p);
42798     
42799         
42800        
42801     },
42802
42803     beforeBlur : function(){
42804         var v = this.parseDate(this.getRawValue());
42805         if(v){
42806             this.setValue(v);
42807         }
42808     }
42809
42810     /** @cfg {Boolean} grow @hide */
42811     /** @cfg {Number} growMin @hide */
42812     /** @cfg {Number} growMax @hide */
42813     /**
42814      * @hide
42815      * @method autoSize
42816      */
42817 });/*
42818  * Based on:
42819  * Ext JS Library 1.1.1
42820  * Copyright(c) 2006-2007, Ext JS, LLC.
42821  *
42822  * Originally Released Under LGPL - original licence link has changed is not relivant.
42823  *
42824  * Fork - LGPL
42825  * <script type="text/javascript">
42826  */
42827  
42828
42829 /**
42830  * @class Roo.form.ComboBox
42831  * @extends Roo.form.TriggerField
42832  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
42833  * @constructor
42834  * Create a new ComboBox.
42835  * @param {Object} config Configuration options
42836  */
42837 Roo.form.ComboBox = function(config){
42838     Roo.form.ComboBox.superclass.constructor.call(this, config);
42839     this.addEvents({
42840         /**
42841          * @event expand
42842          * Fires when the dropdown list is expanded
42843              * @param {Roo.form.ComboBox} combo This combo box
42844              */
42845         'expand' : true,
42846         /**
42847          * @event collapse
42848          * Fires when the dropdown list is collapsed
42849              * @param {Roo.form.ComboBox} combo This combo box
42850              */
42851         'collapse' : true,
42852         /**
42853          * @event beforeselect
42854          * Fires before a list item is selected. Return false to cancel the selection.
42855              * @param {Roo.form.ComboBox} combo This combo box
42856              * @param {Roo.data.Record} record The data record returned from the underlying store
42857              * @param {Number} index The index of the selected item in the dropdown list
42858              */
42859         'beforeselect' : true,
42860         /**
42861          * @event select
42862          * Fires when a list item is selected
42863              * @param {Roo.form.ComboBox} combo This combo box
42864              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
42865              * @param {Number} index The index of the selected item in the dropdown list
42866              */
42867         'select' : true,
42868         /**
42869          * @event beforequery
42870          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
42871          * The event object passed has these properties:
42872              * @param {Roo.form.ComboBox} combo This combo box
42873              * @param {String} query The query
42874              * @param {Boolean} forceAll true to force "all" query
42875              * @param {Boolean} cancel true to cancel the query
42876              * @param {Object} e The query event object
42877              */
42878         'beforequery': true,
42879          /**
42880          * @event add
42881          * Fires when the 'add' icon is pressed (add a listener to enable add button)
42882              * @param {Roo.form.ComboBox} combo This combo box
42883              */
42884         'add' : true,
42885         /**
42886          * @event edit
42887          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
42888              * @param {Roo.form.ComboBox} combo This combo box
42889              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
42890              */
42891         'edit' : true
42892         
42893         
42894     });
42895     if(this.transform){
42896         this.allowDomMove = false;
42897         var s = Roo.getDom(this.transform);
42898         if(!this.hiddenName){
42899             this.hiddenName = s.name;
42900         }
42901         if(!this.store){
42902             this.mode = 'local';
42903             var d = [], opts = s.options;
42904             for(var i = 0, len = opts.length;i < len; i++){
42905                 var o = opts[i];
42906                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
42907                 if(o.selected) {
42908                     this.value = value;
42909                 }
42910                 d.push([value, o.text]);
42911             }
42912             this.store = new Roo.data.SimpleStore({
42913                 'id': 0,
42914                 fields: ['value', 'text'],
42915                 data : d
42916             });
42917             this.valueField = 'value';
42918             this.displayField = 'text';
42919         }
42920         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
42921         if(!this.lazyRender){
42922             this.target = true;
42923             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
42924             s.parentNode.removeChild(s); // remove it
42925             this.render(this.el.parentNode);
42926         }else{
42927             s.parentNode.removeChild(s); // remove it
42928         }
42929
42930     }
42931     if (this.store) {
42932         this.store = Roo.factory(this.store, Roo.data);
42933     }
42934     
42935     this.selectedIndex = -1;
42936     if(this.mode == 'local'){
42937         if(config.queryDelay === undefined){
42938             this.queryDelay = 10;
42939         }
42940         if(config.minChars === undefined){
42941             this.minChars = 0;
42942         }
42943     }
42944 };
42945
42946 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
42947     /**
42948      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
42949      */
42950     /**
42951      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
42952      * rendering into an Roo.Editor, defaults to false)
42953      */
42954     /**
42955      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
42956      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
42957      */
42958     /**
42959      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
42960      */
42961     /**
42962      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
42963      * the dropdown list (defaults to undefined, with no header element)
42964      */
42965
42966      /**
42967      * @cfg {String/Roo.Template} tpl The template to use to render the output
42968      */
42969      
42970     // private
42971     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
42972     /**
42973      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
42974      */
42975     listWidth: undefined,
42976     /**
42977      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
42978      * mode = 'remote' or 'text' if mode = 'local')
42979      */
42980     displayField: undefined,
42981     /**
42982      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
42983      * mode = 'remote' or 'value' if mode = 'local'). 
42984      * Note: use of a valueField requires the user make a selection
42985      * in order for a value to be mapped.
42986      */
42987     valueField: undefined,
42988     
42989     
42990     /**
42991      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
42992      * field's data value (defaults to the underlying DOM element's name)
42993      */
42994     hiddenName: undefined,
42995     /**
42996      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
42997      */
42998     listClass: '',
42999     /**
43000      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
43001      */
43002     selectedClass: 'x-combo-selected',
43003     /**
43004      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
43005      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
43006      * which displays a downward arrow icon).
43007      */
43008     triggerClass : 'x-form-arrow-trigger',
43009     /**
43010      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
43011      */
43012     shadow:'sides',
43013     /**
43014      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
43015      * anchor positions (defaults to 'tl-bl')
43016      */
43017     listAlign: 'tl-bl?',
43018     /**
43019      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
43020      */
43021     maxHeight: 300,
43022     /**
43023      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
43024      * query specified by the allQuery config option (defaults to 'query')
43025      */
43026     triggerAction: 'query',
43027     /**
43028      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
43029      * (defaults to 4, does not apply if editable = false)
43030      */
43031     minChars : 4,
43032     /**
43033      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
43034      * delay (typeAheadDelay) if it matches a known value (defaults to false)
43035      */
43036     typeAhead: false,
43037     /**
43038      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
43039      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
43040      */
43041     queryDelay: 500,
43042     /**
43043      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
43044      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
43045      */
43046     pageSize: 0,
43047     /**
43048      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
43049      * when editable = true (defaults to false)
43050      */
43051     selectOnFocus:false,
43052     /**
43053      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
43054      */
43055     queryParam: 'query',
43056     /**
43057      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
43058      * when mode = 'remote' (defaults to 'Loading...')
43059      */
43060     loadingText: 'Loading...',
43061     /**
43062      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
43063      */
43064     resizable: false,
43065     /**
43066      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
43067      */
43068     handleHeight : 8,
43069     /**
43070      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
43071      * traditional select (defaults to true)
43072      */
43073     editable: true,
43074     /**
43075      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
43076      */
43077     allQuery: '',
43078     /**
43079      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
43080      */
43081     mode: 'remote',
43082     /**
43083      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
43084      * listWidth has a higher value)
43085      */
43086     minListWidth : 70,
43087     /**
43088      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
43089      * allow the user to set arbitrary text into the field (defaults to false)
43090      */
43091     forceSelection:false,
43092     /**
43093      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
43094      * if typeAhead = true (defaults to 250)
43095      */
43096     typeAheadDelay : 250,
43097     /**
43098      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
43099      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
43100      */
43101     valueNotFoundText : undefined,
43102     /**
43103      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
43104      */
43105     blockFocus : false,
43106     
43107     /**
43108      * @cfg {Boolean} disableClear Disable showing of clear button.
43109      */
43110     disableClear : false,
43111     /**
43112      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
43113      */
43114     alwaysQuery : false,
43115     
43116     //private
43117     addicon : false,
43118     editicon: false,
43119     
43120     // element that contains real text value.. (when hidden is used..)
43121      
43122     // private
43123     onRender : function(ct, position)
43124     {
43125         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
43126         
43127         if(this.hiddenName){
43128             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
43129                     'before', true);
43130             this.hiddenField.value =
43131                 this.hiddenValue !== undefined ? this.hiddenValue :
43132                 this.value !== undefined ? this.value : '';
43133
43134             // prevent input submission
43135             this.el.dom.removeAttribute('name');
43136              
43137              
43138         }
43139         
43140         if(Roo.isGecko){
43141             this.el.dom.setAttribute('autocomplete', 'off');
43142         }
43143
43144         var cls = 'x-combo-list';
43145
43146         this.list = new Roo.Layer({
43147             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
43148         });
43149
43150         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
43151         this.list.setWidth(lw);
43152         this.list.swallowEvent('mousewheel');
43153         this.assetHeight = 0;
43154
43155         if(this.title){
43156             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
43157             this.assetHeight += this.header.getHeight();
43158         }
43159
43160         this.innerList = this.list.createChild({cls:cls+'-inner'});
43161         this.innerList.on('mouseover', this.onViewOver, this);
43162         this.innerList.on('mousemove', this.onViewMove, this);
43163         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43164         
43165         if(this.allowBlank && !this.pageSize && !this.disableClear){
43166             this.footer = this.list.createChild({cls:cls+'-ft'});
43167             this.pageTb = new Roo.Toolbar(this.footer);
43168            
43169         }
43170         if(this.pageSize){
43171             this.footer = this.list.createChild({cls:cls+'-ft'});
43172             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
43173                     {pageSize: this.pageSize});
43174             
43175         }
43176         
43177         if (this.pageTb && this.allowBlank && !this.disableClear) {
43178             var _this = this;
43179             this.pageTb.add(new Roo.Toolbar.Fill(), {
43180                 cls: 'x-btn-icon x-btn-clear',
43181                 text: '&#160;',
43182                 handler: function()
43183                 {
43184                     _this.collapse();
43185                     _this.clearValue();
43186                     _this.onSelect(false, -1);
43187                 }
43188             });
43189         }
43190         if (this.footer) {
43191             this.assetHeight += this.footer.getHeight();
43192         }
43193         
43194
43195         if(!this.tpl){
43196             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
43197         }
43198
43199         this.view = new Roo.View(this.innerList, this.tpl, {
43200             singleSelect:true,
43201             store: this.store,
43202             selectedClass: this.selectedClass
43203         });
43204
43205         this.view.on('click', this.onViewClick, this);
43206
43207         this.store.on('beforeload', this.onBeforeLoad, this);
43208         this.store.on('load', this.onLoad, this);
43209         this.store.on('loadexception', this.onLoadException, this);
43210
43211         if(this.resizable){
43212             this.resizer = new Roo.Resizable(this.list,  {
43213                pinned:true, handles:'se'
43214             });
43215             this.resizer.on('resize', function(r, w, h){
43216                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
43217                 this.listWidth = w;
43218                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
43219                 this.restrictHeight();
43220             }, this);
43221             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
43222         }
43223         if(!this.editable){
43224             this.editable = true;
43225             this.setEditable(false);
43226         }  
43227         
43228         
43229         if (typeof(this.events.add.listeners) != 'undefined') {
43230             
43231             this.addicon = this.wrap.createChild(
43232                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
43233        
43234             this.addicon.on('click', function(e) {
43235                 this.fireEvent('add', this);
43236             }, this);
43237         }
43238         if (typeof(this.events.edit.listeners) != 'undefined') {
43239             
43240             this.editicon = this.wrap.createChild(
43241                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
43242             if (this.addicon) {
43243                 this.editicon.setStyle('margin-left', '40px');
43244             }
43245             this.editicon.on('click', function(e) {
43246                 
43247                 // we fire even  if inothing is selected..
43248                 this.fireEvent('edit', this, this.lastData );
43249                 
43250             }, this);
43251         }
43252         
43253         
43254         
43255     },
43256
43257     // private
43258     initEvents : function(){
43259         Roo.form.ComboBox.superclass.initEvents.call(this);
43260
43261         this.keyNav = new Roo.KeyNav(this.el, {
43262             "up" : function(e){
43263                 this.inKeyMode = true;
43264                 this.selectPrev();
43265             },
43266
43267             "down" : function(e){
43268                 if(!this.isExpanded()){
43269                     this.onTriggerClick();
43270                 }else{
43271                     this.inKeyMode = true;
43272                     this.selectNext();
43273                 }
43274             },
43275
43276             "enter" : function(e){
43277                 this.onViewClick();
43278                 //return true;
43279             },
43280
43281             "esc" : function(e){
43282                 this.collapse();
43283             },
43284
43285             "tab" : function(e){
43286                 this.onViewClick(false);
43287                 this.fireEvent("specialkey", this, e);
43288                 return true;
43289             },
43290
43291             scope : this,
43292
43293             doRelay : function(foo, bar, hname){
43294                 if(hname == 'down' || this.scope.isExpanded()){
43295                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
43296                 }
43297                 return true;
43298             },
43299
43300             forceKeyDown: true
43301         });
43302         this.queryDelay = Math.max(this.queryDelay || 10,
43303                 this.mode == 'local' ? 10 : 250);
43304         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
43305         if(this.typeAhead){
43306             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
43307         }
43308         if(this.editable !== false){
43309             this.el.on("keyup", this.onKeyUp, this);
43310         }
43311         if(this.forceSelection){
43312             this.on('blur', this.doForce, this);
43313         }
43314     },
43315
43316     onDestroy : function(){
43317         if(this.view){
43318             this.view.setStore(null);
43319             this.view.el.removeAllListeners();
43320             this.view.el.remove();
43321             this.view.purgeListeners();
43322         }
43323         if(this.list){
43324             this.list.destroy();
43325         }
43326         if(this.store){
43327             this.store.un('beforeload', this.onBeforeLoad, this);
43328             this.store.un('load', this.onLoad, this);
43329             this.store.un('loadexception', this.onLoadException, this);
43330         }
43331         Roo.form.ComboBox.superclass.onDestroy.call(this);
43332     },
43333
43334     // private
43335     fireKey : function(e){
43336         if(e.isNavKeyPress() && !this.list.isVisible()){
43337             this.fireEvent("specialkey", this, e);
43338         }
43339     },
43340
43341     // private
43342     onResize: function(w, h){
43343         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
43344         
43345         if(typeof w != 'number'){
43346             // we do not handle it!?!?
43347             return;
43348         }
43349         var tw = this.trigger.getWidth();
43350         tw += this.addicon ? this.addicon.getWidth() : 0;
43351         tw += this.editicon ? this.editicon.getWidth() : 0;
43352         var x = w - tw;
43353         this.el.setWidth( this.adjustWidth('input', x));
43354             
43355         this.trigger.setStyle('left', x+'px');
43356         
43357         if(this.list && this.listWidth === undefined){
43358             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
43359             this.list.setWidth(lw);
43360             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43361         }
43362         
43363     
43364         
43365     },
43366
43367     /**
43368      * Allow or prevent the user from directly editing the field text.  If false is passed,
43369      * the user will only be able to select from the items defined in the dropdown list.  This method
43370      * is the runtime equivalent of setting the 'editable' config option at config time.
43371      * @param {Boolean} value True to allow the user to directly edit the field text
43372      */
43373     setEditable : function(value){
43374         if(value == this.editable){
43375             return;
43376         }
43377         this.editable = value;
43378         if(!value){
43379             this.el.dom.setAttribute('readOnly', true);
43380             this.el.on('mousedown', this.onTriggerClick,  this);
43381             this.el.addClass('x-combo-noedit');
43382         }else{
43383             this.el.dom.setAttribute('readOnly', false);
43384             this.el.un('mousedown', this.onTriggerClick,  this);
43385             this.el.removeClass('x-combo-noedit');
43386         }
43387     },
43388
43389     // private
43390     onBeforeLoad : function(){
43391         if(!this.hasFocus){
43392             return;
43393         }
43394         this.innerList.update(this.loadingText ?
43395                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43396         this.restrictHeight();
43397         this.selectedIndex = -1;
43398     },
43399
43400     // private
43401     onLoad : function(){
43402         if(!this.hasFocus){
43403             return;
43404         }
43405         if(this.store.getCount() > 0){
43406             this.expand();
43407             this.restrictHeight();
43408             if(this.lastQuery == this.allQuery){
43409                 if(this.editable){
43410                     this.el.dom.select();
43411                 }
43412                 if(!this.selectByValue(this.value, true)){
43413                     this.select(0, true);
43414                 }
43415             }else{
43416                 this.selectNext();
43417                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
43418                     this.taTask.delay(this.typeAheadDelay);
43419                 }
43420             }
43421         }else{
43422             this.onEmptyResults();
43423         }
43424         //this.el.focus();
43425     },
43426     // private
43427     onLoadException : function()
43428     {
43429         this.collapse();
43430         Roo.log(this.store.reader.jsonData);
43431         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43432             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43433         }
43434         
43435         
43436     },
43437     // private
43438     onTypeAhead : function(){
43439         if(this.store.getCount() > 0){
43440             var r = this.store.getAt(0);
43441             var newValue = r.data[this.displayField];
43442             var len = newValue.length;
43443             var selStart = this.getRawValue().length;
43444             if(selStart != len){
43445                 this.setRawValue(newValue);
43446                 this.selectText(selStart, newValue.length);
43447             }
43448         }
43449     },
43450
43451     // private
43452     onSelect : function(record, index){
43453         if(this.fireEvent('beforeselect', this, record, index) !== false){
43454             this.setFromData(index > -1 ? record.data : false);
43455             this.collapse();
43456             this.fireEvent('select', this, record, index);
43457         }
43458     },
43459
43460     /**
43461      * Returns the currently selected field value or empty string if no value is set.
43462      * @return {String} value The selected value
43463      */
43464     getValue : function(){
43465         if(this.valueField){
43466             return typeof this.value != 'undefined' ? this.value : '';
43467         }
43468         return Roo.form.ComboBox.superclass.getValue.call(this);
43469     },
43470
43471     /**
43472      * Clears any text/value currently set in the field
43473      */
43474     clearValue : function(){
43475         if(this.hiddenField){
43476             this.hiddenField.value = '';
43477         }
43478         this.value = '';
43479         this.setRawValue('');
43480         this.lastSelectionText = '';
43481         
43482     },
43483
43484     /**
43485      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
43486      * will be displayed in the field.  If the value does not match the data value of an existing item,
43487      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
43488      * Otherwise the field will be blank (although the value will still be set).
43489      * @param {String} value The value to match
43490      */
43491     setValue : function(v){
43492         var text = v;
43493         if(this.valueField){
43494             var r = this.findRecord(this.valueField, v);
43495             if(r){
43496                 text = r.data[this.displayField];
43497             }else if(this.valueNotFoundText !== undefined){
43498                 text = this.valueNotFoundText;
43499             }
43500         }
43501         this.lastSelectionText = text;
43502         if(this.hiddenField){
43503             this.hiddenField.value = v;
43504         }
43505         Roo.form.ComboBox.superclass.setValue.call(this, text);
43506         this.value = v;
43507     },
43508     /**
43509      * @property {Object} the last set data for the element
43510      */
43511     
43512     lastData : false,
43513     /**
43514      * Sets the value of the field based on a object which is related to the record format for the store.
43515      * @param {Object} value the value to set as. or false on reset?
43516      */
43517     setFromData : function(o){
43518         var dv = ''; // display value
43519         var vv = ''; // value value..
43520         this.lastData = o;
43521         if (this.displayField) {
43522             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
43523         } else {
43524             // this is an error condition!!!
43525             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
43526         }
43527         
43528         if(this.valueField){
43529             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
43530         }
43531         if(this.hiddenField){
43532             this.hiddenField.value = vv;
43533             
43534             this.lastSelectionText = dv;
43535             Roo.form.ComboBox.superclass.setValue.call(this, dv);
43536             this.value = vv;
43537             return;
43538         }
43539         // no hidden field.. - we store the value in 'value', but still display
43540         // display field!!!!
43541         this.lastSelectionText = dv;
43542         Roo.form.ComboBox.superclass.setValue.call(this, dv);
43543         this.value = vv;
43544         
43545         
43546     },
43547     // private
43548     reset : function(){
43549         // overridden so that last data is reset..
43550         this.setValue(this.resetValue);
43551         this.originalValue = this.getValue();
43552         this.clearInvalid();
43553         this.lastData = false;
43554         if (this.view) {
43555             this.view.clearSelections();
43556         }
43557     },
43558     // private
43559     findRecord : function(prop, value){
43560         var record;
43561         if(this.store.getCount() > 0){
43562             this.store.each(function(r){
43563                 if(r.data[prop] == value){
43564                     record = r;
43565                     return false;
43566                 }
43567                 return true;
43568             });
43569         }
43570         return record;
43571     },
43572     
43573     getName: function()
43574     {
43575         // returns hidden if it's set..
43576         if (!this.rendered) {return ''};
43577         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
43578         
43579     },
43580     // private
43581     onViewMove : function(e, t){
43582         this.inKeyMode = false;
43583     },
43584
43585     // private
43586     onViewOver : function(e, t){
43587         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
43588             return;
43589         }
43590         var item = this.view.findItemFromChild(t);
43591         if(item){
43592             var index = this.view.indexOf(item);
43593             this.select(index, false);
43594         }
43595     },
43596
43597     // private
43598     onViewClick : function(doFocus)
43599     {
43600         var index = this.view.getSelectedIndexes()[0];
43601         var r = this.store.getAt(index);
43602         if(r){
43603             this.onSelect(r, index);
43604         }
43605         if(doFocus !== false && !this.blockFocus){
43606             this.el.focus();
43607         }
43608     },
43609
43610     // private
43611     restrictHeight : function(){
43612         this.innerList.dom.style.height = '';
43613         var inner = this.innerList.dom;
43614         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
43615         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43616         this.list.beginUpdate();
43617         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
43618         this.list.alignTo(this.el, this.listAlign);
43619         this.list.endUpdate();
43620     },
43621
43622     // private
43623     onEmptyResults : function(){
43624         this.collapse();
43625     },
43626
43627     /**
43628      * Returns true if the dropdown list is expanded, else false.
43629      */
43630     isExpanded : function(){
43631         return this.list.isVisible();
43632     },
43633
43634     /**
43635      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
43636      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43637      * @param {String} value The data value of the item to select
43638      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43639      * selected item if it is not currently in view (defaults to true)
43640      * @return {Boolean} True if the value matched an item in the list, else false
43641      */
43642     selectByValue : function(v, scrollIntoView){
43643         if(v !== undefined && v !== null){
43644             var r = this.findRecord(this.valueField || this.displayField, v);
43645             if(r){
43646                 this.select(this.store.indexOf(r), scrollIntoView);
43647                 return true;
43648             }
43649         }
43650         return false;
43651     },
43652
43653     /**
43654      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
43655      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43656      * @param {Number} index The zero-based index of the list item to select
43657      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43658      * selected item if it is not currently in view (defaults to true)
43659      */
43660     select : function(index, scrollIntoView){
43661         this.selectedIndex = index;
43662         this.view.select(index);
43663         if(scrollIntoView !== false){
43664             var el = this.view.getNode(index);
43665             if(el){
43666                 this.innerList.scrollChildIntoView(el, false);
43667             }
43668         }
43669     },
43670
43671     // private
43672     selectNext : function(){
43673         var ct = this.store.getCount();
43674         if(ct > 0){
43675             if(this.selectedIndex == -1){
43676                 this.select(0);
43677             }else if(this.selectedIndex < ct-1){
43678                 this.select(this.selectedIndex+1);
43679             }
43680         }
43681     },
43682
43683     // private
43684     selectPrev : function(){
43685         var ct = this.store.getCount();
43686         if(ct > 0){
43687             if(this.selectedIndex == -1){
43688                 this.select(0);
43689             }else if(this.selectedIndex != 0){
43690                 this.select(this.selectedIndex-1);
43691             }
43692         }
43693     },
43694
43695     // private
43696     onKeyUp : function(e){
43697         if(this.editable !== false && !e.isSpecialKey()){
43698             this.lastKey = e.getKey();
43699             this.dqTask.delay(this.queryDelay);
43700         }
43701     },
43702
43703     // private
43704     validateBlur : function(){
43705         return !this.list || !this.list.isVisible();   
43706     },
43707
43708     // private
43709     initQuery : function(){
43710         this.doQuery(this.getRawValue());
43711     },
43712
43713     // private
43714     doForce : function(){
43715         if(this.el.dom.value.length > 0){
43716             this.el.dom.value =
43717                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
43718              
43719         }
43720     },
43721
43722     /**
43723      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
43724      * query allowing the query action to be canceled if needed.
43725      * @param {String} query The SQL query to execute
43726      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
43727      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
43728      * saved in the current store (defaults to false)
43729      */
43730     doQuery : function(q, forceAll){
43731         if(q === undefined || q === null){
43732             q = '';
43733         }
43734         var qe = {
43735             query: q,
43736             forceAll: forceAll,
43737             combo: this,
43738             cancel:false
43739         };
43740         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
43741             return false;
43742         }
43743         q = qe.query;
43744         forceAll = qe.forceAll;
43745         if(forceAll === true || (q.length >= this.minChars)){
43746             if(this.lastQuery != q || this.alwaysQuery){
43747                 this.lastQuery = q;
43748                 if(this.mode == 'local'){
43749                     this.selectedIndex = -1;
43750                     if(forceAll){
43751                         this.store.clearFilter();
43752                     }else{
43753                         this.store.filter(this.displayField, q);
43754                     }
43755                     this.onLoad();
43756                 }else{
43757                     this.store.baseParams[this.queryParam] = q;
43758                     this.store.load({
43759                         params: this.getParams(q)
43760                     });
43761                     this.expand();
43762                 }
43763             }else{
43764                 this.selectedIndex = -1;
43765                 this.onLoad();   
43766             }
43767         }
43768     },
43769
43770     // private
43771     getParams : function(q){
43772         var p = {};
43773         //p[this.queryParam] = q;
43774         if(this.pageSize){
43775             p.start = 0;
43776             p.limit = this.pageSize;
43777         }
43778         return p;
43779     },
43780
43781     /**
43782      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
43783      */
43784     collapse : function(){
43785         if(!this.isExpanded()){
43786             return;
43787         }
43788         this.list.hide();
43789         Roo.get(document).un('mousedown', this.collapseIf, this);
43790         Roo.get(document).un('mousewheel', this.collapseIf, this);
43791         if (!this.editable) {
43792             Roo.get(document).un('keydown', this.listKeyPress, this);
43793         }
43794         this.fireEvent('collapse', this);
43795     },
43796
43797     // private
43798     collapseIf : function(e){
43799         if(!e.within(this.wrap) && !e.within(this.list)){
43800             this.collapse();
43801         }
43802     },
43803
43804     /**
43805      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
43806      */
43807     expand : function(){
43808         if(this.isExpanded() || !this.hasFocus){
43809             return;
43810         }
43811         this.list.alignTo(this.el, this.listAlign);
43812         this.list.show();
43813         Roo.get(document).on('mousedown', this.collapseIf, this);
43814         Roo.get(document).on('mousewheel', this.collapseIf, this);
43815         if (!this.editable) {
43816             Roo.get(document).on('keydown', this.listKeyPress, this);
43817         }
43818         
43819         this.fireEvent('expand', this);
43820     },
43821
43822     // private
43823     // Implements the default empty TriggerField.onTriggerClick function
43824     onTriggerClick : function(){
43825         if(this.disabled){
43826             return;
43827         }
43828         if(this.isExpanded()){
43829             this.collapse();
43830             if (!this.blockFocus) {
43831                 this.el.focus();
43832             }
43833             
43834         }else {
43835             this.hasFocus = true;
43836             if(this.triggerAction == 'all') {
43837                 this.doQuery(this.allQuery, true);
43838             } else {
43839                 this.doQuery(this.getRawValue());
43840             }
43841             if (!this.blockFocus) {
43842                 this.el.focus();
43843             }
43844         }
43845     },
43846     listKeyPress : function(e)
43847     {
43848         //Roo.log('listkeypress');
43849         // scroll to first matching element based on key pres..
43850         if (e.isSpecialKey()) {
43851             return false;
43852         }
43853         var k = String.fromCharCode(e.getKey()).toUpperCase();
43854         //Roo.log(k);
43855         var match  = false;
43856         var csel = this.view.getSelectedNodes();
43857         var cselitem = false;
43858         if (csel.length) {
43859             var ix = this.view.indexOf(csel[0]);
43860             cselitem  = this.store.getAt(ix);
43861             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
43862                 cselitem = false;
43863             }
43864             
43865         }
43866         
43867         this.store.each(function(v) { 
43868             if (cselitem) {
43869                 // start at existing selection.
43870                 if (cselitem.id == v.id) {
43871                     cselitem = false;
43872                 }
43873                 return;
43874             }
43875                 
43876             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
43877                 match = this.store.indexOf(v);
43878                 return false;
43879             }
43880         }, this);
43881         
43882         if (match === false) {
43883             return true; // no more action?
43884         }
43885         // scroll to?
43886         this.view.select(match);
43887         var sn = Roo.get(this.view.getSelectedNodes()[0]);
43888         sn.scrollIntoView(sn.dom.parentNode, false);
43889     } 
43890
43891     /** 
43892     * @cfg {Boolean} grow 
43893     * @hide 
43894     */
43895     /** 
43896     * @cfg {Number} growMin 
43897     * @hide 
43898     */
43899     /** 
43900     * @cfg {Number} growMax 
43901     * @hide 
43902     */
43903     /**
43904      * @hide
43905      * @method autoSize
43906      */
43907 });/*
43908  * Copyright(c) 2010-2012, Roo J Solutions Limited
43909  *
43910  * Licence LGPL
43911  *
43912  */
43913
43914 /**
43915  * @class Roo.form.ComboBoxArray
43916  * @extends Roo.form.TextField
43917  * A facebook style adder... for lists of email / people / countries  etc...
43918  * pick multiple items from a combo box, and shows each one.
43919  *
43920  *  Fred [x]  Brian [x]  [Pick another |v]
43921  *
43922  *
43923  *  For this to work: it needs various extra information
43924  *    - normal combo problay has
43925  *      name, hiddenName
43926  *    + displayField, valueField
43927  *
43928  *    For our purpose...
43929  *
43930  *
43931  *   If we change from 'extends' to wrapping...
43932  *   
43933  *  
43934  *
43935  
43936  
43937  * @constructor
43938  * Create a new ComboBoxArray.
43939  * @param {Object} config Configuration options
43940  */
43941  
43942
43943 Roo.form.ComboBoxArray = function(config)
43944 {
43945     this.addEvents({
43946         /**
43947          * @event beforeremove
43948          * Fires before remove the value from the list
43949              * @param {Roo.form.ComboBoxArray} _self This combo box array
43950              * @param {Roo.form.ComboBoxArray.Item} item removed item
43951              */
43952         'beforeremove' : true,
43953         /**
43954          * @event remove
43955          * Fires when remove the value from the list
43956              * @param {Roo.form.ComboBoxArray} _self This combo box array
43957              * @param {Roo.form.ComboBoxArray.Item} item removed item
43958              */
43959         'remove' : true
43960         
43961         
43962     });
43963     
43964     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
43965     
43966     this.items = new Roo.util.MixedCollection(false);
43967     
43968     // construct the child combo...
43969     
43970     
43971     
43972     
43973    
43974     
43975 }
43976
43977  
43978 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
43979
43980     /**
43981      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
43982      */
43983     
43984     lastData : false,
43985     
43986     // behavies liek a hiddne field
43987     inputType:      'hidden',
43988     /**
43989      * @cfg {Number} width The width of the box that displays the selected element
43990      */ 
43991     width:          300,
43992
43993     
43994     
43995     /**
43996      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
43997      */
43998     name : false,
43999     /**
44000      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
44001      */
44002     hiddenName : false,
44003       /**
44004      * @cfg {String} seperator    The value seperator normally ',' 
44005      */
44006     seperator : ',',
44007     
44008     // private the array of items that are displayed..
44009     items  : false,
44010     // private - the hidden field el.
44011     hiddenEl : false,
44012     // private - the filed el..
44013     el : false,
44014     
44015     //validateValue : function() { return true; }, // all values are ok!
44016     //onAddClick: function() { },
44017     
44018     onRender : function(ct, position) 
44019     {
44020         
44021         // create the standard hidden element
44022         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
44023         
44024         
44025         // give fake names to child combo;
44026         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
44027         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
44028         
44029         this.combo = Roo.factory(this.combo, Roo.form);
44030         this.combo.onRender(ct, position);
44031         if (typeof(this.combo.width) != 'undefined') {
44032             this.combo.onResize(this.combo.width,0);
44033         }
44034         
44035         this.combo.initEvents();
44036         
44037         // assigned so form know we need to do this..
44038         this.store          = this.combo.store;
44039         this.valueField     = this.combo.valueField;
44040         this.displayField   = this.combo.displayField ;
44041         
44042         
44043         this.combo.wrap.addClass('x-cbarray-grp');
44044         
44045         var cbwrap = this.combo.wrap.createChild(
44046             {tag: 'div', cls: 'x-cbarray-cb'},
44047             this.combo.el.dom
44048         );
44049         
44050              
44051         this.hiddenEl = this.combo.wrap.createChild({
44052             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
44053         });
44054         this.el = this.combo.wrap.createChild({
44055             tag: 'input',  type:'hidden' , name: this.name, value : ''
44056         });
44057          //   this.el.dom.removeAttribute("name");
44058         
44059         
44060         this.outerWrap = this.combo.wrap;
44061         this.wrap = cbwrap;
44062         
44063         this.outerWrap.setWidth(this.width);
44064         this.outerWrap.dom.removeChild(this.el.dom);
44065         
44066         this.wrap.dom.appendChild(this.el.dom);
44067         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
44068         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
44069         
44070         this.combo.trigger.setStyle('position','relative');
44071         this.combo.trigger.setStyle('left', '0px');
44072         this.combo.trigger.setStyle('top', '2px');
44073         
44074         this.combo.el.setStyle('vertical-align', 'text-bottom');
44075         
44076         //this.trigger.setStyle('vertical-align', 'top');
44077         
44078         // this should use the code from combo really... on('add' ....)
44079         if (this.adder) {
44080             
44081         
44082             this.adder = this.outerWrap.createChild(
44083                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
44084             var _t = this;
44085             this.adder.on('click', function(e) {
44086                 _t.fireEvent('adderclick', this, e);
44087             }, _t);
44088         }
44089         //var _t = this;
44090         //this.adder.on('click', this.onAddClick, _t);
44091         
44092         
44093         this.combo.on('select', function(cb, rec, ix) {
44094             this.addItem(rec.data);
44095             
44096             cb.setValue('');
44097             cb.el.dom.value = '';
44098             //cb.lastData = rec.data;
44099             // add to list
44100             
44101         }, this);
44102         
44103         
44104     },
44105     
44106     
44107     getName: function()
44108     {
44109         // returns hidden if it's set..
44110         if (!this.rendered) {return ''};
44111         return  this.hiddenName ? this.hiddenName : this.name;
44112         
44113     },
44114     
44115     
44116     onResize: function(w, h){
44117         
44118         return;
44119         // not sure if this is needed..
44120         //this.combo.onResize(w,h);
44121         
44122         if(typeof w != 'number'){
44123             // we do not handle it!?!?
44124             return;
44125         }
44126         var tw = this.combo.trigger.getWidth();
44127         tw += this.addicon ? this.addicon.getWidth() : 0;
44128         tw += this.editicon ? this.editicon.getWidth() : 0;
44129         var x = w - tw;
44130         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
44131             
44132         this.combo.trigger.setStyle('left', '0px');
44133         
44134         if(this.list && this.listWidth === undefined){
44135             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
44136             this.list.setWidth(lw);
44137             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
44138         }
44139         
44140     
44141         
44142     },
44143     
44144     addItem: function(rec)
44145     {
44146         var valueField = this.combo.valueField;
44147         var displayField = this.combo.displayField;
44148         
44149         if (this.items.indexOfKey(rec[valueField]) > -1) {
44150             //console.log("GOT " + rec.data.id);
44151             return;
44152         }
44153         
44154         var x = new Roo.form.ComboBoxArray.Item({
44155             //id : rec[this.idField],
44156             data : rec,
44157             displayField : displayField ,
44158             tipField : displayField ,
44159             cb : this
44160         });
44161         // use the 
44162         this.items.add(rec[valueField],x);
44163         // add it before the element..
44164         this.updateHiddenEl();
44165         x.render(this.outerWrap, this.wrap.dom);
44166         // add the image handler..
44167     },
44168     
44169     updateHiddenEl : function()
44170     {
44171         this.validate();
44172         if (!this.hiddenEl) {
44173             return;
44174         }
44175         var ar = [];
44176         var idField = this.combo.valueField;
44177         
44178         this.items.each(function(f) {
44179             ar.push(f.data[idField]);
44180         });
44181         this.hiddenEl.dom.value = ar.join(this.seperator);
44182         this.validate();
44183     },
44184     
44185     reset : function()
44186     {
44187         this.items.clear();
44188         
44189         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
44190            el.remove();
44191         });
44192         
44193         this.el.dom.value = '';
44194         if (this.hiddenEl) {
44195             this.hiddenEl.dom.value = '';
44196         }
44197         
44198     },
44199     getValue: function()
44200     {
44201         return this.hiddenEl ? this.hiddenEl.dom.value : '';
44202     },
44203     setValue: function(v) // not a valid action - must use addItems..
44204     {
44205         
44206         this.reset();
44207          
44208         if (this.store.isLocal && (typeof(v) == 'string')) {
44209             // then we can use the store to find the values..
44210             // comma seperated at present.. this needs to allow JSON based encoding..
44211             this.hiddenEl.value  = v;
44212             var v_ar = [];
44213             Roo.each(v.split(this.seperator), function(k) {
44214                 Roo.log("CHECK " + this.valueField + ',' + k);
44215                 var li = this.store.query(this.valueField, k);
44216                 if (!li.length) {
44217                     return;
44218                 }
44219                 var add = {};
44220                 add[this.valueField] = k;
44221                 add[this.displayField] = li.item(0).data[this.displayField];
44222                 
44223                 this.addItem(add);
44224             }, this) 
44225              
44226         }
44227         if (typeof(v) == 'object' ) {
44228             // then let's assume it's an array of objects..
44229             Roo.each(v, function(l) {
44230                 var add = l;
44231                 if (typeof(l) == 'string') {
44232                     add = {};
44233                     add[this.valueField] = l;
44234                     add[this.displayField] = l
44235                 }
44236                 this.addItem(add);
44237             }, this);
44238              
44239         }
44240         
44241         
44242     },
44243     setFromData: function(v)
44244     {
44245         // this recieves an object, if setValues is called.
44246         this.reset();
44247         this.el.dom.value = v[this.displayField];
44248         this.hiddenEl.dom.value = v[this.valueField];
44249         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
44250             return;
44251         }
44252         var kv = v[this.valueField];
44253         var dv = v[this.displayField];
44254         kv = typeof(kv) != 'string' ? '' : kv;
44255         dv = typeof(dv) != 'string' ? '' : dv;
44256         
44257         
44258         var keys = kv.split(this.seperator);
44259         var display = dv.split(this.seperator);
44260         for (var i = 0 ; i < keys.length; i++) {
44261             add = {};
44262             add[this.valueField] = keys[i];
44263             add[this.displayField] = display[i];
44264             this.addItem(add);
44265         }
44266       
44267         
44268     },
44269     
44270     /**
44271      * Validates the combox array value
44272      * @return {Boolean} True if the value is valid, else false
44273      */
44274     validate : function(){
44275         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
44276             this.clearInvalid();
44277             return true;
44278         }
44279         return false;
44280     },
44281     
44282     validateValue : function(value){
44283         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
44284         
44285     },
44286     
44287     /*@
44288      * overide
44289      * 
44290      */
44291     isDirty : function() {
44292         if(this.disabled) {
44293             return false;
44294         }
44295         
44296         try {
44297             var d = Roo.decode(String(this.originalValue));
44298         } catch (e) {
44299             return String(this.getValue()) !== String(this.originalValue);
44300         }
44301         
44302         var originalValue = [];
44303         
44304         for (var i = 0; i < d.length; i++){
44305             originalValue.push(d[i][this.valueField]);
44306         }
44307         
44308         return String(this.getValue()) !== String(originalValue.join(this.seperator));
44309         
44310     }
44311     
44312 });
44313
44314
44315
44316 /**
44317  * @class Roo.form.ComboBoxArray.Item
44318  * @extends Roo.BoxComponent
44319  * A selected item in the list
44320  *  Fred [x]  Brian [x]  [Pick another |v]
44321  * 
44322  * @constructor
44323  * Create a new item.
44324  * @param {Object} config Configuration options
44325  */
44326  
44327 Roo.form.ComboBoxArray.Item = function(config) {
44328     config.id = Roo.id();
44329     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
44330 }
44331
44332 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
44333     data : {},
44334     cb: false,
44335     displayField : false,
44336     tipField : false,
44337     
44338     
44339     defaultAutoCreate : {
44340         tag: 'div',
44341         cls: 'x-cbarray-item',
44342         cn : [ 
44343             { tag: 'div' },
44344             {
44345                 tag: 'img',
44346                 width:16,
44347                 height : 16,
44348                 src : Roo.BLANK_IMAGE_URL ,
44349                 align: 'center'
44350             }
44351         ]
44352         
44353     },
44354     
44355  
44356     onRender : function(ct, position)
44357     {
44358         Roo.form.Field.superclass.onRender.call(this, ct, position);
44359         
44360         if(!this.el){
44361             var cfg = this.getAutoCreate();
44362             this.el = ct.createChild(cfg, position);
44363         }
44364         
44365         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
44366         
44367         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
44368             this.cb.renderer(this.data) :
44369             String.format('{0}',this.data[this.displayField]);
44370         
44371             
44372         this.el.child('div').dom.setAttribute('qtip',
44373                         String.format('{0}',this.data[this.tipField])
44374         );
44375         
44376         this.el.child('img').on('click', this.remove, this);
44377         
44378     },
44379    
44380     remove : function()
44381     {
44382         if(this.cb.disabled){
44383             return;
44384         }
44385         
44386         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
44387             this.cb.items.remove(this);
44388             this.el.child('img').un('click', this.remove, this);
44389             this.el.remove();
44390             this.cb.updateHiddenEl();
44391
44392             this.cb.fireEvent('remove', this.cb, this);
44393         }
44394         
44395     }
44396 });/*
44397  * RooJS Library 1.1.1
44398  * Copyright(c) 2008-2011  Alan Knowles
44399  *
44400  * License - LGPL
44401  */
44402  
44403
44404 /**
44405  * @class Roo.form.ComboNested
44406  * @extends Roo.form.ComboBox
44407  * A combobox for that allows selection of nested items in a list,
44408  * eg.
44409  *
44410  *  Book
44411  *    -> red
44412  *    -> green
44413  *  Table
44414  *    -> square
44415  *      ->red
44416  *      ->green
44417  *    -> rectangle
44418  *      ->green
44419  *      
44420  * 
44421  * @constructor
44422  * Create a new ComboNested
44423  * @param {Object} config Configuration options
44424  */
44425 Roo.form.ComboNested = function(config){
44426     Roo.form.ComboCheck.superclass.constructor.call(this, config);
44427     // should verify some data...
44428     // like
44429     // hiddenName = required..
44430     // displayField = required
44431     // valudField == required
44432     var req= [ 'hiddenName', 'displayField', 'valueField' ];
44433     var _t = this;
44434     Roo.each(req, function(e) {
44435         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
44436             throw "Roo.form.ComboNested : missing value for: " + e;
44437         }
44438     });
44439      
44440     
44441 };
44442
44443 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
44444    
44445     /*
44446      * @config {Number} max Number of columns to show
44447      */
44448     
44449     maxColumns : 3,
44450    
44451     list : null, // the outermost div..
44452     innerLists : null, // the
44453     views : null,
44454     stores : null,
44455     // private
44456     loadingChildren : false,
44457     
44458     onRender : function(ct, position)
44459     {
44460         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
44461         
44462         if(this.hiddenName){
44463             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
44464                     'before', true);
44465             this.hiddenField.value =
44466                 this.hiddenValue !== undefined ? this.hiddenValue :
44467                 this.value !== undefined ? this.value : '';
44468
44469             // prevent input submission
44470             this.el.dom.removeAttribute('name');
44471              
44472              
44473         }
44474         
44475         if(Roo.isGecko){
44476             this.el.dom.setAttribute('autocomplete', 'off');
44477         }
44478
44479         var cls = 'x-combo-list';
44480
44481         this.list = new Roo.Layer({
44482             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
44483         });
44484
44485         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
44486         this.list.setWidth(lw);
44487         this.list.swallowEvent('mousewheel');
44488         this.assetHeight = 0;
44489
44490         if(this.title){
44491             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
44492             this.assetHeight += this.header.getHeight();
44493         }
44494         this.innerLists = [];
44495         this.views = [];
44496         this.stores = [];
44497         for (var i =0 ; i < this.maxColumns; i++) {
44498             this.onRenderList( cls, i);
44499         }
44500         
44501         // always needs footer, as we are going to have an 'OK' button.
44502         this.footer = this.list.createChild({cls:cls+'-ft'});
44503         this.pageTb = new Roo.Toolbar(this.footer);  
44504         var _this = this;
44505         this.pageTb.add(  {
44506             
44507             text: 'Done',
44508             handler: function()
44509             {
44510                 _this.collapse();
44511             }
44512         });
44513         
44514         if ( this.allowBlank && !this.disableClear) {
44515             
44516             this.pageTb.add(new Roo.Toolbar.Fill(), {
44517                 cls: 'x-btn-icon x-btn-clear',
44518                 text: '&#160;',
44519                 handler: function()
44520                 {
44521                     _this.collapse();
44522                     _this.clearValue();
44523                     _this.onSelect(false, -1);
44524                 }
44525             });
44526         }
44527         if (this.footer) {
44528             this.assetHeight += this.footer.getHeight();
44529         }
44530         
44531     },
44532     onRenderList : function (  cls, i)
44533     {
44534         
44535         var lw = Math.floor(
44536                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44537         );
44538         
44539         this.list.setWidth(lw); // default to '1'
44540
44541         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
44542         //il.on('mouseover', this.onViewOver, this, { list:  i });
44543         //il.on('mousemove', this.onViewMove, this, { list:  i });
44544         il.setWidth(lw);
44545         il.setStyle({ 'overflow-x' : 'hidden'});
44546
44547         if(!this.tpl){
44548             this.tpl = new Roo.Template({
44549                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
44550                 isEmpty: function (value, allValues) {
44551                     //Roo.log(value);
44552                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
44553                     return dl ? 'has-children' : 'no-children'
44554                 }
44555             });
44556         }
44557         
44558         var store  = this.store;
44559         if (i > 0) {
44560             store  = new Roo.data.SimpleStore({
44561                 //fields : this.store.reader.meta.fields,
44562                 reader : this.store.reader,
44563                 data : [ ]
44564             });
44565         }
44566         this.stores[i]  = store;
44567                   
44568         var view = this.views[i] = new Roo.View(
44569             il,
44570             this.tpl,
44571             {
44572                 singleSelect:true,
44573                 store: store,
44574                 selectedClass: this.selectedClass
44575             }
44576         );
44577         view.getEl().setWidth(lw);
44578         view.getEl().setStyle({
44579             position: i < 1 ? 'relative' : 'absolute',
44580             top: 0,
44581             left: (i * lw ) + 'px',
44582             display : i > 0 ? 'none' : 'block'
44583         });
44584         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
44585         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
44586         //view.on('click', this.onViewClick, this, { list : i });
44587
44588         store.on('beforeload', this.onBeforeLoad, this);
44589         store.on('load',  this.onLoad, this, { list  : i});
44590         store.on('loadexception', this.onLoadException, this);
44591
44592         // hide the other vies..
44593         
44594         
44595         
44596     },
44597       
44598     restrictHeight : function()
44599     {
44600         var mh = 0;
44601         Roo.each(this.innerLists, function(il,i) {
44602             var el = this.views[i].getEl();
44603             el.dom.style.height = '';
44604             var inner = el.dom;
44605             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
44606             // only adjust heights on other ones..
44607             mh = Math.max(h, mh);
44608             if (i < 1) {
44609                 
44610                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44611                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44612                
44613             }
44614             
44615             
44616         }, this);
44617         
44618         this.list.beginUpdate();
44619         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
44620         this.list.alignTo(this.el, this.listAlign);
44621         this.list.endUpdate();
44622         
44623     },
44624      
44625     
44626     // -- store handlers..
44627     // private
44628     onBeforeLoad : function()
44629     {
44630         if(!this.hasFocus){
44631             return;
44632         }
44633         this.innerLists[0].update(this.loadingText ?
44634                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
44635         this.restrictHeight();
44636         this.selectedIndex = -1;
44637     },
44638     // private
44639     onLoad : function(a,b,c,d)
44640     {
44641         if (!this.loadingChildren) {
44642             // then we are loading the top level. - hide the children
44643             for (var i = 1;i < this.views.length; i++) {
44644                 this.views[i].getEl().setStyle({ display : 'none' });
44645             }
44646             var lw = Math.floor(
44647                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44648             );
44649         
44650              this.list.setWidth(lw); // default to '1'
44651
44652             
44653         }
44654         if(!this.hasFocus){
44655             return;
44656         }
44657         
44658         if(this.store.getCount() > 0) {
44659             this.expand();
44660             this.restrictHeight();   
44661         } else {
44662             this.onEmptyResults();
44663         }
44664         
44665         if (!this.loadingChildren) {
44666             this.selectActive();
44667         }
44668         /*
44669         this.stores[1].loadData([]);
44670         this.stores[2].loadData([]);
44671         this.views
44672         */    
44673     
44674         //this.el.focus();
44675     },
44676     
44677     
44678     // private
44679     onLoadException : function()
44680     {
44681         this.collapse();
44682         Roo.log(this.store.reader.jsonData);
44683         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
44684             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
44685         }
44686         
44687         
44688     },
44689     // no cleaning of leading spaces on blur here.
44690     cleanLeadingSpace : function(e) { },
44691     
44692
44693     onSelectChange : function (view, sels, opts )
44694     {
44695         var ix = view.getSelectedIndexes();
44696          
44697         if (opts.list > this.maxColumns - 2) {
44698             if (view.store.getCount()<  1) {
44699                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
44700
44701             } else  {
44702                 if (ix.length) {
44703                     // used to clear ?? but if we are loading unselected 
44704                     this.setFromData(view.store.getAt(ix[0]).data);
44705                 }
44706                 
44707             }
44708             
44709             return;
44710         }
44711         
44712         if (!ix.length) {
44713             // this get's fired when trigger opens..
44714            // this.setFromData({});
44715             var str = this.stores[opts.list+1];
44716             str.data.clear(); // removeall wihtout the fire events..
44717             return;
44718         }
44719         
44720         var rec = view.store.getAt(ix[0]);
44721          
44722         this.setFromData(rec.data);
44723         this.fireEvent('select', this, rec, ix[0]);
44724         
44725         var lw = Math.floor(
44726              (
44727                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
44728              ) / this.maxColumns
44729         );
44730         this.loadingChildren = true;
44731         this.stores[opts.list+1].loadDataFromChildren( rec );
44732         this.loadingChildren = false;
44733         var dl = this.stores[opts.list+1]. getTotalCount();
44734         
44735         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
44736         
44737         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
44738         for (var i = opts.list+2; i < this.views.length;i++) {
44739             this.views[i].getEl().setStyle({ display : 'none' });
44740         }
44741         
44742         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
44743         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
44744         
44745         if (this.isLoading) {
44746            // this.selectActive(opts.list);
44747         }
44748          
44749     },
44750     
44751     
44752     
44753     
44754     onDoubleClick : function()
44755     {
44756         this.collapse(); //??
44757     },
44758     
44759      
44760     
44761     
44762     
44763     // private
44764     recordToStack : function(store, prop, value, stack)
44765     {
44766         var cstore = new Roo.data.SimpleStore({
44767             //fields : this.store.reader.meta.fields, // we need array reader.. for
44768             reader : this.store.reader,
44769             data : [ ]
44770         });
44771         var _this = this;
44772         var record  = false;
44773         var srec = false;
44774         if(store.getCount() < 1){
44775             return false;
44776         }
44777         store.each(function(r){
44778             if(r.data[prop] == value){
44779                 record = r;
44780             srec = r;
44781                 return false;
44782             }
44783             if (r.data.cn && r.data.cn.length) {
44784                 cstore.loadDataFromChildren( r);
44785                 var cret = _this.recordToStack(cstore, prop, value, stack);
44786                 if (cret !== false) {
44787                     record = cret;
44788                     srec = r;
44789                     return false;
44790                 }
44791             }
44792              
44793             return true;
44794         });
44795         if (record == false) {
44796             return false
44797         }
44798         stack.unshift(srec);
44799         return record;
44800     },
44801     
44802     /*
44803      * find the stack of stores that match our value.
44804      *
44805      * 
44806      */
44807     
44808     selectActive : function ()
44809     {
44810         // if store is not loaded, then we will need to wait for that to happen first.
44811         var stack = [];
44812         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
44813         for (var i = 0; i < stack.length; i++ ) {
44814             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
44815         }
44816         
44817     }
44818         
44819          
44820     
44821     
44822     
44823     
44824 });/*
44825  * Based on:
44826  * Ext JS Library 1.1.1
44827  * Copyright(c) 2006-2007, Ext JS, LLC.
44828  *
44829  * Originally Released Under LGPL - original licence link has changed is not relivant.
44830  *
44831  * Fork - LGPL
44832  * <script type="text/javascript">
44833  */
44834 /**
44835  * @class Roo.form.Checkbox
44836  * @extends Roo.form.Field
44837  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
44838  * @constructor
44839  * Creates a new Checkbox
44840  * @param {Object} config Configuration options
44841  */
44842 Roo.form.Checkbox = function(config){
44843     Roo.form.Checkbox.superclass.constructor.call(this, config);
44844     this.addEvents({
44845         /**
44846          * @event check
44847          * Fires when the checkbox is checked or unchecked.
44848              * @param {Roo.form.Checkbox} this This checkbox
44849              * @param {Boolean} checked The new checked value
44850              */
44851         check : true
44852     });
44853 };
44854
44855 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
44856     /**
44857      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
44858      */
44859     focusClass : undefined,
44860     /**
44861      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
44862      */
44863     fieldClass: "x-form-field",
44864     /**
44865      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
44866      */
44867     checked: false,
44868     /**
44869      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
44870      * {tag: "input", type: "checkbox", autocomplete: "off"})
44871      */
44872     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
44873     /**
44874      * @cfg {String} boxLabel The text that appears beside the checkbox
44875      */
44876     boxLabel : "",
44877     /**
44878      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
44879      */  
44880     inputValue : '1',
44881     /**
44882      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
44883      */
44884      valueOff: '0', // value when not checked..
44885
44886     actionMode : 'viewEl', 
44887     //
44888     // private
44889     itemCls : 'x-menu-check-item x-form-item',
44890     groupClass : 'x-menu-group-item',
44891     inputType : 'hidden',
44892     
44893     
44894     inSetChecked: false, // check that we are not calling self...
44895     
44896     inputElement: false, // real input element?
44897     basedOn: false, // ????
44898     
44899     isFormField: true, // not sure where this is needed!!!!
44900
44901     onResize : function(){
44902         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
44903         if(!this.boxLabel){
44904             this.el.alignTo(this.wrap, 'c-c');
44905         }
44906     },
44907
44908     initEvents : function(){
44909         Roo.form.Checkbox.superclass.initEvents.call(this);
44910         this.el.on("click", this.onClick,  this);
44911         this.el.on("change", this.onClick,  this);
44912     },
44913
44914
44915     getResizeEl : function(){
44916         return this.wrap;
44917     },
44918
44919     getPositionEl : function(){
44920         return this.wrap;
44921     },
44922
44923     // private
44924     onRender : function(ct, position){
44925         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
44926         /*
44927         if(this.inputValue !== undefined){
44928             this.el.dom.value = this.inputValue;
44929         }
44930         */
44931         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
44932         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
44933         var viewEl = this.wrap.createChild({ 
44934             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
44935         this.viewEl = viewEl;   
44936         this.wrap.on('click', this.onClick,  this); 
44937         
44938         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
44939         this.el.on('propertychange', this.setFromHidden,  this);  //ie
44940         
44941         
44942         
44943         if(this.boxLabel){
44944             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
44945         //    viewEl.on('click', this.onClick,  this); 
44946         }
44947         //if(this.checked){
44948             this.setChecked(this.checked);
44949         //}else{
44950             //this.checked = this.el.dom;
44951         //}
44952
44953     },
44954
44955     // private
44956     initValue : Roo.emptyFn,
44957
44958     /**
44959      * Returns the checked state of the checkbox.
44960      * @return {Boolean} True if checked, else false
44961      */
44962     getValue : function(){
44963         if(this.el){
44964             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
44965         }
44966         return this.valueOff;
44967         
44968     },
44969
44970         // private
44971     onClick : function(){ 
44972         if (this.disabled) {
44973             return;
44974         }
44975         this.setChecked(!this.checked);
44976
44977         //if(this.el.dom.checked != this.checked){
44978         //    this.setValue(this.el.dom.checked);
44979        // }
44980     },
44981
44982     /**
44983      * Sets the checked state of the checkbox.
44984      * On is always based on a string comparison between inputValue and the param.
44985      * @param {Boolean/String} value - the value to set 
44986      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
44987      */
44988     setValue : function(v,suppressEvent){
44989         
44990         
44991         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
44992         //if(this.el && this.el.dom){
44993         //    this.el.dom.checked = this.checked;
44994         //    this.el.dom.defaultChecked = this.checked;
44995         //}
44996         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
44997         //this.fireEvent("check", this, this.checked);
44998     },
44999     // private..
45000     setChecked : function(state,suppressEvent)
45001     {
45002         if (this.inSetChecked) {
45003             this.checked = state;
45004             return;
45005         }
45006         
45007     
45008         if(this.wrap){
45009             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
45010         }
45011         this.checked = state;
45012         if(suppressEvent !== true){
45013             this.fireEvent('check', this, state);
45014         }
45015         this.inSetChecked = true;
45016         this.el.dom.value = state ? this.inputValue : this.valueOff;
45017         this.inSetChecked = false;
45018         
45019     },
45020     // handle setting of hidden value by some other method!!?!?
45021     setFromHidden: function()
45022     {
45023         if(!this.el){
45024             return;
45025         }
45026         //console.log("SET FROM HIDDEN");
45027         //alert('setFrom hidden');
45028         this.setValue(this.el.dom.value);
45029     },
45030     
45031     onDestroy : function()
45032     {
45033         if(this.viewEl){
45034             Roo.get(this.viewEl).remove();
45035         }
45036          
45037         Roo.form.Checkbox.superclass.onDestroy.call(this);
45038     },
45039     
45040     setBoxLabel : function(str)
45041     {
45042         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
45043     }
45044
45045 });/*
45046  * Based on:
45047  * Ext JS Library 1.1.1
45048  * Copyright(c) 2006-2007, Ext JS, LLC.
45049  *
45050  * Originally Released Under LGPL - original licence link has changed is not relivant.
45051  *
45052  * Fork - LGPL
45053  * <script type="text/javascript">
45054  */
45055  
45056 /**
45057  * @class Roo.form.Radio
45058  * @extends Roo.form.Checkbox
45059  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
45060  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
45061  * @constructor
45062  * Creates a new Radio
45063  * @param {Object} config Configuration options
45064  */
45065 Roo.form.Radio = function(){
45066     Roo.form.Radio.superclass.constructor.apply(this, arguments);
45067 };
45068 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
45069     inputType: 'radio',
45070
45071     /**
45072      * If this radio is part of a group, it will return the selected value
45073      * @return {String}
45074      */
45075     getGroupValue : function(){
45076         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
45077     },
45078     
45079     
45080     onRender : function(ct, position){
45081         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
45082         
45083         if(this.inputValue !== undefined){
45084             this.el.dom.value = this.inputValue;
45085         }
45086          
45087         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
45088         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
45089         //var viewEl = this.wrap.createChild({ 
45090         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
45091         //this.viewEl = viewEl;   
45092         //this.wrap.on('click', this.onClick,  this); 
45093         
45094         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
45095         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
45096         
45097         
45098         
45099         if(this.boxLabel){
45100             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
45101         //    viewEl.on('click', this.onClick,  this); 
45102         }
45103          if(this.checked){
45104             this.el.dom.checked =   'checked' ;
45105         }
45106          
45107     } 
45108     
45109     
45110 });Roo.rtf = {}; // namespace
45111 Roo.rtf.Hex = function(hex)
45112 {
45113     this.hexstr = hex;
45114 };
45115 Roo.rtf.Paragraph = function(opts)
45116 {
45117     this.content = []; ///??? is that used?
45118 };Roo.rtf.Span = function(opts)
45119 {
45120     this.value = opts.value;
45121 };
45122
45123 Roo.rtf.Group = function(parent)
45124 {
45125     // we dont want to acutally store parent - it will make debug a nightmare..
45126     this.content = [];
45127     this.cn  = [];
45128      
45129        
45130     
45131 };
45132
45133 Roo.rtf.Group.prototype = {
45134     ignorable : false,
45135     content: false,
45136     cn: false,
45137     addContent : function(node) {
45138         // could set styles...
45139         this.content.push(node);
45140     },
45141     addChild : function(cn)
45142     {
45143         this.cn.push(cn);
45144     },
45145     // only for images really...
45146     toDataURL : function()
45147     {
45148         var mimetype = false;
45149         switch(true) {
45150             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
45151                 mimetype = "image/png";
45152                 break;
45153              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
45154                 mimetype = "image/jpeg";
45155                 break;
45156             default :
45157                 return 'about:blank'; // ?? error?
45158         }
45159         
45160         
45161         var hexstring = this.content[this.content.length-1].value;
45162         
45163         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
45164             return String.fromCharCode(parseInt(a, 16));
45165         }).join(""));
45166     }
45167     
45168 };
45169 // this looks like it's normally the {rtf{ .... }}
45170 Roo.rtf.Document = function()
45171 {
45172     // we dont want to acutally store parent - it will make debug a nightmare..
45173     this.rtlch  = [];
45174     this.content = [];
45175     this.cn = [];
45176     
45177 };
45178 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
45179     addChild : function(cn)
45180     {
45181         this.cn.push(cn);
45182         switch(cn.type) {
45183             case 'rtlch': // most content seems to be inside this??
45184             case 'listtext':
45185             case 'shpinst':
45186                 this.rtlch.push(cn);
45187                 return;
45188             default:
45189                 this[cn.type] = cn;
45190         }
45191         
45192     },
45193     
45194     getElementsByType : function(type)
45195     {
45196         var ret =  [];
45197         this._getElementsByType(type, ret, this.cn, 'rtf');
45198         return ret;
45199     },
45200     _getElementsByType : function (type, ret, search_array, path)
45201     {
45202         search_array.forEach(function(n,i) {
45203             if (n.type == type) {
45204                 n.path = path + '/' + n.type + ':' + i;
45205                 ret.push(n);
45206             }
45207             if (n.cn.length > 0) {
45208                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
45209             }
45210         },this);
45211     }
45212     
45213 });
45214  
45215 Roo.rtf.Ctrl = function(opts)
45216 {
45217     this.value = opts.value;
45218     this.param = opts.param;
45219 };
45220 /**
45221  *
45222  *
45223  * based on this https://github.com/iarna/rtf-parser
45224  * it's really only designed to extract pict from pasted RTF 
45225  *
45226  * usage:
45227  *
45228  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
45229  *  
45230  *
45231  */
45232
45233  
45234
45235
45236
45237 Roo.rtf.Parser = function(text) {
45238     //super({objectMode: true})
45239     this.text = '';
45240     this.parserState = this.parseText;
45241     
45242     // these are for interpeter...
45243     this.doc = {};
45244     ///this.parserState = this.parseTop
45245     this.groupStack = [];
45246     this.hexStore = [];
45247     this.doc = false;
45248     
45249     this.groups = []; // where we put the return.
45250     
45251     for (var ii = 0; ii < text.length; ++ii) {
45252         ++this.cpos;
45253         
45254         if (text[ii] === '\n') {
45255             ++this.row;
45256             this.col = 1;
45257         } else {
45258             ++this.col;
45259         }
45260         this.parserState(text[ii]);
45261     }
45262     
45263     
45264     
45265 };
45266 Roo.rtf.Parser.prototype = {
45267     text : '', // string being parsed..
45268     controlWord : '',
45269     controlWordParam :  '',
45270     hexChar : '',
45271     doc : false,
45272     group: false,
45273     groupStack : false,
45274     hexStore : false,
45275     
45276     
45277     cpos : 0, 
45278     row : 1, // reportin?
45279     col : 1, //
45280
45281      
45282     push : function (el)
45283     {
45284         var m = 'cmd'+ el.type;
45285         if (typeof(this[m]) == 'undefined') {
45286             Roo.log('invalid cmd:' + el.type);
45287             return;
45288         }
45289         this[m](el);
45290         //Roo.log(el);
45291     },
45292     flushHexStore : function()
45293     {
45294         if (this.hexStore.length < 1) {
45295             return;
45296         }
45297         var hexstr = this.hexStore.map(
45298             function(cmd) {
45299                 return cmd.value;
45300         }).join('');
45301         
45302         this.group.addContent( new Roo.rtf.Hex( hexstr ));
45303               
45304             
45305         this.hexStore.splice(0)
45306         
45307     },
45308     
45309     cmdgroupstart : function()
45310     {
45311         this.flushHexStore();
45312         if (this.group) {
45313             this.groupStack.push(this.group);
45314         }
45315          // parent..
45316         if (this.doc === false) {
45317             this.group = this.doc = new Roo.rtf.Document();
45318             return;
45319             
45320         }
45321         this.group = new Roo.rtf.Group(this.group);
45322     },
45323     cmdignorable : function()
45324     {
45325         this.flushHexStore();
45326         this.group.ignorable = true;
45327     },
45328     cmdendparagraph : function()
45329     {
45330         this.flushHexStore();
45331         this.group.addContent(new Roo.rtf.Paragraph());
45332     },
45333     cmdgroupend : function ()
45334     {
45335         this.flushHexStore();
45336         var endingGroup = this.group;
45337         
45338         
45339         this.group = this.groupStack.pop();
45340         if (this.group) {
45341             this.group.addChild(endingGroup);
45342         }
45343         
45344         
45345         
45346         var doc = this.group || this.doc;
45347         //if (endingGroup instanceof FontTable) {
45348         //  doc.fonts = endingGroup.table
45349         //} else if (endingGroup instanceof ColorTable) {
45350         //  doc.colors = endingGroup.table
45351         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
45352         if (endingGroup.ignorable === false) {
45353             //code
45354             this.groups.push(endingGroup);
45355            // Roo.log( endingGroup );
45356         }
45357             //Roo.each(endingGroup.content, function(item)) {
45358             //    doc.addContent(item);
45359             //}
45360             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
45361         //}
45362     },
45363     cmdtext : function (cmd)
45364     {
45365         this.flushHexStore();
45366         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
45367             //this.group = this.doc
45368             return;  // we really don't care about stray text...
45369         }
45370         this.group.addContent(new Roo.rtf.Span(cmd));
45371     },
45372     cmdcontrolword : function (cmd)
45373     {
45374         this.flushHexStore();
45375         if (!this.group.type) {
45376             this.group.type = cmd.value;
45377             return;
45378         }
45379         this.group.addContent(new Roo.rtf.Ctrl(cmd));
45380         // we actually don't care about ctrl words...
45381         return ;
45382         /*
45383         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
45384         if (this[method]) {
45385             this[method](cmd.param)
45386         } else {
45387             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
45388         }
45389         */
45390     },
45391     cmdhexchar : function(cmd) {
45392         this.hexStore.push(cmd);
45393     },
45394     cmderror : function(cmd) {
45395         throw new Exception (cmd.value);
45396     },
45397     
45398     /*
45399       _flush (done) {
45400         if (this.text !== '\u0000') this.emitText()
45401         done()
45402       }
45403       */
45404       
45405       
45406     parseText : function(c)
45407     {
45408         if (c === '\\') {
45409             this.parserState = this.parseEscapes;
45410         } else if (c === '{') {
45411             this.emitStartGroup();
45412         } else if (c === '}') {
45413             this.emitEndGroup();
45414         } else if (c === '\x0A' || c === '\x0D') {
45415             // cr/lf are noise chars
45416         } else {
45417             this.text += c;
45418         }
45419     },
45420     
45421     parseEscapes: function (c)
45422     {
45423         if (c === '\\' || c === '{' || c === '}') {
45424             this.text += c;
45425             this.parserState = this.parseText;
45426         } else {
45427             this.parserState = this.parseControlSymbol;
45428             this.parseControlSymbol(c);
45429         }
45430     },
45431     parseControlSymbol: function(c)
45432     {
45433         if (c === '~') {
45434             this.text += '\u00a0'; // nbsp
45435             this.parserState = this.parseText
45436         } else if (c === '-') {
45437              this.text += '\u00ad'; // soft hyphen
45438         } else if (c === '_') {
45439             this.text += '\u2011'; // non-breaking hyphen
45440         } else if (c === '*') {
45441             this.emitIgnorable();
45442             this.parserState = this.parseText;
45443         } else if (c === "'") {
45444             this.parserState = this.parseHexChar;
45445         } else if (c === '|') { // formula cacter
45446             this.emitFormula();
45447             this.parserState = this.parseText;
45448         } else if (c === ':') { // subentry in an index entry
45449             this.emitIndexSubEntry();
45450             this.parserState = this.parseText;
45451         } else if (c === '\x0a') {
45452             this.emitEndParagraph();
45453             this.parserState = this.parseText;
45454         } else if (c === '\x0d') {
45455             this.emitEndParagraph();
45456             this.parserState = this.parseText;
45457         } else {
45458             this.parserState = this.parseControlWord;
45459             this.parseControlWord(c);
45460         }
45461     },
45462     parseHexChar: function (c)
45463     {
45464         if (/^[A-Fa-f0-9]$/.test(c)) {
45465             this.hexChar += c;
45466             if (this.hexChar.length >= 2) {
45467               this.emitHexChar();
45468               this.parserState = this.parseText;
45469             }
45470             return;
45471         }
45472         this.emitError("Invalid character \"" + c + "\" in hex literal.");
45473         this.parserState = this.parseText;
45474         
45475     },
45476     parseControlWord : function(c)
45477     {
45478         if (c === ' ') {
45479             this.emitControlWord();
45480             this.parserState = this.parseText;
45481         } else if (/^[-\d]$/.test(c)) {
45482             this.parserState = this.parseControlWordParam;
45483             this.controlWordParam += c;
45484         } else if (/^[A-Za-z]$/.test(c)) {
45485           this.controlWord += c;
45486         } else {
45487           this.emitControlWord();
45488           this.parserState = this.parseText;
45489           this.parseText(c);
45490         }
45491     },
45492     parseControlWordParam : function (c) {
45493         if (/^\d$/.test(c)) {
45494           this.controlWordParam += c;
45495         } else if (c === ' ') {
45496           this.emitControlWord();
45497           this.parserState = this.parseText;
45498         } else {
45499           this.emitControlWord();
45500           this.parserState = this.parseText;
45501           this.parseText(c);
45502         }
45503     },
45504     
45505     
45506     
45507     
45508     emitText : function () {
45509         if (this.text === '') {
45510             return;
45511         }
45512         this.push({
45513             type: 'text',
45514             value: this.text,
45515             pos: this.cpos,
45516             row: this.row,
45517             col: this.col
45518         });
45519         this.text = ''
45520     },
45521     emitControlWord : function ()
45522     {
45523         this.emitText();
45524         if (this.controlWord === '') {
45525             this.emitError('empty control word');
45526         } else {
45527             this.push({
45528                   type: 'controlword',
45529                   value: this.controlWord,
45530                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
45531                   pos: this.cpos,
45532                   row: this.row,
45533                   col: this.col
45534             });
45535         }
45536         this.controlWord = '';
45537         this.controlWordParam = '';
45538     },
45539     emitStartGroup : function ()
45540     {
45541         this.emitText();
45542         this.push({
45543             type: 'groupstart',
45544             pos: this.cpos,
45545             row: this.row,
45546             col: this.col
45547         });
45548     },
45549     emitEndGroup : function ()
45550     {
45551         this.emitText();
45552         this.push({
45553             type: 'groupend',
45554             pos: this.cpos,
45555             row: this.row,
45556             col: this.col
45557         });
45558     },
45559     emitIgnorable : function ()
45560     {
45561         this.emitText();
45562         this.push({
45563             type: 'ignorable',
45564             pos: this.cpos,
45565             row: this.row,
45566             col: this.col
45567         });
45568     },
45569     emitHexChar : function ()
45570     {
45571         this.emitText();
45572         this.push({
45573             type: 'hexchar',
45574             value: this.hexChar,
45575             pos: this.cpos,
45576             row: this.row,
45577             col: this.col
45578         });
45579         this.hexChar = ''
45580     },
45581     emitError : function (message)
45582     {
45583       this.emitText();
45584       this.push({
45585             type: 'error',
45586             value: message,
45587             row: this.row,
45588             col: this.col,
45589             char: this.cpos //,
45590             //stack: new Error().stack
45591         });
45592     },
45593     emitEndParagraph : function () {
45594         this.emitText();
45595         this.push({
45596             type: 'endparagraph',
45597             pos: this.cpos,
45598             row: this.row,
45599             col: this.col
45600         });
45601     }
45602      
45603 } ;
45604 Roo.htmleditor = {};
45605  
45606 /**
45607  * @class Roo.htmleditor.Filter
45608  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
45609  * @cfg {DomElement} node The node to iterate and filter
45610  * @cfg {boolean|String|Array} tag Tags to replace 
45611  * @constructor
45612  * Create a new Filter.
45613  * @param {Object} config Configuration options
45614  */
45615
45616
45617
45618 Roo.htmleditor.Filter = function(cfg) {
45619     Roo.apply(this.cfg);
45620     // this does not actually call walk as it's really just a abstract class
45621 }
45622
45623
45624 Roo.htmleditor.Filter.prototype = {
45625     
45626     node: false,
45627     
45628     tag: false,
45629
45630     // overrride to do replace comments.
45631     replaceComment : false,
45632     
45633     // overrride to do replace or do stuff with tags..
45634     replaceTag : false,
45635     
45636     walk : function(dom)
45637     {
45638         Roo.each( Array.from(dom.childNodes), function( e ) {
45639             switch(true) {
45640                 
45641                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
45642                     this.replaceComment(e);
45643                     return;
45644                 
45645                 case e.nodeType != 1: //not a node.
45646                     return;
45647                 
45648                 case this.tag === true: // everything
45649                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
45650                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
45651                     if (this.replaceTag && false === this.replaceTag(e)) {
45652                         return;
45653                     }
45654                     if (e.hasChildNodes()) {
45655                         this.walk(e);
45656                     }
45657                     return;
45658                 
45659                 default:    // tags .. that do not match.
45660                     if (e.hasChildNodes()) {
45661                         this.walk(e);
45662                     }
45663             }
45664             
45665         }, this);
45666         
45667     }
45668 }; 
45669
45670 /**
45671  * @class Roo.htmleditor.FilterAttributes
45672  * clean attributes and  styles including http:// etc.. in attribute
45673  * @constructor
45674 * Run a new Attribute Filter
45675 * @param {Object} config Configuration options
45676  */
45677 Roo.htmleditor.FilterAttributes = function(cfg)
45678 {
45679     Roo.apply(this, cfg);
45680     this.attrib_black = this.attrib_black || [];
45681     this.attrib_white = this.attrib_white || [];
45682
45683     this.attrib_clean = this.attrib_clean || [];
45684     this.style_white = this.style_white || [];
45685     this.style_black = this.style_black || [];
45686     this.walk(cfg.node);
45687 }
45688
45689 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
45690 {
45691     tag: true, // all tags
45692     
45693     attrib_black : false, // array
45694     attrib_clean : false,
45695     attrib_white : false,
45696
45697     style_white : false,
45698     style_black : false,
45699      
45700      
45701     replaceTag : function(node)
45702     {
45703         if (!node.attributes || !node.attributes.length) {
45704             return true;
45705         }
45706         
45707         for (var i = node.attributes.length-1; i > -1 ; i--) {
45708             var a = node.attributes[i];
45709             //console.log(a);
45710             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
45711                 node.removeAttribute(a.name);
45712                 continue;
45713             }
45714             
45715             
45716             
45717             if (a.name.toLowerCase().substr(0,2)=='on')  {
45718                 node.removeAttribute(a.name);
45719                 continue;
45720             }
45721             
45722             
45723             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
45724                 node.removeAttribute(a.name);
45725                 continue;
45726             }
45727             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
45728                 this.cleanAttr(node,a.name,a.value); // fixme..
45729                 continue;
45730             }
45731             if (a.name == 'style') {
45732                 this.cleanStyle(node,a.name,a.value);
45733                 continue;
45734             }
45735             /// clean up MS crap..
45736             // tecnically this should be a list of valid class'es..
45737             
45738             
45739             if (a.name == 'class') {
45740                 if (a.value.match(/^Mso/)) {
45741                     node.removeAttribute('class');
45742                 }
45743                 
45744                 if (a.value.match(/^body$/)) {
45745                     node.removeAttribute('class');
45746                 }
45747                 continue;
45748             }
45749             
45750             
45751             // style cleanup!?
45752             // class cleanup?
45753             
45754         }
45755         return true; // clean children
45756     },
45757         
45758     cleanAttr: function(node, n,v)
45759     {
45760         
45761         if (v.match(/^\./) || v.match(/^\//)) {
45762             return;
45763         }
45764         if (v.match(/^(http|https):\/\//)
45765             || v.match(/^mailto:/) 
45766             || v.match(/^ftp:/)
45767             || v.match(/^data:/)
45768             ) {
45769             return;
45770         }
45771         if (v.match(/^#/)) {
45772             return;
45773         }
45774         if (v.match(/^\{/)) { // allow template editing.
45775             return;
45776         }
45777 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
45778         node.removeAttribute(n);
45779         
45780     },
45781     cleanStyle : function(node,  n,v)
45782     {
45783         if (v.match(/expression/)) { //XSS?? should we even bother..
45784             node.removeAttribute(n);
45785             return;
45786         }
45787         
45788         var parts = v.split(/;/);
45789         var clean = [];
45790         
45791         Roo.each(parts, function(p) {
45792             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
45793             if (!p.length) {
45794                 return true;
45795             }
45796             var l = p.split(':').shift().replace(/\s+/g,'');
45797             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
45798             
45799             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
45800                 return true;
45801             }
45802             //Roo.log()
45803             // only allow 'c whitelisted system attributes'
45804             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
45805                 return true;
45806             }
45807             
45808             
45809             clean.push(p);
45810             return true;
45811         },this);
45812         if (clean.length) { 
45813             node.setAttribute(n, clean.join(';'));
45814         } else {
45815             node.removeAttribute(n);
45816         }
45817         
45818     }
45819         
45820         
45821         
45822     
45823 });/**
45824  * @class Roo.htmleditor.FilterBlack
45825  * remove blacklisted elements.
45826  * @constructor
45827  * Run a new Blacklisted Filter
45828  * @param {Object} config Configuration options
45829  */
45830
45831 Roo.htmleditor.FilterBlack = function(cfg)
45832 {
45833     Roo.apply(this, cfg);
45834     this.walk(cfg.node);
45835 }
45836
45837 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
45838 {
45839     tag : true, // all elements.
45840    
45841     replaceTag : function(n)
45842     {
45843         n.parentNode.removeChild(n);
45844     }
45845 });
45846 /**
45847  * @class Roo.htmleditor.FilterComment
45848  * remove comments.
45849  * @constructor
45850 * Run a new Comments Filter
45851 * @param {Object} config Configuration options
45852  */
45853 Roo.htmleditor.FilterComment = function(cfg)
45854 {
45855     this.walk(cfg.node);
45856 }
45857
45858 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
45859 {
45860   
45861     replaceComment : function(n)
45862     {
45863         n.parentNode.removeChild(n);
45864     }
45865 });/**
45866  * @class Roo.htmleditor.FilterKeepChildren
45867  * remove tags but keep children
45868  * @constructor
45869  * Run a new Keep Children Filter
45870  * @param {Object} config Configuration options
45871  */
45872
45873 Roo.htmleditor.FilterKeepChildren = function(cfg)
45874 {
45875     Roo.apply(this, cfg);
45876     if (this.tag === false) {
45877         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
45878     }
45879     this.walk(cfg.node);
45880 }
45881
45882 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
45883 {
45884     
45885   
45886     replaceTag : function(node)
45887     {
45888         // walk children...
45889         //Roo.log(node);
45890         var ar = Array.from(node.childNodes);
45891         //remove first..
45892         for (var i = 0; i < ar.length; i++) {
45893             if (ar[i].nodeType == 1) {
45894                 if (
45895                     (typeof(this.tag) == 'object' && this.tag.indexOf(ar[i].tagName) > -1)
45896                     || // array and it matches
45897                     (typeof(this.tag) == 'string' && this.tag == ar[i].tagName)
45898                 ) {
45899                     this.replaceTag(ar[i]); // child is blacklisted as well...
45900                     continue;
45901                 }
45902             }
45903         }  
45904         ar = Array.from(node.childNodes);
45905         for (var i = 0; i < ar.length; i++) {
45906          
45907             node.removeChild(ar[i]);
45908             // what if we need to walk these???
45909             node.parentNode.insertBefore(ar[i], node);
45910             if (this.tag !== false) {
45911                 this.walk(ar[i]);
45912                 
45913             }
45914         }
45915         node.parentNode.removeChild(node);
45916         return false; // don't walk children
45917         
45918         
45919     }
45920 });/**
45921  * @class Roo.htmleditor.FilterParagraph
45922  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
45923  * like on 'push' to remove the <p> tags and replace them with line breaks.
45924  * @constructor
45925  * Run a new Paragraph Filter
45926  * @param {Object} config Configuration options
45927  */
45928
45929 Roo.htmleditor.FilterParagraph = function(cfg)
45930 {
45931     // no need to apply config.
45932     this.walk(cfg.node);
45933 }
45934
45935 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
45936 {
45937     
45938      
45939     tag : 'P',
45940     
45941      
45942     replaceTag : function(node)
45943     {
45944         
45945         if (node.childNodes.length == 1 &&
45946             node.childNodes[0].nodeType == 3 &&
45947             node.childNodes[0].textContent.trim().length < 1
45948             ) {
45949             // remove and replace with '<BR>';
45950             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
45951             return false; // no need to walk..
45952         }
45953         var ar = Array.from(node.childNodes);
45954         for (var i = 0; i < ar.length; i++) {
45955             node.removeChild(ar[i]);
45956             // what if we need to walk these???
45957             node.parentNode.insertBefore(ar[i], node);
45958         }
45959         // now what about this?
45960         // <p> &nbsp; </p>
45961         
45962         // double BR.
45963         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
45964         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
45965         node.parentNode.removeChild(node);
45966         
45967         return false;
45968
45969     }
45970     
45971 });/**
45972  * @class Roo.htmleditor.FilterSpan
45973  * filter span's with no attributes out..
45974  * @constructor
45975  * Run a new Span Filter
45976  * @param {Object} config Configuration options
45977  */
45978
45979 Roo.htmleditor.FilterSpan = function(cfg)
45980 {
45981     // no need to apply config.
45982     this.walk(cfg.node);
45983 }
45984
45985 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
45986 {
45987      
45988     tag : 'SPAN',
45989      
45990  
45991     replaceTag : function(node)
45992     {
45993         if (node.attributes && node.attributes.length > 0) {
45994             return true; // walk if there are any.
45995         }
45996         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
45997         return false;
45998      
45999     }
46000     
46001 });/**
46002  * @class Roo.htmleditor.FilterTableWidth
46003   try and remove table width data - as that frequently messes up other stuff.
46004  * 
46005  *      was cleanTableWidths.
46006  *
46007  * Quite often pasting from word etc.. results in tables with column and widths.
46008  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
46009  *
46010  * @constructor
46011  * Run a new Table Filter
46012  * @param {Object} config Configuration options
46013  */
46014
46015 Roo.htmleditor.FilterTableWidth = function(cfg)
46016 {
46017     // no need to apply config.
46018     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
46019     this.walk(cfg.node);
46020 }
46021
46022 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
46023 {
46024      
46025      
46026     
46027     replaceTag: function(node) {
46028         
46029         
46030       
46031         if (node.hasAttribute('width')) {
46032             node.removeAttribute('width');
46033         }
46034         
46035          
46036         if (node.hasAttribute("style")) {
46037             // pretty basic...
46038             
46039             var styles = node.getAttribute("style").split(";");
46040             var nstyle = [];
46041             Roo.each(styles, function(s) {
46042                 if (!s.match(/:/)) {
46043                     return;
46044                 }
46045                 var kv = s.split(":");
46046                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
46047                     return;
46048                 }
46049                 // what ever is left... we allow.
46050                 nstyle.push(s);
46051             });
46052             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46053             if (!nstyle.length) {
46054                 node.removeAttribute('style');
46055             }
46056         }
46057         
46058         return true; // continue doing children..
46059     }
46060 });/**
46061  * @class Roo.htmleditor.FilterWord
46062  * try and clean up all the mess that Word generates.
46063  * 
46064  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
46065  
46066  * @constructor
46067  * Run a new Span Filter
46068  * @param {Object} config Configuration options
46069  */
46070
46071 Roo.htmleditor.FilterWord = function(cfg)
46072 {
46073     // no need to apply config.
46074     this.replaceDocBullets(cfg.node);
46075     
46076     this.walk(cfg.node);
46077     
46078     
46079 }
46080
46081 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
46082 {
46083     tag: true,
46084      
46085     
46086     /**
46087      * Clean up MS wordisms...
46088      */
46089     replaceTag : function(node)
46090     {
46091          
46092         // no idea what this does - span with text, replaceds with just text.
46093         if(
46094                 node.nodeName == 'SPAN' &&
46095                 !node.hasAttributes() &&
46096                 node.childNodes.length == 1 &&
46097                 node.firstChild.nodeName == "#text"  
46098         ) {
46099             var textNode = node.firstChild;
46100             node.removeChild(textNode);
46101             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46102                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
46103             }
46104             node.parentNode.insertBefore(textNode, node);
46105             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46106                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
46107             }
46108             
46109             node.parentNode.removeChild(node);
46110             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
46111         }
46112         
46113    
46114         
46115         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
46116             node.parentNode.removeChild(node);
46117             return false; // dont do chidlren
46118         }
46119         //Roo.log(node.tagName);
46120         // remove - but keep children..
46121         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
46122             //Roo.log('-- removed');
46123             while (node.childNodes.length) {
46124                 var cn = node.childNodes[0];
46125                 node.removeChild(cn);
46126                 node.parentNode.insertBefore(cn, node);
46127                 // move node to parent - and clean it..
46128                 if (cn.nodeType == 1) {
46129                     this.replaceTag(cn);
46130                 }
46131                 
46132             }
46133             node.parentNode.removeChild(node);
46134             /// no need to iterate chidlren = it's got none..
46135             //this.iterateChildren(node, this.cleanWord);
46136             return false; // no need to iterate children.
46137         }
46138         // clean styles
46139         if (node.className.length) {
46140             
46141             var cn = node.className.split(/\W+/);
46142             var cna = [];
46143             Roo.each(cn, function(cls) {
46144                 if (cls.match(/Mso[a-zA-Z]+/)) {
46145                     return;
46146                 }
46147                 cna.push(cls);
46148             });
46149             node.className = cna.length ? cna.join(' ') : '';
46150             if (!cna.length) {
46151                 node.removeAttribute("class");
46152             }
46153         }
46154         
46155         if (node.hasAttribute("lang")) {
46156             node.removeAttribute("lang");
46157         }
46158         
46159         if (node.hasAttribute("style")) {
46160             
46161             var styles = node.getAttribute("style").split(";");
46162             var nstyle = [];
46163             Roo.each(styles, function(s) {
46164                 if (!s.match(/:/)) {
46165                     return;
46166                 }
46167                 var kv = s.split(":");
46168                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
46169                     return;
46170                 }
46171                 // what ever is left... we allow.
46172                 nstyle.push(s);
46173             });
46174             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46175             if (!nstyle.length) {
46176                 node.removeAttribute('style');
46177             }
46178         }
46179         return true; // do children
46180         
46181         
46182         
46183     },
46184     
46185     styleToObject: function(node)
46186     {
46187         var styles = node.getAttribute("style").split(";");
46188         var ret = {};
46189         Roo.each(styles, function(s) {
46190             if (!s.match(/:/)) {
46191                 return;
46192             }
46193             var kv = s.split(":");
46194              
46195             // what ever is left... we allow.
46196             ret[kv[0]] = kv[1];
46197         });
46198         return ret;
46199     },
46200     
46201     
46202     replaceDocBullets : function(doc)
46203     {
46204         var listpara = doc.getElementsByClassName('MsoListParagraph');
46205         while(listpara.length) {
46206             this.replaceDocBullet(listpara.item(0));
46207             //code
46208         }
46209     },
46210     
46211     replaceDocBullet : function(p)
46212     {
46213         // gather all the siblings.
46214         var ns = p,
46215             parent = p.parentNode,
46216             doc = parent.ownerDocument,
46217             items = []; 
46218         while (ns) {
46219             if (ns.nodeType != 1) {
46220                 ns = ns.nextSibling;
46221                 continue;
46222             }
46223             if (!ns.className.match(/MsoListParagraph/i)) {
46224                 break;
46225             }
46226             items.push(ns);
46227             ns = ns.nextSibling;
46228             
46229         }
46230         var ul = parent.ownerDocument.createElement('ul'); // what about number lists...
46231         parent.insertBefore(ul, p);
46232         var lvl = 0;
46233         var stack = [ ul ];
46234         var last_li = false;
46235         items.forEach(function(n) {
46236             parent.removeChild(n);
46237             var spans = n.getElementsByTagName('span');
46238             if (!spans.length || !n.isEqualNode(spans.item(0).parentNode)) {
46239                 return; // skip it...
46240             }
46241             
46242             var style = this.styleToObject(n);
46243             if (typeof(style['mso-list']) == 'undefined') {
46244                 return; // skip it.
46245             }
46246             n.removeChild(spans.item(0)); // remove the fake bullet.
46247             var nlvl = (style['mso-list'].split(' ')[1].replace(/level/,'') *1) - 1;
46248             if (nlvl > lvl) {
46249                 //new indent
46250                 var nul = doc.createElement('ul'); // what about number lists...
46251                 last_li.appendChild(nul);
46252                 stack[nlvl] = nul;
46253             }
46254             lvl = nlvl;
46255             
46256             var nli = stack[nlvl].appendChild(doc.createElement('li'));
46257             last_li = nli;
46258             // copy children of p into nli
46259             while(n.firstChild) {
46260                 var fc = n.firstChild;
46261                 n.removeChild(fc);
46262                 nli.appendChild(fc);
46263             }
46264              
46265             
46266         },this);
46267         
46268         
46269         
46270         
46271     }
46272     
46273     
46274     
46275 });
46276 /**
46277  * @class Roo.htmleditor.FilterStyleToTag
46278  * part of the word stuff... - certain 'styles' should be converted to tags.
46279  * eg.
46280  *   font-weight: bold -> bold
46281  *   ?? super / subscrit etc..
46282  * 
46283  * @constructor
46284 * Run a new style to tag filter.
46285 * @param {Object} config Configuration options
46286  */
46287 Roo.htmleditor.FilterStyleToTag = function(cfg)
46288 {
46289     
46290     this.tags = {
46291         B  : [ 'fontWeight' , 'bold'],
46292         I :  [ 'fontStyle' , 'italic'],
46293         //pre :  [ 'font-style' , 'italic'],
46294         // h1.. h6 ?? font-size?
46295         SUP : [ 'verticalAlign' , 'super' ],
46296         SUB : [ 'verticalAlign' , 'sub' ]
46297         
46298         
46299     };
46300     
46301     Roo.apply(this, cfg);
46302      
46303     
46304     this.walk(cfg.node);
46305     
46306     
46307     
46308 }
46309
46310
46311 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
46312 {
46313     tag: true, // all tags
46314     
46315     tags : false,
46316     
46317     
46318     replaceTag : function(node)
46319     {
46320         
46321         
46322         if (node.getAttribute("style") === null) {
46323             return true;
46324         }
46325         var inject = [];
46326         for (var k in this.tags) {
46327             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
46328                 inject.push(k);
46329                 node.style.removeProperty(this.tags[k][0]);
46330             }
46331         }
46332         if (!inject.length) {
46333             return true; 
46334         }
46335         var cn = Array.from(node.childNodes);
46336         var nn = node;
46337         Roo.each(inject, function(t) {
46338             var nc = node.ownerDocument.createElement(t);
46339             nn.appendChild(nc);
46340             nn = nc;
46341         });
46342         for(var i = 0;i < cn.length;cn++) {
46343             node.removeChild(cn[i]);
46344             nn.appendChild(cn[i]);
46345         }
46346         return true /// iterate thru
46347     }
46348     
46349 })/**
46350  * @class Roo.htmleditor.FilterLongBr
46351  * BR/BR/BR - keep a maximum of 2...
46352  * @constructor
46353  * Run a new Long BR Filter
46354  * @param {Object} config Configuration options
46355  */
46356
46357 Roo.htmleditor.FilterLongBr = function(cfg)
46358 {
46359     // no need to apply config.
46360     this.walk(cfg.node);
46361 }
46362
46363 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
46364 {
46365     
46366      
46367     tag : 'BR',
46368     
46369      
46370     replaceTag : function(node)
46371     {
46372         
46373         var ps = node.nextSibling;
46374         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46375             ps = ps.nextSibling;
46376         }
46377         
46378         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
46379             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
46380             return false;
46381         }
46382         
46383         if (!ps || ps.nodeType != 1) {
46384             return false;
46385         }
46386         
46387         if (!ps || ps.tagName != 'BR') {
46388            
46389             return false;
46390         }
46391         
46392         
46393         
46394         
46395         
46396         if (!node.previousSibling) {
46397             return false;
46398         }
46399         var ps = node.previousSibling;
46400         
46401         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46402             ps = ps.previousSibling;
46403         }
46404         if (!ps || ps.nodeType != 1) {
46405             return false;
46406         }
46407         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
46408         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
46409             return false;
46410         }
46411         
46412         node.parentNode.removeChild(node); // remove me...
46413         
46414         return false; // no need to do children
46415
46416     }
46417     
46418 }); 
46419
46420 /**
46421  * @class Roo.htmleditor.FilterBlock
46422  * removes id / data-block and contenteditable that are associated with blocks
46423  * usage should be done on a cloned copy of the dom
46424  * @constructor
46425 * Run a new Attribute Filter { node : xxxx }}
46426 * @param {Object} config Configuration options
46427  */
46428 Roo.htmleditor.FilterBlock = function(cfg)
46429 {
46430     Roo.apply(this, cfg);
46431     var qa = cfg.node.querySelectorAll;
46432     this.removeAttributes('data-block');
46433     this.removeAttributes('contenteditable');
46434     this.removeAttributes('id');
46435     
46436 }
46437
46438 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
46439 {
46440     node: true, // all tags
46441      
46442      
46443     removeAttributes : function(attr)
46444     {
46445         var ar = this.node.querySelectorAll('*[' + attr + ']');
46446         for (var i =0;i<ar.length;i++) {
46447             ar[i].removeAttribute(attr);
46448         }
46449     }
46450         
46451         
46452         
46453     
46454 });
46455 /***
46456  * This is based loosely on tinymce 
46457  * @class Roo.htmleditor.TidySerializer
46458  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46459  * @constructor
46460  * @method Serializer
46461  * @param {Object} settings Name/value settings object.
46462  */
46463
46464
46465 Roo.htmleditor.TidySerializer = function(settings)
46466 {
46467     Roo.apply(this, settings);
46468     
46469     this.writer = new Roo.htmleditor.TidyWriter(settings);
46470     
46471     
46472
46473 };
46474 Roo.htmleditor.TidySerializer.prototype = {
46475     
46476     /**
46477      * @param {boolean} inner do the inner of the node.
46478      */
46479     inner : false,
46480     
46481     writer : false,
46482     
46483     /**
46484     * Serializes the specified node into a string.
46485     *
46486     * @example
46487     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
46488     * @method serialize
46489     * @param {DomElement} node Node instance to serialize.
46490     * @return {String} String with HTML based on DOM tree.
46491     */
46492     serialize : function(node) {
46493         
46494         // = settings.validate;
46495         var writer = this.writer;
46496         var self  = this;
46497         this.handlers = {
46498             // #text
46499             3: function(node) {
46500                 
46501                 writer.text(node.nodeValue, node);
46502             },
46503             // #comment
46504             8: function(node) {
46505                 writer.comment(node.nodeValue);
46506             },
46507             // Processing instruction
46508             7: function(node) {
46509                 writer.pi(node.name, node.nodeValue);
46510             },
46511             // Doctype
46512             10: function(node) {
46513                 writer.doctype(node.nodeValue);
46514             },
46515             // CDATA
46516             4: function(node) {
46517                 writer.cdata(node.nodeValue);
46518             },
46519             // Document fragment
46520             11: function(node) {
46521                 node = node.firstChild;
46522                 if (!node) {
46523                     return;
46524                 }
46525                 while(node) {
46526                     self.walk(node);
46527                     node = node.nextSibling
46528                 }
46529             }
46530         };
46531         writer.reset();
46532         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
46533         return writer.getContent();
46534     },
46535
46536     walk: function(node)
46537     {
46538         var attrName, attrValue, sortedAttrs, i, l, elementRule,
46539             handler = this.handlers[node.nodeType];
46540             
46541         if (handler) {
46542             handler(node);
46543             return;
46544         }
46545     
46546         var name = node.nodeName;
46547         var isEmpty = node.childNodes.length < 1;
46548       
46549         var writer = this.writer;
46550         var attrs = node.attributes;
46551         // Sort attributes
46552         
46553         writer.start(node.nodeName, attrs, isEmpty, node);
46554         if (isEmpty) {
46555             return;
46556         }
46557         node = node.firstChild;
46558         if (!node) {
46559             writer.end(name);
46560             return;
46561         }
46562         while (node) {
46563             this.walk(node);
46564             node = node.nextSibling;
46565         }
46566         writer.end(name);
46567         
46568     
46569     }
46570     // Serialize element and treat all non elements as fragments
46571    
46572 }; 
46573
46574 /***
46575  * This is based loosely on tinymce 
46576  * @class Roo.htmleditor.TidyWriter
46577  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46578  *
46579  * Known issues?
46580  * - not tested much with 'PRE' formated elements.
46581  * 
46582  *
46583  *
46584  */
46585
46586 Roo.htmleditor.TidyWriter = function(settings)
46587 {
46588     
46589     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
46590     Roo.apply(this, settings);
46591     this.html = [];
46592     this.state = [];
46593      
46594     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
46595   
46596 }
46597 Roo.htmleditor.TidyWriter.prototype = {
46598
46599  
46600     state : false,
46601     
46602     indent :  '  ',
46603     
46604     // part of state...
46605     indentstr : '',
46606     in_pre: false,
46607     in_inline : false,
46608     last_inline : false,
46609     encode : false,
46610      
46611     
46612             /**
46613     * Writes the a start element such as <p id="a">.
46614     *
46615     * @method start
46616     * @param {String} name Name of the element.
46617     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
46618     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
46619     */
46620     start: function(name, attrs, empty, node)
46621     {
46622         var i, l, attr, value;
46623         
46624         // there are some situations where adding line break && indentation will not work. will not work.
46625         // <span / b / i ... formating?
46626         
46627         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46628         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
46629         
46630         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
46631         
46632         var add_lb = name == 'BR' ? false : in_inline;
46633         
46634         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
46635             i_inline = false;
46636         }
46637
46638         var indentstr =  this.indentstr;
46639         
46640         // e_inline = elements that can be inline, but still allow \n before and after?
46641         // only 'BR' ??? any others?
46642         
46643         // ADD LINE BEFORE tage
46644         if (!this.in_pre) {
46645             if (in_inline) {
46646                 //code
46647                 if (name == 'BR') {
46648                     this.addLine();
46649                 } else if (this.lastElementEndsWS()) {
46650                     this.addLine();
46651                 } else{
46652                     // otherwise - no new line. (and dont indent.)
46653                     indentstr = '';
46654                 }
46655                 
46656             } else {
46657                 this.addLine();
46658             }
46659         } else {
46660             indentstr = '';
46661         }
46662         
46663         this.html.push(indentstr + '<', name.toLowerCase());
46664         
46665         if (attrs) {
46666             for (i = 0, l = attrs.length; i < l; i++) {
46667                 attr = attrs[i];
46668                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
46669             }
46670         }
46671      
46672         if (empty) {
46673             if (is_short) {
46674                 this.html[this.html.length] = '/>';
46675             } else {
46676                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
46677             }
46678             var e_inline = name == 'BR' ? false : this.in_inline;
46679             
46680             if (!e_inline && !this.in_pre) {
46681                 this.addLine();
46682             }
46683             return;
46684         
46685         }
46686         // not empty..
46687         this.html[this.html.length] = '>';
46688         
46689         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
46690         /*
46691         if (!in_inline && !in_pre) {
46692             var cn = node.firstChild;
46693             while(cn) {
46694                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
46695                     in_inline = true
46696                     break;
46697                 }
46698                 cn = cn.nextSibling;
46699             }
46700              
46701         }
46702         */
46703         
46704         
46705         this.pushState({
46706             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
46707             in_pre : in_pre,
46708             in_inline :  in_inline
46709         });
46710         // add a line after if we are not in a
46711         
46712         if (!in_inline && !in_pre) {
46713             this.addLine();
46714         }
46715         
46716             
46717          
46718         
46719     },
46720     
46721     lastElementEndsWS : function()
46722     {
46723         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
46724         if (value === false) {
46725             return true;
46726         }
46727         return value.match(/\s+$/);
46728         
46729     },
46730     
46731     /**
46732      * Writes the a end element such as </p>.
46733      *
46734      * @method end
46735      * @param {String} name Name of the element.
46736      */
46737     end: function(name) {
46738         var value;
46739         this.popState();
46740         var indentstr = '';
46741         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46742         
46743         if (!this.in_pre && !in_inline) {
46744             this.addLine();
46745             indentstr  = this.indentstr;
46746         }
46747         this.html.push(indentstr + '</', name.toLowerCase(), '>');
46748         this.last_inline = in_inline;
46749         
46750         // pop the indent state..
46751     },
46752     /**
46753      * Writes a text node.
46754      *
46755      * In pre - we should not mess with the contents.
46756      * 
46757      *
46758      * @method text
46759      * @param {String} text String to write out.
46760      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
46761      */
46762     text: function(text, node)
46763     {
46764         // if not in whitespace critical
46765         if (text.length < 1) {
46766             return;
46767         }
46768         if (this.in_pre) {
46769             this.html[this.html.length] =  text;
46770             return;   
46771         }
46772         
46773         if (this.in_inline) {
46774             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
46775             if (text != ' ') {
46776                 text = text.replace(/\s+/,' ');  // all white space to single white space
46777                 
46778                     
46779                 // if next tag is '<BR>', then we can trim right..
46780                 if (node.nextSibling &&
46781                     node.nextSibling.nodeType == 1 &&
46782                     node.nextSibling.nodeName == 'BR' )
46783                 {
46784                     text = text.replace(/\s+$/g,'');
46785                 }
46786                 // if previous tag was a BR, we can also trim..
46787                 if (node.previousSibling &&
46788                     node.previousSibling.nodeType == 1 &&
46789                     node.previousSibling.nodeName == 'BR' )
46790                 {
46791                     text = this.indentstr +  text.replace(/^\s+/g,'');
46792                 }
46793                 if (text.match(/\n/)) {
46794                     text = text.replace(
46795                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
46796                     );
46797                     // remoeve the last whitespace / line break.
46798                     text = text.replace(/\n\s+$/,'');
46799                 }
46800                 // repace long lines
46801                 
46802             }
46803              
46804             this.html[this.html.length] =  text;
46805             return;   
46806         }
46807         // see if previous element was a inline element.
46808         var indentstr = this.indentstr;
46809    
46810         text = text.replace(/\s+/g," "); // all whitespace into single white space.
46811         
46812         // should trim left?
46813         if (node.previousSibling &&
46814             node.previousSibling.nodeType == 1 &&
46815             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
46816         {
46817             indentstr = '';
46818             
46819         } else {
46820             this.addLine();
46821             text = text.replace(/^\s+/,''); // trim left
46822           
46823         }
46824         // should trim right?
46825         if (node.nextSibling &&
46826             node.nextSibling.nodeType == 1 &&
46827             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
46828         {
46829           // noop
46830             
46831         }  else {
46832             text = text.replace(/\s+$/,''); // trim right
46833         }
46834          
46835               
46836         
46837         
46838         
46839         if (text.length < 1) {
46840             return;
46841         }
46842         if (!text.match(/\n/)) {
46843             this.html.push(indentstr + text);
46844             return;
46845         }
46846         
46847         text = this.indentstr + text.replace(
46848             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
46849         );
46850         // remoeve the last whitespace / line break.
46851         text = text.replace(/\s+$/,''); 
46852         
46853         this.html.push(text);
46854         
46855         // split and indent..
46856         
46857         
46858     },
46859     /**
46860      * Writes a cdata node such as <![CDATA[data]]>.
46861      *
46862      * @method cdata
46863      * @param {String} text String to write out inside the cdata.
46864      */
46865     cdata: function(text) {
46866         this.html.push('<![CDATA[', text, ']]>');
46867     },
46868     /**
46869     * Writes a comment node such as <!-- Comment -->.
46870     *
46871     * @method cdata
46872     * @param {String} text String to write out inside the comment.
46873     */
46874    comment: function(text) {
46875        this.html.push('<!--', text, '-->');
46876    },
46877     /**
46878      * Writes a PI node such as <?xml attr="value" ?>.
46879      *
46880      * @method pi
46881      * @param {String} name Name of the pi.
46882      * @param {String} text String to write out inside the pi.
46883      */
46884     pi: function(name, text) {
46885         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
46886         this.indent != '' && this.html.push('\n');
46887     },
46888     /**
46889      * Writes a doctype node such as <!DOCTYPE data>.
46890      *
46891      * @method doctype
46892      * @param {String} text String to write out inside the doctype.
46893      */
46894     doctype: function(text) {
46895         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
46896     },
46897     /**
46898      * Resets the internal buffer if one wants to reuse the writer.
46899      *
46900      * @method reset
46901      */
46902     reset: function() {
46903         this.html.length = 0;
46904         this.state = [];
46905         this.pushState({
46906             indentstr : '',
46907             in_pre : false, 
46908             in_inline : false
46909         })
46910     },
46911     /**
46912      * Returns the contents that got serialized.
46913      *
46914      * @method getContent
46915      * @return {String} HTML contents that got written down.
46916      */
46917     getContent: function() {
46918         return this.html.join('').replace(/\n$/, '');
46919     },
46920     
46921     pushState : function(cfg)
46922     {
46923         this.state.push(cfg);
46924         Roo.apply(this, cfg);
46925     },
46926     
46927     popState : function()
46928     {
46929         if (this.state.length < 1) {
46930             return; // nothing to push
46931         }
46932         var cfg = {
46933             in_pre: false,
46934             indentstr : ''
46935         };
46936         this.state.pop();
46937         if (this.state.length > 0) {
46938             cfg = this.state[this.state.length-1]; 
46939         }
46940         Roo.apply(this, cfg);
46941     },
46942     
46943     addLine: function()
46944     {
46945         if (this.html.length < 1) {
46946             return;
46947         }
46948         
46949         
46950         var value = this.html[this.html.length - 1];
46951         if (value.length > 0 && '\n' !== value) {
46952             this.html.push('\n');
46953         }
46954     }
46955     
46956     
46957 //'pre script noscript style textarea video audio iframe object code'
46958 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
46959 // inline 
46960 };
46961
46962 Roo.htmleditor.TidyWriter.inline_elements = [
46963         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
46964         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
46965 ];
46966 Roo.htmleditor.TidyWriter.shortend_elements = [
46967     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
46968     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
46969 ];
46970
46971 Roo.htmleditor.TidyWriter.whitespace_elements = [
46972     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
46973 ];/***
46974  * This is based loosely on tinymce 
46975  * @class Roo.htmleditor.TidyEntities
46976  * @static
46977  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46978  *
46979  * Not 100% sure this is actually used or needed.
46980  */
46981
46982 Roo.htmleditor.TidyEntities = {
46983     
46984     /**
46985      * initialize data..
46986      */
46987     init : function (){
46988      
46989         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
46990        
46991     },
46992
46993
46994     buildEntitiesLookup: function(items, radix) {
46995         var i, chr, entity, lookup = {};
46996         if (!items) {
46997             return {};
46998         }
46999         items = typeof(items) == 'string' ? items.split(',') : items;
47000         radix = radix || 10;
47001         // Build entities lookup table
47002         for (i = 0; i < items.length; i += 2) {
47003             chr = String.fromCharCode(parseInt(items[i], radix));
47004             // Only add non base entities
47005             if (!this.baseEntities[chr]) {
47006                 entity = '&' + items[i + 1] + ';';
47007                 lookup[chr] = entity;
47008                 lookup[entity] = chr;
47009             }
47010         }
47011         return lookup;
47012         
47013     },
47014     
47015     asciiMap : {
47016             128: '€',
47017             130: '‚',
47018             131: 'ƒ',
47019             132: '„',
47020             133: '…',
47021             134: '†',
47022             135: '‡',
47023             136: 'ˆ',
47024             137: '‰',
47025             138: 'Š',
47026             139: '‹',
47027             140: 'Œ',
47028             142: 'Ž',
47029             145: '‘',
47030             146: '’',
47031             147: '“',
47032             148: '”',
47033             149: '•',
47034             150: '–',
47035             151: '—',
47036             152: '˜',
47037             153: '™',
47038             154: 'š',
47039             155: '›',
47040             156: 'œ',
47041             158: 'ž',
47042             159: 'Ÿ'
47043     },
47044     // Raw entities
47045     baseEntities : {
47046         '"': '&quot;',
47047         // Needs to be escaped since the YUI compressor would otherwise break the code
47048         '\'': '&#39;',
47049         '<': '&lt;',
47050         '>': '&gt;',
47051         '&': '&amp;',
47052         '`': '&#96;'
47053     },
47054     // Reverse lookup table for raw entities
47055     reverseEntities : {
47056         '&lt;': '<',
47057         '&gt;': '>',
47058         '&amp;': '&',
47059         '&quot;': '"',
47060         '&apos;': '\''
47061     },
47062     
47063     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47064     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47065     rawCharsRegExp : /[<>&\"\']/g,
47066     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
47067     namedEntities  : false,
47068     namedEntitiesData : [ 
47069         '50',
47070         'nbsp',
47071         '51',
47072         'iexcl',
47073         '52',
47074         'cent',
47075         '53',
47076         'pound',
47077         '54',
47078         'curren',
47079         '55',
47080         'yen',
47081         '56',
47082         'brvbar',
47083         '57',
47084         'sect',
47085         '58',
47086         'uml',
47087         '59',
47088         'copy',
47089         '5a',
47090         'ordf',
47091         '5b',
47092         'laquo',
47093         '5c',
47094         'not',
47095         '5d',
47096         'shy',
47097         '5e',
47098         'reg',
47099         '5f',
47100         'macr',
47101         '5g',
47102         'deg',
47103         '5h',
47104         'plusmn',
47105         '5i',
47106         'sup2',
47107         '5j',
47108         'sup3',
47109         '5k',
47110         'acute',
47111         '5l',
47112         'micro',
47113         '5m',
47114         'para',
47115         '5n',
47116         'middot',
47117         '5o',
47118         'cedil',
47119         '5p',
47120         'sup1',
47121         '5q',
47122         'ordm',
47123         '5r',
47124         'raquo',
47125         '5s',
47126         'frac14',
47127         '5t',
47128         'frac12',
47129         '5u',
47130         'frac34',
47131         '5v',
47132         'iquest',
47133         '60',
47134         'Agrave',
47135         '61',
47136         'Aacute',
47137         '62',
47138         'Acirc',
47139         '63',
47140         'Atilde',
47141         '64',
47142         'Auml',
47143         '65',
47144         'Aring',
47145         '66',
47146         'AElig',
47147         '67',
47148         'Ccedil',
47149         '68',
47150         'Egrave',
47151         '69',
47152         'Eacute',
47153         '6a',
47154         'Ecirc',
47155         '6b',
47156         'Euml',
47157         '6c',
47158         'Igrave',
47159         '6d',
47160         'Iacute',
47161         '6e',
47162         'Icirc',
47163         '6f',
47164         'Iuml',
47165         '6g',
47166         'ETH',
47167         '6h',
47168         'Ntilde',
47169         '6i',
47170         'Ograve',
47171         '6j',
47172         'Oacute',
47173         '6k',
47174         'Ocirc',
47175         '6l',
47176         'Otilde',
47177         '6m',
47178         'Ouml',
47179         '6n',
47180         'times',
47181         '6o',
47182         'Oslash',
47183         '6p',
47184         'Ugrave',
47185         '6q',
47186         'Uacute',
47187         '6r',
47188         'Ucirc',
47189         '6s',
47190         'Uuml',
47191         '6t',
47192         'Yacute',
47193         '6u',
47194         'THORN',
47195         '6v',
47196         'szlig',
47197         '70',
47198         'agrave',
47199         '71',
47200         'aacute',
47201         '72',
47202         'acirc',
47203         '73',
47204         'atilde',
47205         '74',
47206         'auml',
47207         '75',
47208         'aring',
47209         '76',
47210         'aelig',
47211         '77',
47212         'ccedil',
47213         '78',
47214         'egrave',
47215         '79',
47216         'eacute',
47217         '7a',
47218         'ecirc',
47219         '7b',
47220         'euml',
47221         '7c',
47222         'igrave',
47223         '7d',
47224         'iacute',
47225         '7e',
47226         'icirc',
47227         '7f',
47228         'iuml',
47229         '7g',
47230         'eth',
47231         '7h',
47232         'ntilde',
47233         '7i',
47234         'ograve',
47235         '7j',
47236         'oacute',
47237         '7k',
47238         'ocirc',
47239         '7l',
47240         'otilde',
47241         '7m',
47242         'ouml',
47243         '7n',
47244         'divide',
47245         '7o',
47246         'oslash',
47247         '7p',
47248         'ugrave',
47249         '7q',
47250         'uacute',
47251         '7r',
47252         'ucirc',
47253         '7s',
47254         'uuml',
47255         '7t',
47256         'yacute',
47257         '7u',
47258         'thorn',
47259         '7v',
47260         'yuml',
47261         'ci',
47262         'fnof',
47263         'sh',
47264         'Alpha',
47265         'si',
47266         'Beta',
47267         'sj',
47268         'Gamma',
47269         'sk',
47270         'Delta',
47271         'sl',
47272         'Epsilon',
47273         'sm',
47274         'Zeta',
47275         'sn',
47276         'Eta',
47277         'so',
47278         'Theta',
47279         'sp',
47280         'Iota',
47281         'sq',
47282         'Kappa',
47283         'sr',
47284         'Lambda',
47285         'ss',
47286         'Mu',
47287         'st',
47288         'Nu',
47289         'su',
47290         'Xi',
47291         'sv',
47292         'Omicron',
47293         't0',
47294         'Pi',
47295         't1',
47296         'Rho',
47297         't3',
47298         'Sigma',
47299         't4',
47300         'Tau',
47301         't5',
47302         'Upsilon',
47303         't6',
47304         'Phi',
47305         't7',
47306         'Chi',
47307         't8',
47308         'Psi',
47309         't9',
47310         'Omega',
47311         'th',
47312         'alpha',
47313         'ti',
47314         'beta',
47315         'tj',
47316         'gamma',
47317         'tk',
47318         'delta',
47319         'tl',
47320         'epsilon',
47321         'tm',
47322         'zeta',
47323         'tn',
47324         'eta',
47325         'to',
47326         'theta',
47327         'tp',
47328         'iota',
47329         'tq',
47330         'kappa',
47331         'tr',
47332         'lambda',
47333         'ts',
47334         'mu',
47335         'tt',
47336         'nu',
47337         'tu',
47338         'xi',
47339         'tv',
47340         'omicron',
47341         'u0',
47342         'pi',
47343         'u1',
47344         'rho',
47345         'u2',
47346         'sigmaf',
47347         'u3',
47348         'sigma',
47349         'u4',
47350         'tau',
47351         'u5',
47352         'upsilon',
47353         'u6',
47354         'phi',
47355         'u7',
47356         'chi',
47357         'u8',
47358         'psi',
47359         'u9',
47360         'omega',
47361         'uh',
47362         'thetasym',
47363         'ui',
47364         'upsih',
47365         'um',
47366         'piv',
47367         '812',
47368         'bull',
47369         '816',
47370         'hellip',
47371         '81i',
47372         'prime',
47373         '81j',
47374         'Prime',
47375         '81u',
47376         'oline',
47377         '824',
47378         'frasl',
47379         '88o',
47380         'weierp',
47381         '88h',
47382         'image',
47383         '88s',
47384         'real',
47385         '892',
47386         'trade',
47387         '89l',
47388         'alefsym',
47389         '8cg',
47390         'larr',
47391         '8ch',
47392         'uarr',
47393         '8ci',
47394         'rarr',
47395         '8cj',
47396         'darr',
47397         '8ck',
47398         'harr',
47399         '8dl',
47400         'crarr',
47401         '8eg',
47402         'lArr',
47403         '8eh',
47404         'uArr',
47405         '8ei',
47406         'rArr',
47407         '8ej',
47408         'dArr',
47409         '8ek',
47410         'hArr',
47411         '8g0',
47412         'forall',
47413         '8g2',
47414         'part',
47415         '8g3',
47416         'exist',
47417         '8g5',
47418         'empty',
47419         '8g7',
47420         'nabla',
47421         '8g8',
47422         'isin',
47423         '8g9',
47424         'notin',
47425         '8gb',
47426         'ni',
47427         '8gf',
47428         'prod',
47429         '8gh',
47430         'sum',
47431         '8gi',
47432         'minus',
47433         '8gn',
47434         'lowast',
47435         '8gq',
47436         'radic',
47437         '8gt',
47438         'prop',
47439         '8gu',
47440         'infin',
47441         '8h0',
47442         'ang',
47443         '8h7',
47444         'and',
47445         '8h8',
47446         'or',
47447         '8h9',
47448         'cap',
47449         '8ha',
47450         'cup',
47451         '8hb',
47452         'int',
47453         '8hk',
47454         'there4',
47455         '8hs',
47456         'sim',
47457         '8i5',
47458         'cong',
47459         '8i8',
47460         'asymp',
47461         '8j0',
47462         'ne',
47463         '8j1',
47464         'equiv',
47465         '8j4',
47466         'le',
47467         '8j5',
47468         'ge',
47469         '8k2',
47470         'sub',
47471         '8k3',
47472         'sup',
47473         '8k4',
47474         'nsub',
47475         '8k6',
47476         'sube',
47477         '8k7',
47478         'supe',
47479         '8kl',
47480         'oplus',
47481         '8kn',
47482         'otimes',
47483         '8l5',
47484         'perp',
47485         '8m5',
47486         'sdot',
47487         '8o8',
47488         'lceil',
47489         '8o9',
47490         'rceil',
47491         '8oa',
47492         'lfloor',
47493         '8ob',
47494         'rfloor',
47495         '8p9',
47496         'lang',
47497         '8pa',
47498         'rang',
47499         '9ea',
47500         'loz',
47501         '9j0',
47502         'spades',
47503         '9j3',
47504         'clubs',
47505         '9j5',
47506         'hearts',
47507         '9j6',
47508         'diams',
47509         'ai',
47510         'OElig',
47511         'aj',
47512         'oelig',
47513         'b0',
47514         'Scaron',
47515         'b1',
47516         'scaron',
47517         'bo',
47518         'Yuml',
47519         'm6',
47520         'circ',
47521         'ms',
47522         'tilde',
47523         '802',
47524         'ensp',
47525         '803',
47526         'emsp',
47527         '809',
47528         'thinsp',
47529         '80c',
47530         'zwnj',
47531         '80d',
47532         'zwj',
47533         '80e',
47534         'lrm',
47535         '80f',
47536         'rlm',
47537         '80j',
47538         'ndash',
47539         '80k',
47540         'mdash',
47541         '80o',
47542         'lsquo',
47543         '80p',
47544         'rsquo',
47545         '80q',
47546         'sbquo',
47547         '80s',
47548         'ldquo',
47549         '80t',
47550         'rdquo',
47551         '80u',
47552         'bdquo',
47553         '810',
47554         'dagger',
47555         '811',
47556         'Dagger',
47557         '81g',
47558         'permil',
47559         '81p',
47560         'lsaquo',
47561         '81q',
47562         'rsaquo',
47563         '85c',
47564         'euro'
47565     ],
47566
47567          
47568     /**
47569      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
47570      *
47571      * @method encodeRaw
47572      * @param {String} text Text to encode.
47573      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47574      * @return {String} Entity encoded text.
47575      */
47576     encodeRaw: function(text, attr)
47577     {
47578         var t = this;
47579         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47580             return t.baseEntities[chr] || chr;
47581         });
47582     },
47583     /**
47584      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
47585      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
47586      * and is exposed as the DOMUtils.encode function.
47587      *
47588      * @method encodeAllRaw
47589      * @param {String} text Text to encode.
47590      * @return {String} Entity encoded text.
47591      */
47592     encodeAllRaw: function(text) {
47593         var t = this;
47594         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
47595             return t.baseEntities[chr] || chr;
47596         });
47597     },
47598     /**
47599      * Encodes the specified string using numeric entities. The core entities will be
47600      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
47601      *
47602      * @method encodeNumeric
47603      * @param {String} text Text to encode.
47604      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47605      * @return {String} Entity encoded text.
47606      */
47607     encodeNumeric: function(text, attr) {
47608         var t = this;
47609         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47610             // Multi byte sequence convert it to a single entity
47611             if (chr.length > 1) {
47612                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
47613             }
47614             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
47615         });
47616     },
47617     /**
47618      * Encodes the specified string using named entities. The core entities will be encoded
47619      * as named ones but all non lower ascii characters will be encoded into named entities.
47620      *
47621      * @method encodeNamed
47622      * @param {String} text Text to encode.
47623      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47624      * @param {Object} entities Optional parameter with entities to use.
47625      * @return {String} Entity encoded text.
47626      */
47627     encodeNamed: function(text, attr, entities) {
47628         var t = this;
47629         entities = entities || this.namedEntities;
47630         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47631             return t.baseEntities[chr] || entities[chr] || chr;
47632         });
47633     },
47634     /**
47635      * Returns an encode function based on the name(s) and it's optional entities.
47636      *
47637      * @method getEncodeFunc
47638      * @param {String} name Comma separated list of encoders for example named,numeric.
47639      * @param {String} entities Optional parameter with entities to use instead of the built in set.
47640      * @return {function} Encode function to be used.
47641      */
47642     getEncodeFunc: function(name, entities) {
47643         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
47644         var t = this;
47645         function encodeNamedAndNumeric(text, attr) {
47646             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
47647                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
47648             });
47649         }
47650
47651         function encodeCustomNamed(text, attr) {
47652             return t.encodeNamed(text, attr, entities);
47653         }
47654         // Replace + with , to be compatible with previous TinyMCE versions
47655         name = this.makeMap(name.replace(/\+/g, ','));
47656         // Named and numeric encoder
47657         if (name.named && name.numeric) {
47658             return this.encodeNamedAndNumeric;
47659         }
47660         // Named encoder
47661         if (name.named) {
47662             // Custom names
47663             if (entities) {
47664                 return encodeCustomNamed;
47665             }
47666             return this.encodeNamed;
47667         }
47668         // Numeric
47669         if (name.numeric) {
47670             return this.encodeNumeric;
47671         }
47672         // Raw encoder
47673         return this.encodeRaw;
47674     },
47675     /**
47676      * Decodes the specified string, this will replace entities with raw UTF characters.
47677      *
47678      * @method decode
47679      * @param {String} text Text to entity decode.
47680      * @return {String} Entity decoded string.
47681      */
47682     decode: function(text)
47683     {
47684         var  t = this;
47685         return text.replace(this.entityRegExp, function(all, numeric) {
47686             if (numeric) {
47687                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
47688                 // Support upper UTF
47689                 if (numeric > 65535) {
47690                     numeric -= 65536;
47691                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
47692                 }
47693                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
47694             }
47695             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
47696         });
47697     },
47698     nativeDecode : function (text) {
47699         return text;
47700     },
47701     makeMap : function (items, delim, map) {
47702                 var i;
47703                 items = items || [];
47704                 delim = delim || ',';
47705                 if (typeof items == "string") {
47706                         items = items.split(delim);
47707                 }
47708                 map = map || {};
47709                 i = items.length;
47710                 while (i--) {
47711                         map[items[i]] = {};
47712                 }
47713                 return map;
47714         }
47715 };
47716     
47717     
47718     
47719 Roo.htmleditor.TidyEntities.init();
47720 /**
47721  * @class Roo.htmleditor.KeyEnter
47722  * Handle Enter press..
47723  * @cfg {Roo.HtmlEditorCore} core the editor.
47724  * @constructor
47725  * Create a new Filter.
47726  * @param {Object} config Configuration options
47727  */
47728
47729
47730
47731
47732
47733 Roo.htmleditor.KeyEnter = function(cfg) {
47734     Roo.apply(this, cfg);
47735     // this does not actually call walk as it's really just a abstract class
47736  
47737     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
47738 }
47739
47740 //Roo.htmleditor.KeyEnter.i = 0;
47741
47742
47743 Roo.htmleditor.KeyEnter.prototype = {
47744     
47745     core : false,
47746     
47747     keypress : function(e)
47748     {
47749         if (e.charCode != 13 && e.charCode != 10) {
47750             Roo.log([e.charCode,e]);
47751             return true;
47752         }
47753         e.preventDefault();
47754         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
47755         var doc = this.core.doc;
47756           //add a new line
47757        
47758     
47759         var sel = this.core.getSelection();
47760         var range = sel.getRangeAt(0);
47761         var n = range.commonAncestorContainer;
47762         var pc = range.closest([ 'ol', 'ul']);
47763         var pli = range.closest('li');
47764         if (!pc || e.ctrlKey) {
47765             sel.insertNode('br', 'after'); 
47766          
47767             this.core.undoManager.addEvent();
47768             this.core.fireEditorEvent(e);
47769             return false;
47770         }
47771         
47772         // deal with <li> insetion
47773         if (pli.innerText.trim() == '' &&
47774             pli.previousSibling &&
47775             pli.previousSibling.nodeName == 'LI' &&
47776             pli.previousSibling.innerText.trim() ==  '') {
47777             pli.parentNode.removeChild(pli.previousSibling);
47778             sel.cursorAfter(pc);
47779             this.core.undoManager.addEvent();
47780             this.core.fireEditorEvent(e);
47781             return false;
47782         }
47783     
47784         var li = doc.createElement('LI');
47785         li.innerHTML = '&nbsp;';
47786         if (!pli || !pli.firstSibling) {
47787             pc.appendChild(li);
47788         } else {
47789             pli.parentNode.insertBefore(li, pli.firstSibling);
47790         }
47791         sel.cursorText (li.firstChild);
47792       
47793         this.core.undoManager.addEvent();
47794         this.core.fireEditorEvent(e);
47795
47796         return false;
47797         
47798     
47799         
47800         
47801          
47802     }
47803 };
47804      
47805 /**
47806  * @class Roo.htmleditor.Block
47807  * Base class for html editor blocks - do not use it directly .. extend it..
47808  * @cfg {DomElement} node The node to apply stuff to.
47809  * @cfg {String} friendly_name the name that appears in the context bar about this block
47810  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
47811  
47812  * @constructor
47813  * Create a new Filter.
47814  * @param {Object} config Configuration options
47815  */
47816
47817 Roo.htmleditor.Block  = function(cfg)
47818 {
47819     // do nothing .. should not be called really.
47820 }
47821 /**
47822  * factory method to get the block from an element (using cache if necessary)
47823  * @static
47824  * @param {HtmlElement} the dom element
47825  */
47826 Roo.htmleditor.Block.factory = function(node)
47827 {
47828     var cc = Roo.htmleditor.Block.cache;
47829     var id = Roo.get(node).id;
47830     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
47831         Roo.htmleditor.Block.cache[id].readElement(node);
47832         return Roo.htmleditor.Block.cache[id];
47833     }
47834     var db  = node.getAttribute('data-block');
47835     if (!db) {
47836         db = node.nodeName.toLowerCase().toUpperCaseFirst();
47837     }
47838     var cls = Roo.htmleditor['Block' + db];
47839     if (typeof(cls) == 'undefined') {
47840         //Roo.log(node.getAttribute('data-block'));
47841         Roo.log("OOps missing block : " + 'Block' + db);
47842         return false;
47843     }
47844     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
47845     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
47846 };
47847
47848 /**
47849  * initalize all Elements from content that are 'blockable'
47850  * @static
47851  * @param the body element
47852  */
47853 Roo.htmleditor.Block.initAll = function(body, type)
47854 {
47855     if (typeof(type) == 'undefined') {
47856         var ia = Roo.htmleditor.Block.initAll;
47857         ia(body,'table');
47858         ia(body,'td');
47859         ia(body,'figure');
47860         return;
47861     }
47862     Roo.each(Roo.get(body).query(type), function(e) {
47863         Roo.htmleditor.Block.factory(e);    
47864     },this);
47865 };
47866 // question goes here... do we need to clear out this cache sometimes?
47867 // or show we make it relivant to the htmleditor.
47868 Roo.htmleditor.Block.cache = {};
47869
47870 Roo.htmleditor.Block.prototype = {
47871     
47872     node : false,
47873     
47874      // used by context menu
47875     friendly_name : 'Based Block',
47876     
47877     // text for button to delete this element
47878     deleteTitle : false,
47879     
47880     context : false,
47881     /**
47882      * Update a node with values from this object
47883      * @param {DomElement} node
47884      */
47885     updateElement : function(node)
47886     {
47887         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
47888     },
47889      /**
47890      * convert to plain HTML for calling insertAtCursor..
47891      */
47892     toHTML : function()
47893     {
47894         return Roo.DomHelper.markup(this.toObject());
47895     },
47896     /**
47897      * used by readEleemnt to extract data from a node
47898      * may need improving as it's pretty basic
47899      
47900      * @param {DomElement} node
47901      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
47902      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
47903      * @param {String} style the style property - eg. text-align
47904      */
47905     getVal : function(node, tag, attr, style)
47906     {
47907         var n = node;
47908         if (tag !== true && n.tagName != tag.toUpperCase()) {
47909             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
47910             // but kiss for now.
47911             n = node.getElementsByTagName(tag).item(0);
47912         }
47913         if (!n) {
47914             return '';
47915         }
47916         if (attr === false) {
47917             return n;
47918         }
47919         if (attr == 'html') {
47920             return n.innerHTML;
47921         }
47922         if (attr == 'style') {
47923             return n.style[style]; 
47924         }
47925         
47926         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
47927             
47928     },
47929     /**
47930      * create a DomHelper friendly object - for use with 
47931      * Roo.DomHelper.markup / overwrite / etc..
47932      * (override this)
47933      */
47934     toObject : function()
47935     {
47936         return {};
47937     },
47938       /**
47939      * Read a node that has a 'data-block' property - and extract the values from it.
47940      * @param {DomElement} node - the node
47941      */
47942     readElement : function(node)
47943     {
47944         
47945     } 
47946     
47947     
47948 };
47949
47950  
47951
47952 /**
47953  * @class Roo.htmleditor.BlockFigure
47954  * Block that has an image and a figcaption
47955  * @cfg {String} image_src the url for the image
47956  * @cfg {String} align (left|right) alignment for the block default left
47957  * @cfg {String} caption the text to appear below  (and in the alt tag)
47958  * @cfg {String} caption_display (block|none) display or not the caption
47959  * @cfg {String|number} image_width the width of the image number or %?
47960  * @cfg {String|number} image_height the height of the image number or %?
47961  * 
47962  * @constructor
47963  * Create a new Filter.
47964  * @param {Object} config Configuration options
47965  */
47966
47967 Roo.htmleditor.BlockFigure = function(cfg)
47968 {
47969     if (cfg.node) {
47970         this.readElement(cfg.node);
47971         this.updateElement(cfg.node);
47972     }
47973     Roo.apply(this, cfg);
47974 }
47975 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
47976  
47977     
47978     // setable values.
47979     image_src: '',
47980     align: 'center',
47981     caption : '',
47982     caption_display : 'block',
47983     width : '100%',
47984     cls : '',
47985     href: '',
47986     video_url : '',
47987     
47988     // margin: '2%', not used
47989     
47990     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
47991
47992     
47993     // used by context menu
47994     friendly_name : 'Image with caption',
47995     deleteTitle : "Delete Image and Caption",
47996     
47997     contextMenu : function(toolbar)
47998     {
47999         
48000         var block = function() {
48001             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48002         };
48003         
48004         
48005         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48006         
48007         var syncValue = toolbar.editorcore.syncValue;
48008         
48009         var fields = {};
48010         
48011         return [
48012              {
48013                 xtype : 'TextItem',
48014                 text : "Source: ",
48015                 xns : rooui.Toolbar  //Boostrap?
48016             },
48017             {
48018                 xtype : 'Button',
48019                 text: 'Change Image URL',
48020                  
48021                 listeners : {
48022                     click: function (btn, state)
48023                     {
48024                         var b = block();
48025                         
48026                         Roo.MessageBox.show({
48027                             title : "Image Source URL",
48028                             msg : "Enter the url for the image",
48029                             buttons: Roo.MessageBox.OKCANCEL,
48030                             fn: function(btn, val){
48031                                 if (btn != 'ok') {
48032                                     return;
48033                                 }
48034                                 b.image_src = val;
48035                                 b.updateElement();
48036                                 syncValue();
48037                                 toolbar.editorcore.onEditorEvent();
48038                             },
48039                             minWidth:250,
48040                             prompt:true,
48041                             //multiline: multiline,
48042                             modal : true,
48043                             value : b.image_src
48044                         });
48045                     }
48046                 },
48047                 xns : rooui.Toolbar
48048             },
48049          
48050             {
48051                 xtype : 'Button',
48052                 text: 'Change Link URL',
48053                  
48054                 listeners : {
48055                     click: function (btn, state)
48056                     {
48057                         var b = block();
48058                         
48059                         Roo.MessageBox.show({
48060                             title : "Link URL",
48061                             msg : "Enter the url for the link - leave blank to have no link",
48062                             buttons: Roo.MessageBox.OKCANCEL,
48063                             fn: function(btn, val){
48064                                 if (btn != 'ok') {
48065                                     return;
48066                                 }
48067                                 b.href = val;
48068                                 b.updateElement();
48069                                 syncValue();
48070                                 toolbar.editorcore.onEditorEvent();
48071                             },
48072                             minWidth:250,
48073                             prompt:true,
48074                             //multiline: multiline,
48075                             modal : true,
48076                             value : b.href
48077                         });
48078                     }
48079                 },
48080                 xns : rooui.Toolbar
48081             },
48082             {
48083                 xtype : 'Button',
48084                 text: 'Show Video URL',
48085                  
48086                 listeners : {
48087                     click: function (btn, state)
48088                     {
48089                         Roo.MessageBox.alert("Video URL",
48090                             block().video_url == '' ? 'This image is not linked ot a video' :
48091                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
48092                     }
48093                 },
48094                 xns : rooui.Toolbar
48095             },
48096             
48097             
48098             {
48099                 xtype : 'TextItem',
48100                 text : "Width: ",
48101                 xns : rooui.Toolbar  //Boostrap?
48102             },
48103             {
48104                 xtype : 'ComboBox',
48105                 allowBlank : false,
48106                 displayField : 'val',
48107                 editable : true,
48108                 listWidth : 100,
48109                 triggerAction : 'all',
48110                 typeAhead : true,
48111                 valueField : 'val',
48112                 width : 70,
48113                 name : 'width',
48114                 listeners : {
48115                     select : function (combo, r, index)
48116                     {
48117                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48118                         var b = block();
48119                         b.width = r.get('val');
48120                         b.updateElement();
48121                         syncValue();
48122                         toolbar.editorcore.onEditorEvent();
48123                     }
48124                 },
48125                 xns : rooui.form,
48126                 store : {
48127                     xtype : 'SimpleStore',
48128                     data : [
48129                         ['50%'],
48130                         ['80%'],
48131                         ['100%']
48132                     ],
48133                     fields : [ 'val'],
48134                     xns : Roo.data
48135                 }
48136             },
48137             {
48138                 xtype : 'TextItem',
48139                 text : "Align: ",
48140                 xns : rooui.Toolbar  //Boostrap?
48141             },
48142             {
48143                 xtype : 'ComboBox',
48144                 allowBlank : false,
48145                 displayField : 'val',
48146                 editable : true,
48147                 listWidth : 100,
48148                 triggerAction : 'all',
48149                 typeAhead : true,
48150                 valueField : 'val',
48151                 width : 70,
48152                 name : 'align',
48153                 listeners : {
48154                     select : function (combo, r, index)
48155                     {
48156                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48157                         var b = block();
48158                         b.align = r.get('val');
48159                         b.updateElement();
48160                         syncValue();
48161                         toolbar.editorcore.onEditorEvent();
48162                     }
48163                 },
48164                 xns : rooui.form,
48165                 store : {
48166                     xtype : 'SimpleStore',
48167                     data : [
48168                         ['left'],
48169                         ['right'],
48170                         ['center']
48171                     ],
48172                     fields : [ 'val'],
48173                     xns : Roo.data
48174                 }
48175             },
48176             
48177             
48178             {
48179                 xtype : 'Button',
48180                 text: 'Hide Caption',
48181                 name : 'caption_display',
48182                 pressed : false,
48183                 enableToggle : true,
48184                 setValue : function(v) {
48185                     // this trigger toggle.
48186                      
48187                     this.setText(v ? "Hide Caption" : "Show Caption");
48188                     this.setPressed(v != 'block');
48189                 },
48190                 listeners : {
48191                     toggle: function (btn, state)
48192                     {
48193                         var b  = block();
48194                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
48195                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
48196                         b.updateElement();
48197                         syncValue();
48198                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48199                         toolbar.editorcore.onEditorEvent();
48200                     }
48201                 },
48202                 xns : rooui.Toolbar
48203             }
48204         ];
48205         
48206     },
48207     /**
48208      * create a DomHelper friendly object - for use with
48209      * Roo.DomHelper.markup / overwrite / etc..
48210      */
48211     toObject : function()
48212     {
48213         var d = document.createElement('div');
48214         d.innerHTML = this.caption;
48215         
48216         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
48217         
48218         var iw = this.align == 'center' ? this.width : '100%';
48219         var img =   {
48220             tag : 'img',
48221             contenteditable : 'false',
48222             src : this.image_src,
48223             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
48224             style: {
48225                 width : iw,
48226                 maxWidth : iw + ' !important', // this is not getting rendered?
48227                 margin : m  
48228                 
48229             }
48230         };
48231         /*
48232         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
48233                     '<a href="{2}">' + 
48234                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
48235                     '</a>' + 
48236                 '</div>',
48237         */
48238                 
48239         if (this.href.length > 0) {
48240             img = {
48241                 tag : 'a',
48242                 href: this.href,
48243                 contenteditable : 'true',
48244                 cn : [
48245                     img
48246                 ]
48247             };
48248         }
48249         
48250         
48251         if (this.video_url.length > 0) {
48252             img = {
48253                 tag : 'div',
48254                 cls : this.cls,
48255                 frameborder : 0,
48256                 allowfullscreen : true,
48257                 width : 420,  // these are for video tricks - that we replace the outer
48258                 height : 315,
48259                 src : this.video_url,
48260                 cn : [
48261                     img
48262                 ]
48263             };
48264         }
48265         // we remove caption totally if its hidden... - will delete data.. but otherwise we end up with fake caption
48266         var captionhtml = this.caption_display == 'none' ? '' : (this.caption.length ? this.caption : "Caption");
48267         
48268   
48269         var ret =   {
48270             tag: 'figure',
48271             'data-block' : 'Figure',
48272             'data-width' : this.width, 
48273             contenteditable : 'false',
48274             
48275             style : {
48276                 display: 'block',
48277                 float :  this.align ,
48278                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
48279                 width : this.align == 'center' ? '100%' : this.width,
48280                 margin:  '0px',
48281                 padding: this.align == 'center' ? '0' : '0 10px' ,
48282                 textAlign : this.align   // seems to work for email..
48283                 
48284             },
48285            
48286             
48287             align : this.align,
48288             cn : [
48289                 img,
48290               
48291                 {
48292                     tag: 'figcaption',
48293                     'data-display' : this.caption_display,
48294                     style : {
48295                         textAlign : 'left',
48296                         fontSize : '16px',
48297                         lineHeight : '24px',
48298                         display : this.caption_display,
48299                         maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
48300                         margin: m,
48301                         width: this.align == 'center' ?  this.width : '100%' 
48302                     
48303                          
48304                     },
48305                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
48306                     cn : [
48307                         {
48308                             tag: 'div',
48309                             style  : {
48310                                 marginTop : '16px',
48311                                 textAlign : 'left'
48312                             },
48313                             align: 'left',
48314                             cn : [
48315                                 {
48316                                     // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
48317                                     tag : 'i',
48318                                     contenteditable : true,
48319                                     html : captionhtml
48320                                 }
48321                                 
48322                             ]
48323                         }
48324                         
48325                     ]
48326                     
48327                 }
48328             ]
48329         };
48330         return ret;
48331          
48332     },
48333     
48334     readElement : function(node)
48335     {
48336         // this should not really come from the link...
48337         this.video_url = this.getVal(node, 'div', 'src');
48338         this.cls = this.getVal(node, 'div', 'class');
48339         this.href = this.getVal(node, 'a', 'href');
48340         
48341         
48342         this.image_src = this.getVal(node, 'img', 'src');
48343          
48344         this.align = this.getVal(node, 'figure', 'align');
48345         var figcaption = this.getVal(node, 'figcaption', false);
48346         if (figcaption !== '') {
48347             this.caption = this.getVal(figcaption, 'i', 'html');
48348         }
48349         
48350
48351         this.caption_display = this.getVal(node, 'figcaption', 'data-display');
48352         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
48353         this.width = this.getVal(node, true, 'data-width');
48354         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
48355         
48356     },
48357     removeNode : function()
48358     {
48359         return this.node;
48360     }
48361     
48362   
48363    
48364      
48365     
48366     
48367     
48368     
48369 })
48370
48371  
48372
48373 /**
48374  * @class Roo.htmleditor.BlockTable
48375  * Block that manages a table
48376  * 
48377  * @constructor
48378  * Create a new Filter.
48379  * @param {Object} config Configuration options
48380  */
48381
48382 Roo.htmleditor.BlockTable = function(cfg)
48383 {
48384     if (cfg.node) {
48385         this.readElement(cfg.node);
48386         this.updateElement(cfg.node);
48387     }
48388     Roo.apply(this, cfg);
48389     if (!cfg.node) {
48390         this.rows = [];
48391         for(var r = 0; r < this.no_row; r++) {
48392             this.rows[r] = [];
48393             for(var c = 0; c < this.no_col; c++) {
48394                 this.rows[r][c] = this.emptyCell();
48395             }
48396         }
48397     }
48398     
48399     
48400 }
48401 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
48402  
48403     rows : false,
48404     no_col : 1,
48405     no_row : 1,
48406     
48407     
48408     width: '100%',
48409     
48410     // used by context menu
48411     friendly_name : 'Table',
48412     deleteTitle : 'Delete Table',
48413     // context menu is drawn once..
48414     
48415     contextMenu : function(toolbar)
48416     {
48417         
48418         var block = function() {
48419             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48420         };
48421         
48422         
48423         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48424         
48425         var syncValue = toolbar.editorcore.syncValue;
48426         
48427         var fields = {};
48428         
48429         return [
48430             {
48431                 xtype : 'TextItem',
48432                 text : "Width: ",
48433                 xns : rooui.Toolbar  //Boostrap?
48434             },
48435             {
48436                 xtype : 'ComboBox',
48437                 allowBlank : false,
48438                 displayField : 'val',
48439                 editable : true,
48440                 listWidth : 100,
48441                 triggerAction : 'all',
48442                 typeAhead : true,
48443                 valueField : 'val',
48444                 width : 100,
48445                 name : 'width',
48446                 listeners : {
48447                     select : function (combo, r, index)
48448                     {
48449                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48450                         var b = block();
48451                         b.width = r.get('val');
48452                         b.updateElement();
48453                         syncValue();
48454                         toolbar.editorcore.onEditorEvent();
48455                     }
48456                 },
48457                 xns : rooui.form,
48458                 store : {
48459                     xtype : 'SimpleStore',
48460                     data : [
48461                         ['100%'],
48462                         ['auto']
48463                     ],
48464                     fields : [ 'val'],
48465                     xns : Roo.data
48466                 }
48467             },
48468             // -------- Cols
48469             
48470             {
48471                 xtype : 'TextItem',
48472                 text : "Columns: ",
48473                 xns : rooui.Toolbar  //Boostrap?
48474             },
48475          
48476             {
48477                 xtype : 'Button',
48478                 text: '-',
48479                 listeners : {
48480                     click : function (_self, e)
48481                     {
48482                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48483                         block().removeColumn();
48484                         syncValue();
48485                         toolbar.editorcore.onEditorEvent();
48486                     }
48487                 },
48488                 xns : rooui.Toolbar
48489             },
48490             {
48491                 xtype : 'Button',
48492                 text: '+',
48493                 listeners : {
48494                     click : function (_self, e)
48495                     {
48496                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48497                         block().addColumn();
48498                         syncValue();
48499                         toolbar.editorcore.onEditorEvent();
48500                     }
48501                 },
48502                 xns : rooui.Toolbar
48503             },
48504             // -------- ROWS
48505             {
48506                 xtype : 'TextItem',
48507                 text : "Rows: ",
48508                 xns : rooui.Toolbar  //Boostrap?
48509             },
48510          
48511             {
48512                 xtype : 'Button',
48513                 text: '-',
48514                 listeners : {
48515                     click : function (_self, e)
48516                     {
48517                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48518                         block().removeRow();
48519                         syncValue();
48520                         toolbar.editorcore.onEditorEvent();
48521                     }
48522                 },
48523                 xns : rooui.Toolbar
48524             },
48525             {
48526                 xtype : 'Button',
48527                 text: '+',
48528                 listeners : {
48529                     click : function (_self, e)
48530                     {
48531                         block().addRow();
48532                         syncValue();
48533                         toolbar.editorcore.onEditorEvent();
48534                     }
48535                 },
48536                 xns : rooui.Toolbar
48537             },
48538             // -------- ROWS
48539             {
48540                 xtype : 'Button',
48541                 text: 'Reset Column Widths',
48542                 listeners : {
48543                     
48544                     click : function (_self, e)
48545                     {
48546                         block().resetWidths();
48547                         syncValue();
48548                         toolbar.editorcore.onEditorEvent();
48549                     }
48550                 },
48551                 xns : rooui.Toolbar
48552             } 
48553             
48554             
48555             
48556         ];
48557         
48558     },
48559     
48560     
48561   /**
48562      * create a DomHelper friendly object - for use with
48563      * Roo.DomHelper.markup / overwrite / etc..
48564      * ?? should it be called with option to hide all editing features?
48565      */
48566     toObject : function()
48567     {
48568         
48569         var ret = {
48570             tag : 'table',
48571             contenteditable : 'false', // this stops cell selection from picking the table.
48572             'data-block' : 'Table',
48573             style : {
48574                 width:  this.width,
48575                 border : 'solid 1px #000', // ??? hard coded?
48576                 'border-collapse' : 'collapse' 
48577             },
48578             cn : [
48579                 { tag : 'tbody' , cn : [] }
48580             ]
48581         };
48582         
48583         // do we have a head = not really 
48584         var ncols = 0;
48585         Roo.each(this.rows, function( row ) {
48586             var tr = {
48587                 tag: 'tr',
48588                 style : {
48589                     margin: '6px',
48590                     border : 'solid 1px #000',
48591                     textAlign : 'left' 
48592                 },
48593                 cn : [ ]
48594             };
48595             
48596             ret.cn[0].cn.push(tr);
48597             // does the row have any properties? ?? height?
48598             var nc = 0;
48599             Roo.each(row, function( cell ) {
48600                 
48601                 var td = {
48602                     tag : 'td',
48603                     contenteditable :  'true',
48604                     'data-block' : 'Td',
48605                     html : cell.html,
48606                     style : cell.style
48607                 };
48608                 if (cell.colspan > 1) {
48609                     td.colspan = cell.colspan ;
48610                     nc += cell.colspan;
48611                 } else {
48612                     nc++;
48613                 }
48614                 if (cell.rowspan > 1) {
48615                     td.rowspan = cell.rowspan ;
48616                 }
48617                 
48618                 
48619                 // widths ?
48620                 tr.cn.push(td);
48621                     
48622                 
48623             }, this);
48624             ncols = Math.max(nc, ncols);
48625             
48626             
48627         }, this);
48628         // add the header row..
48629         
48630         ncols++;
48631          
48632         
48633         return ret;
48634          
48635     },
48636     
48637     readElement : function(node)
48638     {
48639         node  = node ? node : this.node ;
48640         this.width = this.getVal(node, true, 'style', 'width') || '100%';
48641         
48642         this.rows = [];
48643         this.no_row = 0;
48644         var trs = Array.from(node.rows);
48645         trs.forEach(function(tr) {
48646             var row =  [];
48647             this.rows.push(row);
48648             
48649             this.no_row++;
48650             var no_column = 0;
48651             Array.from(tr.cells).forEach(function(td) {
48652                 
48653                 var add = {
48654                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
48655                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
48656                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
48657                     html : td.innerHTML
48658                 };
48659                 no_column += add.colspan;
48660                      
48661                 
48662                 row.push(add);
48663                 
48664                 
48665             },this);
48666             this.no_col = Math.max(this.no_col, no_column);
48667             
48668             
48669         },this);
48670         
48671         
48672     },
48673     normalizeRows: function()
48674     {
48675         var ret= [];
48676         var rid = -1;
48677         this.rows.forEach(function(row) {
48678             rid++;
48679             ret[rid] = [];
48680             row = this.normalizeRow(row);
48681             var cid = 0;
48682             row.forEach(function(c) {
48683                 while (typeof(ret[rid][cid]) != 'undefined') {
48684                     cid++;
48685                 }
48686                 if (typeof(ret[rid]) == 'undefined') {
48687                     ret[rid] = [];
48688                 }
48689                 ret[rid][cid] = c;
48690                 c.row = rid;
48691                 c.col = cid;
48692                 if (c.rowspan < 2) {
48693                     return;
48694                 }
48695                 
48696                 for(var i = 1 ;i < c.rowspan; i++) {
48697                     if (typeof(ret[rid+i]) == 'undefined') {
48698                         ret[rid+i] = [];
48699                     }
48700                     ret[rid+i][cid] = c;
48701                 }
48702             });
48703         }, this);
48704         return ret;
48705     
48706     },
48707     
48708     normalizeRow: function(row)
48709     {
48710         var ret= [];
48711         row.forEach(function(c) {
48712             if (c.colspan < 2) {
48713                 ret.push(c);
48714                 return;
48715             }
48716             for(var i =0 ;i < c.colspan; i++) {
48717                 ret.push(c);
48718             }
48719         });
48720         return ret;
48721     
48722     },
48723     
48724     deleteColumn : function(sel)
48725     {
48726         if (!sel || sel.type != 'col') {
48727             return;
48728         }
48729         if (this.no_col < 2) {
48730             return;
48731         }
48732         
48733         this.rows.forEach(function(row) {
48734             var cols = this.normalizeRow(row);
48735             var col = cols[sel.col];
48736             if (col.colspan > 1) {
48737                 col.colspan --;
48738             } else {
48739                 row.remove(col);
48740             }
48741             
48742         }, this);
48743         this.no_col--;
48744         
48745     },
48746     removeColumn : function()
48747     {
48748         this.deleteColumn({
48749             type: 'col',
48750             col : this.no_col-1
48751         });
48752         this.updateElement();
48753     },
48754     
48755      
48756     addColumn : function()
48757     {
48758         
48759         this.rows.forEach(function(row) {
48760             row.push(this.emptyCell());
48761            
48762         }, this);
48763         this.updateElement();
48764     },
48765     
48766     deleteRow : function(sel)
48767     {
48768         if (!sel || sel.type != 'row') {
48769             return;
48770         }
48771         
48772         if (this.no_row < 2) {
48773             return;
48774         }
48775         
48776         var rows = this.normalizeRows();
48777         
48778         
48779         rows[sel.row].forEach(function(col) {
48780             if (col.rowspan > 1) {
48781                 col.rowspan--;
48782             } else {
48783                 col.remove = 1; // flage it as removed.
48784             }
48785             
48786         }, this);
48787         var newrows = [];
48788         this.rows.forEach(function(row) {
48789             newrow = [];
48790             row.forEach(function(c) {
48791                 if (typeof(c.remove) == 'undefined') {
48792                     newrow.push(c);
48793                 }
48794                 
48795             });
48796             if (newrow.length > 0) {
48797                 newrows.push(row);
48798             }
48799         });
48800         this.rows =  newrows;
48801         
48802         
48803         
48804         this.no_row--;
48805         this.updateElement();
48806         
48807     },
48808     removeRow : function()
48809     {
48810         this.deleteRow({
48811             type: 'row',
48812             row : this.no_row-1
48813         });
48814         
48815     },
48816     
48817      
48818     addRow : function()
48819     {
48820         
48821         var row = [];
48822         for (var i = 0; i < this.no_col; i++ ) {
48823             
48824             row.push(this.emptyCell());
48825            
48826         }
48827         this.rows.push(row);
48828         this.updateElement();
48829         
48830     },
48831      
48832     // the default cell object... at present...
48833     emptyCell : function() {
48834         return (new Roo.htmleditor.BlockTd({})).toObject();
48835         
48836      
48837     },
48838     
48839     removeNode : function()
48840     {
48841         return this.node;
48842     },
48843     
48844     
48845     
48846     resetWidths : function()
48847     {
48848         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
48849             var nn = Roo.htmleditor.Block.factory(n);
48850             nn.width = '';
48851             nn.updateElement(n);
48852         });
48853     }
48854     
48855     
48856     
48857     
48858 })
48859
48860 /**
48861  *
48862  * editing a TD?
48863  *
48864  * since selections really work on the table cell, then editing really should work from there
48865  *
48866  * The original plan was to support merging etc... - but that may not be needed yet..
48867  *
48868  * So this simple version will support:
48869  *   add/remove cols
48870  *   adjust the width +/-
48871  *   reset the width...
48872  *   
48873  *
48874  */
48875
48876
48877  
48878
48879 /**
48880  * @class Roo.htmleditor.BlockTable
48881  * Block that manages a table
48882  * 
48883  * @constructor
48884  * Create a new Filter.
48885  * @param {Object} config Configuration options
48886  */
48887
48888 Roo.htmleditor.BlockTd = function(cfg)
48889 {
48890     if (cfg.node) {
48891         this.readElement(cfg.node);
48892         this.updateElement(cfg.node);
48893     }
48894     Roo.apply(this, cfg);
48895      
48896     
48897     
48898 }
48899 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
48900  
48901     node : false,
48902     
48903     width: '',
48904     textAlign : 'left',
48905     valign : 'top',
48906     
48907     colspan : 1,
48908     rowspan : 1,
48909     
48910     
48911     // used by context menu
48912     friendly_name : 'Table Cell',
48913     deleteTitle : false, // use our customer delete
48914     
48915     // context menu is drawn once..
48916     
48917     contextMenu : function(toolbar)
48918     {
48919         
48920         var cell = function() {
48921             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48922         };
48923         
48924         var table = function() {
48925             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
48926         };
48927         
48928         var lr = false;
48929         var saveSel = function()
48930         {
48931             lr = toolbar.editorcore.getSelection().getRangeAt(0);
48932         }
48933         var restoreSel = function()
48934         {
48935             if (lr) {
48936                 (function() {
48937                     toolbar.editorcore.focus();
48938                     var cr = toolbar.editorcore.getSelection();
48939                     cr.removeAllRanges();
48940                     cr.addRange(lr);
48941                     toolbar.editorcore.onEditorEvent();
48942                 }).defer(10, this);
48943                 
48944                 
48945             }
48946         }
48947         
48948         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48949         
48950         var syncValue = toolbar.editorcore.syncValue;
48951         
48952         var fields = {};
48953         
48954         return [
48955             {
48956                 xtype : 'Button',
48957                 text : 'Edit Table',
48958                 listeners : {
48959                     click : function() {
48960                         var t = toolbar.tb.selectedNode.closest('table');
48961                         toolbar.editorcore.selectNode(t);
48962                         toolbar.editorcore.onEditorEvent();                        
48963                     }
48964                 }
48965                 
48966             },
48967               
48968            
48969              
48970             {
48971                 xtype : 'TextItem',
48972                 text : "Column Width: ",
48973                  xns : rooui.Toolbar 
48974                
48975             },
48976             {
48977                 xtype : 'Button',
48978                 text: '-',
48979                 listeners : {
48980                     click : function (_self, e)
48981                     {
48982                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48983                         cell().shrinkColumn();
48984                         syncValue();
48985                          toolbar.editorcore.onEditorEvent();
48986                     }
48987                 },
48988                 xns : rooui.Toolbar
48989             },
48990             {
48991                 xtype : 'Button',
48992                 text: '+',
48993                 listeners : {
48994                     click : function (_self, e)
48995                     {
48996                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48997                         cell().growColumn();
48998                         syncValue();
48999                         toolbar.editorcore.onEditorEvent();
49000                     }
49001                 },
49002                 xns : rooui.Toolbar
49003             },
49004             
49005             {
49006                 xtype : 'TextItem',
49007                 text : "Vertical Align: ",
49008                 xns : rooui.Toolbar  //Boostrap?
49009             },
49010             {
49011                 xtype : 'ComboBox',
49012                 allowBlank : false,
49013                 displayField : 'val',
49014                 editable : true,
49015                 listWidth : 100,
49016                 triggerAction : 'all',
49017                 typeAhead : true,
49018                 valueField : 'val',
49019                 width : 100,
49020                 name : 'valign',
49021                 listeners : {
49022                     select : function (combo, r, index)
49023                     {
49024                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49025                         var b = cell();
49026                         b.valign = r.get('val');
49027                         b.updateElement();
49028                         syncValue();
49029                         toolbar.editorcore.onEditorEvent();
49030                     }
49031                 },
49032                 xns : rooui.form,
49033                 store : {
49034                     xtype : 'SimpleStore',
49035                     data : [
49036                         ['top'],
49037                         ['middle'],
49038                         ['bottom'] // there are afew more... 
49039                     ],
49040                     fields : [ 'val'],
49041                     xns : Roo.data
49042                 }
49043             },
49044             
49045             {
49046                 xtype : 'TextItem',
49047                 text : "Merge Cells: ",
49048                  xns : rooui.Toolbar 
49049                
49050             },
49051             
49052             
49053             {
49054                 xtype : 'Button',
49055                 text: 'Right',
49056                 listeners : {
49057                     click : function (_self, e)
49058                     {
49059                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49060                         cell().mergeRight();
49061                         //block().growColumn();
49062                         syncValue();
49063                         toolbar.editorcore.onEditorEvent();
49064                     }
49065                 },
49066                 xns : rooui.Toolbar
49067             },
49068              
49069             {
49070                 xtype : 'Button',
49071                 text: 'Below',
49072                 listeners : {
49073                     click : function (_self, e)
49074                     {
49075                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49076                         cell().mergeBelow();
49077                         //block().growColumn();
49078                         syncValue();
49079                         toolbar.editorcore.onEditorEvent();
49080                     }
49081                 },
49082                 xns : rooui.Toolbar
49083             },
49084             {
49085                 xtype : 'TextItem',
49086                 text : "| ",
49087                  xns : rooui.Toolbar 
49088                
49089             },
49090             
49091             {
49092                 xtype : 'Button',
49093                 text: 'Split',
49094                 listeners : {
49095                     click : function (_self, e)
49096                     {
49097                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49098                         cell().split();
49099                         syncValue();
49100                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49101                         toolbar.editorcore.onEditorEvent();
49102                                              
49103                     }
49104                 },
49105                 xns : rooui.Toolbar
49106             },
49107             {
49108                 xtype : 'Fill',
49109                 xns : rooui.Toolbar 
49110                
49111             },
49112         
49113           
49114             {
49115                 xtype : 'Button',
49116                 text: 'Delete',
49117                  
49118                 xns : rooui.Toolbar,
49119                 menu : {
49120                     xtype : 'Menu',
49121                     xns : rooui.menu,
49122                     items : [
49123                         {
49124                             xtype : 'Item',
49125                             html: 'Column',
49126                             listeners : {
49127                                 click : function (_self, e)
49128                                 {
49129                                     var t = table();
49130                                     
49131                                     cell().deleteColumn();
49132                                     syncValue();
49133                                     toolbar.editorcore.selectNode(t.node);
49134                                     toolbar.editorcore.onEditorEvent();   
49135                                 }
49136                             },
49137                             xns : rooui.menu
49138                         },
49139                         {
49140                             xtype : 'Item',
49141                             html: 'Row',
49142                             listeners : {
49143                                 click : function (_self, e)
49144                                 {
49145                                     var t = table();
49146                                     cell().deleteRow();
49147                                     syncValue();
49148                                     
49149                                     toolbar.editorcore.selectNode(t.node);
49150                                     toolbar.editorcore.onEditorEvent();   
49151                                                          
49152                                 }
49153                             },
49154                             xns : rooui.menu
49155                         },
49156                        {
49157                             xtype : 'Separator',
49158                             xns : rooui.menu
49159                         },
49160                         {
49161                             xtype : 'Item',
49162                             html: 'Table',
49163                             listeners : {
49164                                 click : function (_self, e)
49165                                 {
49166                                     var t = table();
49167                                     var nn = t.node.nextSibling || t.node.previousSibling;
49168                                     t.node.parentNode.removeChild(t.node);
49169                                     if (nn) { 
49170                                         toolbar.editorcore.selectNode(nn, true);
49171                                     }
49172                                     toolbar.editorcore.onEditorEvent();   
49173                                                          
49174                                 }
49175                             },
49176                             xns : rooui.menu
49177                         }
49178                     ]
49179                 }
49180             }
49181             
49182             // align... << fixme
49183             
49184         ];
49185         
49186     },
49187     
49188     
49189   /**
49190      * create a DomHelper friendly object - for use with
49191      * Roo.DomHelper.markup / overwrite / etc..
49192      * ?? should it be called with option to hide all editing features?
49193      */
49194  /**
49195      * create a DomHelper friendly object - for use with
49196      * Roo.DomHelper.markup / overwrite / etc..
49197      * ?? should it be called with option to hide all editing features?
49198      */
49199     toObject : function()
49200     {
49201         
49202         var ret = {
49203             tag : 'td',
49204             contenteditable : 'true', // this stops cell selection from picking the table.
49205             'data-block' : 'Td',
49206             valign : this.valign,
49207             style : {  
49208                 'text-align' :  this.textAlign,
49209                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
49210                 'border-collapse' : 'collapse',
49211                 padding : '6px', // 8 for desktop / 4 for mobile
49212                 'vertical-align': this.valign
49213             },
49214             html : this.html
49215         };
49216         if (this.width != '') {
49217             ret.width = this.width;
49218             ret.style.width = this.width;
49219         }
49220         
49221         
49222         if (this.colspan > 1) {
49223             ret.colspan = this.colspan ;
49224         } 
49225         if (this.rowspan > 1) {
49226             ret.rowspan = this.rowspan ;
49227         }
49228         
49229            
49230         
49231         return ret;
49232          
49233     },
49234     
49235     readElement : function(node)
49236     {
49237         node  = node ? node : this.node ;
49238         this.width = node.style.width;
49239         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
49240         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
49241         this.html = node.innerHTML;
49242         
49243         
49244     },
49245      
49246     // the default cell object... at present...
49247     emptyCell : function() {
49248         return {
49249             colspan :  1,
49250             rowspan :  1,
49251             textAlign : 'left',
49252             html : "&nbsp;" // is this going to be editable now?
49253         };
49254      
49255     },
49256     
49257     removeNode : function()
49258     {
49259         return this.node.closest('table');
49260          
49261     },
49262     
49263     cellData : false,
49264     
49265     colWidths : false,
49266     
49267     toTableArray  : function()
49268     {
49269         var ret = [];
49270         var tab = this.node.closest('tr').closest('table');
49271         Array.from(tab.rows).forEach(function(r, ri){
49272             ret[ri] = [];
49273         });
49274         var rn = 0;
49275         this.colWidths = [];
49276         var all_auto = true;
49277         Array.from(tab.rows).forEach(function(r, ri){
49278             
49279             var cn = 0;
49280             Array.from(r.cells).forEach(function(ce, ci){
49281                 var c =  {
49282                     cell : ce,
49283                     row : rn,
49284                     col: cn,
49285                     colspan : ce.colSpan,
49286                     rowspan : ce.rowSpan
49287                 };
49288                 if (ce.isEqualNode(this.node)) {
49289                     this.cellData = c;
49290                 }
49291                 // if we have been filled up by a row?
49292                 if (typeof(ret[rn][cn]) != 'undefined') {
49293                     while(typeof(ret[rn][cn]) != 'undefined') {
49294                         cn++;
49295                     }
49296                     c.col = cn;
49297                 }
49298                 
49299                 if (typeof(this.colWidths[cn]) == 'undefined') {
49300                     this.colWidths[cn] =   ce.style.width;
49301                     if (this.colWidths[cn] != '') {
49302                         all_auto = false;
49303                     }
49304                 }
49305                 
49306                 
49307                 if (c.colspan < 2 && c.rowspan < 2 ) {
49308                     ret[rn][cn] = c;
49309                     cn++;
49310                     return;
49311                 }
49312                 for(var j = 0; j < c.rowspan; j++) {
49313                     if (typeof(ret[rn+j]) == 'undefined') {
49314                         continue; // we have a problem..
49315                     }
49316                     ret[rn+j][cn] = c;
49317                     for(var i = 0; i < c.colspan; i++) {
49318                         ret[rn+j][cn+i] = c;
49319                     }
49320                 }
49321                 
49322                 cn += c.colspan;
49323             }, this);
49324             rn++;
49325         }, this);
49326         
49327         // initalize widths.?
49328         // either all widths or no widths..
49329         if (all_auto) {
49330             this.colWidths[0] = false; // no widths flag.
49331         }
49332         
49333         
49334         return ret;
49335         
49336     },
49337     
49338     
49339     
49340     
49341     mergeRight: function()
49342     {
49343          
49344         // get the contents of the next cell along..
49345         var tr = this.node.closest('tr');
49346         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
49347         if (i >= tr.childNodes.length - 1) {
49348             return; // no cells on right to merge with.
49349         }
49350         var table = this.toTableArray();
49351         
49352         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
49353             return; // nothing right?
49354         }
49355         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
49356         // right cell - must be same rowspan and on the same row.
49357         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
49358             return; // right hand side is not same rowspan.
49359         }
49360         
49361         
49362         
49363         this.node.innerHTML += ' ' + rc.cell.innerHTML;
49364         tr.removeChild(rc.cell);
49365         this.colspan += rc.colspan;
49366         this.node.setAttribute('colspan', this.colspan);
49367
49368     },
49369     
49370     
49371     mergeBelow : function()
49372     {
49373         var table = this.toTableArray();
49374         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
49375             return; // no row below
49376         }
49377         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
49378             return; // nothing right?
49379         }
49380         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
49381         
49382         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
49383             return; // right hand side is not same rowspan.
49384         }
49385         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
49386         rc.cell.parentNode.removeChild(rc.cell);
49387         this.rowspan += rc.rowspan;
49388         this.node.setAttribute('rowspan', this.rowspan);
49389     },
49390     
49391     split: function()
49392     {
49393         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
49394             return;
49395         }
49396         var table = this.toTableArray();
49397         var cd = this.cellData;
49398         this.rowspan = 1;
49399         this.colspan = 1;
49400         
49401         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
49402             
49403             
49404             
49405             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
49406                 if (r == cd.row && c == cd.col) {
49407                     this.node.removeAttribute('rowspan');
49408                     this.node.removeAttribute('colspan');
49409                     continue;
49410                 }
49411                  
49412                 var ntd = this.node.cloneNode(); // which col/row should be 0..
49413                 ntd.removeAttribute('id'); //
49414                 //ntd.style.width  = '';
49415                 ntd.innerHTML = '';
49416                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
49417             }
49418             
49419         }
49420         this.redrawAllCells(table);
49421         
49422          
49423         
49424     },
49425     
49426     
49427     
49428     redrawAllCells: function(table)
49429     {
49430         
49431          
49432         var tab = this.node.closest('tr').closest('table');
49433         var ctr = tab.rows[0].parentNode;
49434         Array.from(tab.rows).forEach(function(r, ri){
49435             
49436             Array.from(r.cells).forEach(function(ce, ci){
49437                 ce.parentNode.removeChild(ce);
49438             });
49439             r.parentNode.removeChild(r);
49440         });
49441         for(var r = 0 ; r < table.length; r++) {
49442             var re = tab.rows[r];
49443             
49444             var re = tab.ownerDocument.createElement('tr');
49445             ctr.appendChild(re);
49446             for(var c = 0 ; c < table[r].length; c++) {
49447                 if (table[r][c].cell === false) {
49448                     continue;
49449                 }
49450                 
49451                 re.appendChild(table[r][c].cell);
49452                  
49453                 table[r][c].cell = false;
49454             }
49455         }
49456         
49457     },
49458     updateWidths : function(table)
49459     {
49460         for(var r = 0 ; r < table.length; r++) {
49461            
49462             for(var c = 0 ; c < table[r].length; c++) {
49463                 if (table[r][c].cell === false) {
49464                     continue;
49465                 }
49466                 
49467                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
49468                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
49469                     el.width = Math.floor(this.colWidths[c])  +'%';
49470                     el.updateElement(el.node);
49471                 }
49472                 table[r][c].cell = false; // done
49473             }
49474         }
49475     },
49476     normalizeWidths : function(table)
49477     {
49478     
49479         if (this.colWidths[0] === false) {
49480             var nw = 100.0 / this.colWidths.length;
49481             this.colWidths.forEach(function(w,i) {
49482                 this.colWidths[i] = nw;
49483             },this);
49484             return;
49485         }
49486     
49487         var t = 0, missing = [];
49488         
49489         this.colWidths.forEach(function(w,i) {
49490             //if you mix % and
49491             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
49492             var add =  this.colWidths[i];
49493             if (add > 0) {
49494                 t+=add;
49495                 return;
49496             }
49497             missing.push(i);
49498             
49499             
49500         },this);
49501         var nc = this.colWidths.length;
49502         if (missing.length) {
49503             var mult = (nc - missing.length) / (1.0 * nc);
49504             var t = mult * t;
49505             var ew = (100 -t) / (1.0 * missing.length);
49506             this.colWidths.forEach(function(w,i) {
49507                 if (w > 0) {
49508                     this.colWidths[i] = w * mult;
49509                     return;
49510                 }
49511                 
49512                 this.colWidths[i] = ew;
49513             }, this);
49514             // have to make up numbers..
49515              
49516         }
49517         // now we should have all the widths..
49518         
49519     
49520     },
49521     
49522     shrinkColumn : function()
49523     {
49524         var table = this.toTableArray();
49525         this.normalizeWidths(table);
49526         var col = this.cellData.col;
49527         var nw = this.colWidths[col] * 0.8;
49528         if (nw < 5) {
49529             return;
49530         }
49531         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49532         this.colWidths.forEach(function(w,i) {
49533             if (i == col) {
49534                  this.colWidths[i] = nw;
49535                 return;
49536             }
49537             this.colWidths[i] += otherAdd
49538         }, this);
49539         this.updateWidths(table);
49540          
49541     },
49542     growColumn : function()
49543     {
49544         var table = this.toTableArray();
49545         this.normalizeWidths(table);
49546         var col = this.cellData.col;
49547         var nw = this.colWidths[col] * 1.2;
49548         if (nw > 90) {
49549             return;
49550         }
49551         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49552         this.colWidths.forEach(function(w,i) {
49553             if (i == col) {
49554                 this.colWidths[i] = nw;
49555                 return;
49556             }
49557             this.colWidths[i] -= otherSub
49558         }, this);
49559         this.updateWidths(table);
49560          
49561     },
49562     deleteRow : function()
49563     {
49564         // delete this rows 'tr'
49565         // if any of the cells in this row have a rowspan > 1 && row!= this row..
49566         // then reduce the rowspan.
49567         var table = this.toTableArray();
49568         // this.cellData.row;
49569         for (var i =0;i< table[this.cellData.row].length ; i++) {
49570             var c = table[this.cellData.row][i];
49571             if (c.row != this.cellData.row) {
49572                 
49573                 c.rowspan--;
49574                 c.cell.setAttribute('rowspan', c.rowspan);
49575                 continue;
49576             }
49577             if (c.rowspan > 1) {
49578                 c.rowspan--;
49579                 c.cell.setAttribute('rowspan', c.rowspan);
49580             }
49581         }
49582         table.splice(this.cellData.row,1);
49583         this.redrawAllCells(table);
49584         
49585     },
49586     deleteColumn : function()
49587     {
49588         var table = this.toTableArray();
49589         
49590         for (var i =0;i< table.length ; i++) {
49591             var c = table[i][this.cellData.col];
49592             if (c.col != this.cellData.col) {
49593                 table[i][this.cellData.col].colspan--;
49594             } else if (c.colspan > 1) {
49595                 c.colspan--;
49596                 c.cell.setAttribute('colspan', c.colspan);
49597             }
49598             table[i].splice(this.cellData.col,1);
49599         }
49600         
49601         this.redrawAllCells(table);
49602     }
49603     
49604     
49605     
49606     
49607 })
49608
49609 //<script type="text/javascript">
49610
49611 /*
49612  * Based  Ext JS Library 1.1.1
49613  * Copyright(c) 2006-2007, Ext JS, LLC.
49614  * LGPL
49615  *
49616  */
49617  
49618 /**
49619  * @class Roo.HtmlEditorCore
49620  * @extends Roo.Component
49621  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
49622  *
49623  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
49624  */
49625
49626 Roo.HtmlEditorCore = function(config){
49627     
49628     
49629     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
49630     
49631     
49632     this.addEvents({
49633         /**
49634          * @event initialize
49635          * Fires when the editor is fully initialized (including the iframe)
49636          * @param {Roo.HtmlEditorCore} this
49637          */
49638         initialize: true,
49639         /**
49640          * @event activate
49641          * Fires when the editor is first receives the focus. Any insertion must wait
49642          * until after this event.
49643          * @param {Roo.HtmlEditorCore} this
49644          */
49645         activate: true,
49646          /**
49647          * @event beforesync
49648          * Fires before the textarea is updated with content from the editor iframe. Return false
49649          * to cancel the sync.
49650          * @param {Roo.HtmlEditorCore} this
49651          * @param {String} html
49652          */
49653         beforesync: true,
49654          /**
49655          * @event beforepush
49656          * Fires before the iframe editor is updated with content from the textarea. Return false
49657          * to cancel the push.
49658          * @param {Roo.HtmlEditorCore} this
49659          * @param {String} html
49660          */
49661         beforepush: true,
49662          /**
49663          * @event sync
49664          * Fires when the textarea is updated with content from the editor iframe.
49665          * @param {Roo.HtmlEditorCore} this
49666          * @param {String} html
49667          */
49668         sync: true,
49669          /**
49670          * @event push
49671          * Fires when the iframe editor is updated with content from the textarea.
49672          * @param {Roo.HtmlEditorCore} this
49673          * @param {String} html
49674          */
49675         push: true,
49676         
49677         /**
49678          * @event editorevent
49679          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
49680          * @param {Roo.HtmlEditorCore} this
49681          */
49682         editorevent: true 
49683          
49684         
49685     });
49686     
49687     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
49688     
49689     // defaults : white / black...
49690     this.applyBlacklists();
49691     
49692     
49693     
49694 };
49695
49696
49697 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
49698
49699
49700      /**
49701      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
49702      */
49703     
49704     owner : false,
49705     
49706      /**
49707      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
49708      *                        Roo.resizable.
49709      */
49710     resizable : false,
49711      /**
49712      * @cfg {Number} height (in pixels)
49713      */   
49714     height: 300,
49715    /**
49716      * @cfg {Number} width (in pixels)
49717      */   
49718     width: 500,
49719      /**
49720      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
49721      *         if you are doing an email editor, this probably needs disabling, it's designed
49722      */
49723     autoClean: true,
49724     
49725     /**
49726      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
49727      */
49728     enableBlocks : true,
49729     /**
49730      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
49731      * 
49732      */
49733     stylesheets: false,
49734      /**
49735      * @cfg {String} language default en - language of text (usefull for rtl languages)
49736      * 
49737      */
49738     language: 'en',
49739     
49740     /**
49741      * @cfg {boolean} allowComments - default false - allow comments in HTML source
49742      *          - by default they are stripped - if you are editing email you may need this.
49743      */
49744     allowComments: false,
49745     // id of frame..
49746     frameId: false,
49747     
49748     // private properties
49749     validationEvent : false,
49750     deferHeight: true,
49751     initialized : false,
49752     activated : false,
49753     sourceEditMode : false,
49754     onFocus : Roo.emptyFn,
49755     iframePad:3,
49756     hideMode:'offsets',
49757     
49758     clearUp: true,
49759     
49760     // blacklist + whitelisted elements..
49761     black: false,
49762     white: false,
49763      
49764     bodyCls : '',
49765
49766     
49767     undoManager : false,
49768     /**
49769      * Protected method that will not generally be called directly. It
49770      * is called when the editor initializes the iframe with HTML contents. Override this method if you
49771      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
49772      */
49773     getDocMarkup : function(){
49774         // body styles..
49775         var st = '';
49776         
49777         // inherit styels from page...?? 
49778         if (this.stylesheets === false) {
49779             
49780             Roo.get(document.head).select('style').each(function(node) {
49781                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
49782             });
49783             
49784             Roo.get(document.head).select('link').each(function(node) { 
49785                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
49786             });
49787             
49788         } else if (!this.stylesheets.length) {
49789                 // simple..
49790                 st = '<style type="text/css">' +
49791                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
49792                    '</style>';
49793         } else {
49794             for (var i in this.stylesheets) {
49795                 if (typeof(this.stylesheets[i]) != 'string') {
49796                     continue;
49797                 }
49798                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
49799             }
49800             
49801         }
49802         
49803         st +=  '<style type="text/css">' +
49804             'IMG { cursor: pointer } ' +
49805         '</style>';
49806         
49807         st += '<meta name="google" content="notranslate">';
49808         
49809         var cls = 'notranslate roo-htmleditor-body';
49810         
49811         if(this.bodyCls.length){
49812             cls += ' ' + this.bodyCls;
49813         }
49814         
49815         return '<html  class="notranslate" translate="no"><head>' + st  +
49816             //<style type="text/css">' +
49817             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
49818             //'</style>' +
49819             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
49820     },
49821
49822     // private
49823     onRender : function(ct, position)
49824     {
49825         var _t = this;
49826         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
49827         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
49828         
49829         
49830         this.el.dom.style.border = '0 none';
49831         this.el.dom.setAttribute('tabIndex', -1);
49832         this.el.addClass('x-hidden hide');
49833         
49834         
49835         
49836         if(Roo.isIE){ // fix IE 1px bogus margin
49837             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
49838         }
49839        
49840         
49841         this.frameId = Roo.id();
49842         
49843          
49844         
49845         var iframe = this.owner.wrap.createChild({
49846             tag: 'iframe',
49847             cls: 'form-control', // bootstrap..
49848             id: this.frameId,
49849             name: this.frameId,
49850             frameBorder : 'no',
49851             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
49852         }, this.el
49853         );
49854         
49855         
49856         this.iframe = iframe.dom;
49857
49858         this.assignDocWin();
49859         
49860         this.doc.designMode = 'on';
49861        
49862         this.doc.open();
49863         this.doc.write(this.getDocMarkup());
49864         this.doc.close();
49865
49866         
49867         var task = { // must defer to wait for browser to be ready
49868             run : function(){
49869                 //console.log("run task?" + this.doc.readyState);
49870                 this.assignDocWin();
49871                 if(this.doc.body || this.doc.readyState == 'complete'){
49872                     try {
49873                         this.doc.designMode="on";
49874                         
49875                     } catch (e) {
49876                         return;
49877                     }
49878                     Roo.TaskMgr.stop(task);
49879                     this.initEditor.defer(10, this);
49880                 }
49881             },
49882             interval : 10,
49883             duration: 10000,
49884             scope: this
49885         };
49886         Roo.TaskMgr.start(task);
49887
49888     },
49889
49890     // private
49891     onResize : function(w, h)
49892     {
49893          Roo.log('resize: ' +w + ',' + h );
49894         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
49895         if(!this.iframe){
49896             return;
49897         }
49898         if(typeof w == 'number'){
49899             
49900             this.iframe.style.width = w + 'px';
49901         }
49902         if(typeof h == 'number'){
49903             
49904             this.iframe.style.height = h + 'px';
49905             if(this.doc){
49906                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
49907             }
49908         }
49909         
49910     },
49911
49912     /**
49913      * Toggles the editor between standard and source edit mode.
49914      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
49915      */
49916     toggleSourceEdit : function(sourceEditMode){
49917         
49918         this.sourceEditMode = sourceEditMode === true;
49919         
49920         if(this.sourceEditMode){
49921  
49922             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
49923             
49924         }else{
49925             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
49926             //this.iframe.className = '';
49927             this.deferFocus();
49928         }
49929         //this.setSize(this.owner.wrap.getSize());
49930         //this.fireEvent('editmodechange', this, this.sourceEditMode);
49931     },
49932
49933     
49934   
49935
49936     /**
49937      * Protected method that will not generally be called directly. If you need/want
49938      * custom HTML cleanup, this is the method you should override.
49939      * @param {String} html The HTML to be cleaned
49940      * return {String} The cleaned HTML
49941      */
49942     cleanHtml : function(html)
49943     {
49944         html = String(html);
49945         if(html.length > 5){
49946             if(Roo.isSafari){ // strip safari nonsense
49947                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
49948             }
49949         }
49950         if(html == '&nbsp;'){
49951             html = '';
49952         }
49953         return html;
49954     },
49955
49956     /**
49957      * HTML Editor -> Textarea
49958      * Protected method that will not generally be called directly. Syncs the contents
49959      * of the editor iframe with the textarea.
49960      */
49961     syncValue : function()
49962     {
49963         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
49964         if(this.initialized){
49965             
49966             if (this.undoManager) {
49967                 this.undoManager.addEvent();
49968             }
49969
49970             
49971             var bd = (this.doc.body || this.doc.documentElement);
49972            
49973             
49974             var sel = this.win.getSelection();
49975             
49976             var div = document.createElement('div');
49977             div.innerHTML = bd.innerHTML;
49978             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
49979             if (gtx.length > 0) {
49980                 var rm = gtx.item(0).parentNode;
49981                 rm.parentNode.removeChild(rm);
49982             }
49983             
49984            
49985             if (this.enableBlocks) {
49986                 new Roo.htmleditor.FilterBlock({ node : div });
49987             }
49988             //?? tidy?
49989             var tidy = new Roo.htmleditor.TidySerializer({
49990                 inner:  true
49991             });
49992             var html  = tidy.serialize(div);
49993             
49994             
49995             if(Roo.isSafari){
49996                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
49997                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
49998                 if(m && m[1]){
49999                     html = '<div style="'+m[0]+'">' + html + '</div>';
50000                 }
50001             }
50002             html = this.cleanHtml(html);
50003             // fix up the special chars.. normaly like back quotes in word...
50004             // however we do not want to do this with chinese..
50005             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
50006                 
50007                 var cc = match.charCodeAt();
50008
50009                 // Get the character value, handling surrogate pairs
50010                 if (match.length == 2) {
50011                     // It's a surrogate pair, calculate the Unicode code point
50012                     var high = match.charCodeAt(0) - 0xD800;
50013                     var low  = match.charCodeAt(1) - 0xDC00;
50014                     cc = (high * 0x400) + low + 0x10000;
50015                 }  else if (
50016                     (cc >= 0x4E00 && cc < 0xA000 ) ||
50017                     (cc >= 0x3400 && cc < 0x4E00 ) ||
50018                     (cc >= 0xf900 && cc < 0xfb00 )
50019                 ) {
50020                         return match;
50021                 }  
50022          
50023                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
50024                 return "&#" + cc + ";";
50025                 
50026                 
50027             });
50028             
50029             
50030              
50031             if(this.owner.fireEvent('beforesync', this, html) !== false){
50032                 this.el.dom.value = html;
50033                 this.owner.fireEvent('sync', this, html);
50034             }
50035         }
50036     },
50037
50038     /**
50039      * TEXTAREA -> EDITABLE
50040      * Protected method that will not generally be called directly. Pushes the value of the textarea
50041      * into the iframe editor.
50042      */
50043     pushValue : function()
50044     {
50045         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
50046         if(this.initialized){
50047             var v = this.el.dom.value.trim();
50048             
50049             
50050             if(this.owner.fireEvent('beforepush', this, v) !== false){
50051                 var d = (this.doc.body || this.doc.documentElement);
50052                 d.innerHTML = v;
50053                  
50054                 this.el.dom.value = d.innerHTML;
50055                 this.owner.fireEvent('push', this, v);
50056             }
50057             if (this.autoClean) {
50058                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
50059                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
50060             }
50061             if (this.enableBlocks) {
50062                 Roo.htmleditor.Block.initAll(this.doc.body);
50063             }
50064             
50065             this.updateLanguage();
50066             
50067             var lc = this.doc.body.lastChild;
50068             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
50069                 // add an extra line at the end.
50070                 this.doc.body.appendChild(this.doc.createElement('br'));
50071             }
50072             
50073             
50074         }
50075     },
50076
50077     // private
50078     deferFocus : function(){
50079         this.focus.defer(10, this);
50080     },
50081
50082     // doc'ed in Field
50083     focus : function(){
50084         if(this.win && !this.sourceEditMode){
50085             this.win.focus();
50086         }else{
50087             this.el.focus();
50088         }
50089     },
50090     
50091     assignDocWin: function()
50092     {
50093         var iframe = this.iframe;
50094         
50095          if(Roo.isIE){
50096             this.doc = iframe.contentWindow.document;
50097             this.win = iframe.contentWindow;
50098         } else {
50099 //            if (!Roo.get(this.frameId)) {
50100 //                return;
50101 //            }
50102 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50103 //            this.win = Roo.get(this.frameId).dom.contentWindow;
50104             
50105             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
50106                 return;
50107             }
50108             
50109             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50110             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
50111         }
50112     },
50113     
50114     // private
50115     initEditor : function(){
50116         //console.log("INIT EDITOR");
50117         this.assignDocWin();
50118         
50119         
50120         
50121         this.doc.designMode="on";
50122         this.doc.open();
50123         this.doc.write(this.getDocMarkup());
50124         this.doc.close();
50125         
50126         var dbody = (this.doc.body || this.doc.documentElement);
50127         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
50128         // this copies styles from the containing element into thsi one..
50129         // not sure why we need all of this..
50130         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
50131         
50132         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
50133         //ss['background-attachment'] = 'fixed'; // w3c
50134         dbody.bgProperties = 'fixed'; // ie
50135         dbody.setAttribute("translate", "no");
50136         
50137         //Roo.DomHelper.applyStyles(dbody, ss);
50138         Roo.EventManager.on(this.doc, {
50139              
50140             'mouseup': this.onEditorEvent,
50141             'dblclick': this.onEditorEvent,
50142             'click': this.onEditorEvent,
50143             'keyup': this.onEditorEvent,
50144             
50145             buffer:100,
50146             scope: this
50147         });
50148         Roo.EventManager.on(this.doc, {
50149             'paste': this.onPasteEvent,
50150             scope : this
50151         });
50152         if(Roo.isGecko){
50153             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
50154         }
50155         //??? needed???
50156         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
50157             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
50158         }
50159         this.initialized = true;
50160
50161         
50162         // initialize special key events - enter
50163         new Roo.htmleditor.KeyEnter({core : this});
50164         
50165          
50166         
50167         this.owner.fireEvent('initialize', this);
50168         this.pushValue();
50169     },
50170     // this is to prevent a href clicks resulting in a redirect?
50171    
50172     onPasteEvent : function(e,v)
50173     {
50174         // I think we better assume paste is going to be a dirty load of rubish from word..
50175         
50176         // even pasting into a 'email version' of this widget will have to clean up that mess.
50177         var cd = (e.browserEvent.clipboardData || window.clipboardData);
50178         
50179         // check what type of paste - if it's an image, then handle it differently.
50180         if (cd.files && cd.files.length > 0) {
50181             // pasting images?
50182             var urlAPI = (window.createObjectURL && window) || 
50183                 (window.URL && URL.revokeObjectURL && URL) || 
50184                 (window.webkitURL && webkitURL);
50185     
50186             var url = urlAPI.createObjectURL( cd.files[0]);
50187             this.insertAtCursor('<img src=" + url + ">');
50188             return false;
50189         }
50190         if (cd.types.indexOf('text/html') < 0 ) {
50191             return false;
50192         }
50193         var images = [];
50194         var html = cd.getData('text/html'); // clipboard event
50195         if (cd.types.indexOf('text/rtf') > -1) {
50196             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
50197             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
50198         }
50199         //Roo.log(images);
50200         //Roo.log(imgs);
50201         // fixme..
50202         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
50203                        .map(function(g) { return g.toDataURL(); })
50204                        .filter(function(g) { return g != 'about:blank'; });
50205         
50206         
50207         html = this.cleanWordChars(html);
50208         
50209         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
50210         
50211         
50212         var sn = this.getParentElement();
50213         // check if d contains a table, and prevent nesting??
50214         //Roo.log(d.getElementsByTagName('table'));
50215         //Roo.log(sn);
50216         //Roo.log(sn.closest('table'));
50217         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
50218             e.preventDefault();
50219             this.insertAtCursor("You can not nest tables");
50220             //Roo.log("prevent?"); // fixme - 
50221             return false;
50222         }
50223         
50224         if (images.length > 0) {
50225             Roo.each(d.getElementsByTagName('img'), function(img, i) {
50226                 img.setAttribute('src', images[i]);
50227             });
50228         }
50229         if (this.autoClean) {
50230             new Roo.htmleditor.FilterWord({ node : d });
50231             
50232             new Roo.htmleditor.FilterStyleToTag({ node : d });
50233             new Roo.htmleditor.FilterAttributes({
50234                 node : d,
50235                 attrib_white : ['href', 'src', 'name', 'align', 'colspan', 'rowspan', 'data-display', 'data-width'],
50236                 attrib_clean : ['href', 'src' ] 
50237             });
50238             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
50239             // should be fonts..
50240             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', 'O:P' ]} );
50241             new Roo.htmleditor.FilterParagraph({ node : d });
50242             new Roo.htmleditor.FilterSpan({ node : d });
50243             new Roo.htmleditor.FilterLongBr({ node : d });
50244             new Roo.htmleditor.FilterComment({ node : d });
50245             
50246             
50247         }
50248         if (this.enableBlocks) {
50249                 
50250             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
50251                 if (img.closest('figure')) { // assume!! that it's aready
50252                     return;
50253                 }
50254                 var fig  = new Roo.htmleditor.BlockFigure({
50255                     image_src  : img.src
50256                 });
50257                 fig.updateElement(img); // replace it..
50258                 
50259             });
50260         }
50261         
50262         
50263         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
50264         if (this.enableBlocks) {
50265             Roo.htmleditor.Block.initAll(this.doc.body);
50266         }
50267          
50268         
50269         e.preventDefault();
50270         return false;
50271         // default behaveiour should be our local cleanup paste? (optional?)
50272         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
50273         //this.owner.fireEvent('paste', e, v);
50274     },
50275     // private
50276     onDestroy : function(){
50277         
50278         
50279         
50280         if(this.rendered){
50281             
50282             //for (var i =0; i < this.toolbars.length;i++) {
50283             //    // fixme - ask toolbars for heights?
50284             //    this.toolbars[i].onDestroy();
50285            // }
50286             
50287             //this.wrap.dom.innerHTML = '';
50288             //this.wrap.remove();
50289         }
50290     },
50291
50292     // private
50293     onFirstFocus : function(){
50294         
50295         this.assignDocWin();
50296         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
50297         
50298         this.activated = true;
50299          
50300     
50301         if(Roo.isGecko){ // prevent silly gecko errors
50302             this.win.focus();
50303             var s = this.win.getSelection();
50304             if(!s.focusNode || s.focusNode.nodeType != 3){
50305                 var r = s.getRangeAt(0);
50306                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
50307                 r.collapse(true);
50308                 this.deferFocus();
50309             }
50310             try{
50311                 this.execCmd('useCSS', true);
50312                 this.execCmd('styleWithCSS', false);
50313             }catch(e){}
50314         }
50315         this.owner.fireEvent('activate', this);
50316     },
50317
50318     // private
50319     adjustFont: function(btn){
50320         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
50321         //if(Roo.isSafari){ // safari
50322         //    adjust *= 2;
50323        // }
50324         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
50325         if(Roo.isSafari){ // safari
50326             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
50327             v =  (v < 10) ? 10 : v;
50328             v =  (v > 48) ? 48 : v;
50329             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
50330             
50331         }
50332         
50333         
50334         v = Math.max(1, v+adjust);
50335         
50336         this.execCmd('FontSize', v  );
50337     },
50338
50339     onEditorEvent : function(e)
50340     {
50341          
50342         
50343         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
50344             return; // we do not handle this.. (undo manager does..)
50345         }
50346         // in theory this detects if the last element is not a br, then we try and do that.
50347         // its so clicking in space at bottom triggers adding a br and moving the cursor.
50348         if (e &&
50349             e.target.nodeName == 'BODY' &&
50350             e.type == "mouseup" &&
50351             this.doc.body.lastChild
50352            ) {
50353             var lc = this.doc.body.lastChild;
50354             // gtx-trans is google translate plugin adding crap.
50355             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
50356                 lc = lc.previousSibling;
50357             }
50358             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
50359             // if last element is <BR> - then dont do anything.
50360             
50361                 var ns = this.doc.createElement('br');
50362                 this.doc.body.appendChild(ns);
50363                 range = this.doc.createRange();
50364                 range.setStartAfter(ns);
50365                 range.collapse(true);
50366                 var sel = this.win.getSelection();
50367                 sel.removeAllRanges();
50368                 sel.addRange(range);
50369             }
50370         }
50371         
50372         
50373         
50374         this.fireEditorEvent(e);
50375       //  this.updateToolbar();
50376         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
50377     },
50378     
50379     fireEditorEvent: function(e)
50380     {
50381         this.owner.fireEvent('editorevent', this, e);
50382     },
50383
50384     insertTag : function(tg)
50385     {
50386         // could be a bit smarter... -> wrap the current selected tRoo..
50387         if (tg.toLowerCase() == 'span' ||
50388             tg.toLowerCase() == 'code' ||
50389             tg.toLowerCase() == 'sup' ||
50390             tg.toLowerCase() == 'sub' 
50391             ) {
50392             
50393             range = this.createRange(this.getSelection());
50394             var wrappingNode = this.doc.createElement(tg.toLowerCase());
50395             wrappingNode.appendChild(range.extractContents());
50396             range.insertNode(wrappingNode);
50397
50398             return;
50399             
50400             
50401             
50402         }
50403         this.execCmd("formatblock",   tg);
50404         this.undoManager.addEvent(); 
50405     },
50406     
50407     insertText : function(txt)
50408     {
50409         
50410         
50411         var range = this.createRange();
50412         range.deleteContents();
50413                //alert(Sender.getAttribute('label'));
50414                
50415         range.insertNode(this.doc.createTextNode(txt));
50416         this.undoManager.addEvent();
50417     } ,
50418     
50419      
50420
50421     /**
50422      * Executes a Midas editor command on the editor document and performs necessary focus and
50423      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
50424      * @param {String} cmd The Midas command
50425      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50426      */
50427     relayCmd : function(cmd, value)
50428     {
50429         
50430         switch (cmd) {
50431             case 'justifyleft':
50432             case 'justifyright':
50433             case 'justifycenter':
50434                 // if we are in a cell, then we will adjust the
50435                 var n = this.getParentElement();
50436                 var td = n.closest('td');
50437                 if (td) {
50438                     var bl = Roo.htmleditor.Block.factory(td);
50439                     bl.textAlign = cmd.replace('justify','');
50440                     bl.updateElement();
50441                     this.owner.fireEvent('editorevent', this);
50442                     return;
50443                 }
50444                 this.execCmd('styleWithCSS', true); // 
50445                 break;
50446             case 'bold':
50447             case 'italic':
50448                 // if there is no selection, then we insert, and set the curson inside it..
50449                 this.execCmd('styleWithCSS', false); 
50450                 break;
50451                 
50452         
50453             default:
50454                 break;
50455         }
50456         
50457         
50458         this.win.focus();
50459         this.execCmd(cmd, value);
50460         this.owner.fireEvent('editorevent', this);
50461         //this.updateToolbar();
50462         this.owner.deferFocus();
50463     },
50464
50465     /**
50466      * Executes a Midas editor command directly on the editor document.
50467      * For visual commands, you should use {@link #relayCmd} instead.
50468      * <b>This should only be called after the editor is initialized.</b>
50469      * @param {String} cmd The Midas command
50470      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50471      */
50472     execCmd : function(cmd, value){
50473         this.doc.execCommand(cmd, false, value === undefined ? null : value);
50474         this.syncValue();
50475     },
50476  
50477  
50478    
50479     /**
50480      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
50481      * to insert tRoo.
50482      * @param {String} text | dom node.. 
50483      */
50484     insertAtCursor : function(text)
50485     {
50486         
50487         if(!this.activated){
50488             return;
50489         }
50490          
50491         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
50492             this.win.focus();
50493             
50494             
50495             // from jquery ui (MIT licenced)
50496             var range, node;
50497             var win = this.win;
50498             
50499             if (win.getSelection && win.getSelection().getRangeAt) {
50500                 
50501                 // delete the existing?
50502                 
50503                 this.createRange(this.getSelection()).deleteContents();
50504                 range = win.getSelection().getRangeAt(0);
50505                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
50506                 range.insertNode(node);
50507                 range = range.cloneRange();
50508                 range.collapse(false);
50509                  
50510                 win.getSelection().removeAllRanges();
50511                 win.getSelection().addRange(range);
50512                 
50513                 
50514                 
50515             } else if (win.document.selection && win.document.selection.createRange) {
50516                 // no firefox support
50517                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50518                 win.document.selection.createRange().pasteHTML(txt);
50519             
50520             } else {
50521                 // no firefox support
50522                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50523                 this.execCmd('InsertHTML', txt);
50524             } 
50525             this.syncValue();
50526             
50527             this.deferFocus();
50528         }
50529     },
50530  // private
50531     mozKeyPress : function(e){
50532         if(e.ctrlKey){
50533             var c = e.getCharCode(), cmd;
50534           
50535             if(c > 0){
50536                 c = String.fromCharCode(c).toLowerCase();
50537                 switch(c){
50538                     case 'b':
50539                         cmd = 'bold';
50540                         break;
50541                     case 'i':
50542                         cmd = 'italic';
50543                         break;
50544                     
50545                     case 'u':
50546                         cmd = 'underline';
50547                         break;
50548                     
50549                     //case 'v':
50550                       //  this.cleanUpPaste.defer(100, this);
50551                       //  return;
50552                         
50553                 }
50554                 if(cmd){
50555                     
50556                     this.relayCmd(cmd);
50557                     //this.win.focus();
50558                     //this.execCmd(cmd);
50559                     //this.deferFocus();
50560                     e.preventDefault();
50561                 }
50562                 
50563             }
50564         }
50565     },
50566
50567     // private
50568     fixKeys : function(){ // load time branching for fastest keydown performance
50569         
50570         
50571         if(Roo.isIE){
50572             return function(e){
50573                 var k = e.getKey(), r;
50574                 if(k == e.TAB){
50575                     e.stopEvent();
50576                     r = this.doc.selection.createRange();
50577                     if(r){
50578                         r.collapse(true);
50579                         r.pasteHTML('&#160;&#160;&#160;&#160;');
50580                         this.deferFocus();
50581                     }
50582                     return;
50583                 }
50584                 /// this is handled by Roo.htmleditor.KeyEnter
50585                  /*
50586                 if(k == e.ENTER){
50587                     r = this.doc.selection.createRange();
50588                     if(r){
50589                         var target = r.parentElement();
50590                         if(!target || target.tagName.toLowerCase() != 'li'){
50591                             e.stopEvent();
50592                             r.pasteHTML('<br/>');
50593                             r.collapse(false);
50594                             r.select();
50595                         }
50596                     }
50597                 }
50598                 */
50599                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50600                 //    this.cleanUpPaste.defer(100, this);
50601                 //    return;
50602                 //}
50603                 
50604                 
50605             };
50606         }else if(Roo.isOpera){
50607             return function(e){
50608                 var k = e.getKey();
50609                 if(k == e.TAB){
50610                     e.stopEvent();
50611                     this.win.focus();
50612                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
50613                     this.deferFocus();
50614                 }
50615                
50616                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50617                 //    this.cleanUpPaste.defer(100, this);
50618                  //   return;
50619                 //}
50620                 
50621             };
50622         }else if(Roo.isSafari){
50623             return function(e){
50624                 var k = e.getKey();
50625                 
50626                 if(k == e.TAB){
50627                     e.stopEvent();
50628                     this.execCmd('InsertText','\t');
50629                     this.deferFocus();
50630                     return;
50631                 }
50632                  this.mozKeyPress(e);
50633                 
50634                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50635                  //   this.cleanUpPaste.defer(100, this);
50636                  //   return;
50637                // }
50638                 
50639              };
50640         }
50641     }(),
50642     
50643     getAllAncestors: function()
50644     {
50645         var p = this.getSelectedNode();
50646         var a = [];
50647         if (!p) {
50648             a.push(p); // push blank onto stack..
50649             p = this.getParentElement();
50650         }
50651         
50652         
50653         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
50654             a.push(p);
50655             p = p.parentNode;
50656         }
50657         a.push(this.doc.body);
50658         return a;
50659     },
50660     lastSel : false,
50661     lastSelNode : false,
50662     
50663     
50664     getSelection : function() 
50665     {
50666         this.assignDocWin();
50667         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
50668     },
50669     /**
50670      * Select a dom node
50671      * @param {DomElement} node the node to select
50672      */
50673     selectNode : function(node, collapse)
50674     {
50675         var nodeRange = node.ownerDocument.createRange();
50676         try {
50677             nodeRange.selectNode(node);
50678         } catch (e) {
50679             nodeRange.selectNodeContents(node);
50680         }
50681         if (collapse === true) {
50682             nodeRange.collapse(true);
50683         }
50684         //
50685         var s = this.win.getSelection();
50686         s.removeAllRanges();
50687         s.addRange(nodeRange);
50688     },
50689     
50690     getSelectedNode: function() 
50691     {
50692         // this may only work on Gecko!!!
50693         
50694         // should we cache this!!!!
50695         
50696          
50697          
50698         var range = this.createRange(this.getSelection()).cloneRange();
50699         
50700         if (Roo.isIE) {
50701             var parent = range.parentElement();
50702             while (true) {
50703                 var testRange = range.duplicate();
50704                 testRange.moveToElementText(parent);
50705                 if (testRange.inRange(range)) {
50706                     break;
50707                 }
50708                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
50709                     break;
50710                 }
50711                 parent = parent.parentElement;
50712             }
50713             return parent;
50714         }
50715         
50716         // is ancestor a text element.
50717         var ac =  range.commonAncestorContainer;
50718         if (ac.nodeType == 3) {
50719             ac = ac.parentNode;
50720         }
50721         
50722         var ar = ac.childNodes;
50723          
50724         var nodes = [];
50725         var other_nodes = [];
50726         var has_other_nodes = false;
50727         for (var i=0;i<ar.length;i++) {
50728             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
50729                 continue;
50730             }
50731             // fullly contained node.
50732             
50733             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
50734                 nodes.push(ar[i]);
50735                 continue;
50736             }
50737             
50738             // probably selected..
50739             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
50740                 other_nodes.push(ar[i]);
50741                 continue;
50742             }
50743             // outer..
50744             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
50745                 continue;
50746             }
50747             
50748             
50749             has_other_nodes = true;
50750         }
50751         if (!nodes.length && other_nodes.length) {
50752             nodes= other_nodes;
50753         }
50754         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
50755             return false;
50756         }
50757         
50758         return nodes[0];
50759     },
50760     
50761     
50762     createRange: function(sel)
50763     {
50764         // this has strange effects when using with 
50765         // top toolbar - not sure if it's a great idea.
50766         //this.editor.contentWindow.focus();
50767         if (typeof sel != "undefined") {
50768             try {
50769                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
50770             } catch(e) {
50771                 return this.doc.createRange();
50772             }
50773         } else {
50774             return this.doc.createRange();
50775         }
50776     },
50777     getParentElement: function()
50778     {
50779         
50780         this.assignDocWin();
50781         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
50782         
50783         var range = this.createRange(sel);
50784          
50785         try {
50786             var p = range.commonAncestorContainer;
50787             while (p.nodeType == 3) { // text node
50788                 p = p.parentNode;
50789             }
50790             return p;
50791         } catch (e) {
50792             return null;
50793         }
50794     
50795     },
50796     /***
50797      *
50798      * Range intersection.. the hard stuff...
50799      *  '-1' = before
50800      *  '0' = hits..
50801      *  '1' = after.
50802      *         [ -- selected range --- ]
50803      *   [fail]                        [fail]
50804      *
50805      *    basically..
50806      *      if end is before start or  hits it. fail.
50807      *      if start is after end or hits it fail.
50808      *
50809      *   if either hits (but other is outside. - then it's not 
50810      *   
50811      *    
50812      **/
50813     
50814     
50815     // @see http://www.thismuchiknow.co.uk/?p=64.
50816     rangeIntersectsNode : function(range, node)
50817     {
50818         var nodeRange = node.ownerDocument.createRange();
50819         try {
50820             nodeRange.selectNode(node);
50821         } catch (e) {
50822             nodeRange.selectNodeContents(node);
50823         }
50824     
50825         var rangeStartRange = range.cloneRange();
50826         rangeStartRange.collapse(true);
50827     
50828         var rangeEndRange = range.cloneRange();
50829         rangeEndRange.collapse(false);
50830     
50831         var nodeStartRange = nodeRange.cloneRange();
50832         nodeStartRange.collapse(true);
50833     
50834         var nodeEndRange = nodeRange.cloneRange();
50835         nodeEndRange.collapse(false);
50836     
50837         return rangeStartRange.compareBoundaryPoints(
50838                  Range.START_TO_START, nodeEndRange) == -1 &&
50839                rangeEndRange.compareBoundaryPoints(
50840                  Range.START_TO_START, nodeStartRange) == 1;
50841         
50842          
50843     },
50844     rangeCompareNode : function(range, node)
50845     {
50846         var nodeRange = node.ownerDocument.createRange();
50847         try {
50848             nodeRange.selectNode(node);
50849         } catch (e) {
50850             nodeRange.selectNodeContents(node);
50851         }
50852         
50853         
50854         range.collapse(true);
50855     
50856         nodeRange.collapse(true);
50857      
50858         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
50859         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
50860          
50861         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
50862         
50863         var nodeIsBefore   =  ss == 1;
50864         var nodeIsAfter    = ee == -1;
50865         
50866         if (nodeIsBefore && nodeIsAfter) {
50867             return 0; // outer
50868         }
50869         if (!nodeIsBefore && nodeIsAfter) {
50870             return 1; //right trailed.
50871         }
50872         
50873         if (nodeIsBefore && !nodeIsAfter) {
50874             return 2;  // left trailed.
50875         }
50876         // fully contined.
50877         return 3;
50878     },
50879  
50880     cleanWordChars : function(input) {// change the chars to hex code
50881         
50882        var swapCodes  = [ 
50883             [    8211, "&#8211;" ], 
50884             [    8212, "&#8212;" ], 
50885             [    8216,  "'" ],  
50886             [    8217, "'" ],  
50887             [    8220, '"' ],  
50888             [    8221, '"' ],  
50889             [    8226, "*" ],  
50890             [    8230, "..." ]
50891         ]; 
50892         var output = input;
50893         Roo.each(swapCodes, function(sw) { 
50894             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
50895             
50896             output = output.replace(swapper, sw[1]);
50897         });
50898         
50899         return output;
50900     },
50901     
50902      
50903     
50904         
50905     
50906     cleanUpChild : function (node)
50907     {
50908         
50909         new Roo.htmleditor.FilterComment({node : node});
50910         new Roo.htmleditor.FilterAttributes({
50911                 node : node,
50912                 attrib_black : this.ablack,
50913                 attrib_clean : this.aclean,
50914                 style_white : this.cwhite,
50915                 style_black : this.cblack
50916         });
50917         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
50918         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
50919          
50920         
50921     },
50922     
50923     /**
50924      * Clean up MS wordisms...
50925      * @deprecated - use filter directly
50926      */
50927     cleanWord : function(node)
50928     {
50929         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
50930         
50931     },
50932    
50933     
50934     /**
50935
50936      * @deprecated - use filters
50937      */
50938     cleanTableWidths : function(node)
50939     {
50940         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
50941         
50942  
50943     },
50944     
50945      
50946         
50947     applyBlacklists : function()
50948     {
50949         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
50950         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
50951         
50952         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
50953         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
50954         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
50955         
50956         this.white = [];
50957         this.black = [];
50958         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
50959             if (b.indexOf(tag) > -1) {
50960                 return;
50961             }
50962             this.white.push(tag);
50963             
50964         }, this);
50965         
50966         Roo.each(w, function(tag) {
50967             if (b.indexOf(tag) > -1) {
50968                 return;
50969             }
50970             if (this.white.indexOf(tag) > -1) {
50971                 return;
50972             }
50973             this.white.push(tag);
50974             
50975         }, this);
50976         
50977         
50978         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
50979             if (w.indexOf(tag) > -1) {
50980                 return;
50981             }
50982             this.black.push(tag);
50983             
50984         }, this);
50985         
50986         Roo.each(b, function(tag) {
50987             if (w.indexOf(tag) > -1) {
50988                 return;
50989             }
50990             if (this.black.indexOf(tag) > -1) {
50991                 return;
50992             }
50993             this.black.push(tag);
50994             
50995         }, this);
50996         
50997         
50998         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
50999         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
51000         
51001         this.cwhite = [];
51002         this.cblack = [];
51003         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
51004             if (b.indexOf(tag) > -1) {
51005                 return;
51006             }
51007             this.cwhite.push(tag);
51008             
51009         }, this);
51010         
51011         Roo.each(w, function(tag) {
51012             if (b.indexOf(tag) > -1) {
51013                 return;
51014             }
51015             if (this.cwhite.indexOf(tag) > -1) {
51016                 return;
51017             }
51018             this.cwhite.push(tag);
51019             
51020         }, this);
51021         
51022         
51023         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
51024             if (w.indexOf(tag) > -1) {
51025                 return;
51026             }
51027             this.cblack.push(tag);
51028             
51029         }, this);
51030         
51031         Roo.each(b, function(tag) {
51032             if (w.indexOf(tag) > -1) {
51033                 return;
51034             }
51035             if (this.cblack.indexOf(tag) > -1) {
51036                 return;
51037             }
51038             this.cblack.push(tag);
51039             
51040         }, this);
51041     },
51042     
51043     setStylesheets : function(stylesheets)
51044     {
51045         if(typeof(stylesheets) == 'string'){
51046             Roo.get(this.iframe.contentDocument.head).createChild({
51047                 tag : 'link',
51048                 rel : 'stylesheet',
51049                 type : 'text/css',
51050                 href : stylesheets
51051             });
51052             
51053             return;
51054         }
51055         var _this = this;
51056      
51057         Roo.each(stylesheets, function(s) {
51058             if(!s.length){
51059                 return;
51060             }
51061             
51062             Roo.get(_this.iframe.contentDocument.head).createChild({
51063                 tag : 'link',
51064                 rel : 'stylesheet',
51065                 type : 'text/css',
51066                 href : s
51067             });
51068         });
51069
51070         
51071     },
51072     
51073     
51074     updateLanguage : function()
51075     {
51076         if (!this.iframe || !this.iframe.contentDocument) {
51077             return;
51078         }
51079         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
51080     },
51081     
51082     
51083     removeStylesheets : function()
51084     {
51085         var _this = this;
51086         
51087         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
51088             s.remove();
51089         });
51090     },
51091     
51092     setStyle : function(style)
51093     {
51094         Roo.get(this.iframe.contentDocument.head).createChild({
51095             tag : 'style',
51096             type : 'text/css',
51097             html : style
51098         });
51099
51100         return;
51101     }
51102     
51103     // hide stuff that is not compatible
51104     /**
51105      * @event blur
51106      * @hide
51107      */
51108     /**
51109      * @event change
51110      * @hide
51111      */
51112     /**
51113      * @event focus
51114      * @hide
51115      */
51116     /**
51117      * @event specialkey
51118      * @hide
51119      */
51120     /**
51121      * @cfg {String} fieldClass @hide
51122      */
51123     /**
51124      * @cfg {String} focusClass @hide
51125      */
51126     /**
51127      * @cfg {String} autoCreate @hide
51128      */
51129     /**
51130      * @cfg {String} inputType @hide
51131      */
51132     /**
51133      * @cfg {String} invalidClass @hide
51134      */
51135     /**
51136      * @cfg {String} invalidText @hide
51137      */
51138     /**
51139      * @cfg {String} msgFx @hide
51140      */
51141     /**
51142      * @cfg {String} validateOnBlur @hide
51143      */
51144 });
51145
51146 Roo.HtmlEditorCore.white = [
51147         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
51148         
51149        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
51150        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
51151        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
51152        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
51153        'TABLE',   'UL',         'XMP', 
51154        
51155        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
51156       'THEAD',   'TR', 
51157      
51158       'DIR', 'MENU', 'OL', 'UL', 'DL',
51159        
51160       'EMBED',  'OBJECT'
51161 ];
51162
51163
51164 Roo.HtmlEditorCore.black = [
51165     //    'embed',  'object', // enable - backend responsiblity to clean thiese
51166         'APPLET', // 
51167         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
51168         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
51169         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
51170         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
51171         //'FONT' // CLEAN LATER..
51172         'COLGROUP', 'COL'   // messy tables.
51173         
51174         
51175 ];
51176 Roo.HtmlEditorCore.clean = [ // ?? needed???
51177      'SCRIPT', 'STYLE', 'TITLE', 'XML'
51178 ];
51179 Roo.HtmlEditorCore.tag_remove = [
51180     'FONT', 'TBODY'  
51181 ];
51182 // attributes..
51183
51184 Roo.HtmlEditorCore.ablack = [
51185     'on'
51186 ];
51187     
51188 Roo.HtmlEditorCore.aclean = [ 
51189     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
51190 ];
51191
51192 // protocols..
51193 Roo.HtmlEditorCore.pwhite= [
51194         'http',  'https',  'mailto'
51195 ];
51196
51197 // white listed style attributes.
51198 Roo.HtmlEditorCore.cwhite= [
51199       //  'text-align', /// default is to allow most things..
51200       
51201          
51202 //        'font-size'//??
51203 ];
51204
51205 // black listed style attributes.
51206 Roo.HtmlEditorCore.cblack= [
51207       //  'font-size' -- this can be set by the project 
51208 ];
51209
51210
51211
51212
51213     //<script type="text/javascript">
51214
51215 /*
51216  * Ext JS Library 1.1.1
51217  * Copyright(c) 2006-2007, Ext JS, LLC.
51218  * Licence LGPL
51219  * 
51220  */
51221  
51222  
51223 Roo.form.HtmlEditor = function(config){
51224     
51225     
51226     
51227     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
51228     
51229     if (!this.toolbars) {
51230         this.toolbars = [];
51231     }
51232     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
51233     
51234     
51235 };
51236
51237 /**
51238  * @class Roo.form.HtmlEditor
51239  * @extends Roo.form.Field
51240  * Provides a lightweight HTML Editor component.
51241  *
51242  * This has been tested on Fireforx / Chrome.. IE may not be so great..
51243  * 
51244  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
51245  * supported by this editor.</b><br/><br/>
51246  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
51247  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
51248  */
51249 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
51250     /**
51251      * @cfg {Boolean} clearUp
51252      */
51253     clearUp : true,
51254       /**
51255      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
51256      */
51257     toolbars : false,
51258    
51259      /**
51260      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
51261      *                        Roo.resizable.
51262      */
51263     resizable : false,
51264      /**
51265      * @cfg {Number} height (in pixels)
51266      */   
51267     height: 300,
51268    /**
51269      * @cfg {Number} width (in pixels)
51270      */   
51271     width: 500,
51272     
51273     /**
51274      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets - this is usally a good idea  rootURL + '/roojs1/css/undoreset.css',   .
51275      * 
51276      */
51277     stylesheets: false,
51278     
51279     
51280      /**
51281      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
51282      * 
51283      */
51284     cblack: false,
51285     /**
51286      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
51287      * 
51288      */
51289     cwhite: false,
51290     
51291      /**
51292      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
51293      * 
51294      */
51295     black: false,
51296     /**
51297      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
51298      * 
51299      */
51300     white: false,
51301     /**
51302      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
51303      */
51304     allowComments: false,
51305     /**
51306      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
51307      */
51308     enableBlocks : true,
51309     
51310     /**
51311      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
51312      *         if you are doing an email editor, this probably needs disabling, it's designed
51313      */
51314     autoClean: true,
51315     /**
51316      * @cfg {string} bodyCls default '' default classes to add to body of editable area - usually undoreset is a good start..
51317      */
51318     bodyCls : '',
51319     /**
51320      * @cfg {String} language default en - language of text (usefull for rtl languages)
51321      * 
51322      */
51323     language: 'en',
51324     
51325      
51326     // id of frame..
51327     frameId: false,
51328     
51329     // private properties
51330     validationEvent : false,
51331     deferHeight: true,
51332     initialized : false,
51333     activated : false,
51334     
51335     onFocus : Roo.emptyFn,
51336     iframePad:3,
51337     hideMode:'offsets',
51338     
51339     actionMode : 'container', // defaults to hiding it...
51340     
51341     defaultAutoCreate : { // modified by initCompnoent..
51342         tag: "textarea",
51343         style:"width:500px;height:300px;",
51344         autocomplete: "new-password"
51345     },
51346
51347     // private
51348     initComponent : function(){
51349         this.addEvents({
51350             /**
51351              * @event initialize
51352              * Fires when the editor is fully initialized (including the iframe)
51353              * @param {HtmlEditor} this
51354              */
51355             initialize: true,
51356             /**
51357              * @event activate
51358              * Fires when the editor is first receives the focus. Any insertion must wait
51359              * until after this event.
51360              * @param {HtmlEditor} this
51361              */
51362             activate: true,
51363              /**
51364              * @event beforesync
51365              * Fires before the textarea is updated with content from the editor iframe. Return false
51366              * to cancel the sync.
51367              * @param {HtmlEditor} this
51368              * @param {String} html
51369              */
51370             beforesync: true,
51371              /**
51372              * @event beforepush
51373              * Fires before the iframe editor is updated with content from the textarea. Return false
51374              * to cancel the push.
51375              * @param {HtmlEditor} this
51376              * @param {String} html
51377              */
51378             beforepush: true,
51379              /**
51380              * @event sync
51381              * Fires when the textarea is updated with content from the editor iframe.
51382              * @param {HtmlEditor} this
51383              * @param {String} html
51384              */
51385             sync: true,
51386              /**
51387              * @event push
51388              * Fires when the iframe editor is updated with content from the textarea.
51389              * @param {HtmlEditor} this
51390              * @param {String} html
51391              */
51392             push: true,
51393              /**
51394              * @event editmodechange
51395              * Fires when the editor switches edit modes
51396              * @param {HtmlEditor} this
51397              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
51398              */
51399             editmodechange: true,
51400             /**
51401              * @event editorevent
51402              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
51403              * @param {HtmlEditor} this
51404              */
51405             editorevent: true,
51406             /**
51407              * @event firstfocus
51408              * Fires when on first focus - needed by toolbars..
51409              * @param {HtmlEditor} this
51410              */
51411             firstfocus: true,
51412             /**
51413              * @event autosave
51414              * Auto save the htmlEditor value as a file into Events
51415              * @param {HtmlEditor} this
51416              */
51417             autosave: true,
51418             /**
51419              * @event savedpreview
51420              * preview the saved version of htmlEditor
51421              * @param {HtmlEditor} this
51422              */
51423             savedpreview: true,
51424             
51425             /**
51426             * @event stylesheetsclick
51427             * Fires when press the Sytlesheets button
51428             * @param {Roo.HtmlEditorCore} this
51429             */
51430             stylesheetsclick: true,
51431             /**
51432             * @event paste
51433             * Fires when press user pastes into the editor
51434             * @param {Roo.HtmlEditorCore} this
51435             */
51436             paste: true 
51437         });
51438         this.defaultAutoCreate =  {
51439             tag: "textarea",
51440             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
51441             autocomplete: "new-password"
51442         };
51443     },
51444
51445     /**
51446      * Protected method that will not generally be called directly. It
51447      * is called when the editor creates its toolbar. Override this method if you need to
51448      * add custom toolbar buttons.
51449      * @param {HtmlEditor} editor
51450      */
51451     createToolbar : function(editor){
51452         Roo.log("create toolbars");
51453         if (!editor.toolbars || !editor.toolbars.length) {
51454             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
51455         }
51456         
51457         for (var i =0 ; i < editor.toolbars.length;i++) {
51458             editor.toolbars[i] = Roo.factory(
51459                     typeof(editor.toolbars[i]) == 'string' ?
51460                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
51461                 Roo.form.HtmlEditor);
51462             editor.toolbars[i].init(editor);
51463         }
51464          
51465         
51466     },
51467     /**
51468      * get the Context selected node
51469      * @returns {DomElement|boolean} selected node if active or false if none
51470      * 
51471      */
51472     getSelectedNode : function()
51473     {
51474         if (this.toolbars.length < 2 || !this.toolbars[1].tb) {
51475             return false;
51476         }
51477         return this.toolbars[1].tb.selectedNode;
51478     
51479     },
51480     // private
51481     onRender : function(ct, position)
51482     {
51483         var _t = this;
51484         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
51485         
51486         this.wrap = this.el.wrap({
51487             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
51488         });
51489         
51490         this.editorcore.onRender(ct, position);
51491          
51492         if (this.resizable) {
51493             this.resizeEl = new Roo.Resizable(this.wrap, {
51494                 pinned : true,
51495                 wrap: true,
51496                 dynamic : true,
51497                 minHeight : this.height,
51498                 height: this.height,
51499                 handles : this.resizable,
51500                 width: this.width,
51501                 listeners : {
51502                     resize : function(r, w, h) {
51503                         _t.onResize(w,h); // -something
51504                     }
51505                 }
51506             });
51507             
51508         }
51509         this.createToolbar(this);
51510        
51511         
51512         if(!this.width){
51513             this.setSize(this.wrap.getSize());
51514         }
51515         if (this.resizeEl) {
51516             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
51517             // should trigger onReize..
51518         }
51519         
51520         this.keyNav = new Roo.KeyNav(this.el, {
51521             
51522             "tab" : function(e){
51523                 e.preventDefault();
51524                 
51525                 var value = this.getValue();
51526                 
51527                 var start = this.el.dom.selectionStart;
51528                 var end = this.el.dom.selectionEnd;
51529                 
51530                 if(!e.shiftKey){
51531                     
51532                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
51533                     this.el.dom.setSelectionRange(end + 1, end + 1);
51534                     return;
51535                 }
51536                 
51537                 var f = value.substring(0, start).split("\t");
51538                 
51539                 if(f.pop().length != 0){
51540                     return;
51541                 }
51542                 
51543                 this.setValue(f.join("\t") + value.substring(end));
51544                 this.el.dom.setSelectionRange(start - 1, start - 1);
51545                 
51546             },
51547             
51548             "home" : function(e){
51549                 e.preventDefault();
51550                 
51551                 var curr = this.el.dom.selectionStart;
51552                 var lines = this.getValue().split("\n");
51553                 
51554                 if(!lines.length){
51555                     return;
51556                 }
51557                 
51558                 if(e.ctrlKey){
51559                     this.el.dom.setSelectionRange(0, 0);
51560                     return;
51561                 }
51562                 
51563                 var pos = 0;
51564                 
51565                 for (var i = 0; i < lines.length;i++) {
51566                     pos += lines[i].length;
51567                     
51568                     if(i != 0){
51569                         pos += 1;
51570                     }
51571                     
51572                     if(pos < curr){
51573                         continue;
51574                     }
51575                     
51576                     pos -= lines[i].length;
51577                     
51578                     break;
51579                 }
51580                 
51581                 if(!e.shiftKey){
51582                     this.el.dom.setSelectionRange(pos, pos);
51583                     return;
51584                 }
51585                 
51586                 this.el.dom.selectionStart = pos;
51587                 this.el.dom.selectionEnd = curr;
51588             },
51589             
51590             "end" : function(e){
51591                 e.preventDefault();
51592                 
51593                 var curr = this.el.dom.selectionStart;
51594                 var lines = this.getValue().split("\n");
51595                 
51596                 if(!lines.length){
51597                     return;
51598                 }
51599                 
51600                 if(e.ctrlKey){
51601                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
51602                     return;
51603                 }
51604                 
51605                 var pos = 0;
51606                 
51607                 for (var i = 0; i < lines.length;i++) {
51608                     
51609                     pos += lines[i].length;
51610                     
51611                     if(i != 0){
51612                         pos += 1;
51613                     }
51614                     
51615                     if(pos < curr){
51616                         continue;
51617                     }
51618                     
51619                     break;
51620                 }
51621                 
51622                 if(!e.shiftKey){
51623                     this.el.dom.setSelectionRange(pos, pos);
51624                     return;
51625                 }
51626                 
51627                 this.el.dom.selectionStart = curr;
51628                 this.el.dom.selectionEnd = pos;
51629             },
51630
51631             scope : this,
51632
51633             doRelay : function(foo, bar, hname){
51634                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
51635             },
51636
51637             forceKeyDown: true
51638         });
51639         
51640 //        if(this.autosave && this.w){
51641 //            this.autoSaveFn = setInterval(this.autosave, 1000);
51642 //        }
51643     },
51644
51645     // private
51646     onResize : function(w, h)
51647     {
51648         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
51649         var ew = false;
51650         var eh = false;
51651         
51652         if(this.el ){
51653             if(typeof w == 'number'){
51654                 var aw = w - this.wrap.getFrameWidth('lr');
51655                 this.el.setWidth(this.adjustWidth('textarea', aw));
51656                 ew = aw;
51657             }
51658             if(typeof h == 'number'){
51659                 var tbh = 0;
51660                 for (var i =0; i < this.toolbars.length;i++) {
51661                     // fixme - ask toolbars for heights?
51662                     tbh += this.toolbars[i].tb.el.getHeight();
51663                     if (this.toolbars[i].footer) {
51664                         tbh += this.toolbars[i].footer.el.getHeight();
51665                     }
51666                 }
51667                 
51668                 
51669                 
51670                 
51671                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
51672                 ah -= 5; // knock a few pixes off for look..
51673 //                Roo.log(ah);
51674                 this.el.setHeight(this.adjustWidth('textarea', ah));
51675                 var eh = ah;
51676             }
51677         }
51678         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
51679         this.editorcore.onResize(ew,eh);
51680         
51681     },
51682
51683     /**
51684      * Toggles the editor between standard and source edit mode.
51685      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
51686      */
51687     toggleSourceEdit : function(sourceEditMode)
51688     {
51689         this.editorcore.toggleSourceEdit(sourceEditMode);
51690         
51691         if(this.editorcore.sourceEditMode){
51692             Roo.log('editor - showing textarea');
51693             
51694 //            Roo.log('in');
51695 //            Roo.log(this.syncValue());
51696             this.editorcore.syncValue();
51697             this.el.removeClass('x-hidden');
51698             this.el.dom.removeAttribute('tabIndex');
51699             this.el.focus();
51700             this.el.dom.scrollTop = 0;
51701             
51702             
51703             for (var i = 0; i < this.toolbars.length; i++) {
51704                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
51705                     this.toolbars[i].tb.hide();
51706                     this.toolbars[i].footer.hide();
51707                 }
51708             }
51709             
51710         }else{
51711             Roo.log('editor - hiding textarea');
51712 //            Roo.log('out')
51713 //            Roo.log(this.pushValue()); 
51714             this.editorcore.pushValue();
51715             
51716             this.el.addClass('x-hidden');
51717             this.el.dom.setAttribute('tabIndex', -1);
51718             
51719             for (var i = 0; i < this.toolbars.length; i++) {
51720                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
51721                     this.toolbars[i].tb.show();
51722                     this.toolbars[i].footer.show();
51723                 }
51724             }
51725             
51726             //this.deferFocus();
51727         }
51728         
51729         this.setSize(this.wrap.getSize());
51730         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
51731         
51732         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
51733     },
51734  
51735     // private (for BoxComponent)
51736     adjustSize : Roo.BoxComponent.prototype.adjustSize,
51737
51738     // private (for BoxComponent)
51739     getResizeEl : function(){
51740         return this.wrap;
51741     },
51742
51743     // private (for BoxComponent)
51744     getPositionEl : function(){
51745         return this.wrap;
51746     },
51747
51748     // private
51749     initEvents : function(){
51750         this.originalValue = this.getValue();
51751     },
51752
51753     /**
51754      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
51755      * @method
51756      */
51757     markInvalid : Roo.emptyFn,
51758     /**
51759      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
51760      * @method
51761      */
51762     clearInvalid : Roo.emptyFn,
51763
51764     setValue : function(v){
51765         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
51766         this.editorcore.pushValue();
51767     },
51768
51769     /**
51770      * update the language in the body - really done by core
51771      * @param {String} language - eg. en / ar / zh-CN etc..
51772      */
51773     updateLanguage : function(lang)
51774     {
51775         this.language = lang;
51776         this.editorcore.language = lang;
51777         this.editorcore.updateLanguage();
51778      
51779     },
51780     // private
51781     deferFocus : function(){
51782         this.focus.defer(10, this);
51783     },
51784
51785     // doc'ed in Field
51786     focus : function(){
51787         this.editorcore.focus();
51788         
51789     },
51790       
51791
51792     // private
51793     onDestroy : function(){
51794         
51795         
51796         
51797         if(this.rendered){
51798             
51799             for (var i =0; i < this.toolbars.length;i++) {
51800                 // fixme - ask toolbars for heights?
51801                 this.toolbars[i].onDestroy();
51802             }
51803             
51804             this.wrap.dom.innerHTML = '';
51805             this.wrap.remove();
51806         }
51807     },
51808
51809     // private
51810     onFirstFocus : function(){
51811         //Roo.log("onFirstFocus");
51812         this.editorcore.onFirstFocus();
51813          for (var i =0; i < this.toolbars.length;i++) {
51814             this.toolbars[i].onFirstFocus();
51815         }
51816         
51817     },
51818     
51819     // private
51820     syncValue : function()
51821     {
51822         this.editorcore.syncValue();
51823     },
51824     
51825     pushValue : function()
51826     {
51827         this.editorcore.pushValue();
51828     },
51829     
51830     setStylesheets : function(stylesheets)
51831     {
51832         this.editorcore.setStylesheets(stylesheets);
51833     },
51834     
51835     removeStylesheets : function()
51836     {
51837         this.editorcore.removeStylesheets();
51838     }
51839      
51840     
51841     // hide stuff that is not compatible
51842     /**
51843      * @event blur
51844      * @hide
51845      */
51846     /**
51847      * @event change
51848      * @hide
51849      */
51850     /**
51851      * @event focus
51852      * @hide
51853      */
51854     /**
51855      * @event specialkey
51856      * @hide
51857      */
51858     /**
51859      * @cfg {String} fieldClass @hide
51860      */
51861     /**
51862      * @cfg {String} focusClass @hide
51863      */
51864     /**
51865      * @cfg {String} autoCreate @hide
51866      */
51867     /**
51868      * @cfg {String} inputType @hide
51869      */
51870     /**
51871      * @cfg {String} invalidClass @hide
51872      */
51873     /**
51874      * @cfg {String} invalidText @hide
51875      */
51876     /**
51877      * @cfg {String} msgFx @hide
51878      */
51879     /**
51880      * @cfg {String} validateOnBlur @hide
51881      */
51882 });
51883  
51884     /*
51885  * Based on
51886  * Ext JS Library 1.1.1
51887  * Copyright(c) 2006-2007, Ext JS, LLC.
51888  *  
51889  
51890  */
51891
51892 /**
51893  * @class Roo.form.HtmlEditor.ToolbarStandard
51894  * Basic Toolbar
51895
51896  * Usage:
51897  *
51898  new Roo.form.HtmlEditor({
51899     ....
51900     toolbars : [
51901         new Roo.form.HtmlEditorToolbar1({
51902             disable : { fonts: 1 , format: 1, ..., ... , ...],
51903             btns : [ .... ]
51904         })
51905     }
51906      
51907  * 
51908  * @cfg {Object} disable List of elements to disable..
51909  * @cfg {Roo.Toolbar.Item|Roo.Toolbar.Button|Roo.Toolbar.SplitButton|Roo.form.Field} btns[] List of additional buttons.
51910  * 
51911  * 
51912  * NEEDS Extra CSS? 
51913  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
51914  */
51915  
51916 Roo.form.HtmlEditor.ToolbarStandard = function(config)
51917 {
51918     
51919     Roo.apply(this, config);
51920     
51921     // default disabled, based on 'good practice'..
51922     this.disable = this.disable || {};
51923     Roo.applyIf(this.disable, {
51924         fontSize : true,
51925         colors : true,
51926         specialElements : true
51927     });
51928     
51929     
51930     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
51931     // dont call parent... till later.
51932 }
51933
51934 Roo.form.HtmlEditor.ToolbarStandard.prototype = {
51935     
51936     tb: false,
51937     
51938     rendered: false,
51939     
51940     editor : false,
51941     editorcore : false,
51942     /**
51943      * @cfg {Object} disable  List of toolbar elements to disable
51944          
51945      */
51946     disable : false,
51947     
51948     
51949      /**
51950      * @cfg {String} createLinkText The default text for the create link prompt
51951      */
51952     createLinkText : 'Please enter the URL for the link:',
51953     /**
51954      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
51955      */
51956     defaultLinkValue : 'http:/'+'/',
51957    
51958     
51959       /**
51960      * @cfg {Array} fontFamilies An array of available font families
51961      */
51962     fontFamilies : [
51963         'Arial',
51964         'Courier New',
51965         'Tahoma',
51966         'Times New Roman',
51967         'Verdana'
51968     ],
51969     
51970     specialChars : [
51971            "&#169;",
51972           "&#174;",     
51973           "&#8482;",    
51974           "&#163;" ,    
51975          // "&#8212;",    
51976           "&#8230;",    
51977           "&#247;" ,    
51978         //  "&#225;" ,     ?? a acute?
51979            "&#8364;"    , //Euro
51980        //   "&#8220;"    ,
51981         //  "&#8221;"    ,
51982         //  "&#8226;"    ,
51983           "&#176;"  //   , // degrees
51984
51985          // "&#233;"     , // e ecute
51986          // "&#250;"     , // u ecute?
51987     ],
51988     
51989     specialElements : [
51990         {
51991             text: "Insert Table",
51992             xtype: 'MenuItem',
51993             xns : Roo.Menu,
51994             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
51995                 
51996         },
51997         {    
51998             text: "Insert Image",
51999             xtype: 'MenuItem',
52000             xns : Roo.Menu,
52001             ihtml : '<img src="about:blank"/>'
52002             
52003         }
52004         
52005          
52006     ],
52007     
52008     
52009     inputElements : [ 
52010             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
52011             "input:submit", "input:button", "select", "textarea", "label" ],
52012     formats : [
52013         ["p"] ,  
52014         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
52015         ["pre"],[ "code"], 
52016         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
52017         ['div'],['span'],
52018         ['sup'],['sub']
52019     ],
52020     
52021     cleanStyles : [
52022         "font-size"
52023     ],
52024      /**
52025      * @cfg {String} defaultFont default font to use.
52026      */
52027     defaultFont: 'tahoma',
52028    
52029     fontSelect : false,
52030     
52031     
52032     formatCombo : false,
52033     
52034     init : function(editor)
52035     {
52036         this.editor = editor;
52037         this.editorcore = editor.editorcore ? editor.editorcore : editor;
52038         var editorcore = this.editorcore;
52039         
52040         var _t = this;
52041         
52042         var fid = editorcore.frameId;
52043         var etb = this;
52044         function btn(id, toggle, handler){
52045             var xid = fid + '-'+ id ;
52046             return {
52047                 id : xid,
52048                 cmd : id,
52049                 cls : 'x-btn-icon x-edit-'+id,
52050                 enableToggle:toggle !== false,
52051                 scope: _t, // was editor...
52052                 handler:handler||_t.relayBtnCmd,
52053                 clickEvent:'mousedown',
52054                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
52055                 tabIndex:-1
52056             };
52057         }
52058         
52059         
52060         
52061         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
52062         this.tb = tb;
52063          // stop form submits
52064         tb.el.on('click', function(e){
52065             e.preventDefault(); // what does this do?
52066         });
52067
52068         if(!this.disable.font) { // && !Roo.isSafari){
52069             /* why no safari for fonts 
52070             editor.fontSelect = tb.el.createChild({
52071                 tag:'select',
52072                 tabIndex: -1,
52073                 cls:'x-font-select',
52074                 html: this.createFontOptions()
52075             });
52076             
52077             editor.fontSelect.on('change', function(){
52078                 var font = editor.fontSelect.dom.value;
52079                 editor.relayCmd('fontname', font);
52080                 editor.deferFocus();
52081             }, editor);
52082             
52083             tb.add(
52084                 editor.fontSelect.dom,
52085                 '-'
52086             );
52087             */
52088             
52089         };
52090         if(!this.disable.formats){
52091             this.formatCombo = new Roo.form.ComboBox({
52092                 store: new Roo.data.SimpleStore({
52093                     id : 'tag',
52094                     fields: ['tag'],
52095                     data : this.formats // from states.js
52096                 }),
52097                 blockFocus : true,
52098                 name : '',
52099                 //autoCreate : {tag: "div",  size: "20"},
52100                 displayField:'tag',
52101                 typeAhead: false,
52102                 mode: 'local',
52103                 editable : false,
52104                 triggerAction: 'all',
52105                 emptyText:'Add tag',
52106                 selectOnFocus:true,
52107                 width:135,
52108                 listeners : {
52109                     'select': function(c, r, i) {
52110                         editorcore.insertTag(r.get('tag'));
52111                         editor.focus();
52112                     }
52113                 }
52114
52115             });
52116             tb.addField(this.formatCombo);
52117             
52118         }
52119         
52120         if(!this.disable.format){
52121             tb.add(
52122                 btn('bold'),
52123                 btn('italic'),
52124                 btn('underline'),
52125                 btn('strikethrough')
52126             );
52127         };
52128         if(!this.disable.fontSize){
52129             tb.add(
52130                 '-',
52131                 
52132                 
52133                 btn('increasefontsize', false, editorcore.adjustFont),
52134                 btn('decreasefontsize', false, editorcore.adjustFont)
52135             );
52136         };
52137         
52138         
52139         if(!this.disable.colors){
52140             tb.add(
52141                 '-', {
52142                     id:editorcore.frameId +'-forecolor',
52143                     cls:'x-btn-icon x-edit-forecolor',
52144                     clickEvent:'mousedown',
52145                     tooltip: this.buttonTips['forecolor'] || undefined,
52146                     tabIndex:-1,
52147                     menu : new Roo.menu.ColorMenu({
52148                         allowReselect: true,
52149                         focus: Roo.emptyFn,
52150                         value:'000000',
52151                         plain:true,
52152                         selectHandler: function(cp, color){
52153                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
52154                             editor.deferFocus();
52155                         },
52156                         scope: editorcore,
52157                         clickEvent:'mousedown'
52158                     })
52159                 }, {
52160                     id:editorcore.frameId +'backcolor',
52161                     cls:'x-btn-icon x-edit-backcolor',
52162                     clickEvent:'mousedown',
52163                     tooltip: this.buttonTips['backcolor'] || undefined,
52164                     tabIndex:-1,
52165                     menu : new Roo.menu.ColorMenu({
52166                         focus: Roo.emptyFn,
52167                         value:'FFFFFF',
52168                         plain:true,
52169                         allowReselect: true,
52170                         selectHandler: function(cp, color){
52171                             if(Roo.isGecko){
52172                                 editorcore.execCmd('useCSS', false);
52173                                 editorcore.execCmd('hilitecolor', color);
52174                                 editorcore.execCmd('useCSS', true);
52175                                 editor.deferFocus();
52176                             }else{
52177                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
52178                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
52179                                 editor.deferFocus();
52180                             }
52181                         },
52182                         scope:editorcore,
52183                         clickEvent:'mousedown'
52184                     })
52185                 }
52186             );
52187         };
52188         // now add all the items...
52189         
52190
52191         if(!this.disable.alignments){
52192             tb.add(
52193                 '-',
52194                 btn('justifyleft'),
52195                 btn('justifycenter'),
52196                 btn('justifyright')
52197             );
52198         };
52199
52200         //if(!Roo.isSafari){
52201             if(!this.disable.links){
52202                 tb.add(
52203                     '-',
52204                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
52205                 );
52206             };
52207
52208             if(!this.disable.lists){
52209                 tb.add(
52210                     '-',
52211                     btn('insertorderedlist'),
52212                     btn('insertunorderedlist')
52213                 );
52214             }
52215             if(!this.disable.sourceEdit){
52216                 tb.add(
52217                     '-',
52218                     btn('sourceedit', true, function(btn){
52219                         this.toggleSourceEdit(btn.pressed);
52220                     })
52221                 );
52222             }
52223         //}
52224         
52225         var smenu = { };
52226         // special menu.. - needs to be tidied up..
52227         if (!this.disable.special) {
52228             smenu = {
52229                 text: "&#169;",
52230                 cls: 'x-edit-none',
52231                 
52232                 menu : {
52233                     items : []
52234                 }
52235             };
52236             for (var i =0; i < this.specialChars.length; i++) {
52237                 smenu.menu.items.push({
52238                     
52239                     html: this.specialChars[i],
52240                     handler: function(a,b) {
52241                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
52242                         //editor.insertAtCursor(a.html);
52243                         
52244                     },
52245                     tabIndex:-1
52246                 });
52247             }
52248             
52249             
52250             tb.add(smenu);
52251             
52252             
52253         }
52254         
52255         var cmenu = { };
52256         if (!this.disable.cleanStyles) {
52257             cmenu = {
52258                 cls: 'x-btn-icon x-btn-clear',
52259                 
52260                 menu : {
52261                     items : []
52262                 }
52263             };
52264             for (var i =0; i < this.cleanStyles.length; i++) {
52265                 cmenu.menu.items.push({
52266                     actiontype : this.cleanStyles[i],
52267                     html: 'Remove ' + this.cleanStyles[i],
52268                     handler: function(a,b) {
52269 //                        Roo.log(a);
52270 //                        Roo.log(b);
52271                         var c = Roo.get(editorcore.doc.body);
52272                         c.select('[style]').each(function(s) {
52273                             s.dom.style.removeProperty(a.actiontype);
52274                         });
52275                         editorcore.syncValue();
52276                     },
52277                     tabIndex:-1
52278                 });
52279             }
52280             cmenu.menu.items.push({
52281                 actiontype : 'tablewidths',
52282                 html: 'Remove Table Widths',
52283                 handler: function(a,b) {
52284                     editorcore.cleanTableWidths();
52285                     editorcore.syncValue();
52286                 },
52287                 tabIndex:-1
52288             });
52289             cmenu.menu.items.push({
52290                 actiontype : 'word',
52291                 html: 'Remove MS Word Formating',
52292                 handler: function(a,b) {
52293                     editorcore.cleanWord();
52294                     editorcore.syncValue();
52295                 },
52296                 tabIndex:-1
52297             });
52298             
52299             cmenu.menu.items.push({
52300                 actiontype : 'all',
52301                 html: 'Remove All Styles',
52302                 handler: function(a,b) {
52303                     
52304                     var c = Roo.get(editorcore.doc.body);
52305                     c.select('[style]').each(function(s) {
52306                         s.dom.removeAttribute('style');
52307                     });
52308                     editorcore.syncValue();
52309                 },
52310                 tabIndex:-1
52311             });
52312             
52313             cmenu.menu.items.push({
52314                 actiontype : 'all',
52315                 html: 'Remove All CSS Classes',
52316                 handler: function(a,b) {
52317                     
52318                     var c = Roo.get(editorcore.doc.body);
52319                     c.select('[class]').each(function(s) {
52320                         s.dom.removeAttribute('class');
52321                     });
52322                     editorcore.cleanWord();
52323                     editorcore.syncValue();
52324                 },
52325                 tabIndex:-1
52326             });
52327             
52328              cmenu.menu.items.push({
52329                 actiontype : 'tidy',
52330                 html: 'Tidy HTML Source',
52331                 handler: function(a,b) {
52332                     new Roo.htmleditor.Tidy(editorcore.doc.body);
52333                     editorcore.syncValue();
52334                 },
52335                 tabIndex:-1
52336             });
52337             
52338             
52339             tb.add(cmenu);
52340         }
52341          
52342         if (!this.disable.specialElements) {
52343             var semenu = {
52344                 text: "Other;",
52345                 cls: 'x-edit-none',
52346                 menu : {
52347                     items : []
52348                 }
52349             };
52350             for (var i =0; i < this.specialElements.length; i++) {
52351                 semenu.menu.items.push(
52352                     Roo.apply({ 
52353                         handler: function(a,b) {
52354                             editor.insertAtCursor(this.ihtml);
52355                         }
52356                     }, this.specialElements[i])
52357                 );
52358                     
52359             }
52360             
52361             tb.add(semenu);
52362             
52363             
52364         }
52365          
52366         
52367         if (this.btns) {
52368             for(var i =0; i< this.btns.length;i++) {
52369                 var b = Roo.factory(this.btns[i],this.btns[i].xns || Roo.form);
52370                 b.cls =  'x-edit-none';
52371                 
52372                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
52373                     b.cls += ' x-init-enable';
52374                 }
52375                 
52376                 b.scope = editorcore;
52377                 tb.add(b);
52378             }
52379         
52380         }
52381         
52382         
52383         
52384         // disable everything...
52385         
52386         this.tb.items.each(function(item){
52387             
52388            if(
52389                 item.id != editorcore.frameId+ '-sourceedit' && 
52390                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
52391             ){
52392                 
52393                 item.disable();
52394             }
52395         });
52396         this.rendered = true;
52397         
52398         // the all the btns;
52399         editor.on('editorevent', this.updateToolbar, this);
52400         // other toolbars need to implement this..
52401         //editor.on('editmodechange', this.updateToolbar, this);
52402     },
52403     
52404     
52405     relayBtnCmd : function(btn) {
52406         this.editorcore.relayCmd(btn.cmd);
52407     },
52408     // private used internally
52409     createLink : function(){
52410         //Roo.log("create link?");
52411         var ec = this.editorcore;
52412         var ar = ec.getAllAncestors();
52413         var n = false;
52414         for(var i = 0;i< ar.length;i++) {
52415             if (ar[i] && ar[i].nodeName == 'A') {
52416                 n = ar[i];
52417                 break;
52418             }
52419         }
52420         
52421         (function() {
52422             
52423             Roo.MessageBox.show({
52424                 title : "Add / Edit Link URL",
52425                 msg : "Enter the url for the link",
52426                 buttons: Roo.MessageBox.OKCANCEL,
52427                 fn: function(btn, url){
52428                     if (btn != 'ok') {
52429                         return;
52430                     }
52431                     if(url && url != 'http:/'+'/'){
52432                         if (n) {
52433                             n.setAttribute('href', url);
52434                         } else {
52435                             ec.relayCmd('createlink', url);
52436                         }
52437                     }
52438                 },
52439                 minWidth:250,
52440                 prompt:true,
52441                 //multiline: multiline,
52442                 modal : true,
52443                 value :  n  ? n.getAttribute('href') : '' 
52444             });
52445             
52446              
52447         }).defer(100, this); // we have to defer this , otherwise the mouse click gives focus to the main window.
52448         
52449     },
52450
52451     
52452     /**
52453      * Protected method that will not generally be called directly. It triggers
52454      * a toolbar update by reading the markup state of the current selection in the editor.
52455      */
52456     updateToolbar: function(){
52457
52458         if(!this.editorcore.activated){
52459             this.editor.onFirstFocus();
52460             return;
52461         }
52462
52463         var btns = this.tb.items.map, 
52464             doc = this.editorcore.doc,
52465             frameId = this.editorcore.frameId;
52466
52467         if(!this.disable.font && !Roo.isSafari){
52468             /*
52469             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
52470             if(name != this.fontSelect.dom.value){
52471                 this.fontSelect.dom.value = name;
52472             }
52473             */
52474         }
52475         if(!this.disable.format){
52476             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
52477             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
52478             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
52479             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
52480         }
52481         if(!this.disable.alignments){
52482             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
52483             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
52484             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
52485         }
52486         if(!Roo.isSafari && !this.disable.lists){
52487             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
52488             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
52489         }
52490         
52491         var ans = this.editorcore.getAllAncestors();
52492         if (this.formatCombo) {
52493             
52494             
52495             var store = this.formatCombo.store;
52496             this.formatCombo.setValue("");
52497             for (var i =0; i < ans.length;i++) {
52498                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
52499                     // select it..
52500                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
52501                     break;
52502                 }
52503             }
52504         }
52505         
52506         
52507         
52508         // hides menus... - so this cant be on a menu...
52509         Roo.menu.MenuMgr.hideAll();
52510
52511         //this.editorsyncValue();
52512     },
52513    
52514     
52515     createFontOptions : function(){
52516         var buf = [], fs = this.fontFamilies, ff, lc;
52517         
52518         
52519         
52520         for(var i = 0, len = fs.length; i< len; i++){
52521             ff = fs[i];
52522             lc = ff.toLowerCase();
52523             buf.push(
52524                 '<option value="',lc,'" style="font-family:',ff,';"',
52525                     (this.defaultFont == lc ? ' selected="true">' : '>'),
52526                     ff,
52527                 '</option>'
52528             );
52529         }
52530         return buf.join('');
52531     },
52532     
52533     toggleSourceEdit : function(sourceEditMode){
52534         
52535         Roo.log("toolbar toogle");
52536         if(sourceEditMode === undefined){
52537             sourceEditMode = !this.sourceEditMode;
52538         }
52539         this.sourceEditMode = sourceEditMode === true;
52540         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
52541         // just toggle the button?
52542         if(btn.pressed !== this.sourceEditMode){
52543             btn.toggle(this.sourceEditMode);
52544             return;
52545         }
52546         
52547         if(sourceEditMode){
52548             Roo.log("disabling buttons");
52549             this.tb.items.each(function(item){
52550                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
52551                     item.disable();
52552                 }
52553             });
52554           
52555         }else{
52556             Roo.log("enabling buttons");
52557             if(this.editorcore.initialized){
52558                 this.tb.items.each(function(item){
52559                     item.enable();
52560                 });
52561                 // initialize 'blocks'
52562                 Roo.each(Roo.get(this.editorcore.doc.body).query('*[data-block]'), function(e) {
52563                     Roo.htmleditor.Block.factory(e).updateElement(e);
52564                 },this);
52565             
52566             }
52567             
52568         }
52569         Roo.log("calling toggole on editor");
52570         // tell the editor that it's been pressed..
52571         this.editor.toggleSourceEdit(sourceEditMode);
52572        
52573     },
52574      /**
52575      * Object collection of toolbar tooltips for the buttons in the editor. The key
52576      * is the command id associated with that button and the value is a valid QuickTips object.
52577      * For example:
52578 <pre><code>
52579 {
52580     bold : {
52581         title: 'Bold (Ctrl+B)',
52582         text: 'Make the selected text bold.',
52583         cls: 'x-html-editor-tip'
52584     },
52585     italic : {
52586         title: 'Italic (Ctrl+I)',
52587         text: 'Make the selected text italic.',
52588         cls: 'x-html-editor-tip'
52589     },
52590     ...
52591 </code></pre>
52592     * @type Object
52593      */
52594     buttonTips : {
52595         bold : {
52596             title: 'Bold (Ctrl+B)',
52597             text: 'Make the selected text bold.',
52598             cls: 'x-html-editor-tip'
52599         },
52600         italic : {
52601             title: 'Italic (Ctrl+I)',
52602             text: 'Make the selected text italic.',
52603             cls: 'x-html-editor-tip'
52604         },
52605         underline : {
52606             title: 'Underline (Ctrl+U)',
52607             text: 'Underline the selected text.',
52608             cls: 'x-html-editor-tip'
52609         },
52610         strikethrough : {
52611             title: 'Strikethrough',
52612             text: 'Strikethrough the selected text.',
52613             cls: 'x-html-editor-tip'
52614         },
52615         increasefontsize : {
52616             title: 'Grow Text',
52617             text: 'Increase the font size.',
52618             cls: 'x-html-editor-tip'
52619         },
52620         decreasefontsize : {
52621             title: 'Shrink Text',
52622             text: 'Decrease the font size.',
52623             cls: 'x-html-editor-tip'
52624         },
52625         backcolor : {
52626             title: 'Text Highlight Color',
52627             text: 'Change the background color of the selected text.',
52628             cls: 'x-html-editor-tip'
52629         },
52630         forecolor : {
52631             title: 'Font Color',
52632             text: 'Change the color of the selected text.',
52633             cls: 'x-html-editor-tip'
52634         },
52635         justifyleft : {
52636             title: 'Align Text Left',
52637             text: 'Align text to the left.',
52638             cls: 'x-html-editor-tip'
52639         },
52640         justifycenter : {
52641             title: 'Center Text',
52642             text: 'Center text in the editor.',
52643             cls: 'x-html-editor-tip'
52644         },
52645         justifyright : {
52646             title: 'Align Text Right',
52647             text: 'Align text to the right.',
52648             cls: 'x-html-editor-tip'
52649         },
52650         insertunorderedlist : {
52651             title: 'Bullet List',
52652             text: 'Start a bulleted list.',
52653             cls: 'x-html-editor-tip'
52654         },
52655         insertorderedlist : {
52656             title: 'Numbered List',
52657             text: 'Start a numbered list.',
52658             cls: 'x-html-editor-tip'
52659         },
52660         createlink : {
52661             title: 'Hyperlink',
52662             text: 'Make the selected text a hyperlink.',
52663             cls: 'x-html-editor-tip'
52664         },
52665         sourceedit : {
52666             title: 'Source Edit',
52667             text: 'Switch to source editing mode.',
52668             cls: 'x-html-editor-tip'
52669         }
52670     },
52671     // private
52672     onDestroy : function(){
52673         if(this.rendered){
52674             
52675             this.tb.items.each(function(item){
52676                 if(item.menu){
52677                     item.menu.removeAll();
52678                     if(item.menu.el){
52679                         item.menu.el.destroy();
52680                     }
52681                 }
52682                 item.destroy();
52683             });
52684              
52685         }
52686     },
52687     onFirstFocus: function() {
52688         this.tb.items.each(function(item){
52689            item.enable();
52690         });
52691     }
52692 };
52693
52694
52695
52696
52697 // <script type="text/javascript">
52698 /*
52699  * Based on
52700  * Ext JS Library 1.1.1
52701  * Copyright(c) 2006-2007, Ext JS, LLC.
52702  *  
52703  
52704  */
52705
52706  
52707 /**
52708  * @class Roo.form.HtmlEditor.ToolbarContext
52709  * Context Toolbar
52710  * 
52711  * Usage:
52712  *
52713  new Roo.form.HtmlEditor({
52714     ....
52715     toolbars : [
52716         { xtype: 'ToolbarStandard', styles : {} }
52717         { xtype: 'ToolbarContext', disable : {} }
52718     ]
52719 })
52720
52721      
52722  * 
52723  * @config : {Object} disable List of elements to disable.. (not done yet.)
52724  * @config : {Object} styles  Map of styles available.
52725  * 
52726  */
52727
52728 Roo.form.HtmlEditor.ToolbarContext = function(config)
52729 {
52730     
52731     Roo.apply(this, config);
52732     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
52733     // dont call parent... till later.
52734     this.styles = this.styles || {};
52735 }
52736
52737  
52738
52739 Roo.form.HtmlEditor.ToolbarContext.types = {
52740     'IMG' : [
52741         {
52742             name : 'width',
52743             title: "Width",
52744             width: 40
52745         },
52746         {
52747             name : 'height',
52748             title: "Height",
52749             width: 40
52750         },
52751         {
52752             name : 'align',
52753             title: "Align",
52754             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
52755             width : 80
52756             
52757         },
52758         {
52759             name : 'border',
52760             title: "Border",
52761             width: 40
52762         },
52763         {
52764             name : 'alt',
52765             title: "Alt",
52766             width: 120
52767         },
52768         {
52769             name : 'src',
52770             title: "Src",
52771             width: 220
52772         }
52773         
52774     ],
52775     
52776     'FIGURE' : [
52777         {
52778             name : 'align',
52779             title: "Align",
52780             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
52781             width : 80  
52782         }
52783     ],
52784     'A' : [
52785         {
52786             name : 'name',
52787             title: "Name",
52788             width: 50
52789         },
52790         {
52791             name : 'target',
52792             title: "Target",
52793             width: 120
52794         },
52795         {
52796             name : 'href',
52797             title: "Href",
52798             width: 220
52799         } // border?
52800         
52801     ],
52802     
52803     'INPUT' : [
52804         {
52805             name : 'name',
52806             title: "name",
52807             width: 120
52808         },
52809         {
52810             name : 'value',
52811             title: "Value",
52812             width: 120
52813         },
52814         {
52815             name : 'width',
52816             title: "Width",
52817             width: 40
52818         }
52819     ],
52820     'LABEL' : [
52821          {
52822             name : 'for',
52823             title: "For",
52824             width: 120
52825         }
52826     ],
52827     'TEXTAREA' : [
52828         {
52829             name : 'name',
52830             title: "name",
52831             width: 120
52832         },
52833         {
52834             name : 'rows',
52835             title: "Rows",
52836             width: 20
52837         },
52838         {
52839             name : 'cols',
52840             title: "Cols",
52841             width: 20
52842         }
52843     ],
52844     'SELECT' : [
52845         {
52846             name : 'name',
52847             title: "name",
52848             width: 120
52849         },
52850         {
52851             name : 'selectoptions',
52852             title: "Options",
52853             width: 200
52854         }
52855     ],
52856     
52857     // should we really allow this??
52858     // should this just be 
52859     'BODY' : [
52860         
52861         {
52862             name : 'title',
52863             title: "Title",
52864             width: 200,
52865             disabled : true
52866         }
52867     ],
52868  
52869     '*' : [
52870         // empty.
52871     ]
52872
52873 };
52874
52875 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
52876 Roo.form.HtmlEditor.ToolbarContext.stores = false;
52877
52878 Roo.form.HtmlEditor.ToolbarContext.options = {
52879         'font-family'  : [ 
52880                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
52881                 [ 'Courier New', 'Courier New'],
52882                 [ 'Tahoma', 'Tahoma'],
52883                 [ 'Times New Roman,serif', 'Times'],
52884                 [ 'Verdana','Verdana' ]
52885         ]
52886 };
52887
52888 // fixme - these need to be configurable..
52889  
52890
52891 //Roo.form.HtmlEditor.ToolbarContext.types
52892
52893
52894 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
52895     
52896     tb: false,
52897     
52898     rendered: false,
52899     
52900     editor : false,
52901     editorcore : false,
52902     /**
52903      * @cfg {Object} disable  List of toolbar elements to disable
52904          
52905      */
52906     disable : false,
52907     /**
52908      * @cfg {Object} styles List of styles 
52909      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
52910      *
52911      * These must be defined in the page, so they get rendered correctly..
52912      * .headline { }
52913      * TD.underline { }
52914      * 
52915      */
52916     styles : false,
52917     
52918     options: false,
52919     
52920     toolbars : false,
52921     
52922     init : function(editor)
52923     {
52924         this.editor = editor;
52925         this.editorcore = editor.editorcore ? editor.editorcore : editor;
52926         var editorcore = this.editorcore;
52927         
52928         var fid = editorcore.frameId;
52929         var etb = this;
52930         function btn(id, toggle, handler){
52931             var xid = fid + '-'+ id ;
52932             return {
52933                 id : xid,
52934                 cmd : id,
52935                 cls : 'x-btn-icon x-edit-'+id,
52936                 enableToggle:toggle !== false,
52937                 scope: editorcore, // was editor...
52938                 handler:handler||editorcore.relayBtnCmd,
52939                 clickEvent:'mousedown',
52940                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
52941                 tabIndex:-1
52942             };
52943         }
52944         // create a new element.
52945         var wdiv = editor.wrap.createChild({
52946                 tag: 'div'
52947             }, editor.wrap.dom.firstChild.nextSibling, true);
52948         
52949         // can we do this more than once??
52950         
52951          // stop form submits
52952       
52953  
52954         // disable everything...
52955         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
52956         this.toolbars = {};
52957         // block toolbars are built in updateToolbar when needed.
52958         for (var i in  ty) {
52959             
52960             this.toolbars[i] = this.buildToolbar(ty[i],i);
52961         }
52962         this.tb = this.toolbars.BODY;
52963         this.tb.el.show();
52964         this.buildFooter();
52965         this.footer.show();
52966         editor.on('hide', function( ) { this.footer.hide() }, this);
52967         editor.on('show', function( ) { this.footer.show() }, this);
52968         
52969          
52970         this.rendered = true;
52971         
52972         // the all the btns;
52973         editor.on('editorevent', this.updateToolbar, this);
52974         // other toolbars need to implement this..
52975         //editor.on('editmodechange', this.updateToolbar, this);
52976     },
52977     
52978     
52979     
52980     /**
52981      * Protected method that will not generally be called directly. It triggers
52982      * a toolbar update by reading the markup state of the current selection in the editor.
52983      *
52984      * Note you can force an update by calling on('editorevent', scope, false)
52985      */
52986     updateToolbar: function(editor ,ev, sel)
52987     {
52988         
52989         if (ev) {
52990             ev.stopEvent(); // se if we can stop this looping with mutiple events.
52991         }
52992         
52993         //Roo.log(ev);
52994         // capture mouse up - this is handy for selecting images..
52995         // perhaps should go somewhere else...
52996         if(!this.editorcore.activated){
52997              this.editor.onFirstFocus();
52998             return;
52999         }
53000         //Roo.log(ev ? ev.target : 'NOTARGET');
53001         
53002         
53003         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
53004         // selectNode - might want to handle IE?
53005         
53006         
53007         
53008         if (ev &&
53009             (ev.type == 'mouseup' || ev.type == 'click' ) &&
53010             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
53011             // they have click on an image...
53012             // let's see if we can change the selection...
53013             sel = ev.target;
53014             
53015             // this triggers looping?
53016             //this.editorcore.selectNode(sel);
53017              
53018         }
53019         
53020         // this forces an id..
53021         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
53022              e.classList.remove('roo-ed-selection');
53023         });
53024         //Roo.select('.roo-ed-selection', false, this.editorcore.doc).removeClass('roo-ed-selection');
53025         //Roo.get(node).addClass('roo-ed-selection');
53026       
53027         //var updateFooter = sel ? false : true; 
53028         
53029         
53030         var ans = this.editorcore.getAllAncestors();
53031         
53032         // pick
53033         var ty = Roo.form.HtmlEditor.ToolbarContext.types;
53034         
53035         if (!sel) { 
53036             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
53037             sel = sel ? sel : this.editorcore.doc.body;
53038             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
53039             
53040         }
53041         
53042         var tn = sel.tagName.toUpperCase();
53043         var lastSel = this.tb.selectedNode;
53044         this.tb.selectedNode = sel;
53045         var left_label = tn;
53046         
53047         // ok see if we are editing a block?
53048         
53049         var db = false;
53050         // you are not actually selecting the block.
53051         if (sel && sel.hasAttribute('data-block')) {
53052             db = sel;
53053         } else if (sel && sel.closest('[data-block]')) {
53054             
53055             db = sel.closest('[data-block]');
53056             //var cepar = sel.closest('[contenteditable=true]');
53057             //if (db && cepar && cepar.tagName != 'BODY') {
53058             //   db = false; // we are inside an editable block.. = not sure how we are going to handle nested blocks!?
53059             //}   
53060         }
53061         
53062         
53063         var block = false;
53064         //if (db && !sel.hasAttribute('contenteditable') && sel.getAttribute('contenteditable') != 'true' ) {
53065         if (db && this.editorcore.enableBlocks) {
53066             block = Roo.htmleditor.Block.factory(db);
53067             
53068             
53069             if (block) {
53070                  db.className = (
53071                         db.classList.length > 0  ? db.className + ' ' : ''
53072                     )  + 'roo-ed-selection';
53073                  
53074                  // since we removed it earlier... its not there..
53075                 tn = 'BLOCK.' + db.getAttribute('data-block');
53076                 
53077                 //this.editorcore.selectNode(db);
53078                 if (typeof(this.toolbars[tn]) == 'undefined') {
53079                    this.toolbars[tn] = this.buildToolbar( false  ,tn ,block.friendly_name, block);
53080                 }
53081                 this.toolbars[tn].selectedNode = db;
53082                 left_label = block.friendly_name;
53083                 ans = this.editorcore.getAllAncestors();
53084             }
53085             
53086                 
53087             
53088         }
53089         
53090         
53091         if (this.tb.name == tn && lastSel == this.tb.selectedNode && ev !== false) {
53092             return; // no change?
53093         }
53094         
53095         
53096           
53097         this.tb.el.hide();
53098         ///console.log("show: " + tn);
53099         this.tb =  typeof(this.toolbars[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
53100         
53101         this.tb.el.show();
53102         // update name
53103         this.tb.items.first().el.innerHTML = left_label + ':&nbsp;';
53104         
53105         
53106         // update attributes
53107         if (block && this.tb.fields) {
53108              
53109             this.tb.fields.each(function(e) {
53110                 e.setValue(block[e.name]);
53111             });
53112             
53113             
53114         } else  if (this.tb.fields && this.tb.selectedNode) {
53115             this.tb.fields.each( function(e) {
53116                 if (e.stylename) {
53117                     e.setValue(this.tb.selectedNode.style[e.stylename]);
53118                     return;
53119                 } 
53120                 e.setValue(this.tb.selectedNode.getAttribute(e.attrname));
53121             }, this);
53122             this.updateToolbarStyles(this.tb.selectedNode);  
53123         }
53124         
53125         
53126        
53127         Roo.menu.MenuMgr.hideAll();
53128
53129         
53130         
53131     
53132         // update the footer
53133         //
53134         this.updateFooter(ans);
53135              
53136     },
53137     
53138     updateToolbarStyles : function(sel)
53139     {
53140         var hasStyles = false;
53141         for(var i in this.styles) {
53142             hasStyles = true;
53143             break;
53144         }
53145         
53146         // update styles
53147         if (hasStyles && this.tb.hasStyles) { 
53148             var st = this.tb.fields.item(0);
53149             
53150             st.store.removeAll();
53151             var cn = sel.className.split(/\s+/);
53152             
53153             var avs = [];
53154             if (this.styles['*']) {
53155                 
53156                 Roo.each(this.styles['*'], function(v) {
53157                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53158                 });
53159             }
53160             if (this.styles[tn]) { 
53161                 Roo.each(this.styles[tn], function(v) {
53162                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53163                 });
53164             }
53165             
53166             st.store.loadData(avs);
53167             st.collapse();
53168             st.setValue(cn);
53169         }
53170     },
53171     
53172      
53173     updateFooter : function(ans)
53174     {
53175         var html = '';
53176         if (ans === false) {
53177             this.footDisp.dom.innerHTML = '';
53178             return;
53179         }
53180         
53181         this.footerEls = ans.reverse();
53182         Roo.each(this.footerEls, function(a,i) {
53183             if (!a) { return; }
53184             html += html.length ? ' &gt; '  :  '';
53185             
53186             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
53187             
53188         });
53189        
53190         // 
53191         var sz = this.footDisp.up('td').getSize();
53192         this.footDisp.dom.style.width = (sz.width -10) + 'px';
53193         this.footDisp.dom.style.marginLeft = '5px';
53194         
53195         this.footDisp.dom.style.overflow = 'hidden';
53196         
53197         this.footDisp.dom.innerHTML = html;
53198             
53199         
53200     },
53201    
53202        
53203     // private
53204     onDestroy : function(){
53205         if(this.rendered){
53206             
53207             this.tb.items.each(function(item){
53208                 if(item.menu){
53209                     item.menu.removeAll();
53210                     if(item.menu.el){
53211                         item.menu.el.destroy();
53212                     }
53213                 }
53214                 item.destroy();
53215             });
53216              
53217         }
53218     },
53219     onFirstFocus: function() {
53220         // need to do this for all the toolbars..
53221         this.tb.items.each(function(item){
53222            item.enable();
53223         });
53224     },
53225     buildToolbar: function(tlist, nm, friendly_name, block)
53226     {
53227         var editor = this.editor;
53228         var editorcore = this.editorcore;
53229          // create a new element.
53230         var wdiv = editor.wrap.createChild({
53231                 tag: 'div'
53232             }, editor.wrap.dom.firstChild.nextSibling, true);
53233         
53234        
53235         var tb = new Roo.Toolbar(wdiv);
53236         ///this.tb = tb; // << this sets the active toolbar..
53237         if (tlist === false && block) {
53238             tlist = block.contextMenu(this);
53239         }
53240         
53241         tb.hasStyles = false;
53242         tb.name = nm;
53243         
53244         tb.add((typeof(friendly_name) == 'undefined' ? nm : friendly_name) + ":&nbsp;");
53245         
53246         var styles = Array.from(this.styles);
53247         
53248         
53249         // styles...
53250         if (styles && styles.length) {
53251             tb.hasStyles = true;
53252             // this needs a multi-select checkbox...
53253             tb.addField( new Roo.form.ComboBox({
53254                 store: new Roo.data.SimpleStore({
53255                     id : 'val',
53256                     fields: ['val', 'selected'],
53257                     data : [] 
53258                 }),
53259                 name : '-roo-edit-className',
53260                 attrname : 'className',
53261                 displayField: 'val',
53262                 typeAhead: false,
53263                 mode: 'local',
53264                 editable : false,
53265                 triggerAction: 'all',
53266                 emptyText:'Select Style',
53267                 selectOnFocus:true,
53268                 width: 130,
53269                 listeners : {
53270                     'select': function(c, r, i) {
53271                         // initial support only for on class per el..
53272                         tb.selectedNode.className =  r ? r.get('val') : '';
53273                         editorcore.syncValue();
53274                     }
53275                 }
53276     
53277             }));
53278         }
53279         
53280         var tbc = Roo.form.HtmlEditor.ToolbarContext;
53281         
53282         
53283         for (var i = 0; i < tlist.length; i++) {
53284             
53285             // newer versions will use xtype cfg to create menus.
53286             if (typeof(tlist[i].xtype) != 'undefined') {
53287                 
53288                 tb[typeof(tlist[i].name)== 'undefined' ? 'add' : 'addField'](Roo.factory(tlist[i]));
53289                 
53290                 
53291                 continue;
53292             }
53293             
53294             var item = tlist[i];
53295             tb.add(item.title + ":&nbsp;");
53296             
53297             
53298             //optname == used so you can configure the options available..
53299             var opts = item.opts ? item.opts : false;
53300             if (item.optname) { // use the b
53301                 opts = Roo.form.HtmlEditor.ToolbarContext.options[item.optname];
53302            
53303             }
53304             
53305             if (opts) {
53306                 // opts == pulldown..
53307                 tb.addField( new Roo.form.ComboBox({
53308                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
53309                         id : 'val',
53310                         fields: ['val', 'display'],
53311                         data : opts  
53312                     }),
53313                     name : '-roo-edit-' + tlist[i].name,
53314                     
53315                     attrname : tlist[i].name,
53316                     stylename : item.style ? item.style : false,
53317                     
53318                     displayField: item.displayField ? item.displayField : 'val',
53319                     valueField :  'val',
53320                     typeAhead: false,
53321                     mode: typeof(tbc.stores[tlist[i].name]) != 'undefined'  ? 'remote' : 'local',
53322                     editable : false,
53323                     triggerAction: 'all',
53324                     emptyText:'Select',
53325                     selectOnFocus:true,
53326                     width: item.width ? item.width  : 130,
53327                     listeners : {
53328                         'select': function(c, r, i) {
53329                              
53330                             
53331                             if (c.stylename) {
53332                                 tb.selectedNode.style[c.stylename] =  r.get('val');
53333                                 editorcore.syncValue();
53334                                 return;
53335                             }
53336                             if (r === false) {
53337                                 tb.selectedNode.removeAttribute(c.attrname);
53338                                 editorcore.syncValue();
53339                                 return;
53340                             }
53341                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
53342                             editorcore.syncValue();
53343                         }
53344                     }
53345
53346                 }));
53347                 continue;
53348                     
53349                  
53350                 /*
53351                 tb.addField( new Roo.form.TextField({
53352                     name: i,
53353                     width: 100,
53354                     //allowBlank:false,
53355                     value: ''
53356                 }));
53357                 continue;
53358                 */
53359             }
53360             tb.addField( new Roo.form.TextField({
53361                 name: '-roo-edit-' + tlist[i].name,
53362                 attrname : tlist[i].name,
53363                 
53364                 width: item.width,
53365                 //allowBlank:true,
53366                 value: '',
53367                 listeners: {
53368                     'change' : function(f, nv, ov) {
53369                         
53370                          
53371                         tb.selectedNode.setAttribute(f.attrname, nv);
53372                         editorcore.syncValue();
53373                     }
53374                 }
53375             }));
53376              
53377         }
53378         
53379         var _this = this;
53380         var show_delete = !block || block.deleteTitle !== false;
53381         if(nm == 'BODY'){
53382             show_delete = false;
53383             tb.addSeparator();
53384         
53385             tb.addButton( {
53386                 text: 'Stylesheets',
53387
53388                 listeners : {
53389                     click : function ()
53390                     {
53391                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
53392                     }
53393                 }
53394             });
53395         }
53396         
53397         tb.addFill();
53398         if (show_delete) {
53399             tb.addButton({
53400                 text: block && block.deleteTitle ? block.deleteTitle  : 'Remove Block or Formating', // remove the tag, and puts the children outside...
53401         
53402                 listeners : {
53403                     click : function ()
53404                     {
53405                         var sn = tb.selectedNode;
53406                         if (block) {
53407                             sn = Roo.htmleditor.Block.factory(tb.selectedNode).removeNode();
53408                             
53409                         }
53410                         if (!sn) {
53411                             return;
53412                         }
53413                         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
53414                         if (sn.hasAttribute('data-block')) {
53415                             stn =  sn.nextSibling || sn.previousSibling || sn.parentNode;
53416                             sn.parentNode.removeChild(sn);
53417                             
53418                         } else if (sn && sn.tagName != 'BODY') {
53419                             // remove and keep parents.
53420                             a = new Roo.htmleditor.FilterKeepChildren({tag : false});
53421                             a.replaceTag(sn);
53422                         }
53423                         
53424                         
53425                         var range = editorcore.createRange();
53426             
53427                         range.setStart(stn,0);
53428                         range.setEnd(stn,0); 
53429                         var selection = editorcore.getSelection();
53430                         selection.removeAllRanges();
53431                         selection.addRange(range);
53432                         
53433                         
53434                         //_this.updateToolbar(null, null, pn);
53435                         _this.updateToolbar(null, null, null);
53436                         _this.updateFooter(false);
53437                         
53438                     }
53439                 }
53440                 
53441                         
53442                     
53443                 
53444             });
53445         }    
53446         
53447         tb.el.on('click', function(e){
53448             e.preventDefault(); // what does this do?
53449         });
53450         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
53451         tb.el.hide();
53452         
53453         // dont need to disable them... as they will get hidden
53454         return tb;
53455          
53456         
53457     },
53458     buildFooter : function()
53459     {
53460         
53461         var fel = this.editor.wrap.createChild();
53462         this.footer = new Roo.Toolbar(fel);
53463         // toolbar has scrolly on left / right?
53464         var footDisp= new Roo.Toolbar.Fill();
53465         var _t = this;
53466         this.footer.add(
53467             {
53468                 text : '&lt;',
53469                 xtype: 'Button',
53470                 handler : function() {
53471                     _t.footDisp.scrollTo('left',0,true)
53472                 }
53473             }
53474         );
53475         this.footer.add( footDisp );
53476         this.footer.add( 
53477             {
53478                 text : '&gt;',
53479                 xtype: 'Button',
53480                 handler : function() {
53481                     // no animation..
53482                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
53483                 }
53484             }
53485         );
53486         var fel = Roo.get(footDisp.el);
53487         fel.addClass('x-editor-context');
53488         this.footDispWrap = fel; 
53489         this.footDispWrap.overflow  = 'hidden';
53490         
53491         this.footDisp = fel.createChild();
53492         this.footDispWrap.on('click', this.onContextClick, this)
53493         
53494         
53495     },
53496     // when the footer contect changes
53497     onContextClick : function (ev,dom)
53498     {
53499         ev.preventDefault();
53500         var  cn = dom.className;
53501         //Roo.log(cn);
53502         if (!cn.match(/x-ed-loc-/)) {
53503             return;
53504         }
53505         var n = cn.split('-').pop();
53506         var ans = this.footerEls;
53507         var sel = ans[n];
53508         
53509         this.editorcore.selectNode(sel);
53510         
53511         
53512         this.updateToolbar(null, null, sel);
53513         
53514         
53515     }
53516     
53517     
53518     
53519     
53520     
53521 });
53522
53523
53524
53525
53526
53527 /*
53528  * Based on:
53529  * Ext JS Library 1.1.1
53530  * Copyright(c) 2006-2007, Ext JS, LLC.
53531  *
53532  * Originally Released Under LGPL - original licence link has changed is not relivant.
53533  *
53534  * Fork - LGPL
53535  * <script type="text/javascript">
53536  */
53537  
53538 /**
53539  * @class Roo.form.BasicForm
53540  * @extends Roo.util.Observable
53541  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
53542  * @constructor
53543  * @param {String/HTMLElement/Roo.Element} el The form element or its id
53544  * @param {Object} config Configuration options
53545  */
53546 Roo.form.BasicForm = function(el, config){
53547     this.allItems = [];
53548     this.childForms = [];
53549     Roo.apply(this, config);
53550     /*
53551      * The Roo.form.Field items in this form.
53552      * @type MixedCollection
53553      */
53554      
53555      
53556     this.items = new Roo.util.MixedCollection(false, function(o){
53557         return o.id || (o.id = Roo.id());
53558     });
53559     this.addEvents({
53560         /**
53561          * @event beforeaction
53562          * Fires before any action is performed. Return false to cancel the action.
53563          * @param {Form} this
53564          * @param {Action} action The action to be performed
53565          */
53566         beforeaction: true,
53567         /**
53568          * @event actionfailed
53569          * Fires when an action fails.
53570          * @param {Form} this
53571          * @param {Action} action The action that failed
53572          */
53573         actionfailed : true,
53574         /**
53575          * @event actioncomplete
53576          * Fires when an action is completed.
53577          * @param {Form} this
53578          * @param {Action} action The action that completed
53579          */
53580         actioncomplete : true
53581     });
53582     if(el){
53583         this.initEl(el);
53584     }
53585     Roo.form.BasicForm.superclass.constructor.call(this);
53586     
53587     Roo.form.BasicForm.popover.apply();
53588 };
53589
53590 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
53591     /**
53592      * @cfg {String} method
53593      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
53594      */
53595     /**
53596      * @cfg {DataReader} reader
53597      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
53598      * This is optional as there is built-in support for processing JSON.
53599      */
53600     /**
53601      * @cfg {DataReader} errorReader
53602      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
53603      * This is completely optional as there is built-in support for processing JSON.
53604      */
53605     /**
53606      * @cfg {String} url
53607      * The URL to use for form actions if one isn't supplied in the action options.
53608      */
53609     /**
53610      * @cfg {Boolean} fileUpload
53611      * Set to true if this form is a file upload.
53612      */
53613      
53614     /**
53615      * @cfg {Object} baseParams
53616      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
53617      */
53618      /**
53619      
53620     /**
53621      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
53622      */
53623     timeout: 30,
53624
53625     // private
53626     activeAction : null,
53627
53628     /**
53629      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
53630      * or setValues() data instead of when the form was first created.
53631      */
53632     trackResetOnLoad : false,
53633     
53634     
53635     /**
53636      * childForms - used for multi-tab forms
53637      * @type {Array}
53638      */
53639     childForms : false,
53640     
53641     /**
53642      * allItems - full list of fields.
53643      * @type {Array}
53644      */
53645     allItems : false,
53646     
53647     /**
53648      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
53649      * element by passing it or its id or mask the form itself by passing in true.
53650      * @type Mixed
53651      */
53652     waitMsgTarget : false,
53653     
53654     /**
53655      * @type Boolean
53656      */
53657     disableMask : false,
53658     
53659     /**
53660      * @cfg {Boolean} errorMask (true|false) default false
53661      */
53662     errorMask : false,
53663     
53664     /**
53665      * @cfg {Number} maskOffset Default 100
53666      */
53667     maskOffset : 100,
53668
53669     // private
53670     initEl : function(el){
53671         this.el = Roo.get(el);
53672         this.id = this.el.id || Roo.id();
53673         this.el.on('submit', this.onSubmit, this);
53674         this.el.addClass('x-form');
53675     },
53676
53677     // private
53678     onSubmit : function(e){
53679         e.stopEvent();
53680     },
53681
53682     /**
53683      * Returns true if client-side validation on the form is successful.
53684      * @return Boolean
53685      */
53686     isValid : function(){
53687         var valid = true;
53688         var target = false;
53689         this.items.each(function(f){
53690             if(f.validate()){
53691                 return;
53692             }
53693             
53694             valid = false;
53695                 
53696             if(!target && f.el.isVisible(true)){
53697                 target = f;
53698             }
53699         });
53700         
53701         if(this.errorMask && !valid){
53702             Roo.form.BasicForm.popover.mask(this, target);
53703         }
53704         
53705         return valid;
53706     },
53707     /**
53708      * Returns array of invalid form fields.
53709      * @return Array
53710      */
53711     
53712     invalidFields : function()
53713     {
53714         var ret = [];
53715         this.items.each(function(f){
53716             if(f.validate()){
53717                 return;
53718             }
53719             ret.push(f);
53720             
53721         });
53722         
53723         return ret;
53724     },
53725     
53726     
53727     /**
53728      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
53729      * @return Boolean
53730      */
53731     isDirty : function(){
53732         var dirty = false;
53733         this.items.each(function(f){
53734            if(f.isDirty()){
53735                dirty = true;
53736                return false;
53737            }
53738         });
53739         return dirty;
53740     },
53741     
53742     /**
53743      * Returns true if any fields in this form have changed since their original load. (New version)
53744      * @return Boolean
53745      */
53746     
53747     hasChanged : function()
53748     {
53749         var dirty = false;
53750         this.items.each(function(f){
53751            if(f.hasChanged()){
53752                dirty = true;
53753                return false;
53754            }
53755         });
53756         return dirty;
53757         
53758     },
53759     /**
53760      * Resets all hasChanged to 'false' -
53761      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
53762      * So hasChanged storage is only to be used for this purpose
53763      * @return Boolean
53764      */
53765     resetHasChanged : function()
53766     {
53767         this.items.each(function(f){
53768            f.resetHasChanged();
53769         });
53770         
53771     },
53772     
53773     
53774     /**
53775      * Performs a predefined action (submit or load) or custom actions you define on this form.
53776      * @param {String} actionName The name of the action type
53777      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
53778      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
53779      * accept other config options):
53780      * <pre>
53781 Property          Type             Description
53782 ----------------  ---------------  ----------------------------------------------------------------------------------
53783 url               String           The url for the action (defaults to the form's url)
53784 method            String           The form method to use (defaults to the form's method, or POST if not defined)
53785 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
53786 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
53787                                    validate the form on the client (defaults to false)
53788      * </pre>
53789      * @return {BasicForm} this
53790      */
53791     doAction : function(action, options){
53792         if(typeof action == 'string'){
53793             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
53794         }
53795         if(this.fireEvent('beforeaction', this, action) !== false){
53796             this.beforeAction(action);
53797             action.run.defer(100, action);
53798         }
53799         return this;
53800     },
53801
53802     /**
53803      * Shortcut to do a submit action.
53804      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
53805      * @return {BasicForm} this
53806      */
53807     submit : function(options){
53808         this.doAction('submit', options);
53809         return this;
53810     },
53811
53812     /**
53813      * Shortcut to do a load action.
53814      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
53815      * @return {BasicForm} this
53816      */
53817     load : function(options){
53818         this.doAction('load', options);
53819         return this;
53820     },
53821
53822     /**
53823      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
53824      * @param {Record} record The record to edit
53825      * @return {BasicForm} this
53826      */
53827     updateRecord : function(record){
53828         record.beginEdit();
53829         var fs = record.fields;
53830         fs.each(function(f){
53831             var field = this.findField(f.name);
53832             if(field){
53833                 record.set(f.name, field.getValue());
53834             }
53835         }, this);
53836         record.endEdit();
53837         return this;
53838     },
53839
53840     /**
53841      * Loads an Roo.data.Record into this form.
53842      * @param {Record} record The record to load
53843      * @return {BasicForm} this
53844      */
53845     loadRecord : function(record){
53846         this.setValues(record.data);
53847         return this;
53848     },
53849
53850     // private
53851     beforeAction : function(action){
53852         var o = action.options;
53853         
53854         if(!this.disableMask) {
53855             if(this.waitMsgTarget === true){
53856                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
53857             }else if(this.waitMsgTarget){
53858                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
53859                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
53860             }else {
53861                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
53862             }
53863         }
53864         
53865          
53866     },
53867
53868     // private
53869     afterAction : function(action, success){
53870         this.activeAction = null;
53871         var o = action.options;
53872         
53873         if(!this.disableMask) {
53874             if(this.waitMsgTarget === true){
53875                 this.el.unmask();
53876             }else if(this.waitMsgTarget){
53877                 this.waitMsgTarget.unmask();
53878             }else{
53879                 Roo.MessageBox.updateProgress(1);
53880                 Roo.MessageBox.hide();
53881             }
53882         }
53883         
53884         if(success){
53885             if(o.reset){
53886                 this.reset();
53887             }
53888             Roo.callback(o.success, o.scope, [this, action]);
53889             this.fireEvent('actioncomplete', this, action);
53890             
53891         }else{
53892             
53893             // failure condition..
53894             // we have a scenario where updates need confirming.
53895             // eg. if a locking scenario exists..
53896             // we look for { errors : { needs_confirm : true }} in the response.
53897             if (
53898                 (typeof(action.result) != 'undefined')  &&
53899                 (typeof(action.result.errors) != 'undefined')  &&
53900                 (typeof(action.result.errors.needs_confirm) != 'undefined')
53901            ){
53902                 var _t = this;
53903                 Roo.MessageBox.confirm(
53904                     "Change requires confirmation",
53905                     action.result.errorMsg,
53906                     function(r) {
53907                         if (r != 'yes') {
53908                             return;
53909                         }
53910                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
53911                     }
53912                     
53913                 );
53914                 
53915                 
53916                 
53917                 return;
53918             }
53919             
53920             Roo.callback(o.failure, o.scope, [this, action]);
53921             // show an error message if no failed handler is set..
53922             if (!this.hasListener('actionfailed')) {
53923                 Roo.MessageBox.alert("Error",
53924                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
53925                         action.result.errorMsg :
53926                         "Saving Failed, please check your entries or try again"
53927                 );
53928             }
53929             
53930             this.fireEvent('actionfailed', this, action);
53931         }
53932         
53933     },
53934
53935     /**
53936      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
53937      * @param {String} id The value to search for
53938      * @return Field
53939      */
53940     findField : function(id){
53941         var field = this.items.get(id);
53942         if(!field){
53943             this.items.each(function(f){
53944                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
53945                     field = f;
53946                     return false;
53947                 }
53948             });
53949         }
53950         return field || null;
53951     },
53952
53953     /**
53954      * Add a secondary form to this one, 
53955      * Used to provide tabbed forms. One form is primary, with hidden values 
53956      * which mirror the elements from the other forms.
53957      * 
53958      * @param {Roo.form.Form} form to add.
53959      * 
53960      */
53961     addForm : function(form)
53962     {
53963        
53964         if (this.childForms.indexOf(form) > -1) {
53965             // already added..
53966             return;
53967         }
53968         this.childForms.push(form);
53969         var n = '';
53970         Roo.each(form.allItems, function (fe) {
53971             
53972             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
53973             if (this.findField(n)) { // already added..
53974                 return;
53975             }
53976             var add = new Roo.form.Hidden({
53977                 name : n
53978             });
53979             add.render(this.el);
53980             
53981             this.add( add );
53982         }, this);
53983         
53984     },
53985     /**
53986      * Mark fields in this form invalid in bulk.
53987      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
53988      * @return {BasicForm} this
53989      */
53990     markInvalid : function(errors){
53991         if(errors instanceof Array){
53992             for(var i = 0, len = errors.length; i < len; i++){
53993                 var fieldError = errors[i];
53994                 var f = this.findField(fieldError.id);
53995                 if(f){
53996                     f.markInvalid(fieldError.msg);
53997                 }
53998             }
53999         }else{
54000             var field, id;
54001             for(id in errors){
54002                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
54003                     field.markInvalid(errors[id]);
54004                 }
54005             }
54006         }
54007         Roo.each(this.childForms || [], function (f) {
54008             f.markInvalid(errors);
54009         });
54010         
54011         return this;
54012     },
54013
54014     /**
54015      * Set values for fields in this form in bulk.
54016      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
54017      * @return {BasicForm} this
54018      */
54019     setValues : function(values){
54020         if(values instanceof Array){ // array of objects
54021             for(var i = 0, len = values.length; i < len; i++){
54022                 var v = values[i];
54023                 var f = this.findField(v.id);
54024                 if(f){
54025                     f.setValue(v.value);
54026                     if(this.trackResetOnLoad){
54027                         f.originalValue = f.getValue();
54028                     }
54029                 }
54030             }
54031         }else{ // object hash
54032             var field, id;
54033             for(id in values){
54034                 if(typeof values[id] != 'function' && (field = this.findField(id))){
54035                     
54036                     if (field.setFromData && 
54037                         field.valueField && 
54038                         field.displayField &&
54039                         // combos' with local stores can 
54040                         // be queried via setValue()
54041                         // to set their value..
54042                         (field.store && !field.store.isLocal)
54043                         ) {
54044                         // it's a combo
54045                         var sd = { };
54046                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
54047                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
54048                         field.setFromData(sd);
54049                         
54050                     } else {
54051                         field.setValue(values[id]);
54052                     }
54053                     
54054                     
54055                     if(this.trackResetOnLoad){
54056                         field.originalValue = field.getValue();
54057                     }
54058                 }
54059             }
54060         }
54061         this.resetHasChanged();
54062         
54063         
54064         Roo.each(this.childForms || [], function (f) {
54065             f.setValues(values);
54066             f.resetHasChanged();
54067         });
54068                 
54069         return this;
54070     },
54071  
54072     /**
54073      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
54074      * they are returned as an array.
54075      * @param {Boolean} asString
54076      * @return {Object}
54077      */
54078     getValues : function(asString)
54079     {
54080         if (this.childForms) {
54081             // copy values from the child forms
54082             Roo.each(this.childForms, function (f) {
54083                 this.setValues(f.getFieldValues()); // get the full set of data, as we might be copying comboboxes from external into this one.
54084             }, this);
54085         }
54086         
54087         // use formdata
54088         if (typeof(FormData) != 'undefined' && asString !== true) {
54089             // this relies on a 'recent' version of chrome apparently...
54090             try {
54091                 var fd = (new FormData(this.el.dom)).entries();
54092                 var ret = {};
54093                 var ent = fd.next();
54094                 while (!ent.done) {
54095                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
54096                     ent = fd.next();
54097                 };
54098                 return ret;
54099             } catch(e) {
54100                 
54101             }
54102             
54103         }
54104         
54105         
54106         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
54107         if(asString === true){
54108             return fs;
54109         }
54110         return Roo.urlDecode(fs);
54111     },
54112     
54113     /**
54114      * Returns the fields in this form as an object with key/value pairs. 
54115      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
54116      * Normally this will not return readOnly data 
54117      * @param {Boolean} with_readonly return readonly field data.
54118      * @return {Object}
54119      */
54120     getFieldValues : function(with_readonly)
54121     {
54122         if (this.childForms) {
54123             // copy values from the child forms
54124             // should this call getFieldValues - probably not as we do not currently copy
54125             // hidden fields when we generate..
54126             Roo.each(this.childForms, function (f) {
54127                 this.setValues(f.getFieldValues());
54128             }, this);
54129         }
54130         
54131         var ret = {};
54132         this.items.each(function(f){
54133             
54134             if (f.readOnly && with_readonly !== true) {
54135                 return; // skip read only values. - this is in theory to stop 'old' values being copied over new ones
54136                         // if a subform contains a copy of them.
54137                         // if you have subforms with the same editable data, you will need to copy the data back
54138                         // and forth.
54139             }
54140             
54141             if (!f.getName()) {
54142                 return;
54143             }
54144             var v = f.getValue();
54145             if (f.inputType =='radio') {
54146                 if (typeof(ret[f.getName()]) == 'undefined') {
54147                     ret[f.getName()] = ''; // empty..
54148                 }
54149                 
54150                 if (!f.el.dom.checked) {
54151                     return;
54152                     
54153                 }
54154                 v = f.el.dom.value;
54155                 
54156             }
54157             
54158             // not sure if this supported any more..
54159             if ((typeof(v) == 'object') && f.getRawValue) {
54160                 v = f.getRawValue() ; // dates..
54161             }
54162             // combo boxes where name != hiddenName...
54163             if (f.name != f.getName()) {
54164                 ret[f.name] = f.getRawValue();
54165             }
54166             ret[f.getName()] = v;
54167         });
54168         
54169         return ret;
54170     },
54171
54172     /**
54173      * Clears all invalid messages in this form.
54174      * @return {BasicForm} this
54175      */
54176     clearInvalid : function(){
54177         this.items.each(function(f){
54178            f.clearInvalid();
54179         });
54180         
54181         Roo.each(this.childForms || [], function (f) {
54182             f.clearInvalid();
54183         });
54184         
54185         
54186         return this;
54187     },
54188
54189     /**
54190      * Resets this form.
54191      * @return {BasicForm} this
54192      */
54193     reset : function(){
54194         this.items.each(function(f){
54195             f.reset();
54196         });
54197         
54198         Roo.each(this.childForms || [], function (f) {
54199             f.reset();
54200         });
54201         this.resetHasChanged();
54202         
54203         return this;
54204     },
54205
54206     /**
54207      * Add Roo.form components to this form.
54208      * @param {Field} field1
54209      * @param {Field} field2 (optional)
54210      * @param {Field} etc (optional)
54211      * @return {BasicForm} this
54212      */
54213     add : function(){
54214         this.items.addAll(Array.prototype.slice.call(arguments, 0));
54215         return this;
54216     },
54217
54218
54219     /**
54220      * Removes a field from the items collection (does NOT remove its markup).
54221      * @param {Field} field
54222      * @return {BasicForm} this
54223      */
54224     remove : function(field){
54225         this.items.remove(field);
54226         return this;
54227     },
54228
54229     /**
54230      * Looks at the fields in this form, checks them for an id attribute,
54231      * and calls applyTo on the existing dom element with that id.
54232      * @return {BasicForm} this
54233      */
54234     render : function(){
54235         this.items.each(function(f){
54236             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
54237                 f.applyTo(f.id);
54238             }
54239         });
54240         return this;
54241     },
54242
54243     /**
54244      * Calls {@link Ext#apply} for all fields in this form with the passed object.
54245      * @param {Object} values
54246      * @return {BasicForm} this
54247      */
54248     applyToFields : function(o){
54249         this.items.each(function(f){
54250            Roo.apply(f, o);
54251         });
54252         return this;
54253     },
54254
54255     /**
54256      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
54257      * @param {Object} values
54258      * @return {BasicForm} this
54259      */
54260     applyIfToFields : function(o){
54261         this.items.each(function(f){
54262            Roo.applyIf(f, o);
54263         });
54264         return this;
54265     }
54266 });
54267
54268 // back compat
54269 Roo.BasicForm = Roo.form.BasicForm;
54270
54271 Roo.apply(Roo.form.BasicForm, {
54272     
54273     popover : {
54274         
54275         padding : 5,
54276         
54277         isApplied : false,
54278         
54279         isMasked : false,
54280         
54281         form : false,
54282         
54283         target : false,
54284         
54285         intervalID : false,
54286         
54287         maskEl : false,
54288         
54289         apply : function()
54290         {
54291             if(this.isApplied){
54292                 return;
54293             }
54294             
54295             this.maskEl = {
54296                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
54297                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
54298                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
54299                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
54300             };
54301             
54302             this.maskEl.top.enableDisplayMode("block");
54303             this.maskEl.left.enableDisplayMode("block");
54304             this.maskEl.bottom.enableDisplayMode("block");
54305             this.maskEl.right.enableDisplayMode("block");
54306             
54307             Roo.get(document.body).on('click', function(){
54308                 this.unmask();
54309             }, this);
54310             
54311             Roo.get(document.body).on('touchstart', function(){
54312                 this.unmask();
54313             }, this);
54314             
54315             this.isApplied = true
54316         },
54317         
54318         mask : function(form, target)
54319         {
54320             this.form = form;
54321             
54322             this.target = target;
54323             
54324             if(!this.form.errorMask || !target.el){
54325                 return;
54326             }
54327             
54328             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
54329             
54330             var ot = this.target.el.calcOffsetsTo(scrollable);
54331             
54332             var scrollTo = ot[1] - this.form.maskOffset;
54333             
54334             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
54335             
54336             scrollable.scrollTo('top', scrollTo);
54337             
54338             var el = this.target.wrap || this.target.el;
54339             
54340             var box = el.getBox();
54341             
54342             this.maskEl.top.setStyle('position', 'absolute');
54343             this.maskEl.top.setStyle('z-index', 10000);
54344             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
54345             this.maskEl.top.setLeft(0);
54346             this.maskEl.top.setTop(0);
54347             this.maskEl.top.show();
54348             
54349             this.maskEl.left.setStyle('position', 'absolute');
54350             this.maskEl.left.setStyle('z-index', 10000);
54351             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
54352             this.maskEl.left.setLeft(0);
54353             this.maskEl.left.setTop(box.y - this.padding);
54354             this.maskEl.left.show();
54355
54356             this.maskEl.bottom.setStyle('position', 'absolute');
54357             this.maskEl.bottom.setStyle('z-index', 10000);
54358             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
54359             this.maskEl.bottom.setLeft(0);
54360             this.maskEl.bottom.setTop(box.bottom + this.padding);
54361             this.maskEl.bottom.show();
54362
54363             this.maskEl.right.setStyle('position', 'absolute');
54364             this.maskEl.right.setStyle('z-index', 10000);
54365             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
54366             this.maskEl.right.setLeft(box.right + this.padding);
54367             this.maskEl.right.setTop(box.y - this.padding);
54368             this.maskEl.right.show();
54369
54370             this.intervalID = window.setInterval(function() {
54371                 Roo.form.BasicForm.popover.unmask();
54372             }, 10000);
54373
54374             window.onwheel = function(){ return false;};
54375             
54376             (function(){ this.isMasked = true; }).defer(500, this);
54377             
54378         },
54379         
54380         unmask : function()
54381         {
54382             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
54383                 return;
54384             }
54385             
54386             this.maskEl.top.setStyle('position', 'absolute');
54387             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
54388             this.maskEl.top.hide();
54389
54390             this.maskEl.left.setStyle('position', 'absolute');
54391             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
54392             this.maskEl.left.hide();
54393
54394             this.maskEl.bottom.setStyle('position', 'absolute');
54395             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
54396             this.maskEl.bottom.hide();
54397
54398             this.maskEl.right.setStyle('position', 'absolute');
54399             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
54400             this.maskEl.right.hide();
54401             
54402             window.onwheel = function(){ return true;};
54403             
54404             if(this.intervalID){
54405                 window.clearInterval(this.intervalID);
54406                 this.intervalID = false;
54407             }
54408             
54409             this.isMasked = false;
54410             
54411         }
54412         
54413     }
54414     
54415 });/*
54416  * Based on:
54417  * Ext JS Library 1.1.1
54418  * Copyright(c) 2006-2007, Ext JS, LLC.
54419  *
54420  * Originally Released Under LGPL - original licence link has changed is not relivant.
54421  *
54422  * Fork - LGPL
54423  * <script type="text/javascript">
54424  */
54425
54426 /**
54427  * @class Roo.form.Form
54428  * @extends Roo.form.BasicForm
54429  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
54430  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
54431  * @constructor
54432  * @param {Object} config Configuration options
54433  */
54434 Roo.form.Form = function(config){
54435     var xitems =  [];
54436     if (config.items) {
54437         xitems = config.items;
54438         delete config.items;
54439     }
54440    
54441     
54442     Roo.form.Form.superclass.constructor.call(this, null, config);
54443     this.url = this.url || this.action;
54444     if(!this.root){
54445         this.root = new Roo.form.Layout(Roo.applyIf({
54446             id: Roo.id()
54447         }, config));
54448     }
54449     this.active = this.root;
54450     /**
54451      * Array of all the buttons that have been added to this form via {@link addButton}
54452      * @type Array
54453      */
54454     this.buttons = [];
54455     this.allItems = [];
54456     this.addEvents({
54457         /**
54458          * @event clientvalidation
54459          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
54460          * @param {Form} this
54461          * @param {Boolean} valid true if the form has passed client-side validation
54462          */
54463         clientvalidation: true,
54464         /**
54465          * @event rendered
54466          * Fires when the form is rendered
54467          * @param {Roo.form.Form} form
54468          */
54469         rendered : true
54470     });
54471     
54472     if (this.progressUrl) {
54473             // push a hidden field onto the list of fields..
54474             this.addxtype( {
54475                     xns: Roo.form, 
54476                     xtype : 'Hidden', 
54477                     name : 'UPLOAD_IDENTIFIER' 
54478             });
54479         }
54480         
54481     
54482     Roo.each(xitems, this.addxtype, this);
54483     
54484 };
54485
54486 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
54487      /**
54488      * @cfg {Roo.Button} buttons[] buttons at bottom of form
54489      */
54490     
54491     /**
54492      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
54493      */
54494     /**
54495      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
54496      */
54497     /**
54498      * @cfg {String} (left|center|right) buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
54499      */
54500     buttonAlign:'center',
54501
54502     /**
54503      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
54504      */
54505     minButtonWidth:75,
54506
54507     /**
54508      * @cfg {String} labelAlign (left|top|right) Valid values are "left," "top" and "right" (defaults to "left").
54509      * This property cascades to child containers if not set.
54510      */
54511     labelAlign:'left',
54512
54513     /**
54514      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
54515      * fires a looping event with that state. This is required to bind buttons to the valid
54516      * state using the config value formBind:true on the button.
54517      */
54518     monitorValid : false,
54519
54520     /**
54521      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
54522      */
54523     monitorPoll : 200,
54524     
54525     /**
54526      * @cfg {String} progressUrl - Url to return progress data 
54527      */
54528     
54529     progressUrl : false,
54530     /**
54531      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
54532      * sending a formdata with extra parameters - eg uploaded elements.
54533      */
54534     
54535     formData : false,
54536     
54537     /**
54538      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
54539      * fields are added and the column is closed. If no fields are passed the column remains open
54540      * until end() is called.
54541      * @param {Object} config The config to pass to the column
54542      * @param {Field} field1 (optional)
54543      * @param {Field} field2 (optional)
54544      * @param {Field} etc (optional)
54545      * @return Column The column container object
54546      */
54547     column : function(c){
54548         var col = new Roo.form.Column(c);
54549         this.start(col);
54550         if(arguments.length > 1){ // duplicate code required because of Opera
54551             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54552             this.end();
54553         }
54554         return col;
54555     },
54556
54557     /**
54558      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
54559      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
54560      * until end() is called.
54561      * @param {Object} config The config to pass to the fieldset
54562      * @param {Field} field1 (optional)
54563      * @param {Field} field2 (optional)
54564      * @param {Field} etc (optional)
54565      * @return FieldSet The fieldset container object
54566      */
54567     fieldset : function(c){
54568         var fs = new Roo.form.FieldSet(c);
54569         this.start(fs);
54570         if(arguments.length > 1){ // duplicate code required because of Opera
54571             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54572             this.end();
54573         }
54574         return fs;
54575     },
54576
54577     /**
54578      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
54579      * fields are added and the container is closed. If no fields are passed the container remains open
54580      * until end() is called.
54581      * @param {Object} config The config to pass to the Layout
54582      * @param {Field} field1 (optional)
54583      * @param {Field} field2 (optional)
54584      * @param {Field} etc (optional)
54585      * @return Layout The container object
54586      */
54587     container : function(c){
54588         var l = new Roo.form.Layout(c);
54589         this.start(l);
54590         if(arguments.length > 1){ // duplicate code required because of Opera
54591             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54592             this.end();
54593         }
54594         return l;
54595     },
54596
54597     /**
54598      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
54599      * @param {Object} container A Roo.form.Layout or subclass of Layout
54600      * @return {Form} this
54601      */
54602     start : function(c){
54603         // cascade label info
54604         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
54605         this.active.stack.push(c);
54606         c.ownerCt = this.active;
54607         this.active = c;
54608         return this;
54609     },
54610
54611     /**
54612      * Closes the current open container
54613      * @return {Form} this
54614      */
54615     end : function(){
54616         if(this.active == this.root){
54617             return this;
54618         }
54619         this.active = this.active.ownerCt;
54620         return this;
54621     },
54622
54623     /**
54624      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
54625      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
54626      * as the label of the field.
54627      * @param {Field} field1
54628      * @param {Field} field2 (optional)
54629      * @param {Field} etc. (optional)
54630      * @return {Form} this
54631      */
54632     add : function(){
54633         this.active.stack.push.apply(this.active.stack, arguments);
54634         this.allItems.push.apply(this.allItems,arguments);
54635         var r = [];
54636         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
54637             if(a[i].isFormField){
54638                 r.push(a[i]);
54639             }
54640         }
54641         if(r.length > 0){
54642             Roo.form.Form.superclass.add.apply(this, r);
54643         }
54644         return this;
54645     },
54646     
54647
54648     
54649     
54650     
54651      /**
54652      * Find any element that has been added to a form, using it's ID or name
54653      * This can include framesets, columns etc. along with regular fields..
54654      * @param {String} id - id or name to find.
54655      
54656      * @return {Element} e - or false if nothing found.
54657      */
54658     findbyId : function(id)
54659     {
54660         var ret = false;
54661         if (!id) {
54662             return ret;
54663         }
54664         Roo.each(this.allItems, function(f){
54665             if (f.id == id || f.name == id ){
54666                 ret = f;
54667                 return false;
54668             }
54669         });
54670         return ret;
54671     },
54672
54673     
54674     
54675     /**
54676      * Render this form into the passed container. This should only be called once!
54677      * @param {String/HTMLElement/Element} container The element this component should be rendered into
54678      * @return {Form} this
54679      */
54680     render : function(ct)
54681     {
54682         
54683         
54684         
54685         ct = Roo.get(ct);
54686         var o = this.autoCreate || {
54687             tag: 'form',
54688             method : this.method || 'POST',
54689             id : this.id || Roo.id()
54690         };
54691         this.initEl(ct.createChild(o));
54692
54693         this.root.render(this.el);
54694         
54695        
54696              
54697         this.items.each(function(f){
54698             f.render('x-form-el-'+f.id);
54699         });
54700
54701         if(this.buttons.length > 0){
54702             // tables are required to maintain order and for correct IE layout
54703             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
54704                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
54705                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
54706             }}, null, true);
54707             var tr = tb.getElementsByTagName('tr')[0];
54708             for(var i = 0, len = this.buttons.length; i < len; i++) {
54709                 var b = this.buttons[i];
54710                 var td = document.createElement('td');
54711                 td.className = 'x-form-btn-td';
54712                 b.render(tr.appendChild(td));
54713             }
54714         }
54715         if(this.monitorValid){ // initialize after render
54716             this.startMonitoring();
54717         }
54718         this.fireEvent('rendered', this);
54719         return this;
54720     },
54721
54722     /**
54723      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
54724      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
54725      * object or a valid Roo.DomHelper element config
54726      * @param {Function} handler The function called when the button is clicked
54727      * @param {Object} scope (optional) The scope of the handler function
54728      * @return {Roo.Button}
54729      */
54730     addButton : function(config, handler, scope){
54731         var bc = {
54732             handler: handler,
54733             scope: scope,
54734             minWidth: this.minButtonWidth,
54735             hideParent:true
54736         };
54737         if(typeof config == "string"){
54738             bc.text = config;
54739         }else{
54740             Roo.apply(bc, config);
54741         }
54742         var btn = new Roo.Button(null, bc);
54743         this.buttons.push(btn);
54744         return btn;
54745     },
54746
54747      /**
54748      * Adds a series of form elements (using the xtype property as the factory method.
54749      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
54750      * @param {Object} config 
54751      */
54752     
54753     addxtype : function()
54754     {
54755         var ar = Array.prototype.slice.call(arguments, 0);
54756         var ret = false;
54757         for(var i = 0; i < ar.length; i++) {
54758             if (!ar[i]) {
54759                 continue; // skip -- if this happends something invalid got sent, we 
54760                 // should ignore it, as basically that interface element will not show up
54761                 // and that should be pretty obvious!!
54762             }
54763             
54764             if (Roo.form[ar[i].xtype]) {
54765                 ar[i].form = this;
54766                 var fe = Roo.factory(ar[i], Roo.form);
54767                 if (!ret) {
54768                     ret = fe;
54769                 }
54770                 fe.form = this;
54771                 if (fe.store) {
54772                     fe.store.form = this;
54773                 }
54774                 if (fe.isLayout) {  
54775                          
54776                     this.start(fe);
54777                     this.allItems.push(fe);
54778                     if (fe.items && fe.addxtype) {
54779                         fe.addxtype.apply(fe, fe.items);
54780                         delete fe.items;
54781                     }
54782                      this.end();
54783                     continue;
54784                 }
54785                 
54786                 
54787                  
54788                 this.add(fe);
54789               //  console.log('adding ' + ar[i].xtype);
54790             }
54791             if (ar[i].xtype == 'Button') {  
54792                 //console.log('adding button');
54793                 //console.log(ar[i]);
54794                 this.addButton(ar[i]);
54795                 this.allItems.push(fe);
54796                 continue;
54797             }
54798             
54799             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
54800                 alert('end is not supported on xtype any more, use items');
54801             //    this.end();
54802             //    //console.log('adding end');
54803             }
54804             
54805         }
54806         return ret;
54807     },
54808     
54809     /**
54810      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
54811      * option "monitorValid"
54812      */
54813     startMonitoring : function(){
54814         if(!this.bound){
54815             this.bound = true;
54816             Roo.TaskMgr.start({
54817                 run : this.bindHandler,
54818                 interval : this.monitorPoll || 200,
54819                 scope: this
54820             });
54821         }
54822     },
54823
54824     /**
54825      * Stops monitoring of the valid state of this form
54826      */
54827     stopMonitoring : function(){
54828         this.bound = false;
54829     },
54830
54831     // private
54832     bindHandler : function(){
54833         if(!this.bound){
54834             return false; // stops binding
54835         }
54836         var valid = true;
54837         this.items.each(function(f){
54838             if(!f.isValid(true)){
54839                 valid = false;
54840                 return false;
54841             }
54842         });
54843         for(var i = 0, len = this.buttons.length; i < len; i++){
54844             var btn = this.buttons[i];
54845             if(btn.formBind === true && btn.disabled === valid){
54846                 btn.setDisabled(!valid);
54847             }
54848         }
54849         this.fireEvent('clientvalidation', this, valid);
54850     }
54851     
54852     
54853     
54854     
54855     
54856     
54857     
54858     
54859 });
54860
54861
54862 // back compat
54863 Roo.Form = Roo.form.Form;
54864 /*
54865  * Based on:
54866  * Ext JS Library 1.1.1
54867  * Copyright(c) 2006-2007, Ext JS, LLC.
54868  *
54869  * Originally Released Under LGPL - original licence link has changed is not relivant.
54870  *
54871  * Fork - LGPL
54872  * <script type="text/javascript">
54873  */
54874
54875 // as we use this in bootstrap.
54876 Roo.namespace('Roo.form');
54877  /**
54878  * @class Roo.form.Action
54879  * Internal Class used to handle form actions
54880  * @constructor
54881  * @param {Roo.form.BasicForm} el The form element or its id
54882  * @param {Object} config Configuration options
54883  */
54884
54885  
54886  
54887 // define the action interface
54888 Roo.form.Action = function(form, options){
54889     this.form = form;
54890     this.options = options || {};
54891 };
54892 /**
54893  * Client Validation Failed
54894  * @const 
54895  */
54896 Roo.form.Action.CLIENT_INVALID = 'client';
54897 /**
54898  * Server Validation Failed
54899  * @const 
54900  */
54901 Roo.form.Action.SERVER_INVALID = 'server';
54902  /**
54903  * Connect to Server Failed
54904  * @const 
54905  */
54906 Roo.form.Action.CONNECT_FAILURE = 'connect';
54907 /**
54908  * Reading Data from Server Failed
54909  * @const 
54910  */
54911 Roo.form.Action.LOAD_FAILURE = 'load';
54912
54913 Roo.form.Action.prototype = {
54914     type : 'default',
54915     failureType : undefined,
54916     response : undefined,
54917     result : undefined,
54918
54919     // interface method
54920     run : function(options){
54921
54922     },
54923
54924     // interface method
54925     success : function(response){
54926
54927     },
54928
54929     // interface method
54930     handleResponse : function(response){
54931
54932     },
54933
54934     // default connection failure
54935     failure : function(response){
54936         
54937         this.response = response;
54938         this.failureType = Roo.form.Action.CONNECT_FAILURE;
54939         this.form.afterAction(this, false);
54940     },
54941
54942     processResponse : function(response){
54943         this.response = response;
54944         if(!response.responseText){
54945             return true;
54946         }
54947         this.result = this.handleResponse(response);
54948         return this.result;
54949     },
54950
54951     // utility functions used internally
54952     getUrl : function(appendParams){
54953         var url = this.options.url || this.form.url || this.form.el.dom.action;
54954         if(appendParams){
54955             var p = this.getParams();
54956             if(p){
54957                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
54958             }
54959         }
54960         return url;
54961     },
54962
54963     getMethod : function(){
54964         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
54965     },
54966
54967     getParams : function(){
54968         var bp = this.form.baseParams;
54969         var p = this.options.params;
54970         if(p){
54971             if(typeof p == "object"){
54972                 p = Roo.urlEncode(Roo.applyIf(p, bp));
54973             }else if(typeof p == 'string' && bp){
54974                 p += '&' + Roo.urlEncode(bp);
54975             }
54976         }else if(bp){
54977             p = Roo.urlEncode(bp);
54978         }
54979         return p;
54980     },
54981
54982     createCallback : function(){
54983         return {
54984             success: this.success,
54985             failure: this.failure,
54986             scope: this,
54987             timeout: (this.form.timeout*1000),
54988             upload: this.form.fileUpload ? this.success : undefined
54989         };
54990     }
54991 };
54992
54993 Roo.form.Action.Submit = function(form, options){
54994     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
54995 };
54996
54997 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
54998     type : 'submit',
54999
55000     haveProgress : false,
55001     uploadComplete : false,
55002     
55003     // uploadProgress indicator.
55004     uploadProgress : function()
55005     {
55006         if (!this.form.progressUrl) {
55007             return;
55008         }
55009         
55010         if (!this.haveProgress) {
55011             Roo.MessageBox.progress("Uploading", "Uploading");
55012         }
55013         if (this.uploadComplete) {
55014            Roo.MessageBox.hide();
55015            return;
55016         }
55017         
55018         this.haveProgress = true;
55019    
55020         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
55021         
55022         var c = new Roo.data.Connection();
55023         c.request({
55024             url : this.form.progressUrl,
55025             params: {
55026                 id : uid
55027             },
55028             method: 'GET',
55029             success : function(req){
55030                //console.log(data);
55031                 var rdata = false;
55032                 var edata;
55033                 try  {
55034                    rdata = Roo.decode(req.responseText)
55035                 } catch (e) {
55036                     Roo.log("Invalid data from server..");
55037                     Roo.log(edata);
55038                     return;
55039                 }
55040                 if (!rdata || !rdata.success) {
55041                     Roo.log(rdata);
55042                     Roo.MessageBox.alert(Roo.encode(rdata));
55043                     return;
55044                 }
55045                 var data = rdata.data;
55046                 
55047                 if (this.uploadComplete) {
55048                    Roo.MessageBox.hide();
55049                    return;
55050                 }
55051                    
55052                 if (data){
55053                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
55054                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
55055                     );
55056                 }
55057                 this.uploadProgress.defer(2000,this);
55058             },
55059        
55060             failure: function(data) {
55061                 Roo.log('progress url failed ');
55062                 Roo.log(data);
55063             },
55064             scope : this
55065         });
55066            
55067     },
55068     
55069     
55070     run : function()
55071     {
55072         // run get Values on the form, so it syncs any secondary forms.
55073         this.form.getValues();
55074         
55075         var o = this.options;
55076         var method = this.getMethod();
55077         var isPost = method == 'POST';
55078         if(o.clientValidation === false || this.form.isValid()){
55079             
55080             if (this.form.progressUrl) {
55081                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
55082                     (new Date() * 1) + '' + Math.random());
55083                     
55084             } 
55085             
55086             
55087             Roo.Ajax.request(Roo.apply(this.createCallback(), {
55088                 form:this.form.el.dom,
55089                 url:this.getUrl(!isPost),
55090                 method: method,
55091                 params:isPost ? this.getParams() : null,
55092                 isUpload: this.form.fileUpload,
55093                 formData : this.form.formData
55094             }));
55095             
55096             this.uploadProgress();
55097
55098         }else if (o.clientValidation !== false){ // client validation failed
55099             this.failureType = Roo.form.Action.CLIENT_INVALID;
55100             this.form.afterAction(this, false);
55101         }
55102     },
55103
55104     success : function(response)
55105     {
55106         this.uploadComplete= true;
55107         if (this.haveProgress) {
55108             Roo.MessageBox.hide();
55109         }
55110         
55111         
55112         var result = this.processResponse(response);
55113         if(result === true || result.success){
55114             this.form.afterAction(this, true);
55115             return;
55116         }
55117         if(result.errors){
55118             this.form.markInvalid(result.errors);
55119             this.failureType = Roo.form.Action.SERVER_INVALID;
55120         }
55121         this.form.afterAction(this, false);
55122     },
55123     failure : function(response)
55124     {
55125         this.uploadComplete= true;
55126         if (this.haveProgress) {
55127             Roo.MessageBox.hide();
55128         }
55129         
55130         this.response = response;
55131         this.failureType = Roo.form.Action.CONNECT_FAILURE;
55132         this.form.afterAction(this, false);
55133     },
55134     
55135     handleResponse : function(response){
55136         if(this.form.errorReader){
55137             var rs = this.form.errorReader.read(response);
55138             var errors = [];
55139             if(rs.records){
55140                 for(var i = 0, len = rs.records.length; i < len; i++) {
55141                     var r = rs.records[i];
55142                     errors[i] = r.data;
55143                 }
55144             }
55145             if(errors.length < 1){
55146                 errors = null;
55147             }
55148             return {
55149                 success : rs.success,
55150                 errors : errors
55151             };
55152         }
55153         var ret = false;
55154         try {
55155             ret = Roo.decode(response.responseText);
55156         } catch (e) {
55157             ret = {
55158                 success: false,
55159                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
55160                 errors : []
55161             };
55162         }
55163         return ret;
55164         
55165     }
55166 });
55167
55168
55169 Roo.form.Action.Load = function(form, options){
55170     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
55171     this.reader = this.form.reader;
55172 };
55173
55174 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
55175     type : 'load',
55176
55177     run : function(){
55178         
55179         Roo.Ajax.request(Roo.apply(
55180                 this.createCallback(), {
55181                     method:this.getMethod(),
55182                     url:this.getUrl(false),
55183                     params:this.getParams()
55184         }));
55185     },
55186
55187     success : function(response){
55188         
55189         var result = this.processResponse(response);
55190         if(result === true || !result.success || !result.data){
55191             this.failureType = Roo.form.Action.LOAD_FAILURE;
55192             this.form.afterAction(this, false);
55193             return;
55194         }
55195         this.form.clearInvalid();
55196         this.form.setValues(result.data);
55197         this.form.afterAction(this, true);
55198     },
55199
55200     handleResponse : function(response){
55201         if(this.form.reader){
55202             var rs = this.form.reader.read(response);
55203             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
55204             return {
55205                 success : rs.success,
55206                 data : data
55207             };
55208         }
55209         return Roo.decode(response.responseText);
55210     }
55211 });
55212
55213 Roo.form.Action.ACTION_TYPES = {
55214     'load' : Roo.form.Action.Load,
55215     'submit' : Roo.form.Action.Submit
55216 };/*
55217  * Based on:
55218  * Ext JS Library 1.1.1
55219  * Copyright(c) 2006-2007, Ext JS, LLC.
55220  *
55221  * Originally Released Under LGPL - original licence link has changed is not relivant.
55222  *
55223  * Fork - LGPL
55224  * <script type="text/javascript">
55225  */
55226  
55227 /**
55228  * @class Roo.form.Layout
55229  * @extends Roo.Component
55230  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55231  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
55232  * @constructor
55233  * @param {Object} config Configuration options
55234  */
55235 Roo.form.Layout = function(config){
55236     var xitems = [];
55237     if (config.items) {
55238         xitems = config.items;
55239         delete config.items;
55240     }
55241     Roo.form.Layout.superclass.constructor.call(this, config);
55242     this.stack = [];
55243     Roo.each(xitems, this.addxtype, this);
55244      
55245 };
55246
55247 Roo.extend(Roo.form.Layout, Roo.Component, {
55248     /**
55249      * @cfg {String/Object} autoCreate
55250      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
55251      */
55252     /**
55253      * @cfg {String/Object/Function} style
55254      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
55255      * a function which returns such a specification.
55256      */
55257     /**
55258      * @cfg {String} labelAlign
55259      * Valid values are "left," "top" and "right" (defaults to "left")
55260      */
55261     /**
55262      * @cfg {Number} labelWidth
55263      * Fixed width in pixels of all field labels (defaults to undefined)
55264      */
55265     /**
55266      * @cfg {Boolean} clear
55267      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
55268      */
55269     clear : true,
55270     /**
55271      * @cfg {String} labelSeparator
55272      * The separator to use after field labels (defaults to ':')
55273      */
55274     labelSeparator : ':',
55275     /**
55276      * @cfg {Boolean} hideLabels
55277      * True to suppress the display of field labels in this layout (defaults to false)
55278      */
55279     hideLabels : false,
55280
55281     // private
55282     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
55283     
55284     isLayout : true,
55285     
55286     // private
55287     onRender : function(ct, position){
55288         if(this.el){ // from markup
55289             this.el = Roo.get(this.el);
55290         }else {  // generate
55291             var cfg = this.getAutoCreate();
55292             this.el = ct.createChild(cfg, position);
55293         }
55294         if(this.style){
55295             this.el.applyStyles(this.style);
55296         }
55297         if(this.labelAlign){
55298             this.el.addClass('x-form-label-'+this.labelAlign);
55299         }
55300         if(this.hideLabels){
55301             this.labelStyle = "display:none";
55302             this.elementStyle = "padding-left:0;";
55303         }else{
55304             if(typeof this.labelWidth == 'number'){
55305                 this.labelStyle = "width:"+this.labelWidth+"px;";
55306                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
55307             }
55308             if(this.labelAlign == 'top'){
55309                 this.labelStyle = "width:auto;";
55310                 this.elementStyle = "padding-left:0;";
55311             }
55312         }
55313         var stack = this.stack;
55314         var slen = stack.length;
55315         if(slen > 0){
55316             if(!this.fieldTpl){
55317                 var t = new Roo.Template(
55318                     '<div class="x-form-item {5}">',
55319                         '<label for="{0}" style="{2}">{1}{4}</label>',
55320                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55321                         '</div>',
55322                     '</div><div class="x-form-clear-left"></div>'
55323                 );
55324                 t.disableFormats = true;
55325                 t.compile();
55326                 Roo.form.Layout.prototype.fieldTpl = t;
55327             }
55328             for(var i = 0; i < slen; i++) {
55329                 if(stack[i].isFormField){
55330                     this.renderField(stack[i]);
55331                 }else{
55332                     this.renderComponent(stack[i]);
55333                 }
55334             }
55335         }
55336         if(this.clear){
55337             this.el.createChild({cls:'x-form-clear'});
55338         }
55339     },
55340
55341     // private
55342     renderField : function(f){
55343         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
55344                f.id, //0
55345                f.fieldLabel, //1
55346                f.labelStyle||this.labelStyle||'', //2
55347                this.elementStyle||'', //3
55348                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
55349                f.itemCls||this.itemCls||''  //5
55350        ], true).getPrevSibling());
55351     },
55352
55353     // private
55354     renderComponent : function(c){
55355         c.render(c.isLayout ? this.el : this.el.createChild());    
55356     },
55357     /**
55358      * Adds a object form elements (using the xtype property as the factory method.)
55359      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
55360      * @param {Object} config 
55361      */
55362     addxtype : function(o)
55363     {
55364         // create the lement.
55365         o.form = this.form;
55366         var fe = Roo.factory(o, Roo.form);
55367         this.form.allItems.push(fe);
55368         this.stack.push(fe);
55369         
55370         if (fe.isFormField) {
55371             this.form.items.add(fe);
55372         }
55373          
55374         return fe;
55375     }
55376 });
55377
55378 /**
55379  * @class Roo.form.Column
55380  * @extends Roo.form.Layout
55381  * @children Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55382  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
55383  * @constructor
55384  * @param {Object} config Configuration options
55385  */
55386 Roo.form.Column = function(config){
55387     Roo.form.Column.superclass.constructor.call(this, config);
55388 };
55389
55390 Roo.extend(Roo.form.Column, Roo.form.Layout, {
55391     /**
55392      * @cfg {Number/String} width
55393      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55394      */
55395     /**
55396      * @cfg {String/Object} autoCreate
55397      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
55398      */
55399
55400     // private
55401     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
55402
55403     // private
55404     onRender : function(ct, position){
55405         Roo.form.Column.superclass.onRender.call(this, ct, position);
55406         if(this.width){
55407             this.el.setWidth(this.width);
55408         }
55409     }
55410 });
55411
55412
55413 /**
55414  * @class Roo.form.Row
55415  * @extends Roo.form.Layout
55416  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55417  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
55418  * @constructor
55419  * @param {Object} config Configuration options
55420  */
55421
55422  
55423 Roo.form.Row = function(config){
55424     Roo.form.Row.superclass.constructor.call(this, config);
55425 };
55426  
55427 Roo.extend(Roo.form.Row, Roo.form.Layout, {
55428       /**
55429      * @cfg {Number/String} width
55430      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55431      */
55432     /**
55433      * @cfg {Number/String} height
55434      * The fixed height of the column in pixels or CSS value (defaults to "auto")
55435      */
55436     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
55437     
55438     padWidth : 20,
55439     // private
55440     onRender : function(ct, position){
55441         //console.log('row render');
55442         if(!this.rowTpl){
55443             var t = new Roo.Template(
55444                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
55445                     '<label for="{0}" style="{2}">{1}{4}</label>',
55446                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55447                     '</div>',
55448                 '</div>'
55449             );
55450             t.disableFormats = true;
55451             t.compile();
55452             Roo.form.Layout.prototype.rowTpl = t;
55453         }
55454         this.fieldTpl = this.rowTpl;
55455         
55456         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
55457         var labelWidth = 100;
55458         
55459         if ((this.labelAlign != 'top')) {
55460             if (typeof this.labelWidth == 'number') {
55461                 labelWidth = this.labelWidth
55462             }
55463             this.padWidth =  20 + labelWidth;
55464             
55465         }
55466         
55467         Roo.form.Column.superclass.onRender.call(this, ct, position);
55468         if(this.width){
55469             this.el.setWidth(this.width);
55470         }
55471         if(this.height){
55472             this.el.setHeight(this.height);
55473         }
55474     },
55475     
55476     // private
55477     renderField : function(f){
55478         f.fieldEl = this.fieldTpl.append(this.el, [
55479                f.id, f.fieldLabel,
55480                f.labelStyle||this.labelStyle||'',
55481                this.elementStyle||'',
55482                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
55483                f.itemCls||this.itemCls||'',
55484                f.width ? f.width + this.padWidth : 160 + this.padWidth
55485        ],true);
55486     }
55487 });
55488  
55489
55490 /**
55491  * @class Roo.form.FieldSet
55492  * @extends Roo.form.Layout
55493  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
55494  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
55495  * @constructor
55496  * @param {Object} config Configuration options
55497  */
55498 Roo.form.FieldSet = function(config){
55499     Roo.form.FieldSet.superclass.constructor.call(this, config);
55500 };
55501
55502 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
55503     /**
55504      * @cfg {String} legend
55505      * The text to display as the legend for the FieldSet (defaults to '')
55506      */
55507     /**
55508      * @cfg {String/Object} autoCreate
55509      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
55510      */
55511
55512     // private
55513     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
55514
55515     // private
55516     onRender : function(ct, position){
55517         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
55518         if(this.legend){
55519             this.setLegend(this.legend);
55520         }
55521     },
55522
55523     // private
55524     setLegend : function(text){
55525         if(this.rendered){
55526             this.el.child('legend').update(text);
55527         }
55528     }
55529 });/*
55530  * Based on:
55531  * Ext JS Library 1.1.1
55532  * Copyright(c) 2006-2007, Ext JS, LLC.
55533  *
55534  * Originally Released Under LGPL - original licence link has changed is not relivant.
55535  *
55536  * Fork - LGPL
55537  * <script type="text/javascript">
55538  */
55539 /**
55540  * @class Roo.form.VTypes
55541  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
55542  * @static
55543  */
55544 Roo.form.VTypes = function(){
55545     // closure these in so they are only created once.
55546     var alpha = /^[a-zA-Z_]+$/;
55547     var alphanum = /^[a-zA-Z0-9_]+$/;
55548     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
55549     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
55550
55551     // All these messages and functions are configurable
55552     return {
55553         /**
55554          * The function used to validate email addresses
55555          * @param {String} value The email address
55556          */
55557         'email' : function(v){
55558             return email.test(v);
55559         },
55560         /**
55561          * The error text to display when the email validation function returns false
55562          * @type String
55563          */
55564         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
55565         /**
55566          * The keystroke filter mask to be applied on email input
55567          * @type RegExp
55568          */
55569         'emailMask' : /[a-z0-9_\.\-@]/i,
55570
55571         /**
55572          * The function used to validate URLs
55573          * @param {String} value The URL
55574          */
55575         'url' : function(v){
55576             return url.test(v);
55577         },
55578         /**
55579          * The error text to display when the url validation function returns false
55580          * @type String
55581          */
55582         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
55583         
55584         /**
55585          * The function used to validate alpha values
55586          * @param {String} value The value
55587          */
55588         'alpha' : function(v){
55589             return alpha.test(v);
55590         },
55591         /**
55592          * The error text to display when the alpha validation function returns false
55593          * @type String
55594          */
55595         'alphaText' : 'This field should only contain letters and _',
55596         /**
55597          * The keystroke filter mask to be applied on alpha input
55598          * @type RegExp
55599          */
55600         'alphaMask' : /[a-z_]/i,
55601
55602         /**
55603          * The function used to validate alphanumeric values
55604          * @param {String} value The value
55605          */
55606         'alphanum' : function(v){
55607             return alphanum.test(v);
55608         },
55609         /**
55610          * The error text to display when the alphanumeric validation function returns false
55611          * @type String
55612          */
55613         'alphanumText' : 'This field should only contain letters, numbers and _',
55614         /**
55615          * The keystroke filter mask to be applied on alphanumeric input
55616          * @type RegExp
55617          */
55618         'alphanumMask' : /[a-z0-9_]/i
55619     };
55620 }();//<script type="text/javascript">
55621
55622 /**
55623  * @class Roo.form.FCKeditor
55624  * @extends Roo.form.TextArea
55625  * Wrapper around the FCKEditor http://www.fckeditor.net
55626  * @constructor
55627  * Creates a new FCKeditor
55628  * @param {Object} config Configuration options
55629  */
55630 Roo.form.FCKeditor = function(config){
55631     Roo.form.FCKeditor.superclass.constructor.call(this, config);
55632     this.addEvents({
55633          /**
55634          * @event editorinit
55635          * Fired when the editor is initialized - you can add extra handlers here..
55636          * @param {FCKeditor} this
55637          * @param {Object} the FCK object.
55638          */
55639         editorinit : true
55640     });
55641     
55642     
55643 };
55644 Roo.form.FCKeditor.editors = { };
55645 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
55646 {
55647     //defaultAutoCreate : {
55648     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
55649     //},
55650     // private
55651     /**
55652      * @cfg {Object} fck options - see fck manual for details.
55653      */
55654     fckconfig : false,
55655     
55656     /**
55657      * @cfg {Object} fck toolbar set (Basic or Default)
55658      */
55659     toolbarSet : 'Basic',
55660     /**
55661      * @cfg {Object} fck BasePath
55662      */ 
55663     basePath : '/fckeditor/',
55664     
55665     
55666     frame : false,
55667     
55668     value : '',
55669     
55670    
55671     onRender : function(ct, position)
55672     {
55673         if(!this.el){
55674             this.defaultAutoCreate = {
55675                 tag: "textarea",
55676                 style:"width:300px;height:60px;",
55677                 autocomplete: "new-password"
55678             };
55679         }
55680         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
55681         /*
55682         if(this.grow){
55683             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
55684             if(this.preventScrollbars){
55685                 this.el.setStyle("overflow", "hidden");
55686             }
55687             this.el.setHeight(this.growMin);
55688         }
55689         */
55690         //console.log('onrender' + this.getId() );
55691         Roo.form.FCKeditor.editors[this.getId()] = this;
55692          
55693
55694         this.replaceTextarea() ;
55695         
55696     },
55697     
55698     getEditor : function() {
55699         return this.fckEditor;
55700     },
55701     /**
55702      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
55703      * @param {Mixed} value The value to set
55704      */
55705     
55706     
55707     setValue : function(value)
55708     {
55709         //console.log('setValue: ' + value);
55710         
55711         if(typeof(value) == 'undefined') { // not sure why this is happending...
55712             return;
55713         }
55714         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
55715         
55716         //if(!this.el || !this.getEditor()) {
55717         //    this.value = value;
55718             //this.setValue.defer(100,this,[value]);    
55719         //    return;
55720         //} 
55721         
55722         if(!this.getEditor()) {
55723             return;
55724         }
55725         
55726         this.getEditor().SetData(value);
55727         
55728         //
55729
55730     },
55731
55732     /**
55733      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
55734      * @return {Mixed} value The field value
55735      */
55736     getValue : function()
55737     {
55738         
55739         if (this.frame && this.frame.dom.style.display == 'none') {
55740             return Roo.form.FCKeditor.superclass.getValue.call(this);
55741         }
55742         
55743         if(!this.el || !this.getEditor()) {
55744            
55745            // this.getValue.defer(100,this); 
55746             return this.value;
55747         }
55748        
55749         
55750         var value=this.getEditor().GetData();
55751         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
55752         return Roo.form.FCKeditor.superclass.getValue.call(this);
55753         
55754
55755     },
55756
55757     /**
55758      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
55759      * @return {Mixed} value The field value
55760      */
55761     getRawValue : function()
55762     {
55763         if (this.frame && this.frame.dom.style.display == 'none') {
55764             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
55765         }
55766         
55767         if(!this.el || !this.getEditor()) {
55768             //this.getRawValue.defer(100,this); 
55769             return this.value;
55770             return;
55771         }
55772         
55773         
55774         
55775         var value=this.getEditor().GetData();
55776         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
55777         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
55778          
55779     },
55780     
55781     setSize : function(w,h) {
55782         
55783         
55784         
55785         //if (this.frame && this.frame.dom.style.display == 'none') {
55786         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
55787         //    return;
55788         //}
55789         //if(!this.el || !this.getEditor()) {
55790         //    this.setSize.defer(100,this, [w,h]); 
55791         //    return;
55792         //}
55793         
55794         
55795         
55796         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
55797         
55798         this.frame.dom.setAttribute('width', w);
55799         this.frame.dom.setAttribute('height', h);
55800         this.frame.setSize(w,h);
55801         
55802     },
55803     
55804     toggleSourceEdit : function(value) {
55805         
55806       
55807          
55808         this.el.dom.style.display = value ? '' : 'none';
55809         this.frame.dom.style.display = value ?  'none' : '';
55810         
55811     },
55812     
55813     
55814     focus: function(tag)
55815     {
55816         if (this.frame.dom.style.display == 'none') {
55817             return Roo.form.FCKeditor.superclass.focus.call(this);
55818         }
55819         if(!this.el || !this.getEditor()) {
55820             this.focus.defer(100,this, [tag]); 
55821             return;
55822         }
55823         
55824         
55825         
55826         
55827         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
55828         this.getEditor().Focus();
55829         if (tgs.length) {
55830             if (!this.getEditor().Selection.GetSelection()) {
55831                 this.focus.defer(100,this, [tag]); 
55832                 return;
55833             }
55834             
55835             
55836             var r = this.getEditor().EditorDocument.createRange();
55837             r.setStart(tgs[0],0);
55838             r.setEnd(tgs[0],0);
55839             this.getEditor().Selection.GetSelection().removeAllRanges();
55840             this.getEditor().Selection.GetSelection().addRange(r);
55841             this.getEditor().Focus();
55842         }
55843         
55844     },
55845     
55846     
55847     
55848     replaceTextarea : function()
55849     {
55850         if ( document.getElementById( this.getId() + '___Frame' ) ) {
55851             return ;
55852         }
55853         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
55854         //{
55855             // We must check the elements firstly using the Id and then the name.
55856         var oTextarea = document.getElementById( this.getId() );
55857         
55858         var colElementsByName = document.getElementsByName( this.getId() ) ;
55859          
55860         oTextarea.style.display = 'none' ;
55861
55862         if ( oTextarea.tabIndex ) {            
55863             this.TabIndex = oTextarea.tabIndex ;
55864         }
55865         
55866         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
55867         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
55868         this.frame = Roo.get(this.getId() + '___Frame')
55869     },
55870     
55871     _getConfigHtml : function()
55872     {
55873         var sConfig = '' ;
55874
55875         for ( var o in this.fckconfig ) {
55876             sConfig += sConfig.length > 0  ? '&amp;' : '';
55877             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
55878         }
55879
55880         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
55881     },
55882     
55883     
55884     _getIFrameHtml : function()
55885     {
55886         var sFile = 'fckeditor.html' ;
55887         /* no idea what this is about..
55888         try
55889         {
55890             if ( (/fcksource=true/i).test( window.top.location.search ) )
55891                 sFile = 'fckeditor.original.html' ;
55892         }
55893         catch (e) { 
55894         */
55895
55896         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
55897         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
55898         
55899         
55900         var html = '<iframe id="' + this.getId() +
55901             '___Frame" src="' + sLink +
55902             '" width="' + this.width +
55903             '" height="' + this.height + '"' +
55904             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
55905             ' frameborder="0" scrolling="no"></iframe>' ;
55906
55907         return html ;
55908     },
55909     
55910     _insertHtmlBefore : function( html, element )
55911     {
55912         if ( element.insertAdjacentHTML )       {
55913             // IE
55914             element.insertAdjacentHTML( 'beforeBegin', html ) ;
55915         } else { // Gecko
55916             var oRange = document.createRange() ;
55917             oRange.setStartBefore( element ) ;
55918             var oFragment = oRange.createContextualFragment( html );
55919             element.parentNode.insertBefore( oFragment, element ) ;
55920         }
55921     }
55922     
55923     
55924   
55925     
55926     
55927     
55928     
55929
55930 });
55931
55932 //Roo.reg('fckeditor', Roo.form.FCKeditor);
55933
55934 function FCKeditor_OnComplete(editorInstance){
55935     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
55936     f.fckEditor = editorInstance;
55937     //console.log("loaded");
55938     f.fireEvent('editorinit', f, editorInstance);
55939
55940   
55941
55942  
55943
55944
55945
55946
55947
55948
55949
55950
55951
55952
55953
55954
55955
55956
55957
55958 //<script type="text/javascript">
55959 /**
55960  * @class Roo.form.GridField
55961  * @extends Roo.form.Field
55962  * Embed a grid (or editable grid into a form)
55963  * STATUS ALPHA
55964  * 
55965  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
55966  * it needs 
55967  * xgrid.store = Roo.data.Store
55968  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
55969  * xgrid.store.reader = Roo.data.JsonReader 
55970  * 
55971  * 
55972  * @constructor
55973  * Creates a new GridField
55974  * @param {Object} config Configuration options
55975  */
55976 Roo.form.GridField = function(config){
55977     Roo.form.GridField.superclass.constructor.call(this, config);
55978      
55979 };
55980
55981 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
55982     /**
55983      * @cfg {Number} width  - used to restrict width of grid..
55984      */
55985     width : 100,
55986     /**
55987      * @cfg {Number} height - used to restrict height of grid..
55988      */
55989     height : 50,
55990      /**
55991      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
55992          * 
55993          *}
55994      */
55995     xgrid : false, 
55996     /**
55997      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
55998      * {tag: "input", type: "checkbox", autocomplete: "off"})
55999      */
56000    // defaultAutoCreate : { tag: 'div' },
56001     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
56002     /**
56003      * @cfg {String} addTitle Text to include for adding a title.
56004      */
56005     addTitle : false,
56006     //
56007     onResize : function(){
56008         Roo.form.Field.superclass.onResize.apply(this, arguments);
56009     },
56010
56011     initEvents : function(){
56012         // Roo.form.Checkbox.superclass.initEvents.call(this);
56013         // has no events...
56014        
56015     },
56016
56017
56018     getResizeEl : function(){
56019         return this.wrap;
56020     },
56021
56022     getPositionEl : function(){
56023         return this.wrap;
56024     },
56025
56026     // private
56027     onRender : function(ct, position){
56028         
56029         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
56030         var style = this.style;
56031         delete this.style;
56032         
56033         Roo.form.GridField.superclass.onRender.call(this, ct, position);
56034         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
56035         this.viewEl = this.wrap.createChild({ tag: 'div' });
56036         if (style) {
56037             this.viewEl.applyStyles(style);
56038         }
56039         if (this.width) {
56040             this.viewEl.setWidth(this.width);
56041         }
56042         if (this.height) {
56043             this.viewEl.setHeight(this.height);
56044         }
56045         //if(this.inputValue !== undefined){
56046         //this.setValue(this.value);
56047         
56048         
56049         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
56050         
56051         
56052         this.grid.render();
56053         this.grid.getDataSource().on('remove', this.refreshValue, this);
56054         this.grid.getDataSource().on('update', this.refreshValue, this);
56055         this.grid.on('afteredit', this.refreshValue, this);
56056  
56057     },
56058      
56059     
56060     /**
56061      * Sets the value of the item. 
56062      * @param {String} either an object  or a string..
56063      */
56064     setValue : function(v){
56065         //this.value = v;
56066         v = v || []; // empty set..
56067         // this does not seem smart - it really only affects memoryproxy grids..
56068         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
56069             var ds = this.grid.getDataSource();
56070             // assumes a json reader..
56071             var data = {}
56072             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
56073             ds.loadData( data);
56074         }
56075         // clear selection so it does not get stale.
56076         if (this.grid.sm) { 
56077             this.grid.sm.clearSelections();
56078         }
56079         
56080         Roo.form.GridField.superclass.setValue.call(this, v);
56081         this.refreshValue();
56082         // should load data in the grid really....
56083     },
56084     
56085     // private
56086     refreshValue: function() {
56087          var val = [];
56088         this.grid.getDataSource().each(function(r) {
56089             val.push(r.data);
56090         });
56091         this.el.dom.value = Roo.encode(val);
56092     }
56093     
56094      
56095     
56096     
56097 });/*
56098  * Based on:
56099  * Ext JS Library 1.1.1
56100  * Copyright(c) 2006-2007, Ext JS, LLC.
56101  *
56102  * Originally Released Under LGPL - original licence link has changed is not relivant.
56103  *
56104  * Fork - LGPL
56105  * <script type="text/javascript">
56106  */
56107 /**
56108  * @class Roo.form.DisplayField
56109  * @extends Roo.form.Field
56110  * A generic Field to display non-editable data.
56111  * @cfg {Boolean} closable (true|false) default false
56112  * @constructor
56113  * Creates a new Display Field item.
56114  * @param {Object} config Configuration options
56115  */
56116 Roo.form.DisplayField = function(config){
56117     Roo.form.DisplayField.superclass.constructor.call(this, config);
56118     
56119     this.addEvents({
56120         /**
56121          * @event close
56122          * Fires after the click the close btn
56123              * @param {Roo.form.DisplayField} this
56124              */
56125         close : true
56126     });
56127 };
56128
56129 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
56130     inputType:      'hidden',
56131     allowBlank:     true,
56132     readOnly:         true,
56133     
56134  
56135     /**
56136      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56137      */
56138     focusClass : undefined,
56139     /**
56140      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56141      */
56142     fieldClass: 'x-form-field',
56143     
56144      /**
56145      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
56146      */
56147     valueRenderer: undefined,
56148     
56149     width: 100,
56150     /**
56151      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56152      * {tag: "input", type: "checkbox", autocomplete: "off"})
56153      */
56154      
56155  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
56156  
56157     closable : false,
56158     
56159     onResize : function(){
56160         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
56161         
56162     },
56163
56164     initEvents : function(){
56165         // Roo.form.Checkbox.superclass.initEvents.call(this);
56166         // has no events...
56167         
56168         if(this.closable){
56169             this.closeEl.on('click', this.onClose, this);
56170         }
56171        
56172     },
56173
56174
56175     getResizeEl : function(){
56176         return this.wrap;
56177     },
56178
56179     getPositionEl : function(){
56180         return this.wrap;
56181     },
56182
56183     // private
56184     onRender : function(ct, position){
56185         
56186         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
56187         //if(this.inputValue !== undefined){
56188         this.wrap = this.el.wrap();
56189         
56190         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
56191         
56192         if(this.closable){
56193             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
56194         }
56195         
56196         if (this.bodyStyle) {
56197             this.viewEl.applyStyles(this.bodyStyle);
56198         }
56199         //this.viewEl.setStyle('padding', '2px');
56200         
56201         this.setValue(this.value);
56202         
56203     },
56204 /*
56205     // private
56206     initValue : Roo.emptyFn,
56207
56208   */
56209
56210         // private
56211     onClick : function(){
56212         
56213     },
56214
56215     /**
56216      * Sets the checked state of the checkbox.
56217      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
56218      */
56219     setValue : function(v){
56220         this.value = v;
56221         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
56222         // this might be called before we have a dom element..
56223         if (!this.viewEl) {
56224             return;
56225         }
56226         this.viewEl.dom.innerHTML = html;
56227         Roo.form.DisplayField.superclass.setValue.call(this, v);
56228
56229     },
56230     
56231     onClose : function(e)
56232     {
56233         e.preventDefault();
56234         
56235         this.fireEvent('close', this);
56236     }
56237 });/*
56238  * 
56239  * Licence- LGPL
56240  * 
56241  */
56242
56243 /**
56244  * @class Roo.form.DayPicker
56245  * @extends Roo.form.Field
56246  * A Day picker show [M] [T] [W] ....
56247  * @constructor
56248  * Creates a new Day Picker
56249  * @param {Object} config Configuration options
56250  */
56251 Roo.form.DayPicker= function(config){
56252     Roo.form.DayPicker.superclass.constructor.call(this, config);
56253      
56254 };
56255
56256 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
56257     /**
56258      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56259      */
56260     focusClass : undefined,
56261     /**
56262      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56263      */
56264     fieldClass: "x-form-field",
56265    
56266     /**
56267      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56268      * {tag: "input", type: "checkbox", autocomplete: "off"})
56269      */
56270     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
56271     
56272    
56273     actionMode : 'viewEl', 
56274     //
56275     // private
56276  
56277     inputType : 'hidden',
56278     
56279      
56280     inputElement: false, // real input element?
56281     basedOn: false, // ????
56282     
56283     isFormField: true, // not sure where this is needed!!!!
56284
56285     onResize : function(){
56286         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
56287         if(!this.boxLabel){
56288             this.el.alignTo(this.wrap, 'c-c');
56289         }
56290     },
56291
56292     initEvents : function(){
56293         Roo.form.Checkbox.superclass.initEvents.call(this);
56294         this.el.on("click", this.onClick,  this);
56295         this.el.on("change", this.onClick,  this);
56296     },
56297
56298
56299     getResizeEl : function(){
56300         return this.wrap;
56301     },
56302
56303     getPositionEl : function(){
56304         return this.wrap;
56305     },
56306
56307     
56308     // private
56309     onRender : function(ct, position){
56310         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
56311        
56312         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
56313         
56314         var r1 = '<table><tr>';
56315         var r2 = '<tr class="x-form-daypick-icons">';
56316         for (var i=0; i < 7; i++) {
56317             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
56318             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
56319         }
56320         
56321         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
56322         viewEl.select('img').on('click', this.onClick, this);
56323         this.viewEl = viewEl;   
56324         
56325         
56326         // this will not work on Chrome!!!
56327         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
56328         this.el.on('propertychange', this.setFromHidden,  this);  //ie
56329         
56330         
56331           
56332
56333     },
56334
56335     // private
56336     initValue : Roo.emptyFn,
56337
56338     /**
56339      * Returns the checked state of the checkbox.
56340      * @return {Boolean} True if checked, else false
56341      */
56342     getValue : function(){
56343         return this.el.dom.value;
56344         
56345     },
56346
56347         // private
56348     onClick : function(e){ 
56349         //this.setChecked(!this.checked);
56350         Roo.get(e.target).toggleClass('x-menu-item-checked');
56351         this.refreshValue();
56352         //if(this.el.dom.checked != this.checked){
56353         //    this.setValue(this.el.dom.checked);
56354        // }
56355     },
56356     
56357     // private
56358     refreshValue : function()
56359     {
56360         var val = '';
56361         this.viewEl.select('img',true).each(function(e,i,n)  {
56362             val += e.is(".x-menu-item-checked") ? String(n) : '';
56363         });
56364         this.setValue(val, true);
56365     },
56366
56367     /**
56368      * Sets the checked state of the checkbox.
56369      * On is always based on a string comparison between inputValue and the param.
56370      * @param {Boolean/String} value - the value to set 
56371      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
56372      */
56373     setValue : function(v,suppressEvent){
56374         if (!this.el.dom) {
56375             return;
56376         }
56377         var old = this.el.dom.value ;
56378         this.el.dom.value = v;
56379         if (suppressEvent) {
56380             return ;
56381         }
56382          
56383         // update display..
56384         this.viewEl.select('img',true).each(function(e,i,n)  {
56385             
56386             var on = e.is(".x-menu-item-checked");
56387             var newv = v.indexOf(String(n)) > -1;
56388             if (on != newv) {
56389                 e.toggleClass('x-menu-item-checked');
56390             }
56391             
56392         });
56393         
56394         
56395         this.fireEvent('change', this, v, old);
56396         
56397         
56398     },
56399    
56400     // handle setting of hidden value by some other method!!?!?
56401     setFromHidden: function()
56402     {
56403         if(!this.el){
56404             return;
56405         }
56406         //console.log("SET FROM HIDDEN");
56407         //alert('setFrom hidden');
56408         this.setValue(this.el.dom.value);
56409     },
56410     
56411     onDestroy : function()
56412     {
56413         if(this.viewEl){
56414             Roo.get(this.viewEl).remove();
56415         }
56416          
56417         Roo.form.DayPicker.superclass.onDestroy.call(this);
56418     }
56419
56420 });/*
56421  * RooJS Library 1.1.1
56422  * Copyright(c) 2008-2011  Alan Knowles
56423  *
56424  * License - LGPL
56425  */
56426  
56427
56428 /**
56429  * @class Roo.form.ComboCheck
56430  * @extends Roo.form.ComboBox
56431  * A combobox for multiple select items.
56432  *
56433  * FIXME - could do with a reset button..
56434  * 
56435  * @constructor
56436  * Create a new ComboCheck
56437  * @param {Object} config Configuration options
56438  */
56439 Roo.form.ComboCheck = function(config){
56440     Roo.form.ComboCheck.superclass.constructor.call(this, config);
56441     // should verify some data...
56442     // like
56443     // hiddenName = required..
56444     // displayField = required
56445     // valudField == required
56446     var req= [ 'hiddenName', 'displayField', 'valueField' ];
56447     var _t = this;
56448     Roo.each(req, function(e) {
56449         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
56450             throw "Roo.form.ComboCheck : missing value for: " + e;
56451         }
56452     });
56453     
56454     
56455 };
56456
56457 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
56458      
56459      
56460     editable : false,
56461      
56462     selectedClass: 'x-menu-item-checked', 
56463     
56464     // private
56465     onRender : function(ct, position){
56466         var _t = this;
56467         
56468         
56469         
56470         if(!this.tpl){
56471             var cls = 'x-combo-list';
56472
56473             
56474             this.tpl =  new Roo.Template({
56475                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
56476                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
56477                    '<span>{' + this.displayField + '}</span>' +
56478                     '</div>' 
56479                 
56480             });
56481         }
56482  
56483         
56484         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
56485         this.view.singleSelect = false;
56486         this.view.multiSelect = true;
56487         this.view.toggleSelect = true;
56488         this.pageTb.add(new Roo.Toolbar.Fill(), {
56489             
56490             text: 'Done',
56491             handler: function()
56492             {
56493                 _t.collapse();
56494             }
56495         });
56496     },
56497     
56498     onViewOver : function(e, t){
56499         // do nothing...
56500         return;
56501         
56502     },
56503     
56504     onViewClick : function(doFocus,index){
56505         return;
56506         
56507     },
56508     select: function () {
56509         //Roo.log("SELECT CALLED");
56510     },
56511      
56512     selectByValue : function(xv, scrollIntoView){
56513         var ar = this.getValueArray();
56514         var sels = [];
56515         
56516         Roo.each(ar, function(v) {
56517             if(v === undefined || v === null){
56518                 return;
56519             }
56520             var r = this.findRecord(this.valueField, v);
56521             if(r){
56522                 sels.push(this.store.indexOf(r))
56523                 
56524             }
56525         },this);
56526         this.view.select(sels);
56527         return false;
56528     },
56529     
56530     
56531     
56532     onSelect : function(record, index){
56533        // Roo.log("onselect Called");
56534        // this is only called by the clear button now..
56535         this.view.clearSelections();
56536         this.setValue('[]');
56537         if (this.value != this.valueBefore) {
56538             this.fireEvent('change', this, this.value, this.valueBefore);
56539             this.valueBefore = this.value;
56540         }
56541     },
56542     getValueArray : function()
56543     {
56544         var ar = [] ;
56545         
56546         try {
56547             //Roo.log(this.value);
56548             if (typeof(this.value) == 'undefined') {
56549                 return [];
56550             }
56551             var ar = Roo.decode(this.value);
56552             return  ar instanceof Array ? ar : []; //?? valid?
56553             
56554         } catch(e) {
56555             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
56556             return [];
56557         }
56558          
56559     },
56560     expand : function ()
56561     {
56562         
56563         Roo.form.ComboCheck.superclass.expand.call(this);
56564         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
56565         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
56566         
56567
56568     },
56569     
56570     collapse : function(){
56571         Roo.form.ComboCheck.superclass.collapse.call(this);
56572         var sl = this.view.getSelectedIndexes();
56573         var st = this.store;
56574         var nv = [];
56575         var tv = [];
56576         var r;
56577         Roo.each(sl, function(i) {
56578             r = st.getAt(i);
56579             nv.push(r.get(this.valueField));
56580         },this);
56581         this.setValue(Roo.encode(nv));
56582         if (this.value != this.valueBefore) {
56583
56584             this.fireEvent('change', this, this.value, this.valueBefore);
56585             this.valueBefore = this.value;
56586         }
56587         
56588     },
56589     
56590     setValue : function(v){
56591         // Roo.log(v);
56592         this.value = v;
56593         
56594         var vals = this.getValueArray();
56595         var tv = [];
56596         Roo.each(vals, function(k) {
56597             var r = this.findRecord(this.valueField, k);
56598             if(r){
56599                 tv.push(r.data[this.displayField]);
56600             }else if(this.valueNotFoundText !== undefined){
56601                 tv.push( this.valueNotFoundText );
56602             }
56603         },this);
56604        // Roo.log(tv);
56605         
56606         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
56607         this.hiddenField.value = v;
56608         this.value = v;
56609     }
56610     
56611 });/*
56612  * Based on:
56613  * Ext JS Library 1.1.1
56614  * Copyright(c) 2006-2007, Ext JS, LLC.
56615  *
56616  * Originally Released Under LGPL - original licence link has changed is not relivant.
56617  *
56618  * Fork - LGPL
56619  * <script type="text/javascript">
56620  */
56621  
56622 /**
56623  * @class Roo.form.Signature
56624  * @extends Roo.form.Field
56625  * Signature field.  
56626  * @constructor
56627  * 
56628  * @param {Object} config Configuration options
56629  */
56630
56631 Roo.form.Signature = function(config){
56632     Roo.form.Signature.superclass.constructor.call(this, config);
56633     
56634     this.addEvents({// not in used??
56635          /**
56636          * @event confirm
56637          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
56638              * @param {Roo.form.Signature} combo This combo box
56639              */
56640         'confirm' : true,
56641         /**
56642          * @event reset
56643          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
56644              * @param {Roo.form.ComboBox} combo This combo box
56645              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
56646              */
56647         'reset' : true
56648     });
56649 };
56650
56651 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
56652     /**
56653      * @cfg {Object} labels Label to use when rendering a form.
56654      * defaults to 
56655      * labels : { 
56656      *      clear : "Clear",
56657      *      confirm : "Confirm"
56658      *  }
56659      */
56660     labels : { 
56661         clear : "Clear",
56662         confirm : "Confirm"
56663     },
56664     /**
56665      * @cfg {Number} width The signature panel width (defaults to 300)
56666      */
56667     width: 300,
56668     /**
56669      * @cfg {Number} height The signature panel height (defaults to 100)
56670      */
56671     height : 100,
56672     /**
56673      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
56674      */
56675     allowBlank : false,
56676     
56677     //private
56678     // {Object} signPanel The signature SVG panel element (defaults to {})
56679     signPanel : {},
56680     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
56681     isMouseDown : false,
56682     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
56683     isConfirmed : false,
56684     // {String} signatureTmp SVG mapping string (defaults to empty string)
56685     signatureTmp : '',
56686     
56687     
56688     defaultAutoCreate : { // modified by initCompnoent..
56689         tag: "input",
56690         type:"hidden"
56691     },
56692
56693     // private
56694     onRender : function(ct, position){
56695         
56696         Roo.form.Signature.superclass.onRender.call(this, ct, position);
56697         
56698         this.wrap = this.el.wrap({
56699             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
56700         });
56701         
56702         this.createToolbar(this);
56703         this.signPanel = this.wrap.createChild({
56704                 tag: 'div',
56705                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
56706             }, this.el
56707         );
56708             
56709         this.svgID = Roo.id();
56710         this.svgEl = this.signPanel.createChild({
56711               xmlns : 'http://www.w3.org/2000/svg',
56712               tag : 'svg',
56713               id : this.svgID + "-svg",
56714               width: this.width,
56715               height: this.height,
56716               viewBox: '0 0 '+this.width+' '+this.height,
56717               cn : [
56718                 {
56719                     tag: "rect",
56720                     id: this.svgID + "-svg-r",
56721                     width: this.width,
56722                     height: this.height,
56723                     fill: "#ffa"
56724                 },
56725                 {
56726                     tag: "line",
56727                     id: this.svgID + "-svg-l",
56728                     x1: "0", // start
56729                     y1: (this.height*0.8), // start set the line in 80% of height
56730                     x2: this.width, // end
56731                     y2: (this.height*0.8), // end set the line in 80% of height
56732                     'stroke': "#666",
56733                     'stroke-width': "1",
56734                     'stroke-dasharray': "3",
56735                     'shape-rendering': "crispEdges",
56736                     'pointer-events': "none"
56737                 },
56738                 {
56739                     tag: "path",
56740                     id: this.svgID + "-svg-p",
56741                     'stroke': "navy",
56742                     'stroke-width': "3",
56743                     'fill': "none",
56744                     'pointer-events': 'none'
56745                 }
56746               ]
56747         });
56748         this.createSVG();
56749         this.svgBox = this.svgEl.dom.getScreenCTM();
56750     },
56751     createSVG : function(){ 
56752         var svg = this.signPanel;
56753         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
56754         var t = this;
56755
56756         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
56757         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
56758         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
56759         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
56760         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
56761         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
56762         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
56763         
56764     },
56765     isTouchEvent : function(e){
56766         return e.type.match(/^touch/);
56767     },
56768     getCoords : function (e) {
56769         var pt    = this.svgEl.dom.createSVGPoint();
56770         pt.x = e.clientX; 
56771         pt.y = e.clientY;
56772         if (this.isTouchEvent(e)) {
56773             pt.x =  e.targetTouches[0].clientX;
56774             pt.y = e.targetTouches[0].clientY;
56775         }
56776         var a = this.svgEl.dom.getScreenCTM();
56777         var b = a.inverse();
56778         var mx = pt.matrixTransform(b);
56779         return mx.x + ',' + mx.y;
56780     },
56781     //mouse event headler 
56782     down : function (e) {
56783         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
56784         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
56785         
56786         this.isMouseDown = true;
56787         
56788         e.preventDefault();
56789     },
56790     move : function (e) {
56791         if (this.isMouseDown) {
56792             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
56793             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
56794         }
56795         
56796         e.preventDefault();
56797     },
56798     up : function (e) {
56799         this.isMouseDown = false;
56800         var sp = this.signatureTmp.split(' ');
56801         
56802         if(sp.length > 1){
56803             if(!sp[sp.length-2].match(/^L/)){
56804                 sp.pop();
56805                 sp.pop();
56806                 sp.push("");
56807                 this.signatureTmp = sp.join(" ");
56808             }
56809         }
56810         if(this.getValue() != this.signatureTmp){
56811             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
56812             this.isConfirmed = false;
56813         }
56814         e.preventDefault();
56815     },
56816     
56817     /**
56818      * Protected method that will not generally be called directly. It
56819      * is called when the editor creates its toolbar. Override this method if you need to
56820      * add custom toolbar buttons.
56821      * @param {HtmlEditor} editor
56822      */
56823     createToolbar : function(editor){
56824          function btn(id, toggle, handler){
56825             var xid = fid + '-'+ id ;
56826             return {
56827                 id : xid,
56828                 cmd : id,
56829                 cls : 'x-btn-icon x-edit-'+id,
56830                 enableToggle:toggle !== false,
56831                 scope: editor, // was editor...
56832                 handler:handler||editor.relayBtnCmd,
56833                 clickEvent:'mousedown',
56834                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
56835                 tabIndex:-1
56836             };
56837         }
56838         
56839         
56840         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
56841         this.tb = tb;
56842         this.tb.add(
56843            {
56844                 cls : ' x-signature-btn x-signature-'+id,
56845                 scope: editor, // was editor...
56846                 handler: this.reset,
56847                 clickEvent:'mousedown',
56848                 text: this.labels.clear
56849             },
56850             {
56851                  xtype : 'Fill',
56852                  xns: Roo.Toolbar
56853             }, 
56854             {
56855                 cls : '  x-signature-btn x-signature-'+id,
56856                 scope: editor, // was editor...
56857                 handler: this.confirmHandler,
56858                 clickEvent:'mousedown',
56859                 text: this.labels.confirm
56860             }
56861         );
56862     
56863     },
56864     //public
56865     /**
56866      * when user is clicked confirm then show this image.....
56867      * 
56868      * @return {String} Image Data URI
56869      */
56870     getImageDataURI : function(){
56871         var svg = this.svgEl.dom.parentNode.innerHTML;
56872         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
56873         return src; 
56874     },
56875     /**
56876      * 
56877      * @return {Boolean} this.isConfirmed
56878      */
56879     getConfirmed : function(){
56880         return this.isConfirmed;
56881     },
56882     /**
56883      * 
56884      * @return {Number} this.width
56885      */
56886     getWidth : function(){
56887         return this.width;
56888     },
56889     /**
56890      * 
56891      * @return {Number} this.height
56892      */
56893     getHeight : function(){
56894         return this.height;
56895     },
56896     // private
56897     getSignature : function(){
56898         return this.signatureTmp;
56899     },
56900     // private
56901     reset : function(){
56902         this.signatureTmp = '';
56903         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
56904         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
56905         this.isConfirmed = false;
56906         Roo.form.Signature.superclass.reset.call(this);
56907     },
56908     setSignature : function(s){
56909         this.signatureTmp = s;
56910         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
56911         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
56912         this.setValue(s);
56913         this.isConfirmed = false;
56914         Roo.form.Signature.superclass.reset.call(this);
56915     }, 
56916     test : function(){
56917 //        Roo.log(this.signPanel.dom.contentWindow.up())
56918     },
56919     //private
56920     setConfirmed : function(){
56921         
56922         
56923         
56924 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
56925     },
56926     // private
56927     confirmHandler : function(){
56928         if(!this.getSignature()){
56929             return;
56930         }
56931         
56932         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
56933         this.setValue(this.getSignature());
56934         this.isConfirmed = true;
56935         
56936         this.fireEvent('confirm', this);
56937     },
56938     // private
56939     // Subclasses should provide the validation implementation by overriding this
56940     validateValue : function(value){
56941         if(this.allowBlank){
56942             return true;
56943         }
56944         
56945         if(this.isConfirmed){
56946             return true;
56947         }
56948         return false;
56949     }
56950 });/*
56951  * Based on:
56952  * Ext JS Library 1.1.1
56953  * Copyright(c) 2006-2007, Ext JS, LLC.
56954  *
56955  * Originally Released Under LGPL - original licence link has changed is not relivant.
56956  *
56957  * Fork - LGPL
56958  * <script type="text/javascript">
56959  */
56960  
56961
56962 /**
56963  * @class Roo.form.ComboBox
56964  * @extends Roo.form.TriggerField
56965  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
56966  * @constructor
56967  * Create a new ComboBox.
56968  * @param {Object} config Configuration options
56969  */
56970 Roo.form.Select = function(config){
56971     Roo.form.Select.superclass.constructor.call(this, config);
56972      
56973 };
56974
56975 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
56976     /**
56977      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
56978      */
56979     /**
56980      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
56981      * rendering into an Roo.Editor, defaults to false)
56982      */
56983     /**
56984      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
56985      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
56986      */
56987     /**
56988      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
56989      */
56990     /**
56991      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
56992      * the dropdown list (defaults to undefined, with no header element)
56993      */
56994
56995      /**
56996      * @cfg {String/Roo.Template} tpl The template to use to render the output
56997      */
56998      
56999     // private
57000     defaultAutoCreate : {tag: "select"  },
57001     /**
57002      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
57003      */
57004     listWidth: undefined,
57005     /**
57006      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
57007      * mode = 'remote' or 'text' if mode = 'local')
57008      */
57009     displayField: undefined,
57010     /**
57011      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
57012      * mode = 'remote' or 'value' if mode = 'local'). 
57013      * Note: use of a valueField requires the user make a selection
57014      * in order for a value to be mapped.
57015      */
57016     valueField: undefined,
57017     
57018     
57019     /**
57020      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
57021      * field's data value (defaults to the underlying DOM element's name)
57022      */
57023     hiddenName: undefined,
57024     /**
57025      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
57026      */
57027     listClass: '',
57028     /**
57029      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
57030      */
57031     selectedClass: 'x-combo-selected',
57032     /**
57033      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
57034      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
57035      * which displays a downward arrow icon).
57036      */
57037     triggerClass : 'x-form-arrow-trigger',
57038     /**
57039      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
57040      */
57041     shadow:'sides',
57042     /**
57043      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
57044      * anchor positions (defaults to 'tl-bl')
57045      */
57046     listAlign: 'tl-bl?',
57047     /**
57048      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
57049      */
57050     maxHeight: 300,
57051     /**
57052      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
57053      * query specified by the allQuery config option (defaults to 'query')
57054      */
57055     triggerAction: 'query',
57056     /**
57057      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
57058      * (defaults to 4, does not apply if editable = false)
57059      */
57060     minChars : 4,
57061     /**
57062      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
57063      * delay (typeAheadDelay) if it matches a known value (defaults to false)
57064      */
57065     typeAhead: false,
57066     /**
57067      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
57068      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
57069      */
57070     queryDelay: 500,
57071     /**
57072      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
57073      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
57074      */
57075     pageSize: 0,
57076     /**
57077      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
57078      * when editable = true (defaults to false)
57079      */
57080     selectOnFocus:false,
57081     /**
57082      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
57083      */
57084     queryParam: 'query',
57085     /**
57086      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
57087      * when mode = 'remote' (defaults to 'Loading...')
57088      */
57089     loadingText: 'Loading...',
57090     /**
57091      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
57092      */
57093     resizable: false,
57094     /**
57095      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
57096      */
57097     handleHeight : 8,
57098     /**
57099      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
57100      * traditional select (defaults to true)
57101      */
57102     editable: true,
57103     /**
57104      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
57105      */
57106     allQuery: '',
57107     /**
57108      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
57109      */
57110     mode: 'remote',
57111     /**
57112      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
57113      * listWidth has a higher value)
57114      */
57115     minListWidth : 70,
57116     /**
57117      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
57118      * allow the user to set arbitrary text into the field (defaults to false)
57119      */
57120     forceSelection:false,
57121     /**
57122      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
57123      * if typeAhead = true (defaults to 250)
57124      */
57125     typeAheadDelay : 250,
57126     /**
57127      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
57128      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
57129      */
57130     valueNotFoundText : undefined,
57131     
57132     /**
57133      * @cfg {String} defaultValue The value displayed after loading the store.
57134      */
57135     defaultValue: '',
57136     
57137     /**
57138      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
57139      */
57140     blockFocus : false,
57141     
57142     /**
57143      * @cfg {Boolean} disableClear Disable showing of clear button.
57144      */
57145     disableClear : false,
57146     /**
57147      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
57148      */
57149     alwaysQuery : false,
57150     
57151     //private
57152     addicon : false,
57153     editicon: false,
57154     
57155     // element that contains real text value.. (when hidden is used..)
57156      
57157     // private
57158     onRender : function(ct, position){
57159         Roo.form.Field.prototype.onRender.call(this, ct, position);
57160         
57161         if(this.store){
57162             this.store.on('beforeload', this.onBeforeLoad, this);
57163             this.store.on('load', this.onLoad, this);
57164             this.store.on('loadexception', this.onLoadException, this);
57165             this.store.load({});
57166         }
57167         
57168         
57169         
57170     },
57171
57172     // private
57173     initEvents : function(){
57174         //Roo.form.ComboBox.superclass.initEvents.call(this);
57175  
57176     },
57177
57178     onDestroy : function(){
57179        
57180         if(this.store){
57181             this.store.un('beforeload', this.onBeforeLoad, this);
57182             this.store.un('load', this.onLoad, this);
57183             this.store.un('loadexception', this.onLoadException, this);
57184         }
57185         //Roo.form.ComboBox.superclass.onDestroy.call(this);
57186     },
57187
57188     // private
57189     fireKey : function(e){
57190         if(e.isNavKeyPress() && !this.list.isVisible()){
57191             this.fireEvent("specialkey", this, e);
57192         }
57193     },
57194
57195     // private
57196     onResize: function(w, h){
57197         
57198         return; 
57199     
57200         
57201     },
57202
57203     /**
57204      * Allow or prevent the user from directly editing the field text.  If false is passed,
57205      * the user will only be able to select from the items defined in the dropdown list.  This method
57206      * is the runtime equivalent of setting the 'editable' config option at config time.
57207      * @param {Boolean} value True to allow the user to directly edit the field text
57208      */
57209     setEditable : function(value){
57210          
57211     },
57212
57213     // private
57214     onBeforeLoad : function(){
57215         
57216         Roo.log("Select before load");
57217         return;
57218     
57219         this.innerList.update(this.loadingText ?
57220                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
57221         //this.restrictHeight();
57222         this.selectedIndex = -1;
57223     },
57224
57225     // private
57226     onLoad : function(){
57227
57228     
57229         var dom = this.el.dom;
57230         dom.innerHTML = '';
57231          var od = dom.ownerDocument;
57232          
57233         if (this.emptyText) {
57234             var op = od.createElement('option');
57235             op.setAttribute('value', '');
57236             op.innerHTML = String.format('{0}', this.emptyText);
57237             dom.appendChild(op);
57238         }
57239         if(this.store.getCount() > 0){
57240            
57241             var vf = this.valueField;
57242             var df = this.displayField;
57243             this.store.data.each(function(r) {
57244                 // which colmsn to use... testing - cdoe / title..
57245                 var op = od.createElement('option');
57246                 op.setAttribute('value', r.data[vf]);
57247                 op.innerHTML = String.format('{0}', r.data[df]);
57248                 dom.appendChild(op);
57249             });
57250             if (typeof(this.defaultValue != 'undefined')) {
57251                 this.setValue(this.defaultValue);
57252             }
57253             
57254              
57255         }else{
57256             //this.onEmptyResults();
57257         }
57258         //this.el.focus();
57259     },
57260     // private
57261     onLoadException : function()
57262     {
57263         dom.innerHTML = '';
57264             
57265         Roo.log("Select on load exception");
57266         return;
57267     
57268         this.collapse();
57269         Roo.log(this.store.reader.jsonData);
57270         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
57271             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
57272         }
57273         
57274         
57275     },
57276     // private
57277     onTypeAhead : function(){
57278          
57279     },
57280
57281     // private
57282     onSelect : function(record, index){
57283         Roo.log('on select?');
57284         return;
57285         if(this.fireEvent('beforeselect', this, record, index) !== false){
57286             this.setFromData(index > -1 ? record.data : false);
57287             this.collapse();
57288             this.fireEvent('select', this, record, index);
57289         }
57290     },
57291
57292     /**
57293      * Returns the currently selected field value or empty string if no value is set.
57294      * @return {String} value The selected value
57295      */
57296     getValue : function(){
57297         var dom = this.el.dom;
57298         this.value = dom.options[dom.selectedIndex].value;
57299         return this.value;
57300         
57301     },
57302
57303     /**
57304      * Clears any text/value currently set in the field
57305      */
57306     clearValue : function(){
57307         this.value = '';
57308         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
57309         
57310     },
57311
57312     /**
57313      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
57314      * will be displayed in the field.  If the value does not match the data value of an existing item,
57315      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
57316      * Otherwise the field will be blank (although the value will still be set).
57317      * @param {String} value The value to match
57318      */
57319     setValue : function(v){
57320         var d = this.el.dom;
57321         for (var i =0; i < d.options.length;i++) {
57322             if (v == d.options[i].value) {
57323                 d.selectedIndex = i;
57324                 this.value = v;
57325                 return;
57326             }
57327         }
57328         this.clearValue();
57329     },
57330     /**
57331      * @property {Object} the last set data for the element
57332      */
57333     
57334     lastData : false,
57335     /**
57336      * Sets the value of the field based on a object which is related to the record format for the store.
57337      * @param {Object} value the value to set as. or false on reset?
57338      */
57339     setFromData : function(o){
57340         Roo.log('setfrom data?');
57341          
57342         
57343         
57344     },
57345     // private
57346     reset : function(){
57347         this.clearValue();
57348     },
57349     // private
57350     findRecord : function(prop, value){
57351         
57352         return false;
57353     
57354         var record;
57355         if(this.store.getCount() > 0){
57356             this.store.each(function(r){
57357                 if(r.data[prop] == value){
57358                     record = r;
57359                     return false;
57360                 }
57361                 return true;
57362             });
57363         }
57364         return record;
57365     },
57366     
57367     getName: function()
57368     {
57369         // returns hidden if it's set..
57370         if (!this.rendered) {return ''};
57371         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
57372         
57373     },
57374      
57375
57376     
57377
57378     // private
57379     onEmptyResults : function(){
57380         Roo.log('empty results');
57381         //this.collapse();
57382     },
57383
57384     /**
57385      * Returns true if the dropdown list is expanded, else false.
57386      */
57387     isExpanded : function(){
57388         return false;
57389     },
57390
57391     /**
57392      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
57393      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57394      * @param {String} value The data value of the item to select
57395      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57396      * selected item if it is not currently in view (defaults to true)
57397      * @return {Boolean} True if the value matched an item in the list, else false
57398      */
57399     selectByValue : function(v, scrollIntoView){
57400         Roo.log('select By Value');
57401         return false;
57402     
57403         if(v !== undefined && v !== null){
57404             var r = this.findRecord(this.valueField || this.displayField, v);
57405             if(r){
57406                 this.select(this.store.indexOf(r), scrollIntoView);
57407                 return true;
57408             }
57409         }
57410         return false;
57411     },
57412
57413     /**
57414      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
57415      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57416      * @param {Number} index The zero-based index of the list item to select
57417      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57418      * selected item if it is not currently in view (defaults to true)
57419      */
57420     select : function(index, scrollIntoView){
57421         Roo.log('select ');
57422         return  ;
57423         
57424         this.selectedIndex = index;
57425         this.view.select(index);
57426         if(scrollIntoView !== false){
57427             var el = this.view.getNode(index);
57428             if(el){
57429                 this.innerList.scrollChildIntoView(el, false);
57430             }
57431         }
57432     },
57433
57434       
57435
57436     // private
57437     validateBlur : function(){
57438         
57439         return;
57440         
57441     },
57442
57443     // private
57444     initQuery : function(){
57445         this.doQuery(this.getRawValue());
57446     },
57447
57448     // private
57449     doForce : function(){
57450         if(this.el.dom.value.length > 0){
57451             this.el.dom.value =
57452                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
57453              
57454         }
57455     },
57456
57457     /**
57458      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
57459      * query allowing the query action to be canceled if needed.
57460      * @param {String} query The SQL query to execute
57461      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
57462      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
57463      * saved in the current store (defaults to false)
57464      */
57465     doQuery : function(q, forceAll){
57466         
57467         Roo.log('doQuery?');
57468         if(q === undefined || q === null){
57469             q = '';
57470         }
57471         var qe = {
57472             query: q,
57473             forceAll: forceAll,
57474             combo: this,
57475             cancel:false
57476         };
57477         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
57478             return false;
57479         }
57480         q = qe.query;
57481         forceAll = qe.forceAll;
57482         if(forceAll === true || (q.length >= this.minChars)){
57483             if(this.lastQuery != q || this.alwaysQuery){
57484                 this.lastQuery = q;
57485                 if(this.mode == 'local'){
57486                     this.selectedIndex = -1;
57487                     if(forceAll){
57488                         this.store.clearFilter();
57489                     }else{
57490                         this.store.filter(this.displayField, q);
57491                     }
57492                     this.onLoad();
57493                 }else{
57494                     this.store.baseParams[this.queryParam] = q;
57495                     this.store.load({
57496                         params: this.getParams(q)
57497                     });
57498                     this.expand();
57499                 }
57500             }else{
57501                 this.selectedIndex = -1;
57502                 this.onLoad();   
57503             }
57504         }
57505     },
57506
57507     // private
57508     getParams : function(q){
57509         var p = {};
57510         //p[this.queryParam] = q;
57511         if(this.pageSize){
57512             p.start = 0;
57513             p.limit = this.pageSize;
57514         }
57515         return p;
57516     },
57517
57518     /**
57519      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
57520      */
57521     collapse : function(){
57522         
57523     },
57524
57525     // private
57526     collapseIf : function(e){
57527         
57528     },
57529
57530     /**
57531      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
57532      */
57533     expand : function(){
57534         
57535     } ,
57536
57537     // private
57538      
57539
57540     /** 
57541     * @cfg {Boolean} grow 
57542     * @hide 
57543     */
57544     /** 
57545     * @cfg {Number} growMin 
57546     * @hide 
57547     */
57548     /** 
57549     * @cfg {Number} growMax 
57550     * @hide 
57551     */
57552     /**
57553      * @hide
57554      * @method autoSize
57555      */
57556     
57557     setWidth : function()
57558     {
57559         
57560     },
57561     getResizeEl : function(){
57562         return this.el;
57563     }
57564 });//<script type="text/javasscript">
57565  
57566
57567 /**
57568  * @class Roo.DDView
57569  * A DnD enabled version of Roo.View.
57570  * @param {Element/String} container The Element in which to create the View.
57571  * @param {String} tpl The template string used to create the markup for each element of the View
57572  * @param {Object} config The configuration properties. These include all the config options of
57573  * {@link Roo.View} plus some specific to this class.<br>
57574  * <p>
57575  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
57576  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
57577  * <p>
57578  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
57579 .x-view-drag-insert-above {
57580         border-top:1px dotted #3366cc;
57581 }
57582 .x-view-drag-insert-below {
57583         border-bottom:1px dotted #3366cc;
57584 }
57585 </code></pre>
57586  * 
57587  */
57588  
57589 Roo.DDView = function(container, tpl, config) {
57590     Roo.DDView.superclass.constructor.apply(this, arguments);
57591     this.getEl().setStyle("outline", "0px none");
57592     this.getEl().unselectable();
57593     if (this.dragGroup) {
57594         this.setDraggable(this.dragGroup.split(","));
57595     }
57596     if (this.dropGroup) {
57597         this.setDroppable(this.dropGroup.split(","));
57598     }
57599     if (this.deletable) {
57600         this.setDeletable();
57601     }
57602     this.isDirtyFlag = false;
57603         this.addEvents({
57604                 "drop" : true
57605         });
57606 };
57607
57608 Roo.extend(Roo.DDView, Roo.View, {
57609 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
57610 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
57611 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
57612 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
57613
57614         isFormField: true,
57615
57616         reset: Roo.emptyFn,
57617         
57618         clearInvalid: Roo.form.Field.prototype.clearInvalid,
57619
57620         validate: function() {
57621                 return true;
57622         },
57623         
57624         destroy: function() {
57625                 this.purgeListeners();
57626                 this.getEl.removeAllListeners();
57627                 this.getEl().remove();
57628                 if (this.dragZone) {
57629                         if (this.dragZone.destroy) {
57630                                 this.dragZone.destroy();
57631                         }
57632                 }
57633                 if (this.dropZone) {
57634                         if (this.dropZone.destroy) {
57635                                 this.dropZone.destroy();
57636                         }
57637                 }
57638         },
57639
57640 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
57641         getName: function() {
57642                 return this.name;
57643         },
57644
57645 /**     Loads the View from a JSON string representing the Records to put into the Store. */
57646         setValue: function(v) {
57647                 if (!this.store) {
57648                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
57649                 }
57650                 var data = {};
57651                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
57652                 this.store.proxy = new Roo.data.MemoryProxy(data);
57653                 this.store.load();
57654         },
57655
57656 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
57657         getValue: function() {
57658                 var result = '(';
57659                 this.store.each(function(rec) {
57660                         result += rec.id + ',';
57661                 });
57662                 return result.substr(0, result.length - 1) + ')';
57663         },
57664         
57665         getIds: function() {
57666                 var i = 0, result = new Array(this.store.getCount());
57667                 this.store.each(function(rec) {
57668                         result[i++] = rec.id;
57669                 });
57670                 return result;
57671         },
57672         
57673         isDirty: function() {
57674                 return this.isDirtyFlag;
57675         },
57676
57677 /**
57678  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
57679  *      whole Element becomes the target, and this causes the drop gesture to append.
57680  */
57681     getTargetFromEvent : function(e) {
57682                 var target = e.getTarget();
57683                 while ((target !== null) && (target.parentNode != this.el.dom)) {
57684                 target = target.parentNode;
57685                 }
57686                 if (!target) {
57687                         target = this.el.dom.lastChild || this.el.dom;
57688                 }
57689                 return target;
57690     },
57691
57692 /**
57693  *      Create the drag data which consists of an object which has the property "ddel" as
57694  *      the drag proxy element. 
57695  */
57696     getDragData : function(e) {
57697         var target = this.findItemFromChild(e.getTarget());
57698                 if(target) {
57699                         this.handleSelection(e);
57700                         var selNodes = this.getSelectedNodes();
57701             var dragData = {
57702                 source: this,
57703                 copy: this.copy || (this.allowCopy && e.ctrlKey),
57704                 nodes: selNodes,
57705                 records: []
57706                         };
57707                         var selectedIndices = this.getSelectedIndexes();
57708                         for (var i = 0; i < selectedIndices.length; i++) {
57709                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
57710                         }
57711                         if (selNodes.length == 1) {
57712                                 dragData.ddel = target.cloneNode(true); // the div element
57713                         } else {
57714                                 var div = document.createElement('div'); // create the multi element drag "ghost"
57715                                 div.className = 'multi-proxy';
57716                                 for (var i = 0, len = selNodes.length; i < len; i++) {
57717                                         div.appendChild(selNodes[i].cloneNode(true));
57718                                 }
57719                                 dragData.ddel = div;
57720                         }
57721             //console.log(dragData)
57722             //console.log(dragData.ddel.innerHTML)
57723                         return dragData;
57724                 }
57725         //console.log('nodragData')
57726                 return false;
57727     },
57728     
57729 /**     Specify to which ddGroup items in this DDView may be dragged. */
57730     setDraggable: function(ddGroup) {
57731         if (ddGroup instanceof Array) {
57732                 Roo.each(ddGroup, this.setDraggable, this);
57733                 return;
57734         }
57735         if (this.dragZone) {
57736                 this.dragZone.addToGroup(ddGroup);
57737         } else {
57738                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
57739                                 containerScroll: true,
57740                                 ddGroup: ddGroup 
57741
57742                         });
57743 //                      Draggability implies selection. DragZone's mousedown selects the element.
57744                         if (!this.multiSelect) { this.singleSelect = true; }
57745
57746 //                      Wire the DragZone's handlers up to methods in *this*
57747                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
57748                 }
57749     },
57750
57751 /**     Specify from which ddGroup this DDView accepts drops. */
57752     setDroppable: function(ddGroup) {
57753         if (ddGroup instanceof Array) {
57754                 Roo.each(ddGroup, this.setDroppable, this);
57755                 return;
57756         }
57757         if (this.dropZone) {
57758                 this.dropZone.addToGroup(ddGroup);
57759         } else {
57760                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
57761                                 containerScroll: true,
57762                                 ddGroup: ddGroup
57763                         });
57764
57765 //                      Wire the DropZone's handlers up to methods in *this*
57766                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
57767                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
57768                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
57769                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
57770                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
57771                 }
57772     },
57773
57774 /**     Decide whether to drop above or below a View node. */
57775     getDropPoint : function(e, n, dd){
57776         if (n == this.el.dom) { return "above"; }
57777                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
57778                 var c = t + (b - t) / 2;
57779                 var y = Roo.lib.Event.getPageY(e);
57780                 if(y <= c) {
57781                         return "above";
57782                 }else{
57783                         return "below";
57784                 }
57785     },
57786
57787     onNodeEnter : function(n, dd, e, data){
57788                 return false;
57789     },
57790     
57791     onNodeOver : function(n, dd, e, data){
57792                 var pt = this.getDropPoint(e, n, dd);
57793                 // set the insert point style on the target node
57794                 var dragElClass = this.dropNotAllowed;
57795                 if (pt) {
57796                         var targetElClass;
57797                         if (pt == "above"){
57798                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
57799                                 targetElClass = "x-view-drag-insert-above";
57800                         } else {
57801                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
57802                                 targetElClass = "x-view-drag-insert-below";
57803                         }
57804                         if (this.lastInsertClass != targetElClass){
57805                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
57806                                 this.lastInsertClass = targetElClass;
57807                         }
57808                 }
57809                 return dragElClass;
57810         },
57811
57812     onNodeOut : function(n, dd, e, data){
57813                 this.removeDropIndicators(n);
57814     },
57815
57816     onNodeDrop : function(n, dd, e, data){
57817         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
57818                 return false;
57819         }
57820         var pt = this.getDropPoint(e, n, dd);
57821                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
57822                 if (pt == "below") { insertAt++; }
57823                 for (var i = 0; i < data.records.length; i++) {
57824                         var r = data.records[i];
57825                         var dup = this.store.getById(r.id);
57826                         if (dup && (dd != this.dragZone)) {
57827                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
57828                         } else {
57829                                 if (data.copy) {
57830                                         this.store.insert(insertAt++, r.copy());
57831                                 } else {
57832                                         data.source.isDirtyFlag = true;
57833                                         r.store.remove(r);
57834                                         this.store.insert(insertAt++, r);
57835                                 }
57836                                 this.isDirtyFlag = true;
57837                         }
57838                 }
57839                 this.dragZone.cachedTarget = null;
57840                 return true;
57841     },
57842
57843     removeDropIndicators : function(n){
57844                 if(n){
57845                         Roo.fly(n).removeClass([
57846                                 "x-view-drag-insert-above",
57847                                 "x-view-drag-insert-below"]);
57848                         this.lastInsertClass = "_noclass";
57849                 }
57850     },
57851
57852 /**
57853  *      Utility method. Add a delete option to the DDView's context menu.
57854  *      @param {String} imageUrl The URL of the "delete" icon image.
57855  */
57856         setDeletable: function(imageUrl) {
57857                 if (!this.singleSelect && !this.multiSelect) {
57858                         this.singleSelect = true;
57859                 }
57860                 var c = this.getContextMenu();
57861                 this.contextMenu.on("itemclick", function(item) {
57862                         switch (item.id) {
57863                                 case "delete":
57864                                         this.remove(this.getSelectedIndexes());
57865                                         break;
57866                         }
57867                 }, this);
57868                 this.contextMenu.add({
57869                         icon: imageUrl,
57870                         id: "delete",
57871                         text: 'Delete'
57872                 });
57873         },
57874         
57875 /**     Return the context menu for this DDView. */
57876         getContextMenu: function() {
57877                 if (!this.contextMenu) {
57878 //                      Create the View's context menu
57879                         this.contextMenu = new Roo.menu.Menu({
57880                                 id: this.id + "-contextmenu"
57881                         });
57882                         this.el.on("contextmenu", this.showContextMenu, this);
57883                 }
57884                 return this.contextMenu;
57885         },
57886         
57887         disableContextMenu: function() {
57888                 if (this.contextMenu) {
57889                         this.el.un("contextmenu", this.showContextMenu, this);
57890                 }
57891         },
57892
57893         showContextMenu: function(e, item) {
57894         item = this.findItemFromChild(e.getTarget());
57895                 if (item) {
57896                         e.stopEvent();
57897                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
57898                         this.contextMenu.showAt(e.getXY());
57899             }
57900     },
57901
57902 /**
57903  *      Remove {@link Roo.data.Record}s at the specified indices.
57904  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
57905  */
57906     remove: function(selectedIndices) {
57907                 selectedIndices = [].concat(selectedIndices);
57908                 for (var i = 0; i < selectedIndices.length; i++) {
57909                         var rec = this.store.getAt(selectedIndices[i]);
57910                         this.store.remove(rec);
57911                 }
57912     },
57913
57914 /**
57915  *      Double click fires the event, but also, if this is draggable, and there is only one other
57916  *      related DropZone, it transfers the selected node.
57917  */
57918     onDblClick : function(e){
57919         var item = this.findItemFromChild(e.getTarget());
57920         if(item){
57921             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
57922                 return false;
57923             }
57924             if (this.dragGroup) {
57925                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
57926                     while (targets.indexOf(this.dropZone) > -1) {
57927                             targets.remove(this.dropZone);
57928                                 }
57929                     if (targets.length == 1) {
57930                                         this.dragZone.cachedTarget = null;
57931                         var el = Roo.get(targets[0].getEl());
57932                         var box = el.getBox(true);
57933                         targets[0].onNodeDrop(el.dom, {
57934                                 target: el.dom,
57935                                 xy: [box.x, box.y + box.height - 1]
57936                         }, null, this.getDragData(e));
57937                     }
57938                 }
57939         }
57940     },
57941     
57942     handleSelection: function(e) {
57943                 this.dragZone.cachedTarget = null;
57944         var item = this.findItemFromChild(e.getTarget());
57945         if (!item) {
57946                 this.clearSelections(true);
57947                 return;
57948         }
57949                 if (item && (this.multiSelect || this.singleSelect)){
57950                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
57951                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
57952                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
57953                                 this.unselect(item);
57954                         } else {
57955                                 this.select(item, this.multiSelect && e.ctrlKey);
57956                                 this.lastSelection = item;
57957                         }
57958                 }
57959     },
57960
57961     onItemClick : function(item, index, e){
57962                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
57963                         return false;
57964                 }
57965                 return true;
57966     },
57967
57968     unselect : function(nodeInfo, suppressEvent){
57969                 var node = this.getNode(nodeInfo);
57970                 if(node && this.isSelected(node)){
57971                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
57972                                 Roo.fly(node).removeClass(this.selectedClass);
57973                                 this.selections.remove(node);
57974                                 if(!suppressEvent){
57975                                         this.fireEvent("selectionchange", this, this.selections);
57976                                 }
57977                         }
57978                 }
57979     }
57980 });
57981 /*
57982  * Based on:
57983  * Ext JS Library 1.1.1
57984  * Copyright(c) 2006-2007, Ext JS, LLC.
57985  *
57986  * Originally Released Under LGPL - original licence link has changed is not relivant.
57987  *
57988  * Fork - LGPL
57989  * <script type="text/javascript">
57990  */
57991  
57992 /**
57993  * @class Roo.LayoutManager
57994  * @extends Roo.util.Observable
57995  * Base class for layout managers.
57996  */
57997 Roo.LayoutManager = function(container, config){
57998     Roo.LayoutManager.superclass.constructor.call(this);
57999     this.el = Roo.get(container);
58000     // ie scrollbar fix
58001     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
58002         document.body.scroll = "no";
58003     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
58004         this.el.position('relative');
58005     }
58006     this.id = this.el.id;
58007     this.el.addClass("x-layout-container");
58008     /** false to disable window resize monitoring @type Boolean */
58009     this.monitorWindowResize = true;
58010     this.regions = {};
58011     this.addEvents({
58012         /**
58013          * @event layout
58014          * Fires when a layout is performed. 
58015          * @param {Roo.LayoutManager} this
58016          */
58017         "layout" : true,
58018         /**
58019          * @event regionresized
58020          * Fires when the user resizes a region. 
58021          * @param {Roo.LayoutRegion} region The resized region
58022          * @param {Number} newSize The new size (width for east/west, height for north/south)
58023          */
58024         "regionresized" : true,
58025         /**
58026          * @event regioncollapsed
58027          * Fires when a region is collapsed. 
58028          * @param {Roo.LayoutRegion} region The collapsed region
58029          */
58030         "regioncollapsed" : true,
58031         /**
58032          * @event regionexpanded
58033          * Fires when a region is expanded.  
58034          * @param {Roo.LayoutRegion} region The expanded region
58035          */
58036         "regionexpanded" : true
58037     });
58038     this.updating = false;
58039     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
58040 };
58041
58042 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
58043     /**
58044      * Returns true if this layout is currently being updated
58045      * @return {Boolean}
58046      */
58047     isUpdating : function(){
58048         return this.updating; 
58049     },
58050     
58051     /**
58052      * Suspend the LayoutManager from doing auto-layouts while
58053      * making multiple add or remove calls
58054      */
58055     beginUpdate : function(){
58056         this.updating = true;    
58057     },
58058     
58059     /**
58060      * Restore auto-layouts and optionally disable the manager from performing a layout
58061      * @param {Boolean} noLayout true to disable a layout update 
58062      */
58063     endUpdate : function(noLayout){
58064         this.updating = false;
58065         if(!noLayout){
58066             this.layout();
58067         }    
58068     },
58069     
58070     layout: function(){
58071         
58072     },
58073     
58074     onRegionResized : function(region, newSize){
58075         this.fireEvent("regionresized", region, newSize);
58076         this.layout();
58077     },
58078     
58079     onRegionCollapsed : function(region){
58080         this.fireEvent("regioncollapsed", region);
58081     },
58082     
58083     onRegionExpanded : function(region){
58084         this.fireEvent("regionexpanded", region);
58085     },
58086         
58087     /**
58088      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
58089      * performs box-model adjustments.
58090      * @return {Object} The size as an object {width: (the width), height: (the height)}
58091      */
58092     getViewSize : function(){
58093         var size;
58094         if(this.el.dom != document.body){
58095             size = this.el.getSize();
58096         }else{
58097             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
58098         }
58099         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
58100         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
58101         return size;
58102     },
58103     
58104     /**
58105      * Returns the Element this layout is bound to.
58106      * @return {Roo.Element}
58107      */
58108     getEl : function(){
58109         return this.el;
58110     },
58111     
58112     /**
58113      * Returns the specified region.
58114      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
58115      * @return {Roo.LayoutRegion}
58116      */
58117     getRegion : function(target){
58118         return this.regions[target.toLowerCase()];
58119     },
58120     
58121     onWindowResize : function(){
58122         if(this.monitorWindowResize){
58123             this.layout();
58124         }
58125     }
58126 });/*
58127  * Based on:
58128  * Ext JS Library 1.1.1
58129  * Copyright(c) 2006-2007, Ext JS, LLC.
58130  *
58131  * Originally Released Under LGPL - original licence link has changed is not relivant.
58132  *
58133  * Fork - LGPL
58134  * <script type="text/javascript">
58135  */
58136 /**
58137  * @class Roo.BorderLayout
58138  * @extends Roo.LayoutManager
58139  * @children Roo.ContentPanel
58140  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
58141  * please see: <br><br>
58142  * <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>
58143  * <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>
58144  * Example:
58145  <pre><code>
58146  var layout = new Roo.BorderLayout(document.body, {
58147     north: {
58148         initialSize: 25,
58149         titlebar: false
58150     },
58151     west: {
58152         split:true,
58153         initialSize: 200,
58154         minSize: 175,
58155         maxSize: 400,
58156         titlebar: true,
58157         collapsible: true
58158     },
58159     east: {
58160         split:true,
58161         initialSize: 202,
58162         minSize: 175,
58163         maxSize: 400,
58164         titlebar: true,
58165         collapsible: true
58166     },
58167     south: {
58168         split:true,
58169         initialSize: 100,
58170         minSize: 100,
58171         maxSize: 200,
58172         titlebar: true,
58173         collapsible: true
58174     },
58175     center: {
58176         titlebar: true,
58177         autoScroll:true,
58178         resizeTabs: true,
58179         minTabWidth: 50,
58180         preferredTabWidth: 150
58181     }
58182 });
58183
58184 // shorthand
58185 var CP = Roo.ContentPanel;
58186
58187 layout.beginUpdate();
58188 layout.add("north", new CP("north", "North"));
58189 layout.add("south", new CP("south", {title: "South", closable: true}));
58190 layout.add("west", new CP("west", {title: "West"}));
58191 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
58192 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
58193 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
58194 layout.getRegion("center").showPanel("center1");
58195 layout.endUpdate();
58196 </code></pre>
58197
58198 <b>The container the layout is rendered into can be either the body element or any other element.
58199 If it is not the body element, the container needs to either be an absolute positioned element,
58200 or you will need to add "position:relative" to the css of the container.  You will also need to specify
58201 the container size if it is not the body element.</b>
58202
58203 * @constructor
58204 * Create a new BorderLayout
58205 * @param {String/HTMLElement/Element} container The container this layout is bound to
58206 * @param {Object} config Configuration options
58207  */
58208 Roo.BorderLayout = function(container, config){
58209     config = config || {};
58210     Roo.BorderLayout.superclass.constructor.call(this, container, config);
58211     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
58212     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
58213         var target = this.factory.validRegions[i];
58214         if(config[target]){
58215             this.addRegion(target, config[target]);
58216         }
58217     }
58218 };
58219
58220 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
58221         
58222         /**
58223          * @cfg {Roo.LayoutRegion} east
58224          */
58225         /**
58226          * @cfg {Roo.LayoutRegion} west
58227          */
58228         /**
58229          * @cfg {Roo.LayoutRegion} north
58230          */
58231         /**
58232          * @cfg {Roo.LayoutRegion} south
58233          */
58234         /**
58235          * @cfg {Roo.LayoutRegion} center
58236          */
58237     /**
58238      * Creates and adds a new region if it doesn't already exist.
58239      * @param {String} target The target region key (north, south, east, west or center).
58240      * @param {Object} config The regions config object
58241      * @return {BorderLayoutRegion} The new region
58242      */
58243     addRegion : function(target, config){
58244         if(!this.regions[target]){
58245             var r = this.factory.create(target, this, config);
58246             this.bindRegion(target, r);
58247         }
58248         return this.regions[target];
58249     },
58250
58251     // private (kinda)
58252     bindRegion : function(name, r){
58253         this.regions[name] = r;
58254         r.on("visibilitychange", this.layout, this);
58255         r.on("paneladded", this.layout, this);
58256         r.on("panelremoved", this.layout, this);
58257         r.on("invalidated", this.layout, this);
58258         r.on("resized", this.onRegionResized, this);
58259         r.on("collapsed", this.onRegionCollapsed, this);
58260         r.on("expanded", this.onRegionExpanded, this);
58261     },
58262
58263     /**
58264      * Performs a layout update.
58265      */
58266     layout : function(){
58267         if(this.updating) {
58268             return;
58269         }
58270         var size = this.getViewSize();
58271         var w = size.width;
58272         var h = size.height;
58273         var centerW = w;
58274         var centerH = h;
58275         var centerY = 0;
58276         var centerX = 0;
58277         //var x = 0, y = 0;
58278
58279         var rs = this.regions;
58280         var north = rs["north"];
58281         var south = rs["south"]; 
58282         var west = rs["west"];
58283         var east = rs["east"];
58284         var center = rs["center"];
58285         //if(this.hideOnLayout){ // not supported anymore
58286             //c.el.setStyle("display", "none");
58287         //}
58288         if(north && north.isVisible()){
58289             var b = north.getBox();
58290             var m = north.getMargins();
58291             b.width = w - (m.left+m.right);
58292             b.x = m.left;
58293             b.y = m.top;
58294             centerY = b.height + b.y + m.bottom;
58295             centerH -= centerY;
58296             north.updateBox(this.safeBox(b));
58297         }
58298         if(south && south.isVisible()){
58299             var b = south.getBox();
58300             var m = south.getMargins();
58301             b.width = w - (m.left+m.right);
58302             b.x = m.left;
58303             var totalHeight = (b.height + m.top + m.bottom);
58304             b.y = h - totalHeight + m.top;
58305             centerH -= totalHeight;
58306             south.updateBox(this.safeBox(b));
58307         }
58308         if(west && west.isVisible()){
58309             var b = west.getBox();
58310             var m = west.getMargins();
58311             b.height = centerH - (m.top+m.bottom);
58312             b.x = m.left;
58313             b.y = centerY + m.top;
58314             var totalWidth = (b.width + m.left + m.right);
58315             centerX += totalWidth;
58316             centerW -= totalWidth;
58317             west.updateBox(this.safeBox(b));
58318         }
58319         if(east && east.isVisible()){
58320             var b = east.getBox();
58321             var m = east.getMargins();
58322             b.height = centerH - (m.top+m.bottom);
58323             var totalWidth = (b.width + m.left + m.right);
58324             b.x = w - totalWidth + m.left;
58325             b.y = centerY + m.top;
58326             centerW -= totalWidth;
58327             east.updateBox(this.safeBox(b));
58328         }
58329         if(center){
58330             var m = center.getMargins();
58331             var centerBox = {
58332                 x: centerX + m.left,
58333                 y: centerY + m.top,
58334                 width: centerW - (m.left+m.right),
58335                 height: centerH - (m.top+m.bottom)
58336             };
58337             //if(this.hideOnLayout){
58338                 //center.el.setStyle("display", "block");
58339             //}
58340             center.updateBox(this.safeBox(centerBox));
58341         }
58342         this.el.repaint();
58343         this.fireEvent("layout", this);
58344     },
58345
58346     // private
58347     safeBox : function(box){
58348         box.width = Math.max(0, box.width);
58349         box.height = Math.max(0, box.height);
58350         return box;
58351     },
58352
58353     /**
58354      * Adds a ContentPanel (or subclass) to this layout.
58355      * @param {String} target The target region key (north, south, east, west or center).
58356      * @param {Roo.ContentPanel} panel The panel to add
58357      * @return {Roo.ContentPanel} The added panel
58358      */
58359     add : function(target, panel){
58360          
58361         target = target.toLowerCase();
58362         return this.regions[target].add(panel);
58363     },
58364
58365     /**
58366      * Remove a ContentPanel (or subclass) to this layout.
58367      * @param {String} target The target region key (north, south, east, west or center).
58368      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
58369      * @return {Roo.ContentPanel} The removed panel
58370      */
58371     remove : function(target, panel){
58372         target = target.toLowerCase();
58373         return this.regions[target].remove(panel);
58374     },
58375
58376     /**
58377      * Searches all regions for a panel with the specified id
58378      * @param {String} panelId
58379      * @return {Roo.ContentPanel} The panel or null if it wasn't found
58380      */
58381     findPanel : function(panelId){
58382         var rs = this.regions;
58383         for(var target in rs){
58384             if(typeof rs[target] != "function"){
58385                 var p = rs[target].getPanel(panelId);
58386                 if(p){
58387                     return p;
58388                 }
58389             }
58390         }
58391         return null;
58392     },
58393
58394     /**
58395      * Searches all regions for a panel with the specified id and activates (shows) it.
58396      * @param {String/ContentPanel} panelId The panels id or the panel itself
58397      * @return {Roo.ContentPanel} The shown panel or null
58398      */
58399     showPanel : function(panelId) {
58400       var rs = this.regions;
58401       for(var target in rs){
58402          var r = rs[target];
58403          if(typeof r != "function"){
58404             if(r.hasPanel(panelId)){
58405                return r.showPanel(panelId);
58406             }
58407          }
58408       }
58409       return null;
58410    },
58411
58412    /**
58413      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
58414      * @param {Roo.state.Provider} provider (optional) An alternate state provider
58415      */
58416     restoreState : function(provider){
58417         if(!provider){
58418             provider = Roo.state.Manager;
58419         }
58420         var sm = new Roo.LayoutStateManager();
58421         sm.init(this, provider);
58422     },
58423
58424     /**
58425      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
58426      * object should contain properties for each region to add ContentPanels to, and each property's value should be
58427      * a valid ContentPanel config object.  Example:
58428      * <pre><code>
58429 // Create the main layout
58430 var layout = new Roo.BorderLayout('main-ct', {
58431     west: {
58432         split:true,
58433         minSize: 175,
58434         titlebar: true
58435     },
58436     center: {
58437         title:'Components'
58438     }
58439 }, 'main-ct');
58440
58441 // Create and add multiple ContentPanels at once via configs
58442 layout.batchAdd({
58443    west: {
58444        id: 'source-files',
58445        autoCreate:true,
58446        title:'Ext Source Files',
58447        autoScroll:true,
58448        fitToFrame:true
58449    },
58450    center : {
58451        el: cview,
58452        autoScroll:true,
58453        fitToFrame:true,
58454        toolbar: tb,
58455        resizeEl:'cbody'
58456    }
58457 });
58458 </code></pre>
58459      * @param {Object} regions An object containing ContentPanel configs by region name
58460      */
58461     batchAdd : function(regions){
58462         this.beginUpdate();
58463         for(var rname in regions){
58464             var lr = this.regions[rname];
58465             if(lr){
58466                 this.addTypedPanels(lr, regions[rname]);
58467             }
58468         }
58469         this.endUpdate();
58470     },
58471
58472     // private
58473     addTypedPanels : function(lr, ps){
58474         if(typeof ps == 'string'){
58475             lr.add(new Roo.ContentPanel(ps));
58476         }
58477         else if(ps instanceof Array){
58478             for(var i =0, len = ps.length; i < len; i++){
58479                 this.addTypedPanels(lr, ps[i]);
58480             }
58481         }
58482         else if(!ps.events){ // raw config?
58483             var el = ps.el;
58484             delete ps.el; // prevent conflict
58485             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
58486         }
58487         else {  // panel object assumed!
58488             lr.add(ps);
58489         }
58490     },
58491     /**
58492      * Adds a xtype elements to the layout.
58493      * <pre><code>
58494
58495 layout.addxtype({
58496        xtype : 'ContentPanel',
58497        region: 'west',
58498        items: [ .... ]
58499    }
58500 );
58501
58502 layout.addxtype({
58503         xtype : 'NestedLayoutPanel',
58504         region: 'west',
58505         layout: {
58506            center: { },
58507            west: { }   
58508         },
58509         items : [ ... list of content panels or nested layout panels.. ]
58510    }
58511 );
58512 </code></pre>
58513      * @param {Object} cfg Xtype definition of item to add.
58514      */
58515     addxtype : function(cfg)
58516     {
58517         // basically accepts a pannel...
58518         // can accept a layout region..!?!?
58519         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
58520         
58521         if (!cfg.xtype.match(/Panel$/)) {
58522             return false;
58523         }
58524         var ret = false;
58525         
58526         if (typeof(cfg.region) == 'undefined') {
58527             Roo.log("Failed to add Panel, region was not set");
58528             Roo.log(cfg);
58529             return false;
58530         }
58531         var region = cfg.region;
58532         delete cfg.region;
58533         
58534           
58535         var xitems = [];
58536         if (cfg.items) {
58537             xitems = cfg.items;
58538             delete cfg.items;
58539         }
58540         var nb = false;
58541         
58542         switch(cfg.xtype) 
58543         {
58544             case 'ContentPanel':  // ContentPanel (el, cfg)
58545             case 'ScrollPanel':  // ContentPanel (el, cfg)
58546             case 'ViewPanel': 
58547                 if(cfg.autoCreate) {
58548                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58549                 } else {
58550                     var el = this.el.createChild();
58551                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
58552                 }
58553                 
58554                 this.add(region, ret);
58555                 break;
58556             
58557             
58558             case 'TreePanel': // our new panel!
58559                 cfg.el = this.el.createChild();
58560                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58561                 this.add(region, ret);
58562                 break;
58563             
58564             case 'NestedLayoutPanel': 
58565                 // create a new Layout (which is  a Border Layout...
58566                 var el = this.el.createChild();
58567                 var clayout = cfg.layout;
58568                 delete cfg.layout;
58569                 clayout.items   = clayout.items  || [];
58570                 // replace this exitems with the clayout ones..
58571                 xitems = clayout.items;
58572                  
58573                 
58574                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
58575                     cfg.background = false;
58576                 }
58577                 var layout = new Roo.BorderLayout(el, clayout);
58578                 
58579                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
58580                 //console.log('adding nested layout panel '  + cfg.toSource());
58581                 this.add(region, ret);
58582                 nb = {}; /// find first...
58583                 break;
58584                 
58585             case 'GridPanel': 
58586             
58587                 // needs grid and region
58588                 
58589                 //var el = this.getRegion(region).el.createChild();
58590                 var el = this.el.createChild();
58591                 // create the grid first...
58592                 
58593                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
58594                 delete cfg.grid;
58595                 if (region == 'center' && this.active ) {
58596                     cfg.background = false;
58597                 }
58598                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
58599                 
58600                 this.add(region, ret);
58601                 if (cfg.background) {
58602                     ret.on('activate', function(gp) {
58603                         if (!gp.grid.rendered) {
58604                             gp.grid.render();
58605                         }
58606                     });
58607                 } else {
58608                     grid.render();
58609                 }
58610                 break;
58611            
58612            
58613            
58614                 
58615                 
58616                 
58617             default:
58618                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
58619                     
58620                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58621                     this.add(region, ret);
58622                 } else {
58623                 
58624                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
58625                     return null;
58626                 }
58627                 
58628              // GridPanel (grid, cfg)
58629             
58630         }
58631         this.beginUpdate();
58632         // add children..
58633         var region = '';
58634         var abn = {};
58635         Roo.each(xitems, function(i)  {
58636             region = nb && i.region ? i.region : false;
58637             
58638             var add = ret.addxtype(i);
58639            
58640             if (region) {
58641                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
58642                 if (!i.background) {
58643                     abn[region] = nb[region] ;
58644                 }
58645             }
58646             
58647         });
58648         this.endUpdate();
58649
58650         // make the last non-background panel active..
58651         //if (nb) { Roo.log(abn); }
58652         if (nb) {
58653             
58654             for(var r in abn) {
58655                 region = this.getRegion(r);
58656                 if (region) {
58657                     // tried using nb[r], but it does not work..
58658                      
58659                     region.showPanel(abn[r]);
58660                    
58661                 }
58662             }
58663         }
58664         return ret;
58665         
58666     }
58667 });
58668
58669 /**
58670  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
58671  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
58672  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
58673  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
58674  * <pre><code>
58675 // shorthand
58676 var CP = Roo.ContentPanel;
58677
58678 var layout = Roo.BorderLayout.create({
58679     north: {
58680         initialSize: 25,
58681         titlebar: false,
58682         panels: [new CP("north", "North")]
58683     },
58684     west: {
58685         split:true,
58686         initialSize: 200,
58687         minSize: 175,
58688         maxSize: 400,
58689         titlebar: true,
58690         collapsible: true,
58691         panels: [new CP("west", {title: "West"})]
58692     },
58693     east: {
58694         split:true,
58695         initialSize: 202,
58696         minSize: 175,
58697         maxSize: 400,
58698         titlebar: true,
58699         collapsible: true,
58700         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
58701     },
58702     south: {
58703         split:true,
58704         initialSize: 100,
58705         minSize: 100,
58706         maxSize: 200,
58707         titlebar: true,
58708         collapsible: true,
58709         panels: [new CP("south", {title: "South", closable: true})]
58710     },
58711     center: {
58712         titlebar: true,
58713         autoScroll:true,
58714         resizeTabs: true,
58715         minTabWidth: 50,
58716         preferredTabWidth: 150,
58717         panels: [
58718             new CP("center1", {title: "Close Me", closable: true}),
58719             new CP("center2", {title: "Center Panel", closable: false})
58720         ]
58721     }
58722 }, document.body);
58723
58724 layout.getRegion("center").showPanel("center1");
58725 </code></pre>
58726  * @param config
58727  * @param targetEl
58728  */
58729 Roo.BorderLayout.create = function(config, targetEl){
58730     var layout = new Roo.BorderLayout(targetEl || document.body, config);
58731     layout.beginUpdate();
58732     var regions = Roo.BorderLayout.RegionFactory.validRegions;
58733     for(var j = 0, jlen = regions.length; j < jlen; j++){
58734         var lr = regions[j];
58735         if(layout.regions[lr] && config[lr].panels){
58736             var r = layout.regions[lr];
58737             var ps = config[lr].panels;
58738             layout.addTypedPanels(r, ps);
58739         }
58740     }
58741     layout.endUpdate();
58742     return layout;
58743 };
58744
58745 // private
58746 Roo.BorderLayout.RegionFactory = {
58747     // private
58748     validRegions : ["north","south","east","west","center"],
58749
58750     // private
58751     create : function(target, mgr, config){
58752         target = target.toLowerCase();
58753         if(config.lightweight || config.basic){
58754             return new Roo.BasicLayoutRegion(mgr, config, target);
58755         }
58756         switch(target){
58757             case "north":
58758                 return new Roo.NorthLayoutRegion(mgr, config);
58759             case "south":
58760                 return new Roo.SouthLayoutRegion(mgr, config);
58761             case "east":
58762                 return new Roo.EastLayoutRegion(mgr, config);
58763             case "west":
58764                 return new Roo.WestLayoutRegion(mgr, config);
58765             case "center":
58766                 return new Roo.CenterLayoutRegion(mgr, config);
58767         }
58768         throw 'Layout region "'+target+'" not supported.';
58769     }
58770 };/*
58771  * Based on:
58772  * Ext JS Library 1.1.1
58773  * Copyright(c) 2006-2007, Ext JS, LLC.
58774  *
58775  * Originally Released Under LGPL - original licence link has changed is not relivant.
58776  *
58777  * Fork - LGPL
58778  * <script type="text/javascript">
58779  */
58780  
58781 /**
58782  * @class Roo.BasicLayoutRegion
58783  * @extends Roo.util.Observable
58784  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
58785  * and does not have a titlebar, tabs or any other features. All it does is size and position 
58786  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
58787  */
58788 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
58789     this.mgr = mgr;
58790     this.position  = pos;
58791     this.events = {
58792         /**
58793          * @scope Roo.BasicLayoutRegion
58794          */
58795         
58796         /**
58797          * @event beforeremove
58798          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
58799          * @param {Roo.LayoutRegion} this
58800          * @param {Roo.ContentPanel} panel The panel
58801          * @param {Object} e The cancel event object
58802          */
58803         "beforeremove" : true,
58804         /**
58805          * @event invalidated
58806          * Fires when the layout for this region is changed.
58807          * @param {Roo.LayoutRegion} this
58808          */
58809         "invalidated" : true,
58810         /**
58811          * @event visibilitychange
58812          * Fires when this region is shown or hidden 
58813          * @param {Roo.LayoutRegion} this
58814          * @param {Boolean} visibility true or false
58815          */
58816         "visibilitychange" : true,
58817         /**
58818          * @event paneladded
58819          * Fires when a panel is added. 
58820          * @param {Roo.LayoutRegion} this
58821          * @param {Roo.ContentPanel} panel The panel
58822          */
58823         "paneladded" : true,
58824         /**
58825          * @event panelremoved
58826          * Fires when a panel is removed. 
58827          * @param {Roo.LayoutRegion} this
58828          * @param {Roo.ContentPanel} panel The panel
58829          */
58830         "panelremoved" : true,
58831         /**
58832          * @event beforecollapse
58833          * Fires when this region before collapse.
58834          * @param {Roo.LayoutRegion} this
58835          */
58836         "beforecollapse" : true,
58837         /**
58838          * @event collapsed
58839          * Fires when this region is collapsed.
58840          * @param {Roo.LayoutRegion} this
58841          */
58842         "collapsed" : true,
58843         /**
58844          * @event expanded
58845          * Fires when this region is expanded.
58846          * @param {Roo.LayoutRegion} this
58847          */
58848         "expanded" : true,
58849         /**
58850          * @event slideshow
58851          * Fires when this region is slid into view.
58852          * @param {Roo.LayoutRegion} this
58853          */
58854         "slideshow" : true,
58855         /**
58856          * @event slidehide
58857          * Fires when this region slides out of view. 
58858          * @param {Roo.LayoutRegion} this
58859          */
58860         "slidehide" : true,
58861         /**
58862          * @event panelactivated
58863          * Fires when a panel is activated. 
58864          * @param {Roo.LayoutRegion} this
58865          * @param {Roo.ContentPanel} panel The activated panel
58866          */
58867         "panelactivated" : true,
58868         /**
58869          * @event resized
58870          * Fires when the user resizes this region. 
58871          * @param {Roo.LayoutRegion} this
58872          * @param {Number} newSize The new size (width for east/west, height for north/south)
58873          */
58874         "resized" : true
58875     };
58876     /** A collection of panels in this region. @type Roo.util.MixedCollection */
58877     this.panels = new Roo.util.MixedCollection();
58878     this.panels.getKey = this.getPanelId.createDelegate(this);
58879     this.box = null;
58880     this.activePanel = null;
58881     // ensure listeners are added...
58882     
58883     if (config.listeners || config.events) {
58884         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
58885             listeners : config.listeners || {},
58886             events : config.events || {}
58887         });
58888     }
58889     
58890     if(skipConfig !== true){
58891         this.applyConfig(config);
58892     }
58893 };
58894
58895 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
58896     getPanelId : function(p){
58897         return p.getId();
58898     },
58899     
58900     applyConfig : function(config){
58901         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
58902         this.config = config;
58903         
58904     },
58905     
58906     /**
58907      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
58908      * the width, for horizontal (north, south) the height.
58909      * @param {Number} newSize The new width or height
58910      */
58911     resizeTo : function(newSize){
58912         var el = this.el ? this.el :
58913                  (this.activePanel ? this.activePanel.getEl() : null);
58914         if(el){
58915             switch(this.position){
58916                 case "east":
58917                 case "west":
58918                     el.setWidth(newSize);
58919                     this.fireEvent("resized", this, newSize);
58920                 break;
58921                 case "north":
58922                 case "south":
58923                     el.setHeight(newSize);
58924                     this.fireEvent("resized", this, newSize);
58925                 break;                
58926             }
58927         }
58928     },
58929     
58930     getBox : function(){
58931         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
58932     },
58933     
58934     getMargins : function(){
58935         return this.margins;
58936     },
58937     
58938     updateBox : function(box){
58939         this.box = box;
58940         var el = this.activePanel.getEl();
58941         el.dom.style.left = box.x + "px";
58942         el.dom.style.top = box.y + "px";
58943         this.activePanel.setSize(box.width, box.height);
58944     },
58945     
58946     /**
58947      * Returns the container element for this region.
58948      * @return {Roo.Element}
58949      */
58950     getEl : function(){
58951         return this.activePanel;
58952     },
58953     
58954     /**
58955      * Returns true if this region is currently visible.
58956      * @return {Boolean}
58957      */
58958     isVisible : function(){
58959         return this.activePanel ? true : false;
58960     },
58961     
58962     setActivePanel : function(panel){
58963         panel = this.getPanel(panel);
58964         if(this.activePanel && this.activePanel != panel){
58965             this.activePanel.setActiveState(false);
58966             this.activePanel.getEl().setLeftTop(-10000,-10000);
58967         }
58968         this.activePanel = panel;
58969         panel.setActiveState(true);
58970         if(this.box){
58971             panel.setSize(this.box.width, this.box.height);
58972         }
58973         this.fireEvent("panelactivated", this, panel);
58974         this.fireEvent("invalidated");
58975     },
58976     
58977     /**
58978      * Show the specified panel.
58979      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
58980      * @return {Roo.ContentPanel} The shown panel or null
58981      */
58982     showPanel : function(panel){
58983         if(panel = this.getPanel(panel)){
58984             this.setActivePanel(panel);
58985         }
58986         return panel;
58987     },
58988     
58989     /**
58990      * Get the active panel for this region.
58991      * @return {Roo.ContentPanel} The active panel or null
58992      */
58993     getActivePanel : function(){
58994         return this.activePanel;
58995     },
58996     
58997     /**
58998      * Add the passed ContentPanel(s)
58999      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59000      * @return {Roo.ContentPanel} The panel added (if only one was added)
59001      */
59002     add : function(panel){
59003         if(arguments.length > 1){
59004             for(var i = 0, len = arguments.length; i < len; i++) {
59005                 this.add(arguments[i]);
59006             }
59007             return null;
59008         }
59009         if(this.hasPanel(panel)){
59010             this.showPanel(panel);
59011             return panel;
59012         }
59013         var el = panel.getEl();
59014         if(el.dom.parentNode != this.mgr.el.dom){
59015             this.mgr.el.dom.appendChild(el.dom);
59016         }
59017         if(panel.setRegion){
59018             panel.setRegion(this);
59019         }
59020         this.panels.add(panel);
59021         el.setStyle("position", "absolute");
59022         if(!panel.background){
59023             this.setActivePanel(panel);
59024             if(this.config.initialSize && this.panels.getCount()==1){
59025                 this.resizeTo(this.config.initialSize);
59026             }
59027         }
59028         this.fireEvent("paneladded", this, panel);
59029         return panel;
59030     },
59031     
59032     /**
59033      * Returns true if the panel is in this region.
59034      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59035      * @return {Boolean}
59036      */
59037     hasPanel : function(panel){
59038         if(typeof panel == "object"){ // must be panel obj
59039             panel = panel.getId();
59040         }
59041         return this.getPanel(panel) ? true : false;
59042     },
59043     
59044     /**
59045      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59046      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59047      * @param {Boolean} preservePanel Overrides the config preservePanel option
59048      * @return {Roo.ContentPanel} The panel that was removed
59049      */
59050     remove : function(panel, preservePanel){
59051         panel = this.getPanel(panel);
59052         if(!panel){
59053             return null;
59054         }
59055         var e = {};
59056         this.fireEvent("beforeremove", this, panel, e);
59057         if(e.cancel === true){
59058             return null;
59059         }
59060         var panelId = panel.getId();
59061         this.panels.removeKey(panelId);
59062         return panel;
59063     },
59064     
59065     /**
59066      * Returns the panel specified or null if it's not in this region.
59067      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59068      * @return {Roo.ContentPanel}
59069      */
59070     getPanel : function(id){
59071         if(typeof id == "object"){ // must be panel obj
59072             return id;
59073         }
59074         return this.panels.get(id);
59075     },
59076     
59077     /**
59078      * Returns this regions position (north/south/east/west/center).
59079      * @return {String} 
59080      */
59081     getPosition: function(){
59082         return this.position;    
59083     }
59084 });/*
59085  * Based on:
59086  * Ext JS Library 1.1.1
59087  * Copyright(c) 2006-2007, Ext JS, LLC.
59088  *
59089  * Originally Released Under LGPL - original licence link has changed is not relivant.
59090  *
59091  * Fork - LGPL
59092  * <script type="text/javascript">
59093  */
59094  
59095 /**
59096  * @class Roo.LayoutRegion
59097  * @extends Roo.BasicLayoutRegion
59098  * This class represents a region in a layout manager.
59099  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
59100  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
59101  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
59102  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
59103  * @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})
59104  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
59105  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
59106  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
59107  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
59108  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
59109  * @cfg {String}    title           The title for the region (overrides panel titles)
59110  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
59111  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
59112  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
59113  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
59114  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
59115  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
59116  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
59117  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
59118  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
59119  * @cfg {Boolean}   showPin         True to show a pin button
59120  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
59121  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
59122  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
59123  * @cfg {Number}    width           For East/West panels
59124  * @cfg {Number}    height          For North/South panels
59125  * @cfg {Boolean}   split           To show the splitter
59126  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
59127  */
59128 Roo.LayoutRegion = function(mgr, config, pos){
59129     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
59130     var dh = Roo.DomHelper;
59131     /** This region's container element 
59132     * @type Roo.Element */
59133     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
59134     /** This region's title element 
59135     * @type Roo.Element */
59136
59137     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
59138         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
59139         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
59140     ]}, true);
59141     this.titleEl.enableDisplayMode();
59142     /** This region's title text element 
59143     * @type HTMLElement */
59144     this.titleTextEl = this.titleEl.dom.firstChild;
59145     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
59146     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
59147     this.closeBtn.enableDisplayMode();
59148     this.closeBtn.on("click", this.closeClicked, this);
59149     this.closeBtn.hide();
59150
59151     this.createBody(config);
59152     this.visible = true;
59153     this.collapsed = false;
59154
59155     if(config.hideWhenEmpty){
59156         this.hide();
59157         this.on("paneladded", this.validateVisibility, this);
59158         this.on("panelremoved", this.validateVisibility, this);
59159     }
59160     this.applyConfig(config);
59161 };
59162
59163 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
59164
59165     createBody : function(){
59166         /** This region's body element 
59167         * @type Roo.Element */
59168         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
59169     },
59170
59171     applyConfig : function(c){
59172         if(c.collapsible && this.position != "center" && !this.collapsedEl){
59173             var dh = Roo.DomHelper;
59174             if(c.titlebar !== false){
59175                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
59176                 this.collapseBtn.on("click", this.collapse, this);
59177                 this.collapseBtn.enableDisplayMode();
59178
59179                 if(c.showPin === true || this.showPin){
59180                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
59181                     this.stickBtn.enableDisplayMode();
59182                     this.stickBtn.on("click", this.expand, this);
59183                     this.stickBtn.hide();
59184                 }
59185             }
59186             /** This region's collapsed element
59187             * @type Roo.Element */
59188             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
59189                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
59190             ]}, true);
59191             if(c.floatable !== false){
59192                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
59193                this.collapsedEl.on("click", this.collapseClick, this);
59194             }
59195
59196             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
59197                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
59198                    id: "message", unselectable: "on", style:{"float":"left"}});
59199                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
59200              }
59201             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
59202             this.expandBtn.on("click", this.expand, this);
59203         }
59204         if(this.collapseBtn){
59205             this.collapseBtn.setVisible(c.collapsible == true);
59206         }
59207         this.cmargins = c.cmargins || this.cmargins ||
59208                          (this.position == "west" || this.position == "east" ?
59209                              {top: 0, left: 2, right:2, bottom: 0} :
59210                              {top: 2, left: 0, right:0, bottom: 2});
59211         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
59212         this.bottomTabs = c.tabPosition != "top";
59213         this.autoScroll = c.autoScroll || false;
59214         if(this.autoScroll){
59215             this.bodyEl.setStyle("overflow", "auto");
59216         }else{
59217             this.bodyEl.setStyle("overflow", "hidden");
59218         }
59219         //if(c.titlebar !== false){
59220             if((!c.titlebar && !c.title) || c.titlebar === false){
59221                 this.titleEl.hide();
59222             }else{
59223                 this.titleEl.show();
59224                 if(c.title){
59225                     this.titleTextEl.innerHTML = c.title;
59226                 }
59227             }
59228         //}
59229         this.duration = c.duration || .30;
59230         this.slideDuration = c.slideDuration || .45;
59231         this.config = c;
59232         if(c.collapsed){
59233             this.collapse(true);
59234         }
59235         if(c.hidden){
59236             this.hide();
59237         }
59238     },
59239     /**
59240      * Returns true if this region is currently visible.
59241      * @return {Boolean}
59242      */
59243     isVisible : function(){
59244         return this.visible;
59245     },
59246
59247     /**
59248      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
59249      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
59250      */
59251     setCollapsedTitle : function(title){
59252         title = title || "&#160;";
59253         if(this.collapsedTitleTextEl){
59254             this.collapsedTitleTextEl.innerHTML = title;
59255         }
59256     },
59257
59258     getBox : function(){
59259         var b;
59260         if(!this.collapsed){
59261             b = this.el.getBox(false, true);
59262         }else{
59263             b = this.collapsedEl.getBox(false, true);
59264         }
59265         return b;
59266     },
59267
59268     getMargins : function(){
59269         return this.collapsed ? this.cmargins : this.margins;
59270     },
59271
59272     highlight : function(){
59273         this.el.addClass("x-layout-panel-dragover");
59274     },
59275
59276     unhighlight : function(){
59277         this.el.removeClass("x-layout-panel-dragover");
59278     },
59279
59280     updateBox : function(box){
59281         this.box = box;
59282         if(!this.collapsed){
59283             this.el.dom.style.left = box.x + "px";
59284             this.el.dom.style.top = box.y + "px";
59285             this.updateBody(box.width, box.height);
59286         }else{
59287             this.collapsedEl.dom.style.left = box.x + "px";
59288             this.collapsedEl.dom.style.top = box.y + "px";
59289             this.collapsedEl.setSize(box.width, box.height);
59290         }
59291         if(this.tabs){
59292             this.tabs.autoSizeTabs();
59293         }
59294     },
59295
59296     updateBody : function(w, h){
59297         if(w !== null){
59298             this.el.setWidth(w);
59299             w -= this.el.getBorderWidth("rl");
59300             if(this.config.adjustments){
59301                 w += this.config.adjustments[0];
59302             }
59303         }
59304         if(h !== null){
59305             this.el.setHeight(h);
59306             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
59307             h -= this.el.getBorderWidth("tb");
59308             if(this.config.adjustments){
59309                 h += this.config.adjustments[1];
59310             }
59311             this.bodyEl.setHeight(h);
59312             if(this.tabs){
59313                 h = this.tabs.syncHeight(h);
59314             }
59315         }
59316         if(this.panelSize){
59317             w = w !== null ? w : this.panelSize.width;
59318             h = h !== null ? h : this.panelSize.height;
59319         }
59320         if(this.activePanel){
59321             var el = this.activePanel.getEl();
59322             w = w !== null ? w : el.getWidth();
59323             h = h !== null ? h : el.getHeight();
59324             this.panelSize = {width: w, height: h};
59325             this.activePanel.setSize(w, h);
59326         }
59327         if(Roo.isIE && this.tabs){
59328             this.tabs.el.repaint();
59329         }
59330     },
59331
59332     /**
59333      * Returns the container element for this region.
59334      * @return {Roo.Element}
59335      */
59336     getEl : function(){
59337         return this.el;
59338     },
59339
59340     /**
59341      * Hides this region.
59342      */
59343     hide : function(){
59344         if(!this.collapsed){
59345             this.el.dom.style.left = "-2000px";
59346             this.el.hide();
59347         }else{
59348             this.collapsedEl.dom.style.left = "-2000px";
59349             this.collapsedEl.hide();
59350         }
59351         this.visible = false;
59352         this.fireEvent("visibilitychange", this, false);
59353     },
59354
59355     /**
59356      * Shows this region if it was previously hidden.
59357      */
59358     show : function(){
59359         if(!this.collapsed){
59360             this.el.show();
59361         }else{
59362             this.collapsedEl.show();
59363         }
59364         this.visible = true;
59365         this.fireEvent("visibilitychange", this, true);
59366     },
59367
59368     closeClicked : function(){
59369         if(this.activePanel){
59370             this.remove(this.activePanel);
59371         }
59372     },
59373
59374     collapseClick : function(e){
59375         if(this.isSlid){
59376            e.stopPropagation();
59377            this.slideIn();
59378         }else{
59379            e.stopPropagation();
59380            this.slideOut();
59381         }
59382     },
59383
59384     /**
59385      * Collapses this region.
59386      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
59387      */
59388     collapse : function(skipAnim, skipCheck){
59389         if(this.collapsed) {
59390             return;
59391         }
59392         
59393         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
59394             
59395             this.collapsed = true;
59396             if(this.split){
59397                 this.split.el.hide();
59398             }
59399             if(this.config.animate && skipAnim !== true){
59400                 this.fireEvent("invalidated", this);
59401                 this.animateCollapse();
59402             }else{
59403                 this.el.setLocation(-20000,-20000);
59404                 this.el.hide();
59405                 this.collapsedEl.show();
59406                 this.fireEvent("collapsed", this);
59407                 this.fireEvent("invalidated", this);
59408             }
59409         }
59410         
59411     },
59412
59413     animateCollapse : function(){
59414         // overridden
59415     },
59416
59417     /**
59418      * Expands this region if it was previously collapsed.
59419      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
59420      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
59421      */
59422     expand : function(e, skipAnim){
59423         if(e) {
59424             e.stopPropagation();
59425         }
59426         if(!this.collapsed || this.el.hasActiveFx()) {
59427             return;
59428         }
59429         if(this.isSlid){
59430             this.afterSlideIn();
59431             skipAnim = true;
59432         }
59433         this.collapsed = false;
59434         if(this.config.animate && skipAnim !== true){
59435             this.animateExpand();
59436         }else{
59437             this.el.show();
59438             if(this.split){
59439                 this.split.el.show();
59440             }
59441             this.collapsedEl.setLocation(-2000,-2000);
59442             this.collapsedEl.hide();
59443             this.fireEvent("invalidated", this);
59444             this.fireEvent("expanded", this);
59445         }
59446     },
59447
59448     animateExpand : function(){
59449         // overridden
59450     },
59451
59452     initTabs : function()
59453     {
59454         this.bodyEl.setStyle("overflow", "hidden");
59455         var ts = new Roo.TabPanel(
59456                 this.bodyEl.dom,
59457                 {
59458                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
59459                     disableTooltips: this.config.disableTabTips,
59460                     toolbar : this.config.toolbar
59461                 }
59462         );
59463         if(this.config.hideTabs){
59464             ts.stripWrap.setDisplayed(false);
59465         }
59466         this.tabs = ts;
59467         ts.resizeTabs = this.config.resizeTabs === true;
59468         ts.minTabWidth = this.config.minTabWidth || 40;
59469         ts.maxTabWidth = this.config.maxTabWidth || 250;
59470         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
59471         ts.monitorResize = false;
59472         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59473         ts.bodyEl.addClass('x-layout-tabs-body');
59474         this.panels.each(this.initPanelAsTab, this);
59475     },
59476
59477     initPanelAsTab : function(panel){
59478         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
59479                     this.config.closeOnTab && panel.isClosable());
59480         if(panel.tabTip !== undefined){
59481             ti.setTooltip(panel.tabTip);
59482         }
59483         ti.on("activate", function(){
59484               this.setActivePanel(panel);
59485         }, this);
59486         if(this.config.closeOnTab){
59487             ti.on("beforeclose", function(t, e){
59488                 e.cancel = true;
59489                 this.remove(panel);
59490             }, this);
59491         }
59492         return ti;
59493     },
59494
59495     updatePanelTitle : function(panel, title){
59496         if(this.activePanel == panel){
59497             this.updateTitle(title);
59498         }
59499         if(this.tabs){
59500             var ti = this.tabs.getTab(panel.getEl().id);
59501             ti.setText(title);
59502             if(panel.tabTip !== undefined){
59503                 ti.setTooltip(panel.tabTip);
59504             }
59505         }
59506     },
59507
59508     updateTitle : function(title){
59509         if(this.titleTextEl && !this.config.title){
59510             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
59511         }
59512     },
59513
59514     setActivePanel : function(panel){
59515         panel = this.getPanel(panel);
59516         if(this.activePanel && this.activePanel != panel){
59517             this.activePanel.setActiveState(false);
59518         }
59519         this.activePanel = panel;
59520         panel.setActiveState(true);
59521         if(this.panelSize){
59522             panel.setSize(this.panelSize.width, this.panelSize.height);
59523         }
59524         if(this.closeBtn){
59525             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
59526         }
59527         this.updateTitle(panel.getTitle());
59528         if(this.tabs){
59529             this.fireEvent("invalidated", this);
59530         }
59531         this.fireEvent("panelactivated", this, panel);
59532     },
59533
59534     /**
59535      * Shows the specified panel.
59536      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
59537      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
59538      */
59539     showPanel : function(panel)
59540     {
59541         panel = this.getPanel(panel);
59542         if(panel){
59543             if(this.tabs){
59544                 var tab = this.tabs.getTab(panel.getEl().id);
59545                 if(tab.isHidden()){
59546                     this.tabs.unhideTab(tab.id);
59547                 }
59548                 tab.activate();
59549             }else{
59550                 this.setActivePanel(panel);
59551             }
59552         }
59553         return panel;
59554     },
59555
59556     /**
59557      * Get the active panel for this region.
59558      * @return {Roo.ContentPanel} The active panel or null
59559      */
59560     getActivePanel : function(){
59561         return this.activePanel;
59562     },
59563
59564     validateVisibility : function(){
59565         if(this.panels.getCount() < 1){
59566             this.updateTitle("&#160;");
59567             this.closeBtn.hide();
59568             this.hide();
59569         }else{
59570             if(!this.isVisible()){
59571                 this.show();
59572             }
59573         }
59574     },
59575
59576     /**
59577      * Adds the passed ContentPanel(s) to this region.
59578      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59579      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
59580      */
59581     add : function(panel){
59582         if(arguments.length > 1){
59583             for(var i = 0, len = arguments.length; i < len; i++) {
59584                 this.add(arguments[i]);
59585             }
59586             return null;
59587         }
59588         if(this.hasPanel(panel)){
59589             this.showPanel(panel);
59590             return panel;
59591         }
59592         panel.setRegion(this);
59593         this.panels.add(panel);
59594         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
59595             this.bodyEl.dom.appendChild(panel.getEl().dom);
59596             if(panel.background !== true){
59597                 this.setActivePanel(panel);
59598             }
59599             this.fireEvent("paneladded", this, panel);
59600             return panel;
59601         }
59602         if(!this.tabs){
59603             this.initTabs();
59604         }else{
59605             this.initPanelAsTab(panel);
59606         }
59607         if(panel.background !== true){
59608             this.tabs.activate(panel.getEl().id);
59609         }
59610         this.fireEvent("paneladded", this, panel);
59611         return panel;
59612     },
59613
59614     /**
59615      * Hides the tab for the specified panel.
59616      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59617      */
59618     hidePanel : function(panel){
59619         if(this.tabs && (panel = this.getPanel(panel))){
59620             this.tabs.hideTab(panel.getEl().id);
59621         }
59622     },
59623
59624     /**
59625      * Unhides the tab for a previously hidden panel.
59626      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59627      */
59628     unhidePanel : function(panel){
59629         if(this.tabs && (panel = this.getPanel(panel))){
59630             this.tabs.unhideTab(panel.getEl().id);
59631         }
59632     },
59633
59634     clearPanels : function(){
59635         while(this.panels.getCount() > 0){
59636              this.remove(this.panels.first());
59637         }
59638     },
59639
59640     /**
59641      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59642      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59643      * @param {Boolean} preservePanel Overrides the config preservePanel option
59644      * @return {Roo.ContentPanel} The panel that was removed
59645      */
59646     remove : function(panel, preservePanel){
59647         panel = this.getPanel(panel);
59648         if(!panel){
59649             return null;
59650         }
59651         var e = {};
59652         this.fireEvent("beforeremove", this, panel, e);
59653         if(e.cancel === true){
59654             return null;
59655         }
59656         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
59657         var panelId = panel.getId();
59658         this.panels.removeKey(panelId);
59659         if(preservePanel){
59660             document.body.appendChild(panel.getEl().dom);
59661         }
59662         if(this.tabs){
59663             this.tabs.removeTab(panel.getEl().id);
59664         }else if (!preservePanel){
59665             this.bodyEl.dom.removeChild(panel.getEl().dom);
59666         }
59667         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
59668             var p = this.panels.first();
59669             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
59670             tempEl.appendChild(p.getEl().dom);
59671             this.bodyEl.update("");
59672             this.bodyEl.dom.appendChild(p.getEl().dom);
59673             tempEl = null;
59674             this.updateTitle(p.getTitle());
59675             this.tabs = null;
59676             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59677             this.setActivePanel(p);
59678         }
59679         panel.setRegion(null);
59680         if(this.activePanel == panel){
59681             this.activePanel = null;
59682         }
59683         if(this.config.autoDestroy !== false && preservePanel !== true){
59684             try{panel.destroy();}catch(e){}
59685         }
59686         this.fireEvent("panelremoved", this, panel);
59687         return panel;
59688     },
59689
59690     /**
59691      * Returns the TabPanel component used by this region
59692      * @return {Roo.TabPanel}
59693      */
59694     getTabs : function(){
59695         return this.tabs;
59696     },
59697
59698     createTool : function(parentEl, className){
59699         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
59700             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
59701         btn.addClassOnOver("x-layout-tools-button-over");
59702         return btn;
59703     }
59704 });/*
59705  * Based on:
59706  * Ext JS Library 1.1.1
59707  * Copyright(c) 2006-2007, Ext JS, LLC.
59708  *
59709  * Originally Released Under LGPL - original licence link has changed is not relivant.
59710  *
59711  * Fork - LGPL
59712  * <script type="text/javascript">
59713  */
59714  
59715
59716
59717 /**
59718  * @class Roo.SplitLayoutRegion
59719  * @extends Roo.LayoutRegion
59720  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
59721  */
59722 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
59723     this.cursor = cursor;
59724     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
59725 };
59726
59727 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
59728     splitTip : "Drag to resize.",
59729     collapsibleSplitTip : "Drag to resize. Double click to hide.",
59730     useSplitTips : false,
59731
59732     applyConfig : function(config){
59733         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
59734         if(config.split){
59735             if(!this.split){
59736                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
59737                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
59738                 /** The SplitBar for this region 
59739                 * @type Roo.SplitBar */
59740                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
59741                 this.split.on("moved", this.onSplitMove, this);
59742                 this.split.useShim = config.useShim === true;
59743                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
59744                 if(this.useSplitTips){
59745                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
59746                 }
59747                 if(config.collapsible){
59748                     this.split.el.on("dblclick", this.collapse,  this);
59749                 }
59750             }
59751             if(typeof config.minSize != "undefined"){
59752                 this.split.minSize = config.minSize;
59753             }
59754             if(typeof config.maxSize != "undefined"){
59755                 this.split.maxSize = config.maxSize;
59756             }
59757             if(config.hideWhenEmpty || config.hidden || config.collapsed){
59758                 this.hideSplitter();
59759             }
59760         }
59761     },
59762
59763     getHMaxSize : function(){
59764          var cmax = this.config.maxSize || 10000;
59765          var center = this.mgr.getRegion("center");
59766          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
59767     },
59768
59769     getVMaxSize : function(){
59770          var cmax = this.config.maxSize || 10000;
59771          var center = this.mgr.getRegion("center");
59772          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
59773     },
59774
59775     onSplitMove : function(split, newSize){
59776         this.fireEvent("resized", this, newSize);
59777     },
59778     
59779     /** 
59780      * Returns the {@link Roo.SplitBar} for this region.
59781      * @return {Roo.SplitBar}
59782      */
59783     getSplitBar : function(){
59784         return this.split;
59785     },
59786     
59787     hide : function(){
59788         this.hideSplitter();
59789         Roo.SplitLayoutRegion.superclass.hide.call(this);
59790     },
59791
59792     hideSplitter : function(){
59793         if(this.split){
59794             this.split.el.setLocation(-2000,-2000);
59795             this.split.el.hide();
59796         }
59797     },
59798
59799     show : function(){
59800         if(this.split){
59801             this.split.el.show();
59802         }
59803         Roo.SplitLayoutRegion.superclass.show.call(this);
59804     },
59805     
59806     beforeSlide: function(){
59807         if(Roo.isGecko){// firefox overflow auto bug workaround
59808             this.bodyEl.clip();
59809             if(this.tabs) {
59810                 this.tabs.bodyEl.clip();
59811             }
59812             if(this.activePanel){
59813                 this.activePanel.getEl().clip();
59814                 
59815                 if(this.activePanel.beforeSlide){
59816                     this.activePanel.beforeSlide();
59817                 }
59818             }
59819         }
59820     },
59821     
59822     afterSlide : function(){
59823         if(Roo.isGecko){// firefox overflow auto bug workaround
59824             this.bodyEl.unclip();
59825             if(this.tabs) {
59826                 this.tabs.bodyEl.unclip();
59827             }
59828             if(this.activePanel){
59829                 this.activePanel.getEl().unclip();
59830                 if(this.activePanel.afterSlide){
59831                     this.activePanel.afterSlide();
59832                 }
59833             }
59834         }
59835     },
59836
59837     initAutoHide : function(){
59838         if(this.autoHide !== false){
59839             if(!this.autoHideHd){
59840                 var st = new Roo.util.DelayedTask(this.slideIn, this);
59841                 this.autoHideHd = {
59842                     "mouseout": function(e){
59843                         if(!e.within(this.el, true)){
59844                             st.delay(500);
59845                         }
59846                     },
59847                     "mouseover" : function(e){
59848                         st.cancel();
59849                     },
59850                     scope : this
59851                 };
59852             }
59853             this.el.on(this.autoHideHd);
59854         }
59855     },
59856
59857     clearAutoHide : function(){
59858         if(this.autoHide !== false){
59859             this.el.un("mouseout", this.autoHideHd.mouseout);
59860             this.el.un("mouseover", this.autoHideHd.mouseover);
59861         }
59862     },
59863
59864     clearMonitor : function(){
59865         Roo.get(document).un("click", this.slideInIf, this);
59866     },
59867
59868     // these names are backwards but not changed for compat
59869     slideOut : function(){
59870         if(this.isSlid || this.el.hasActiveFx()){
59871             return;
59872         }
59873         this.isSlid = true;
59874         if(this.collapseBtn){
59875             this.collapseBtn.hide();
59876         }
59877         this.closeBtnState = this.closeBtn.getStyle('display');
59878         this.closeBtn.hide();
59879         if(this.stickBtn){
59880             this.stickBtn.show();
59881         }
59882         this.el.show();
59883         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
59884         this.beforeSlide();
59885         this.el.setStyle("z-index", 10001);
59886         this.el.slideIn(this.getSlideAnchor(), {
59887             callback: function(){
59888                 this.afterSlide();
59889                 this.initAutoHide();
59890                 Roo.get(document).on("click", this.slideInIf, this);
59891                 this.fireEvent("slideshow", this);
59892             },
59893             scope: this,
59894             block: true
59895         });
59896     },
59897
59898     afterSlideIn : function(){
59899         this.clearAutoHide();
59900         this.isSlid = false;
59901         this.clearMonitor();
59902         this.el.setStyle("z-index", "");
59903         if(this.collapseBtn){
59904             this.collapseBtn.show();
59905         }
59906         this.closeBtn.setStyle('display', this.closeBtnState);
59907         if(this.stickBtn){
59908             this.stickBtn.hide();
59909         }
59910         this.fireEvent("slidehide", this);
59911     },
59912
59913     slideIn : function(cb){
59914         if(!this.isSlid || this.el.hasActiveFx()){
59915             Roo.callback(cb);
59916             return;
59917         }
59918         this.isSlid = false;
59919         this.beforeSlide();
59920         this.el.slideOut(this.getSlideAnchor(), {
59921             callback: function(){
59922                 this.el.setLeftTop(-10000, -10000);
59923                 this.afterSlide();
59924                 this.afterSlideIn();
59925                 Roo.callback(cb);
59926             },
59927             scope: this,
59928             block: true
59929         });
59930     },
59931     
59932     slideInIf : function(e){
59933         if(!e.within(this.el)){
59934             this.slideIn();
59935         }
59936     },
59937
59938     animateCollapse : function(){
59939         this.beforeSlide();
59940         this.el.setStyle("z-index", 20000);
59941         var anchor = this.getSlideAnchor();
59942         this.el.slideOut(anchor, {
59943             callback : function(){
59944                 this.el.setStyle("z-index", "");
59945                 this.collapsedEl.slideIn(anchor, {duration:.3});
59946                 this.afterSlide();
59947                 this.el.setLocation(-10000,-10000);
59948                 this.el.hide();
59949                 this.fireEvent("collapsed", this);
59950             },
59951             scope: this,
59952             block: true
59953         });
59954     },
59955
59956     animateExpand : function(){
59957         this.beforeSlide();
59958         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
59959         this.el.setStyle("z-index", 20000);
59960         this.collapsedEl.hide({
59961             duration:.1
59962         });
59963         this.el.slideIn(this.getSlideAnchor(), {
59964             callback : function(){
59965                 this.el.setStyle("z-index", "");
59966                 this.afterSlide();
59967                 if(this.split){
59968                     this.split.el.show();
59969                 }
59970                 this.fireEvent("invalidated", this);
59971                 this.fireEvent("expanded", this);
59972             },
59973             scope: this,
59974             block: true
59975         });
59976     },
59977
59978     anchors : {
59979         "west" : "left",
59980         "east" : "right",
59981         "north" : "top",
59982         "south" : "bottom"
59983     },
59984
59985     sanchors : {
59986         "west" : "l",
59987         "east" : "r",
59988         "north" : "t",
59989         "south" : "b"
59990     },
59991
59992     canchors : {
59993         "west" : "tl-tr",
59994         "east" : "tr-tl",
59995         "north" : "tl-bl",
59996         "south" : "bl-tl"
59997     },
59998
59999     getAnchor : function(){
60000         return this.anchors[this.position];
60001     },
60002
60003     getCollapseAnchor : function(){
60004         return this.canchors[this.position];
60005     },
60006
60007     getSlideAnchor : function(){
60008         return this.sanchors[this.position];
60009     },
60010
60011     getAlignAdj : function(){
60012         var cm = this.cmargins;
60013         switch(this.position){
60014             case "west":
60015                 return [0, 0];
60016             break;
60017             case "east":
60018                 return [0, 0];
60019             break;
60020             case "north":
60021                 return [0, 0];
60022             break;
60023             case "south":
60024                 return [0, 0];
60025             break;
60026         }
60027     },
60028
60029     getExpandAdj : function(){
60030         var c = this.collapsedEl, cm = this.cmargins;
60031         switch(this.position){
60032             case "west":
60033                 return [-(cm.right+c.getWidth()+cm.left), 0];
60034             break;
60035             case "east":
60036                 return [cm.right+c.getWidth()+cm.left, 0];
60037             break;
60038             case "north":
60039                 return [0, -(cm.top+cm.bottom+c.getHeight())];
60040             break;
60041             case "south":
60042                 return [0, cm.top+cm.bottom+c.getHeight()];
60043             break;
60044         }
60045     }
60046 });/*
60047  * Based on:
60048  * Ext JS Library 1.1.1
60049  * Copyright(c) 2006-2007, Ext JS, LLC.
60050  *
60051  * Originally Released Under LGPL - original licence link has changed is not relivant.
60052  *
60053  * Fork - LGPL
60054  * <script type="text/javascript">
60055  */
60056 /*
60057  * These classes are private internal classes
60058  */
60059 Roo.CenterLayoutRegion = function(mgr, config){
60060     Roo.LayoutRegion.call(this, mgr, config, "center");
60061     this.visible = true;
60062     this.minWidth = config.minWidth || 20;
60063     this.minHeight = config.minHeight || 20;
60064 };
60065
60066 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
60067     hide : function(){
60068         // center panel can't be hidden
60069     },
60070     
60071     show : function(){
60072         // center panel can't be hidden
60073     },
60074     
60075     getMinWidth: function(){
60076         return this.minWidth;
60077     },
60078     
60079     getMinHeight: function(){
60080         return this.minHeight;
60081     }
60082 });
60083
60084
60085 Roo.NorthLayoutRegion = function(mgr, config){
60086     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
60087     if(this.split){
60088         this.split.placement = Roo.SplitBar.TOP;
60089         this.split.orientation = Roo.SplitBar.VERTICAL;
60090         this.split.el.addClass("x-layout-split-v");
60091     }
60092     var size = config.initialSize || config.height;
60093     if(typeof size != "undefined"){
60094         this.el.setHeight(size);
60095     }
60096 };
60097 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
60098     orientation: Roo.SplitBar.VERTICAL,
60099     getBox : function(){
60100         if(this.collapsed){
60101             return this.collapsedEl.getBox();
60102         }
60103         var box = this.el.getBox();
60104         if(this.split){
60105             box.height += this.split.el.getHeight();
60106         }
60107         return box;
60108     },
60109     
60110     updateBox : function(box){
60111         if(this.split && !this.collapsed){
60112             box.height -= this.split.el.getHeight();
60113             this.split.el.setLeft(box.x);
60114             this.split.el.setTop(box.y+box.height);
60115             this.split.el.setWidth(box.width);
60116         }
60117         if(this.collapsed){
60118             this.updateBody(box.width, null);
60119         }
60120         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60121     }
60122 });
60123
60124 Roo.SouthLayoutRegion = function(mgr, config){
60125     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
60126     if(this.split){
60127         this.split.placement = Roo.SplitBar.BOTTOM;
60128         this.split.orientation = Roo.SplitBar.VERTICAL;
60129         this.split.el.addClass("x-layout-split-v");
60130     }
60131     var size = config.initialSize || config.height;
60132     if(typeof size != "undefined"){
60133         this.el.setHeight(size);
60134     }
60135 };
60136 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
60137     orientation: Roo.SplitBar.VERTICAL,
60138     getBox : function(){
60139         if(this.collapsed){
60140             return this.collapsedEl.getBox();
60141         }
60142         var box = this.el.getBox();
60143         if(this.split){
60144             var sh = this.split.el.getHeight();
60145             box.height += sh;
60146             box.y -= sh;
60147         }
60148         return box;
60149     },
60150     
60151     updateBox : function(box){
60152         if(this.split && !this.collapsed){
60153             var sh = this.split.el.getHeight();
60154             box.height -= sh;
60155             box.y += sh;
60156             this.split.el.setLeft(box.x);
60157             this.split.el.setTop(box.y-sh);
60158             this.split.el.setWidth(box.width);
60159         }
60160         if(this.collapsed){
60161             this.updateBody(box.width, null);
60162         }
60163         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60164     }
60165 });
60166
60167 Roo.EastLayoutRegion = function(mgr, config){
60168     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
60169     if(this.split){
60170         this.split.placement = Roo.SplitBar.RIGHT;
60171         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60172         this.split.el.addClass("x-layout-split-h");
60173     }
60174     var size = config.initialSize || config.width;
60175     if(typeof size != "undefined"){
60176         this.el.setWidth(size);
60177     }
60178 };
60179 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
60180     orientation: Roo.SplitBar.HORIZONTAL,
60181     getBox : function(){
60182         if(this.collapsed){
60183             return this.collapsedEl.getBox();
60184         }
60185         var box = this.el.getBox();
60186         if(this.split){
60187             var sw = this.split.el.getWidth();
60188             box.width += sw;
60189             box.x -= sw;
60190         }
60191         return box;
60192     },
60193
60194     updateBox : function(box){
60195         if(this.split && !this.collapsed){
60196             var sw = this.split.el.getWidth();
60197             box.width -= sw;
60198             this.split.el.setLeft(box.x);
60199             this.split.el.setTop(box.y);
60200             this.split.el.setHeight(box.height);
60201             box.x += sw;
60202         }
60203         if(this.collapsed){
60204             this.updateBody(null, box.height);
60205         }
60206         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60207     }
60208 });
60209
60210 Roo.WestLayoutRegion = function(mgr, config){
60211     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
60212     if(this.split){
60213         this.split.placement = Roo.SplitBar.LEFT;
60214         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60215         this.split.el.addClass("x-layout-split-h");
60216     }
60217     var size = config.initialSize || config.width;
60218     if(typeof size != "undefined"){
60219         this.el.setWidth(size);
60220     }
60221 };
60222 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
60223     orientation: Roo.SplitBar.HORIZONTAL,
60224     getBox : function(){
60225         if(this.collapsed){
60226             return this.collapsedEl.getBox();
60227         }
60228         var box = this.el.getBox();
60229         if(this.split){
60230             box.width += this.split.el.getWidth();
60231         }
60232         return box;
60233     },
60234     
60235     updateBox : function(box){
60236         if(this.split && !this.collapsed){
60237             var sw = this.split.el.getWidth();
60238             box.width -= sw;
60239             this.split.el.setLeft(box.x+box.width);
60240             this.split.el.setTop(box.y);
60241             this.split.el.setHeight(box.height);
60242         }
60243         if(this.collapsed){
60244             this.updateBody(null, box.height);
60245         }
60246         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60247     }
60248 });
60249 /*
60250  * Based on:
60251  * Ext JS Library 1.1.1
60252  * Copyright(c) 2006-2007, Ext JS, LLC.
60253  *
60254  * Originally Released Under LGPL - original licence link has changed is not relivant.
60255  *
60256  * Fork - LGPL
60257  * <script type="text/javascript">
60258  */
60259  
60260  
60261 /*
60262  * Private internal class for reading and applying state
60263  */
60264 Roo.LayoutStateManager = function(layout){
60265      // default empty state
60266      this.state = {
60267         north: {},
60268         south: {},
60269         east: {},
60270         west: {}       
60271     };
60272 };
60273
60274 Roo.LayoutStateManager.prototype = {
60275     init : function(layout, provider){
60276         this.provider = provider;
60277         var state = provider.get(layout.id+"-layout-state");
60278         if(state){
60279             var wasUpdating = layout.isUpdating();
60280             if(!wasUpdating){
60281                 layout.beginUpdate();
60282             }
60283             for(var key in state){
60284                 if(typeof state[key] != "function"){
60285                     var rstate = state[key];
60286                     var r = layout.getRegion(key);
60287                     if(r && rstate){
60288                         if(rstate.size){
60289                             r.resizeTo(rstate.size);
60290                         }
60291                         if(rstate.collapsed == true){
60292                             r.collapse(true);
60293                         }else{
60294                             r.expand(null, true);
60295                         }
60296                     }
60297                 }
60298             }
60299             if(!wasUpdating){
60300                 layout.endUpdate();
60301             }
60302             this.state = state; 
60303         }
60304         this.layout = layout;
60305         layout.on("regionresized", this.onRegionResized, this);
60306         layout.on("regioncollapsed", this.onRegionCollapsed, this);
60307         layout.on("regionexpanded", this.onRegionExpanded, this);
60308     },
60309     
60310     storeState : function(){
60311         this.provider.set(this.layout.id+"-layout-state", this.state);
60312     },
60313     
60314     onRegionResized : function(region, newSize){
60315         this.state[region.getPosition()].size = newSize;
60316         this.storeState();
60317     },
60318     
60319     onRegionCollapsed : function(region){
60320         this.state[region.getPosition()].collapsed = true;
60321         this.storeState();
60322     },
60323     
60324     onRegionExpanded : function(region){
60325         this.state[region.getPosition()].collapsed = false;
60326         this.storeState();
60327     }
60328 };/*
60329  * Based on:
60330  * Ext JS Library 1.1.1
60331  * Copyright(c) 2006-2007, Ext JS, LLC.
60332  *
60333  * Originally Released Under LGPL - original licence link has changed is not relivant.
60334  *
60335  * Fork - LGPL
60336  * <script type="text/javascript">
60337  */
60338 /**
60339  * @class Roo.ContentPanel
60340  * @extends Roo.util.Observable
60341  * @children Roo.form.Form Roo.JsonView Roo.View
60342  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60343  * A basic ContentPanel element.
60344  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
60345  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
60346  * @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
60347  * @cfg {Boolean}   closable      True if the panel can be closed/removed
60348  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
60349  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
60350  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
60351  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
60352  * @cfg {String} title          The title for this panel
60353  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
60354  * @cfg {String} url            Calls {@link #setUrl} with this value
60355  * @cfg {String} region (center|north|south|east|west) [required] which region to put this panel on (when used with xtype constructors)
60356  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
60357  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
60358  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
60359  * @cfg {String}    style  Extra style to add to the content panel
60360  * @cfg {Roo.menu.Menu} menu  popup menu
60361
60362  * @constructor
60363  * Create a new ContentPanel.
60364  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
60365  * @param {String/Object} config A string to set only the title or a config object
60366  * @param {String} content (optional) Set the HTML content for this panel
60367  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
60368  */
60369 Roo.ContentPanel = function(el, config, content){
60370     
60371      
60372     /*
60373     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
60374         config = el;
60375         el = Roo.id();
60376     }
60377     if (config && config.parentLayout) { 
60378         el = config.parentLayout.el.createChild(); 
60379     }
60380     */
60381     if(el.autoCreate){ // xtype is available if this is called from factory
60382         config = el;
60383         el = Roo.id();
60384     }
60385     this.el = Roo.get(el);
60386     if(!this.el && config && config.autoCreate){
60387         if(typeof config.autoCreate == "object"){
60388             if(!config.autoCreate.id){
60389                 config.autoCreate.id = config.id||el;
60390             }
60391             this.el = Roo.DomHelper.append(document.body,
60392                         config.autoCreate, true);
60393         }else{
60394             this.el = Roo.DomHelper.append(document.body,
60395                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
60396         }
60397     }
60398     
60399     
60400     this.closable = false;
60401     this.loaded = false;
60402     this.active = false;
60403     if(typeof config == "string"){
60404         this.title = config;
60405     }else{
60406         Roo.apply(this, config);
60407     }
60408     
60409     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
60410         this.wrapEl = this.el.wrap();
60411         this.toolbar.container = this.el.insertSibling(false, 'before');
60412         this.toolbar = new Roo.Toolbar(this.toolbar);
60413     }
60414     
60415     // xtype created footer. - not sure if will work as we normally have to render first..
60416     if (this.footer && !this.footer.el && this.footer.xtype) {
60417         if (!this.wrapEl) {
60418             this.wrapEl = this.el.wrap();
60419         }
60420     
60421         this.footer.container = this.wrapEl.createChild();
60422          
60423         this.footer = Roo.factory(this.footer, Roo);
60424         
60425     }
60426     
60427     if(this.resizeEl){
60428         this.resizeEl = Roo.get(this.resizeEl, true);
60429     }else{
60430         this.resizeEl = this.el;
60431     }
60432     // handle view.xtype
60433     
60434  
60435     
60436     
60437     this.addEvents({
60438         /**
60439          * @event activate
60440          * Fires when this panel is activated. 
60441          * @param {Roo.ContentPanel} this
60442          */
60443         "activate" : true,
60444         /**
60445          * @event deactivate
60446          * Fires when this panel is activated. 
60447          * @param {Roo.ContentPanel} this
60448          */
60449         "deactivate" : true,
60450
60451         /**
60452          * @event resize
60453          * Fires when this panel is resized if fitToFrame is true.
60454          * @param {Roo.ContentPanel} this
60455          * @param {Number} width The width after any component adjustments
60456          * @param {Number} height The height after any component adjustments
60457          */
60458         "resize" : true,
60459         
60460          /**
60461          * @event render
60462          * Fires when this tab is created
60463          * @param {Roo.ContentPanel} this
60464          */
60465         "render" : true
60466          
60467         
60468     });
60469     
60470
60471     
60472     
60473     if(this.autoScroll){
60474         this.resizeEl.setStyle("overflow", "auto");
60475     } else {
60476         // fix randome scrolling
60477         this.el.on('scroll', function() {
60478             Roo.log('fix random scolling');
60479             this.scrollTo('top',0); 
60480         });
60481     }
60482     content = content || this.content;
60483     if(content){
60484         this.setContent(content);
60485     }
60486     if(config && config.url){
60487         this.setUrl(this.url, this.params, this.loadOnce);
60488     }
60489     
60490     
60491     
60492     Roo.ContentPanel.superclass.constructor.call(this);
60493     
60494     if (this.view && typeof(this.view.xtype) != 'undefined') {
60495         this.view.el = this.el.appendChild(document.createElement("div"));
60496         this.view = Roo.factory(this.view); 
60497         this.view.render  &&  this.view.render(false, '');  
60498     }
60499     
60500     
60501     this.fireEvent('render', this);
60502 };
60503
60504 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
60505     tabTip:'',
60506     setRegion : function(region){
60507         this.region = region;
60508         if(region){
60509            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
60510         }else{
60511            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
60512         } 
60513     },
60514     
60515     /**
60516      * Returns the toolbar for this Panel if one was configured. 
60517      * @return {Roo.Toolbar} 
60518      */
60519     getToolbar : function(){
60520         return this.toolbar;
60521     },
60522     
60523     setActiveState : function(active){
60524         this.active = active;
60525         if(!active){
60526             this.fireEvent("deactivate", this);
60527         }else{
60528             this.fireEvent("activate", this);
60529         }
60530     },
60531     /**
60532      * Updates this panel's element
60533      * @param {String} content The new content
60534      * @param {Boolean} loadScripts (optional) true to look for and process scripts
60535     */
60536     setContent : function(content, loadScripts){
60537         this.el.update(content, loadScripts);
60538     },
60539
60540     ignoreResize : function(w, h){
60541         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
60542             return true;
60543         }else{
60544             this.lastSize = {width: w, height: h};
60545             return false;
60546         }
60547     },
60548     /**
60549      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
60550      * @return {Roo.UpdateManager} The UpdateManager
60551      */
60552     getUpdateManager : function(){
60553         return this.el.getUpdateManager();
60554     },
60555      /**
60556      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
60557      * @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:
60558 <pre><code>
60559 panel.load({
60560     url: "your-url.php",
60561     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
60562     callback: yourFunction,
60563     scope: yourObject, //(optional scope)
60564     discardUrl: false,
60565     nocache: false,
60566     text: "Loading...",
60567     timeout: 30,
60568     scripts: false
60569 });
60570 </code></pre>
60571      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
60572      * 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.
60573      * @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}
60574      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
60575      * @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.
60576      * @return {Roo.ContentPanel} this
60577      */
60578     load : function(){
60579         var um = this.el.getUpdateManager();
60580         um.update.apply(um, arguments);
60581         return this;
60582     },
60583
60584
60585     /**
60586      * 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.
60587      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
60588      * @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)
60589      * @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)
60590      * @return {Roo.UpdateManager} The UpdateManager
60591      */
60592     setUrl : function(url, params, loadOnce){
60593         if(this.refreshDelegate){
60594             this.removeListener("activate", this.refreshDelegate);
60595         }
60596         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
60597         this.on("activate", this.refreshDelegate);
60598         return this.el.getUpdateManager();
60599     },
60600     
60601     _handleRefresh : function(url, params, loadOnce){
60602         if(!loadOnce || !this.loaded){
60603             var updater = this.el.getUpdateManager();
60604             updater.update(url, params, this._setLoaded.createDelegate(this));
60605         }
60606     },
60607     
60608     _setLoaded : function(){
60609         this.loaded = true;
60610     }, 
60611     
60612     /**
60613      * Returns this panel's id
60614      * @return {String} 
60615      */
60616     getId : function(){
60617         return this.el.id;
60618     },
60619     
60620     /** 
60621      * Returns this panel's element - used by regiosn to add.
60622      * @return {Roo.Element} 
60623      */
60624     getEl : function(){
60625         return this.wrapEl || this.el;
60626     },
60627     
60628     adjustForComponents : function(width, height)
60629     {
60630         //Roo.log('adjustForComponents ');
60631         if(this.resizeEl != this.el){
60632             width -= this.el.getFrameWidth('lr');
60633             height -= this.el.getFrameWidth('tb');
60634         }
60635         if(this.toolbar){
60636             var te = this.toolbar.getEl();
60637             height -= te.getHeight();
60638             te.setWidth(width);
60639         }
60640         if(this.footer){
60641             var te = this.footer.getEl();
60642             //Roo.log("footer:" + te.getHeight());
60643             
60644             height -= te.getHeight();
60645             te.setWidth(width);
60646         }
60647         
60648         
60649         if(this.adjustments){
60650             width += this.adjustments[0];
60651             height += this.adjustments[1];
60652         }
60653         return {"width": width, "height": height};
60654     },
60655     
60656     setSize : function(width, height){
60657         if(this.fitToFrame && !this.ignoreResize(width, height)){
60658             if(this.fitContainer && this.resizeEl != this.el){
60659                 this.el.setSize(width, height);
60660             }
60661             var size = this.adjustForComponents(width, height);
60662             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
60663             this.fireEvent('resize', this, size.width, size.height);
60664         }
60665     },
60666     
60667     /**
60668      * Returns this panel's title
60669      * @return {String} 
60670      */
60671     getTitle : function(){
60672         return this.title;
60673     },
60674     
60675     /**
60676      * Set this panel's title
60677      * @param {String} title
60678      */
60679     setTitle : function(title){
60680         this.title = title;
60681         if(this.region){
60682             this.region.updatePanelTitle(this, title);
60683         }
60684     },
60685     
60686     /**
60687      * Returns true is this panel was configured to be closable
60688      * @return {Boolean} 
60689      */
60690     isClosable : function(){
60691         return this.closable;
60692     },
60693     
60694     beforeSlide : function(){
60695         this.el.clip();
60696         this.resizeEl.clip();
60697     },
60698     
60699     afterSlide : function(){
60700         this.el.unclip();
60701         this.resizeEl.unclip();
60702     },
60703     
60704     /**
60705      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
60706      *   Will fail silently if the {@link #setUrl} method has not been called.
60707      *   This does not activate the panel, just updates its content.
60708      */
60709     refresh : function(){
60710         if(this.refreshDelegate){
60711            this.loaded = false;
60712            this.refreshDelegate();
60713         }
60714     },
60715     
60716     /**
60717      * Destroys this panel
60718      */
60719     destroy : function(){
60720         this.el.removeAllListeners();
60721         var tempEl = document.createElement("span");
60722         tempEl.appendChild(this.el.dom);
60723         tempEl.innerHTML = "";
60724         this.el.remove();
60725         this.el = null;
60726     },
60727     
60728     /**
60729      * form - if the content panel contains a form - this is a reference to it.
60730      * @type {Roo.form.Form}
60731      */
60732     form : false,
60733     /**
60734      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
60735      *    This contains a reference to it.
60736      * @type {Roo.View}
60737      */
60738     view : false,
60739     
60740       /**
60741      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
60742      * <pre><code>
60743
60744 layout.addxtype({
60745        xtype : 'Form',
60746        items: [ .... ]
60747    }
60748 );
60749
60750 </code></pre>
60751      * @param {Object} cfg Xtype definition of item to add.
60752      */
60753     
60754     addxtype : function(cfg) {
60755         // add form..
60756         if (cfg.xtype.match(/^Form$/)) {
60757             
60758             var el;
60759             //if (this.footer) {
60760             //    el = this.footer.container.insertSibling(false, 'before');
60761             //} else {
60762                 el = this.el.createChild();
60763             //}
60764
60765             this.form = new  Roo.form.Form(cfg);
60766             
60767             
60768             if ( this.form.allItems.length) {
60769                 this.form.render(el.dom);
60770             }
60771             return this.form;
60772         }
60773         // should only have one of theses..
60774         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
60775             // views.. should not be just added - used named prop 'view''
60776             
60777             cfg.el = this.el.appendChild(document.createElement("div"));
60778             // factory?
60779             
60780             var ret = new Roo.factory(cfg);
60781              
60782              ret.render && ret.render(false, ''); // render blank..
60783             this.view = ret;
60784             return ret;
60785         }
60786         return false;
60787     }
60788 });
60789
60790
60791
60792
60793
60794
60795
60796
60797
60798
60799
60800
60801 /**
60802  * @class Roo.GridPanel
60803  * @extends Roo.ContentPanel
60804  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60805  * @constructor
60806  * Create a new GridPanel.
60807  * @cfg {Roo.grid.Grid} grid The grid for this panel
60808  */
60809 Roo.GridPanel = function(grid, config){
60810     
60811     // universal ctor...
60812     if (typeof(grid.grid) != 'undefined') {
60813         config = grid;
60814         grid = config.grid;
60815     }
60816     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
60817         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
60818         
60819     this.wrapper.dom.appendChild(grid.getGridEl().dom);
60820     
60821     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
60822     
60823     if(this.toolbar){
60824         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
60825     }
60826     // xtype created footer. - not sure if will work as we normally have to render first..
60827     if (this.footer && !this.footer.el && this.footer.xtype) {
60828         
60829         this.footer.container = this.grid.getView().getFooterPanel(true);
60830         this.footer.dataSource = this.grid.dataSource;
60831         this.footer = Roo.factory(this.footer, Roo);
60832         
60833     }
60834     
60835     grid.monitorWindowResize = false; // turn off autosizing
60836     grid.autoHeight = false;
60837     grid.autoWidth = false;
60838     this.grid = grid;
60839     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
60840 };
60841
60842 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
60843     getId : function(){
60844         return this.grid.id;
60845     },
60846     
60847     /**
60848      * Returns the grid for this panel
60849      * @return {Roo.grid.Grid} 
60850      */
60851     getGrid : function(){
60852         return this.grid;    
60853     },
60854     
60855     setSize : function(width, height){
60856         if(!this.ignoreResize(width, height)){
60857             var grid = this.grid;
60858             var size = this.adjustForComponents(width, height);
60859             grid.getGridEl().setSize(size.width, size.height);
60860             grid.autoSize();
60861         }
60862     },
60863     
60864     beforeSlide : function(){
60865         this.grid.getView().scroller.clip();
60866     },
60867     
60868     afterSlide : function(){
60869         this.grid.getView().scroller.unclip();
60870     },
60871     
60872     destroy : function(){
60873         this.grid.destroy();
60874         delete this.grid;
60875         Roo.GridPanel.superclass.destroy.call(this); 
60876     }
60877 });
60878
60879
60880 /**
60881  * @class Roo.NestedLayoutPanel
60882  * @extends Roo.ContentPanel
60883  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60884  * @cfg {Roo.BorderLayout} layout   [required] The layout for this panel
60885  *
60886  * 
60887  * @constructor
60888  * Create a new NestedLayoutPanel.
60889  * 
60890  * 
60891  * @param {Roo.BorderLayout} layout [required] The layout for this panel
60892  * @param {String/Object} config A string to set only the title or a config object
60893  */
60894 Roo.NestedLayoutPanel = function(layout, config)
60895 {
60896     // construct with only one argument..
60897     /* FIXME - implement nicer consturctors
60898     if (layout.layout) {
60899         config = layout;
60900         layout = config.layout;
60901         delete config.layout;
60902     }
60903     if (layout.xtype && !layout.getEl) {
60904         // then layout needs constructing..
60905         layout = Roo.factory(layout, Roo);
60906     }
60907     */
60908     
60909     
60910     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
60911     
60912     layout.monitorWindowResize = false; // turn off autosizing
60913     this.layout = layout;
60914     this.layout.getEl().addClass("x-layout-nested-layout");
60915     
60916     
60917     
60918     
60919 };
60920
60921 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
60922
60923     layout : false,
60924
60925     setSize : function(width, height){
60926         if(!this.ignoreResize(width, height)){
60927             var size = this.adjustForComponents(width, height);
60928             var el = this.layout.getEl();
60929             el.setSize(size.width, size.height);
60930             var touch = el.dom.offsetWidth;
60931             this.layout.layout();
60932             // ie requires a double layout on the first pass
60933             if(Roo.isIE && !this.initialized){
60934                 this.initialized = true;
60935                 this.layout.layout();
60936             }
60937         }
60938     },
60939     
60940     // activate all subpanels if not currently active..
60941     
60942     setActiveState : function(active){
60943         this.active = active;
60944         if(!active){
60945             this.fireEvent("deactivate", this);
60946             return;
60947         }
60948         
60949         this.fireEvent("activate", this);
60950         // not sure if this should happen before or after..
60951         if (!this.layout) {
60952             return; // should not happen..
60953         }
60954         var reg = false;
60955         for (var r in this.layout.regions) {
60956             reg = this.layout.getRegion(r);
60957             if (reg.getActivePanel()) {
60958                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
60959                 reg.setActivePanel(reg.getActivePanel());
60960                 continue;
60961             }
60962             if (!reg.panels.length) {
60963                 continue;
60964             }
60965             reg.showPanel(reg.getPanel(0));
60966         }
60967         
60968         
60969         
60970         
60971     },
60972     
60973     /**
60974      * Returns the nested BorderLayout for this panel
60975      * @return {Roo.BorderLayout}
60976      */
60977     getLayout : function(){
60978         return this.layout;
60979     },
60980     
60981      /**
60982      * Adds a xtype elements to the layout of the nested panel
60983      * <pre><code>
60984
60985 panel.addxtype({
60986        xtype : 'ContentPanel',
60987        region: 'west',
60988        items: [ .... ]
60989    }
60990 );
60991
60992 panel.addxtype({
60993         xtype : 'NestedLayoutPanel',
60994         region: 'west',
60995         layout: {
60996            center: { },
60997            west: { }   
60998         },
60999         items : [ ... list of content panels or nested layout panels.. ]
61000    }
61001 );
61002 </code></pre>
61003      * @param {Object} cfg Xtype definition of item to add.
61004      */
61005     addxtype : function(cfg) {
61006         return this.layout.addxtype(cfg);
61007     
61008     }
61009 });
61010
61011 Roo.ScrollPanel = function(el, config, content){
61012     config = config || {};
61013     config.fitToFrame = true;
61014     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
61015     
61016     this.el.dom.style.overflow = "hidden";
61017     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
61018     this.el.removeClass("x-layout-inactive-content");
61019     this.el.on("mousewheel", this.onWheel, this);
61020
61021     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
61022     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
61023     up.unselectable(); down.unselectable();
61024     up.on("click", this.scrollUp, this);
61025     down.on("click", this.scrollDown, this);
61026     up.addClassOnOver("x-scroller-btn-over");
61027     down.addClassOnOver("x-scroller-btn-over");
61028     up.addClassOnClick("x-scroller-btn-click");
61029     down.addClassOnClick("x-scroller-btn-click");
61030     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
61031
61032     this.resizeEl = this.el;
61033     this.el = wrap; this.up = up; this.down = down;
61034 };
61035
61036 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
61037     increment : 100,
61038     wheelIncrement : 5,
61039     scrollUp : function(){
61040         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
61041     },
61042
61043     scrollDown : function(){
61044         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
61045     },
61046
61047     afterScroll : function(){
61048         var el = this.resizeEl;
61049         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
61050         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61051         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61052     },
61053
61054     setSize : function(){
61055         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
61056         this.afterScroll();
61057     },
61058
61059     onWheel : function(e){
61060         var d = e.getWheelDelta();
61061         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
61062         this.afterScroll();
61063         e.stopEvent();
61064     },
61065
61066     setContent : function(content, loadScripts){
61067         this.resizeEl.update(content, loadScripts);
61068     }
61069
61070 });
61071
61072
61073
61074 /**
61075  * @class Roo.TreePanel
61076  * @extends Roo.ContentPanel
61077  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61078  * Treepanel component
61079  * 
61080  * @constructor
61081  * Create a new TreePanel. - defaults to fit/scoll contents.
61082  * @param {String/Object} config A string to set only the panel's title, or a config object
61083  */
61084 Roo.TreePanel = function(config){
61085     var el = config.el;
61086     var tree = config.tree;
61087     delete config.tree; 
61088     delete config.el; // hopefull!
61089     
61090     // wrapper for IE7 strict & safari scroll issue
61091     
61092     var treeEl = el.createChild();
61093     config.resizeEl = treeEl;
61094     
61095     
61096     
61097     Roo.TreePanel.superclass.constructor.call(this, el, config);
61098  
61099  
61100     this.tree = new Roo.tree.TreePanel(treeEl , tree);
61101     //console.log(tree);
61102     this.on('activate', function()
61103     {
61104         if (this.tree.rendered) {
61105             return;
61106         }
61107         //console.log('render tree');
61108         this.tree.render();
61109     });
61110     // this should not be needed.. - it's actually the 'el' that resizes?
61111     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
61112     
61113     //this.on('resize',  function (cp, w, h) {
61114     //        this.tree.innerCt.setWidth(w);
61115     //        this.tree.innerCt.setHeight(h);
61116     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
61117     //});
61118
61119         
61120     
61121 };
61122
61123 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
61124     fitToFrame : true,
61125     autoScroll : true,
61126     /*
61127      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
61128      */
61129     tree : false
61130
61131 });
61132 /*
61133  * Based on:
61134  * Ext JS Library 1.1.1
61135  * Copyright(c) 2006-2007, Ext JS, LLC.
61136  *
61137  * Originally Released Under LGPL - original licence link has changed is not relivant.
61138  *
61139  * Fork - LGPL
61140  * <script type="text/javascript">
61141  */
61142  
61143
61144 /**
61145  * @class Roo.ReaderLayout
61146  * @extends Roo.BorderLayout
61147  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
61148  * center region containing two nested regions (a top one for a list view and one for item preview below),
61149  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
61150  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
61151  * expedites the setup of the overall layout and regions for this common application style.
61152  * Example:
61153  <pre><code>
61154 var reader = new Roo.ReaderLayout();
61155 var CP = Roo.ContentPanel;  // shortcut for adding
61156
61157 reader.beginUpdate();
61158 reader.add("north", new CP("north", "North"));
61159 reader.add("west", new CP("west", {title: "West"}));
61160 reader.add("east", new CP("east", {title: "East"}));
61161
61162 reader.regions.listView.add(new CP("listView", "List"));
61163 reader.regions.preview.add(new CP("preview", "Preview"));
61164 reader.endUpdate();
61165 </code></pre>
61166 * @constructor
61167 * Create a new ReaderLayout
61168 * @param {Object} config Configuration options
61169 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
61170 * document.body if omitted)
61171 */
61172 Roo.ReaderLayout = function(config, renderTo){
61173     var c = config || {size:{}};
61174     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
61175         north: c.north !== false ? Roo.apply({
61176             split:false,
61177             initialSize: 32,
61178             titlebar: false
61179         }, c.north) : false,
61180         west: c.west !== false ? Roo.apply({
61181             split:true,
61182             initialSize: 200,
61183             minSize: 175,
61184             maxSize: 400,
61185             titlebar: true,
61186             collapsible: true,
61187             animate: true,
61188             margins:{left:5,right:0,bottom:5,top:5},
61189             cmargins:{left:5,right:5,bottom:5,top:5}
61190         }, c.west) : false,
61191         east: c.east !== false ? Roo.apply({
61192             split:true,
61193             initialSize: 200,
61194             minSize: 175,
61195             maxSize: 400,
61196             titlebar: true,
61197             collapsible: true,
61198             animate: true,
61199             margins:{left:0,right:5,bottom:5,top:5},
61200             cmargins:{left:5,right:5,bottom:5,top:5}
61201         }, c.east) : false,
61202         center: Roo.apply({
61203             tabPosition: 'top',
61204             autoScroll:false,
61205             closeOnTab: true,
61206             titlebar:false,
61207             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
61208         }, c.center)
61209     });
61210
61211     this.el.addClass('x-reader');
61212
61213     this.beginUpdate();
61214
61215     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
61216         south: c.preview !== false ? Roo.apply({
61217             split:true,
61218             initialSize: 200,
61219             minSize: 100,
61220             autoScroll:true,
61221             collapsible:true,
61222             titlebar: true,
61223             cmargins:{top:5,left:0, right:0, bottom:0}
61224         }, c.preview) : false,
61225         center: Roo.apply({
61226             autoScroll:false,
61227             titlebar:false,
61228             minHeight:200
61229         }, c.listView)
61230     });
61231     this.add('center', new Roo.NestedLayoutPanel(inner,
61232             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
61233
61234     this.endUpdate();
61235
61236     this.regions.preview = inner.getRegion('south');
61237     this.regions.listView = inner.getRegion('center');
61238 };
61239
61240 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
61241  * Based on:
61242  * Ext JS Library 1.1.1
61243  * Copyright(c) 2006-2007, Ext JS, LLC.
61244  *
61245  * Originally Released Under LGPL - original licence link has changed is not relivant.
61246  *
61247  * Fork - LGPL
61248  * <script type="text/javascript">
61249  */
61250  
61251 /**
61252  * @class Roo.grid.Grid
61253  * @extends Roo.util.Observable
61254  * This class represents the primary interface of a component based grid control.
61255  * <br><br>Usage:<pre><code>
61256  var grid = new Roo.grid.Grid("my-container-id", {
61257      ds: myDataStore,
61258      cm: myColModel,
61259      selModel: mySelectionModel,
61260      autoSizeColumns: true,
61261      monitorWindowResize: false,
61262      trackMouseOver: true
61263  });
61264  // set any options
61265  grid.render();
61266  * </code></pre>
61267  * <b>Common Problems:</b><br/>
61268  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
61269  * element will correct this<br/>
61270  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
61271  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
61272  * are unpredictable.<br/>
61273  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
61274  * grid to calculate dimensions/offsets.<br/>
61275   * @constructor
61276  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
61277  * The container MUST have some type of size defined for the grid to fill. The container will be
61278  * automatically set to position relative if it isn't already.
61279  * @param {Object} config A config object that sets properties on this grid.
61280  */
61281 Roo.grid.Grid = function(container, config){
61282         // initialize the container
61283         this.container = Roo.get(container);
61284         this.container.update("");
61285         this.container.setStyle("overflow", "hidden");
61286     this.container.addClass('x-grid-container');
61287
61288     this.id = this.container.id;
61289
61290     Roo.apply(this, config);
61291     // check and correct shorthanded configs
61292     if(this.ds){
61293         this.dataSource = this.ds;
61294         delete this.ds;
61295     }
61296     if(this.cm){
61297         this.colModel = this.cm;
61298         delete this.cm;
61299     }
61300     if(this.sm){
61301         this.selModel = this.sm;
61302         delete this.sm;
61303     }
61304
61305     if (this.selModel) {
61306         this.selModel = Roo.factory(this.selModel, Roo.grid);
61307         this.sm = this.selModel;
61308         this.sm.xmodule = this.xmodule || false;
61309     }
61310     if (typeof(this.colModel.config) == 'undefined') {
61311         this.colModel = new Roo.grid.ColumnModel(this.colModel);
61312         this.cm = this.colModel;
61313         this.cm.xmodule = this.xmodule || false;
61314     }
61315     if (this.dataSource) {
61316         this.dataSource= Roo.factory(this.dataSource, Roo.data);
61317         this.ds = this.dataSource;
61318         this.ds.xmodule = this.xmodule || false;
61319          
61320     }
61321     
61322     
61323     
61324     if(this.width){
61325         this.container.setWidth(this.width);
61326     }
61327
61328     if(this.height){
61329         this.container.setHeight(this.height);
61330     }
61331     /** @private */
61332         this.addEvents({
61333         // raw events
61334         /**
61335          * @event click
61336          * The raw click event for the entire grid.
61337          * @param {Roo.EventObject} e
61338          */
61339         "click" : true,
61340         /**
61341          * @event dblclick
61342          * The raw dblclick event for the entire grid.
61343          * @param {Roo.EventObject} e
61344          */
61345         "dblclick" : true,
61346         /**
61347          * @event contextmenu
61348          * The raw contextmenu event for the entire grid.
61349          * @param {Roo.EventObject} e
61350          */
61351         "contextmenu" : true,
61352         /**
61353          * @event mousedown
61354          * The raw mousedown event for the entire grid.
61355          * @param {Roo.EventObject} e
61356          */
61357         "mousedown" : true,
61358         /**
61359          * @event mouseup
61360          * The raw mouseup event for the entire grid.
61361          * @param {Roo.EventObject} e
61362          */
61363         "mouseup" : true,
61364         /**
61365          * @event mouseover
61366          * The raw mouseover event for the entire grid.
61367          * @param {Roo.EventObject} e
61368          */
61369         "mouseover" : true,
61370         /**
61371          * @event mouseout
61372          * The raw mouseout event for the entire grid.
61373          * @param {Roo.EventObject} e
61374          */
61375         "mouseout" : true,
61376         /**
61377          * @event keypress
61378          * The raw keypress event for the entire grid.
61379          * @param {Roo.EventObject} e
61380          */
61381         "keypress" : true,
61382         /**
61383          * @event keydown
61384          * The raw keydown event for the entire grid.
61385          * @param {Roo.EventObject} e
61386          */
61387         "keydown" : true,
61388
61389         // custom events
61390
61391         /**
61392          * @event cellclick
61393          * Fires when a cell is clicked
61394          * @param {Grid} this
61395          * @param {Number} rowIndex
61396          * @param {Number} columnIndex
61397          * @param {Roo.EventObject} e
61398          */
61399         "cellclick" : true,
61400         /**
61401          * @event celldblclick
61402          * Fires when a cell is double clicked
61403          * @param {Grid} this
61404          * @param {Number} rowIndex
61405          * @param {Number} columnIndex
61406          * @param {Roo.EventObject} e
61407          */
61408         "celldblclick" : true,
61409         /**
61410          * @event rowclick
61411          * Fires when a row is clicked
61412          * @param {Grid} this
61413          * @param {Number} rowIndex
61414          * @param {Roo.EventObject} e
61415          */
61416         "rowclick" : true,
61417         /**
61418          * @event rowdblclick
61419          * Fires when a row is double clicked
61420          * @param {Grid} this
61421          * @param {Number} rowIndex
61422          * @param {Roo.EventObject} e
61423          */
61424         "rowdblclick" : true,
61425         /**
61426          * @event headerclick
61427          * Fires when a header is clicked
61428          * @param {Grid} this
61429          * @param {Number} columnIndex
61430          * @param {Roo.EventObject} e
61431          */
61432         "headerclick" : true,
61433         /**
61434          * @event headerdblclick
61435          * Fires when a header cell is double clicked
61436          * @param {Grid} this
61437          * @param {Number} columnIndex
61438          * @param {Roo.EventObject} e
61439          */
61440         "headerdblclick" : true,
61441         /**
61442          * @event rowcontextmenu
61443          * Fires when a row is right clicked
61444          * @param {Grid} this
61445          * @param {Number} rowIndex
61446          * @param {Roo.EventObject} e
61447          */
61448         "rowcontextmenu" : true,
61449         /**
61450          * @event cellcontextmenu
61451          * Fires when a cell is right clicked
61452          * @param {Grid} this
61453          * @param {Number} rowIndex
61454          * @param {Number} cellIndex
61455          * @param {Roo.EventObject} e
61456          */
61457          "cellcontextmenu" : true,
61458         /**
61459          * @event headercontextmenu
61460          * Fires when a header is right clicked
61461          * @param {Grid} this
61462          * @param {Number} columnIndex
61463          * @param {Roo.EventObject} e
61464          */
61465         "headercontextmenu" : true,
61466         /**
61467          * @event bodyscroll
61468          * Fires when the body element is scrolled
61469          * @param {Number} scrollLeft
61470          * @param {Number} scrollTop
61471          */
61472         "bodyscroll" : true,
61473         /**
61474          * @event columnresize
61475          * Fires when the user resizes a column
61476          * @param {Number} columnIndex
61477          * @param {Number} newSize
61478          */
61479         "columnresize" : true,
61480         /**
61481          * @event columnmove
61482          * Fires when the user moves a column
61483          * @param {Number} oldIndex
61484          * @param {Number} newIndex
61485          */
61486         "columnmove" : true,
61487         /**
61488          * @event startdrag
61489          * Fires when row(s) start being dragged
61490          * @param {Grid} this
61491          * @param {Roo.GridDD} dd The drag drop object
61492          * @param {event} e The raw browser event
61493          */
61494         "startdrag" : true,
61495         /**
61496          * @event enddrag
61497          * Fires when a drag operation is complete
61498          * @param {Grid} this
61499          * @param {Roo.GridDD} dd The drag drop object
61500          * @param {event} e The raw browser event
61501          */
61502         "enddrag" : true,
61503         /**
61504          * @event dragdrop
61505          * Fires when dragged row(s) are dropped on a valid DD target
61506          * @param {Grid} this
61507          * @param {Roo.GridDD} dd The drag drop object
61508          * @param {String} targetId The target drag drop object
61509          * @param {event} e The raw browser event
61510          */
61511         "dragdrop" : true,
61512         /**
61513          * @event dragover
61514          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
61515          * @param {Grid} this
61516          * @param {Roo.GridDD} dd The drag drop object
61517          * @param {String} targetId The target drag drop object
61518          * @param {event} e The raw browser event
61519          */
61520         "dragover" : true,
61521         /**
61522          * @event dragenter
61523          *  Fires when the dragged row(s) first cross another DD target while being dragged
61524          * @param {Grid} this
61525          * @param {Roo.GridDD} dd The drag drop object
61526          * @param {String} targetId The target drag drop object
61527          * @param {event} e The raw browser event
61528          */
61529         "dragenter" : true,
61530         /**
61531          * @event dragout
61532          * Fires when the dragged row(s) leave another DD target while being dragged
61533          * @param {Grid} this
61534          * @param {Roo.GridDD} dd The drag drop object
61535          * @param {String} targetId The target drag drop object
61536          * @param {event} e The raw browser event
61537          */
61538         "dragout" : true,
61539         /**
61540          * @event rowclass
61541          * Fires when a row is rendered, so you can change add a style to it.
61542          * @param {GridView} gridview   The grid view
61543          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
61544          */
61545         'rowclass' : true,
61546
61547         /**
61548          * @event render
61549          * Fires when the grid is rendered
61550          * @param {Grid} grid
61551          */
61552         'render' : true
61553     });
61554
61555     Roo.grid.Grid.superclass.constructor.call(this);
61556 };
61557 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
61558     
61559     /**
61560          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
61561          */
61562         /**
61563          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
61564          */
61565         /**
61566          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
61567          */
61568         /**
61569          * @cfg {Roo.data.Store} ds The data store for the grid
61570          */
61571         /**
61572          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
61573          */
61574         /**
61575      * @cfg {String} ddGroup - drag drop group.
61576      */
61577       /**
61578      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
61579      */
61580
61581     /**
61582      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
61583      */
61584     minColumnWidth : 25,
61585
61586     /**
61587      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
61588      * <b>on initial render.</b> It is more efficient to explicitly size the columns
61589      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
61590      */
61591     autoSizeColumns : false,
61592
61593     /**
61594      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
61595      */
61596     autoSizeHeaders : true,
61597
61598     /**
61599      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
61600      */
61601     monitorWindowResize : true,
61602
61603     /**
61604      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
61605      * rows measured to get a columns size. Default is 0 (all rows).
61606      */
61607     maxRowsToMeasure : 0,
61608
61609     /**
61610      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
61611      */
61612     trackMouseOver : true,
61613
61614     /**
61615     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
61616     */
61617       /**
61618     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
61619     */
61620     
61621     /**
61622     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
61623     */
61624     enableDragDrop : false,
61625     
61626     /**
61627     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
61628     */
61629     enableColumnMove : true,
61630     
61631     /**
61632     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
61633     */
61634     enableColumnHide : true,
61635     
61636     /**
61637     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
61638     */
61639     enableRowHeightSync : false,
61640     
61641     /**
61642     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
61643     */
61644     stripeRows : true,
61645     
61646     /**
61647     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
61648     */
61649     autoHeight : false,
61650
61651     /**
61652      * @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.
61653      */
61654     autoExpandColumn : false,
61655
61656     /**
61657     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
61658     * Default is 50.
61659     */
61660     autoExpandMin : 50,
61661
61662     /**
61663     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
61664     */
61665     autoExpandMax : 1000,
61666
61667     /**
61668     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
61669     */
61670     view : null,
61671
61672     /**
61673     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
61674     */
61675     loadMask : false,
61676     /**
61677     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
61678     */
61679     dropTarget: false,
61680      /**
61681     * @cfg {boolean} sortColMenu Sort the column order menu when it shows (usefull for long lists..) default false
61682     */ 
61683     sortColMenu : false,
61684     
61685     // private
61686     rendered : false,
61687
61688     /**
61689     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
61690     * of a fixed width. Default is false.
61691     */
61692     /**
61693     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
61694     */
61695     
61696     
61697     /**
61698     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
61699     * %0 is replaced with the number of selected rows.
61700     */
61701     ddText : "{0} selected row{1}",
61702     
61703     
61704     /**
61705      * Called once after all setup has been completed and the grid is ready to be rendered.
61706      * @return {Roo.grid.Grid} this
61707      */
61708     render : function()
61709     {
61710         var c = this.container;
61711         // try to detect autoHeight/width mode
61712         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
61713             this.autoHeight = true;
61714         }
61715         var view = this.getView();
61716         view.init(this);
61717
61718         c.on("click", this.onClick, this);
61719         c.on("dblclick", this.onDblClick, this);
61720         c.on("contextmenu", this.onContextMenu, this);
61721         c.on("keydown", this.onKeyDown, this);
61722         if (Roo.isTouch) {
61723             c.on("touchstart", this.onTouchStart, this);
61724         }
61725
61726         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
61727
61728         this.getSelectionModel().init(this);
61729
61730         view.render();
61731
61732         if(this.loadMask){
61733             this.loadMask = new Roo.LoadMask(this.container,
61734                     Roo.apply({store:this.dataSource}, this.loadMask));
61735         }
61736         
61737         
61738         if (this.toolbar && this.toolbar.xtype) {
61739             this.toolbar.container = this.getView().getHeaderPanel(true);
61740             this.toolbar = new Roo.Toolbar(this.toolbar);
61741         }
61742         if (this.footer && this.footer.xtype) {
61743             this.footer.dataSource = this.getDataSource();
61744             this.footer.container = this.getView().getFooterPanel(true);
61745             this.footer = Roo.factory(this.footer, Roo);
61746         }
61747         if (this.dropTarget && this.dropTarget.xtype) {
61748             delete this.dropTarget.xtype;
61749             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
61750         }
61751         
61752         
61753         this.rendered = true;
61754         this.fireEvent('render', this);
61755         return this;
61756     },
61757
61758     /**
61759      * Reconfigures the grid to use a different Store and Column Model.
61760      * The View will be bound to the new objects and refreshed.
61761      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
61762      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
61763      */
61764     reconfigure : function(dataSource, colModel){
61765         if(this.loadMask){
61766             this.loadMask.destroy();
61767             this.loadMask = new Roo.LoadMask(this.container,
61768                     Roo.apply({store:dataSource}, this.loadMask));
61769         }
61770         this.view.bind(dataSource, colModel);
61771         this.dataSource = dataSource;
61772         this.colModel = colModel;
61773         this.view.refresh(true);
61774     },
61775     /**
61776      * addColumns
61777      * Add's a column, default at the end..
61778      
61779      * @param {int} position to add (default end)
61780      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
61781      */
61782     addColumns : function(pos, ar)
61783     {
61784         
61785         for (var i =0;i< ar.length;i++) {
61786             var cfg = ar[i];
61787             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
61788             this.cm.lookup[cfg.id] = cfg;
61789         }
61790         
61791         
61792         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
61793             pos = this.cm.config.length; //this.cm.config.push(cfg);
61794         } 
61795         pos = Math.max(0,pos);
61796         ar.unshift(0);
61797         ar.unshift(pos);
61798         this.cm.config.splice.apply(this.cm.config, ar);
61799         
61800         
61801         
61802         this.view.generateRules(this.cm);
61803         this.view.refresh(true);
61804         
61805     },
61806     
61807     
61808     
61809     
61810     // private
61811     onKeyDown : function(e){
61812         this.fireEvent("keydown", e);
61813     },
61814
61815     /**
61816      * Destroy this grid.
61817      * @param {Boolean} removeEl True to remove the element
61818      */
61819     destroy : function(removeEl, keepListeners){
61820         if(this.loadMask){
61821             this.loadMask.destroy();
61822         }
61823         var c = this.container;
61824         c.removeAllListeners();
61825         this.view.destroy();
61826         this.colModel.purgeListeners();
61827         if(!keepListeners){
61828             this.purgeListeners();
61829         }
61830         c.update("");
61831         if(removeEl === true){
61832             c.remove();
61833         }
61834     },
61835
61836     // private
61837     processEvent : function(name, e){
61838         // does this fire select???
61839         //Roo.log('grid:processEvent '  + name);
61840         
61841         if (name != 'touchstart' ) {
61842             this.fireEvent(name, e);    
61843         }
61844         
61845         var t = e.getTarget();
61846         var v = this.view;
61847         var header = v.findHeaderIndex(t);
61848         if(header !== false){
61849             var ename = name == 'touchstart' ? 'click' : name;
61850              
61851             this.fireEvent("header" + ename, this, header, e);
61852         }else{
61853             var row = v.findRowIndex(t);
61854             var cell = v.findCellIndex(t);
61855             if (name == 'touchstart') {
61856                 // first touch is always a click.
61857                 // hopefull this happens after selection is updated.?
61858                 name = false;
61859                 
61860                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
61861                     var cs = this.selModel.getSelectedCell();
61862                     if (row == cs[0] && cell == cs[1]){
61863                         name = 'dblclick';
61864                     }
61865                 }
61866                 if (typeof(this.selModel.getSelections) != 'undefined') {
61867                     var cs = this.selModel.getSelections();
61868                     var ds = this.dataSource;
61869                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
61870                         name = 'dblclick';
61871                     }
61872                 }
61873                 if (!name) {
61874                     return;
61875                 }
61876             }
61877             
61878             
61879             if(row !== false){
61880                 this.fireEvent("row" + name, this, row, e);
61881                 if(cell !== false){
61882                     this.fireEvent("cell" + name, this, row, cell, e);
61883                 }
61884             }
61885         }
61886     },
61887
61888     // private
61889     onClick : function(e){
61890         this.processEvent("click", e);
61891     },
61892    // private
61893     onTouchStart : function(e){
61894         this.processEvent("touchstart", e);
61895     },
61896
61897     // private
61898     onContextMenu : function(e, t){
61899         this.processEvent("contextmenu", e);
61900     },
61901
61902     // private
61903     onDblClick : function(e){
61904         this.processEvent("dblclick", e);
61905     },
61906
61907     // private
61908     walkCells : function(row, col, step, fn, scope){
61909         var cm = this.colModel, clen = cm.getColumnCount();
61910         var ds = this.dataSource, rlen = ds.getCount(), first = true;
61911         if(step < 0){
61912             if(col < 0){
61913                 row--;
61914                 first = false;
61915             }
61916             while(row >= 0){
61917                 if(!first){
61918                     col = clen-1;
61919                 }
61920                 first = false;
61921                 while(col >= 0){
61922                     if(fn.call(scope || this, row, col, cm) === true){
61923                         return [row, col];
61924                     }
61925                     col--;
61926                 }
61927                 row--;
61928             }
61929         } else {
61930             if(col >= clen){
61931                 row++;
61932                 first = false;
61933             }
61934             while(row < rlen){
61935                 if(!first){
61936                     col = 0;
61937                 }
61938                 first = false;
61939                 while(col < clen){
61940                     if(fn.call(scope || this, row, col, cm) === true){
61941                         return [row, col];
61942                     }
61943                     col++;
61944                 }
61945                 row++;
61946             }
61947         }
61948         return null;
61949     },
61950
61951     // private
61952     getSelections : function(){
61953         return this.selModel.getSelections();
61954     },
61955
61956     /**
61957      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
61958      * but if manual update is required this method will initiate it.
61959      */
61960     autoSize : function(){
61961         if(this.rendered){
61962             this.view.layout();
61963             if(this.view.adjustForScroll){
61964                 this.view.adjustForScroll();
61965             }
61966         }
61967     },
61968
61969     /**
61970      * Returns the grid's underlying element.
61971      * @return {Element} The element
61972      */
61973     getGridEl : function(){
61974         return this.container;
61975     },
61976
61977     // private for compatibility, overridden by editor grid
61978     stopEditing : function(){},
61979
61980     /**
61981      * Returns the grid's SelectionModel.
61982      * @return {SelectionModel}
61983      */
61984     getSelectionModel : function(){
61985         if(!this.selModel){
61986             this.selModel = new Roo.grid.RowSelectionModel();
61987         }
61988         return this.selModel;
61989     },
61990
61991     /**
61992      * Returns the grid's DataSource.
61993      * @return {DataSource}
61994      */
61995     getDataSource : function(){
61996         return this.dataSource;
61997     },
61998
61999     /**
62000      * Returns the grid's ColumnModel.
62001      * @return {ColumnModel}
62002      */
62003     getColumnModel : function(){
62004         return this.colModel;
62005     },
62006
62007     /**
62008      * Returns the grid's GridView object.
62009      * @return {GridView}
62010      */
62011     getView : function(){
62012         if(!this.view){
62013             this.view = new Roo.grid.GridView(this.viewConfig);
62014             this.relayEvents(this.view, [
62015                 "beforerowremoved", "beforerowsinserted",
62016                 "beforerefresh", "rowremoved",
62017                 "rowsinserted", "rowupdated" ,"refresh"
62018             ]);
62019         }
62020         return this.view;
62021     },
62022     /**
62023      * Called to get grid's drag proxy text, by default returns this.ddText.
62024      * Override this to put something different in the dragged text.
62025      * @return {String}
62026      */
62027     getDragDropText : function(){
62028         var count = this.selModel.getCount();
62029         return String.format(this.ddText, count, count == 1 ? '' : 's');
62030     }
62031 });
62032 /*
62033  * Based on:
62034  * Ext JS Library 1.1.1
62035  * Copyright(c) 2006-2007, Ext JS, LLC.
62036  *
62037  * Originally Released Under LGPL - original licence link has changed is not relivant.
62038  *
62039  * Fork - LGPL
62040  * <script type="text/javascript">
62041  */
62042  /**
62043  * @class Roo.grid.AbstractGridView
62044  * @extends Roo.util.Observable
62045  * @abstract
62046  * Abstract base class for grid Views
62047  * @constructor
62048  */
62049 Roo.grid.AbstractGridView = function(){
62050         this.grid = null;
62051         
62052         this.events = {
62053             "beforerowremoved" : true,
62054             "beforerowsinserted" : true,
62055             "beforerefresh" : true,
62056             "rowremoved" : true,
62057             "rowsinserted" : true,
62058             "rowupdated" : true,
62059             "refresh" : true
62060         };
62061     Roo.grid.AbstractGridView.superclass.constructor.call(this);
62062 };
62063
62064 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
62065     rowClass : "x-grid-row",
62066     cellClass : "x-grid-cell",
62067     tdClass : "x-grid-td",
62068     hdClass : "x-grid-hd",
62069     splitClass : "x-grid-hd-split",
62070     
62071     init: function(grid){
62072         this.grid = grid;
62073                 var cid = this.grid.getGridEl().id;
62074         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
62075         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
62076         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
62077         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
62078         },
62079         
62080     getColumnRenderers : function(){
62081         var renderers = [];
62082         var cm = this.grid.colModel;
62083         var colCount = cm.getColumnCount();
62084         for(var i = 0; i < colCount; i++){
62085             renderers[i] = cm.getRenderer(i);
62086         }
62087         return renderers;
62088     },
62089     
62090     getColumnIds : function(){
62091         var ids = [];
62092         var cm = this.grid.colModel;
62093         var colCount = cm.getColumnCount();
62094         for(var i = 0; i < colCount; i++){
62095             ids[i] = cm.getColumnId(i);
62096         }
62097         return ids;
62098     },
62099     
62100     getDataIndexes : function(){
62101         if(!this.indexMap){
62102             this.indexMap = this.buildIndexMap();
62103         }
62104         return this.indexMap.colToData;
62105     },
62106     
62107     getColumnIndexByDataIndex : function(dataIndex){
62108         if(!this.indexMap){
62109             this.indexMap = this.buildIndexMap();
62110         }
62111         return this.indexMap.dataToCol[dataIndex];
62112     },
62113     
62114     /**
62115      * Set a css style for a column dynamically. 
62116      * @param {Number} colIndex The index of the column
62117      * @param {String} name The css property name
62118      * @param {String} value The css value
62119      */
62120     setCSSStyle : function(colIndex, name, value){
62121         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
62122         Roo.util.CSS.updateRule(selector, name, value);
62123     },
62124     
62125     generateRules : function(cm){
62126         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
62127         Roo.util.CSS.removeStyleSheet(rulesId);
62128         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62129             var cid = cm.getColumnId(i);
62130             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
62131                          this.tdSelector, cid, " {\n}\n",
62132                          this.hdSelector, cid, " {\n}\n",
62133                          this.splitSelector, cid, " {\n}\n");
62134         }
62135         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
62136     }
62137 });/*
62138  * Based on:
62139  * Ext JS Library 1.1.1
62140  * Copyright(c) 2006-2007, Ext JS, LLC.
62141  *
62142  * Originally Released Under LGPL - original licence link has changed is not relivant.
62143  *
62144  * Fork - LGPL
62145  * <script type="text/javascript">
62146  */
62147
62148 // private
62149 // This is a support class used internally by the Grid components
62150 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
62151     this.grid = grid;
62152     this.view = grid.getView();
62153     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62154     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
62155     if(hd2){
62156         this.setHandleElId(Roo.id(hd));
62157         this.setOuterHandleElId(Roo.id(hd2));
62158     }
62159     this.scroll = false;
62160 };
62161 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
62162     maxDragWidth: 120,
62163     getDragData : function(e){
62164         var t = Roo.lib.Event.getTarget(e);
62165         var h = this.view.findHeaderCell(t);
62166         if(h){
62167             return {ddel: h.firstChild, header:h};
62168         }
62169         return false;
62170     },
62171
62172     onInitDrag : function(e){
62173         this.view.headersDisabled = true;
62174         var clone = this.dragData.ddel.cloneNode(true);
62175         clone.id = Roo.id();
62176         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
62177         this.proxy.update(clone);
62178         return true;
62179     },
62180
62181     afterValidDrop : function(){
62182         var v = this.view;
62183         setTimeout(function(){
62184             v.headersDisabled = false;
62185         }, 50);
62186     },
62187
62188     afterInvalidDrop : function(){
62189         var v = this.view;
62190         setTimeout(function(){
62191             v.headersDisabled = false;
62192         }, 50);
62193     }
62194 });
62195 /*
62196  * Based on:
62197  * Ext JS Library 1.1.1
62198  * Copyright(c) 2006-2007, Ext JS, LLC.
62199  *
62200  * Originally Released Under LGPL - original licence link has changed is not relivant.
62201  *
62202  * Fork - LGPL
62203  * <script type="text/javascript">
62204  */
62205 // private
62206 // This is a support class used internally by the Grid components
62207 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
62208     this.grid = grid;
62209     this.view = grid.getView();
62210     // split the proxies so they don't interfere with mouse events
62211     this.proxyTop = Roo.DomHelper.append(document.body, {
62212         cls:"col-move-top", html:"&#160;"
62213     }, true);
62214     this.proxyBottom = Roo.DomHelper.append(document.body, {
62215         cls:"col-move-bottom", html:"&#160;"
62216     }, true);
62217     this.proxyTop.hide = this.proxyBottom.hide = function(){
62218         this.setLeftTop(-100,-100);
62219         this.setStyle("visibility", "hidden");
62220     };
62221     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62222     // temporarily disabled
62223     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
62224     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
62225 };
62226 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
62227     proxyOffsets : [-4, -9],
62228     fly: Roo.Element.fly,
62229
62230     getTargetFromEvent : function(e){
62231         var t = Roo.lib.Event.getTarget(e);
62232         var cindex = this.view.findCellIndex(t);
62233         if(cindex !== false){
62234             return this.view.getHeaderCell(cindex);
62235         }
62236         return null;
62237     },
62238
62239     nextVisible : function(h){
62240         var v = this.view, cm = this.grid.colModel;
62241         h = h.nextSibling;
62242         while(h){
62243             if(!cm.isHidden(v.getCellIndex(h))){
62244                 return h;
62245             }
62246             h = h.nextSibling;
62247         }
62248         return null;
62249     },
62250
62251     prevVisible : function(h){
62252         var v = this.view, cm = this.grid.colModel;
62253         h = h.prevSibling;
62254         while(h){
62255             if(!cm.isHidden(v.getCellIndex(h))){
62256                 return h;
62257             }
62258             h = h.prevSibling;
62259         }
62260         return null;
62261     },
62262
62263     positionIndicator : function(h, n, e){
62264         var x = Roo.lib.Event.getPageX(e);
62265         var r = Roo.lib.Dom.getRegion(n.firstChild);
62266         var px, pt, py = r.top + this.proxyOffsets[1];
62267         if((r.right - x) <= (r.right-r.left)/2){
62268             px = r.right+this.view.borderWidth;
62269             pt = "after";
62270         }else{
62271             px = r.left;
62272             pt = "before";
62273         }
62274         var oldIndex = this.view.getCellIndex(h);
62275         var newIndex = this.view.getCellIndex(n);
62276
62277         if(this.grid.colModel.isFixed(newIndex)){
62278             return false;
62279         }
62280
62281         var locked = this.grid.colModel.isLocked(newIndex);
62282
62283         if(pt == "after"){
62284             newIndex++;
62285         }
62286         if(oldIndex < newIndex){
62287             newIndex--;
62288         }
62289         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
62290             return false;
62291         }
62292         px +=  this.proxyOffsets[0];
62293         this.proxyTop.setLeftTop(px, py);
62294         this.proxyTop.show();
62295         if(!this.bottomOffset){
62296             this.bottomOffset = this.view.mainHd.getHeight();
62297         }
62298         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
62299         this.proxyBottom.show();
62300         return pt;
62301     },
62302
62303     onNodeEnter : function(n, dd, e, data){
62304         if(data.header != n){
62305             this.positionIndicator(data.header, n, e);
62306         }
62307     },
62308
62309     onNodeOver : function(n, dd, e, data){
62310         var result = false;
62311         if(data.header != n){
62312             result = this.positionIndicator(data.header, n, e);
62313         }
62314         if(!result){
62315             this.proxyTop.hide();
62316             this.proxyBottom.hide();
62317         }
62318         return result ? this.dropAllowed : this.dropNotAllowed;
62319     },
62320
62321     onNodeOut : function(n, dd, e, data){
62322         this.proxyTop.hide();
62323         this.proxyBottom.hide();
62324     },
62325
62326     onNodeDrop : function(n, dd, e, data){
62327         var h = data.header;
62328         if(h != n){
62329             var cm = this.grid.colModel;
62330             var x = Roo.lib.Event.getPageX(e);
62331             var r = Roo.lib.Dom.getRegion(n.firstChild);
62332             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
62333             var oldIndex = this.view.getCellIndex(h);
62334             var newIndex = this.view.getCellIndex(n);
62335             var locked = cm.isLocked(newIndex);
62336             if(pt == "after"){
62337                 newIndex++;
62338             }
62339             if(oldIndex < newIndex){
62340                 newIndex--;
62341             }
62342             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
62343                 return false;
62344             }
62345             cm.setLocked(oldIndex, locked, true);
62346             cm.moveColumn(oldIndex, newIndex);
62347             this.grid.fireEvent("columnmove", oldIndex, newIndex);
62348             return true;
62349         }
62350         return false;
62351     }
62352 });
62353 /*
62354  * Based on:
62355  * Ext JS Library 1.1.1
62356  * Copyright(c) 2006-2007, Ext JS, LLC.
62357  *
62358  * Originally Released Under LGPL - original licence link has changed is not relivant.
62359  *
62360  * Fork - LGPL
62361  * <script type="text/javascript">
62362  */
62363   
62364 /**
62365  * @class Roo.grid.GridView
62366  * @extends Roo.util.Observable
62367  *
62368  * @constructor
62369  * @param {Object} config
62370  */
62371 Roo.grid.GridView = function(config){
62372     Roo.grid.GridView.superclass.constructor.call(this);
62373     this.el = null;
62374
62375     Roo.apply(this, config);
62376 };
62377
62378 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
62379
62380     unselectable :  'unselectable="on"',
62381     unselectableCls :  'x-unselectable',
62382     
62383     
62384     rowClass : "x-grid-row",
62385
62386     cellClass : "x-grid-col",
62387
62388     tdClass : "x-grid-td",
62389
62390     hdClass : "x-grid-hd",
62391
62392     splitClass : "x-grid-split",
62393
62394     sortClasses : ["sort-asc", "sort-desc"],
62395
62396     enableMoveAnim : false,
62397
62398     hlColor: "C3DAF9",
62399
62400     dh : Roo.DomHelper,
62401
62402     fly : Roo.Element.fly,
62403
62404     css : Roo.util.CSS,
62405
62406     borderWidth: 1,
62407
62408     splitOffset: 3,
62409
62410     scrollIncrement : 22,
62411
62412     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
62413
62414     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
62415
62416     bind : function(ds, cm){
62417         if(this.ds){
62418             this.ds.un("load", this.onLoad, this);
62419             this.ds.un("datachanged", this.onDataChange, this);
62420             this.ds.un("add", this.onAdd, this);
62421             this.ds.un("remove", this.onRemove, this);
62422             this.ds.un("update", this.onUpdate, this);
62423             this.ds.un("clear", this.onClear, this);
62424         }
62425         if(ds){
62426             ds.on("load", this.onLoad, this);
62427             ds.on("datachanged", this.onDataChange, this);
62428             ds.on("add", this.onAdd, this);
62429             ds.on("remove", this.onRemove, this);
62430             ds.on("update", this.onUpdate, this);
62431             ds.on("clear", this.onClear, this);
62432         }
62433         this.ds = ds;
62434
62435         if(this.cm){
62436             this.cm.un("widthchange", this.onColWidthChange, this);
62437             this.cm.un("headerchange", this.onHeaderChange, this);
62438             this.cm.un("hiddenchange", this.onHiddenChange, this);
62439             this.cm.un("columnmoved", this.onColumnMove, this);
62440             this.cm.un("columnlockchange", this.onColumnLock, this);
62441         }
62442         if(cm){
62443             this.generateRules(cm);
62444             cm.on("widthchange", this.onColWidthChange, this);
62445             cm.on("headerchange", this.onHeaderChange, this);
62446             cm.on("hiddenchange", this.onHiddenChange, this);
62447             cm.on("columnmoved", this.onColumnMove, this);
62448             cm.on("columnlockchange", this.onColumnLock, this);
62449         }
62450         this.cm = cm;
62451     },
62452
62453     init: function(grid){
62454         Roo.grid.GridView.superclass.init.call(this, grid);
62455
62456         this.bind(grid.dataSource, grid.colModel);
62457
62458         grid.on("headerclick", this.handleHeaderClick, this);
62459
62460         if(grid.trackMouseOver){
62461             grid.on("mouseover", this.onRowOver, this);
62462             grid.on("mouseout", this.onRowOut, this);
62463         }
62464         grid.cancelTextSelection = function(){};
62465         this.gridId = grid.id;
62466
62467         var tpls = this.templates || {};
62468
62469         if(!tpls.master){
62470             tpls.master = new Roo.Template(
62471                '<div class="x-grid" hidefocus="true">',
62472                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
62473                   '<div class="x-grid-topbar"></div>',
62474                   '<div class="x-grid-scroller"><div></div></div>',
62475                   '<div class="x-grid-locked">',
62476                       '<div class="x-grid-header">{lockedHeader}</div>',
62477                       '<div class="x-grid-body">{lockedBody}</div>',
62478                   "</div>",
62479                   '<div class="x-grid-viewport">',
62480                       '<div class="x-grid-header">{header}</div>',
62481                       '<div class="x-grid-body">{body}</div>',
62482                   "</div>",
62483                   '<div class="x-grid-bottombar"></div>',
62484                  
62485                   '<div class="x-grid-resize-proxy">&#160;</div>',
62486                "</div>"
62487             );
62488             tpls.master.disableformats = true;
62489         }
62490
62491         if(!tpls.header){
62492             tpls.header = new Roo.Template(
62493                '<table border="0" cellspacing="0" cellpadding="0">',
62494                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
62495                "</table>{splits}"
62496             );
62497             tpls.header.disableformats = true;
62498         }
62499         tpls.header.compile();
62500
62501         if(!tpls.hcell){
62502             tpls.hcell = new Roo.Template(
62503                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
62504                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
62505                 "</div></td>"
62506              );
62507              tpls.hcell.disableFormats = true;
62508         }
62509         tpls.hcell.compile();
62510
62511         if(!tpls.hsplit){
62512             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
62513                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
62514             tpls.hsplit.disableFormats = true;
62515         }
62516         tpls.hsplit.compile();
62517
62518         if(!tpls.body){
62519             tpls.body = new Roo.Template(
62520                '<table border="0" cellspacing="0" cellpadding="0">',
62521                "<tbody>{rows}</tbody>",
62522                "</table>"
62523             );
62524             tpls.body.disableFormats = true;
62525         }
62526         tpls.body.compile();
62527
62528         if(!tpls.row){
62529             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
62530             tpls.row.disableFormats = true;
62531         }
62532         tpls.row.compile();
62533
62534         if(!tpls.cell){
62535             tpls.cell = new Roo.Template(
62536                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
62537                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
62538                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
62539                 "</td>"
62540             );
62541             tpls.cell.disableFormats = true;
62542         }
62543         tpls.cell.compile();
62544
62545         this.templates = tpls;
62546     },
62547
62548     // remap these for backwards compat
62549     onColWidthChange : function(){
62550         this.updateColumns.apply(this, arguments);
62551     },
62552     onHeaderChange : function(){
62553         this.updateHeaders.apply(this, arguments);
62554     }, 
62555     onHiddenChange : function(){
62556         this.handleHiddenChange.apply(this, arguments);
62557     },
62558     onColumnMove : function(){
62559         this.handleColumnMove.apply(this, arguments);
62560     },
62561     onColumnLock : function(){
62562         this.handleLockChange.apply(this, arguments);
62563     },
62564
62565     onDataChange : function(){
62566         this.refresh();
62567         this.updateHeaderSortState();
62568     },
62569
62570     onClear : function(){
62571         this.refresh();
62572     },
62573
62574     onUpdate : function(ds, record){
62575         this.refreshRow(record);
62576     },
62577
62578     refreshRow : function(record){
62579         var ds = this.ds, index;
62580         if(typeof record == 'number'){
62581             index = record;
62582             record = ds.getAt(index);
62583         }else{
62584             index = ds.indexOf(record);
62585         }
62586         this.insertRows(ds, index, index, true);
62587         this.onRemove(ds, record, index+1, true);
62588         this.syncRowHeights(index, index);
62589         this.layout();
62590         this.fireEvent("rowupdated", this, index, record);
62591     },
62592
62593     onAdd : function(ds, records, index){
62594         this.insertRows(ds, index, index + (records.length-1));
62595     },
62596
62597     onRemove : function(ds, record, index, isUpdate){
62598         if(isUpdate !== true){
62599             this.fireEvent("beforerowremoved", this, index, record);
62600         }
62601         var bt = this.getBodyTable(), lt = this.getLockedTable();
62602         if(bt.rows[index]){
62603             bt.firstChild.removeChild(bt.rows[index]);
62604         }
62605         if(lt.rows[index]){
62606             lt.firstChild.removeChild(lt.rows[index]);
62607         }
62608         if(isUpdate !== true){
62609             this.stripeRows(index);
62610             this.syncRowHeights(index, index);
62611             this.layout();
62612             this.fireEvent("rowremoved", this, index, record);
62613         }
62614     },
62615
62616     onLoad : function(){
62617         this.scrollToTop();
62618     },
62619
62620     /**
62621      * Scrolls the grid to the top
62622      */
62623     scrollToTop : function(){
62624         if(this.scroller){
62625             this.scroller.dom.scrollTop = 0;
62626             this.syncScroll();
62627         }
62628     },
62629
62630     /**
62631      * Gets a panel in the header of the grid that can be used for toolbars etc.
62632      * After modifying the contents of this panel a call to grid.autoSize() may be
62633      * required to register any changes in size.
62634      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
62635      * @return Roo.Element
62636      */
62637     getHeaderPanel : function(doShow){
62638         if(doShow){
62639             this.headerPanel.show();
62640         }
62641         return this.headerPanel;
62642     },
62643
62644     /**
62645      * Gets a panel in the footer of the grid that can be used for toolbars etc.
62646      * After modifying the contents of this panel a call to grid.autoSize() may be
62647      * required to register any changes in size.
62648      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
62649      * @return Roo.Element
62650      */
62651     getFooterPanel : function(doShow){
62652         if(doShow){
62653             this.footerPanel.show();
62654         }
62655         return this.footerPanel;
62656     },
62657
62658     initElements : function(){
62659         var E = Roo.Element;
62660         var el = this.grid.getGridEl().dom.firstChild;
62661         var cs = el.childNodes;
62662
62663         this.el = new E(el);
62664         
62665          this.focusEl = new E(el.firstChild);
62666         this.focusEl.swallowEvent("click", true);
62667         
62668         this.headerPanel = new E(cs[1]);
62669         this.headerPanel.enableDisplayMode("block");
62670
62671         this.scroller = new E(cs[2]);
62672         this.scrollSizer = new E(this.scroller.dom.firstChild);
62673
62674         this.lockedWrap = new E(cs[3]);
62675         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
62676         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
62677
62678         this.mainWrap = new E(cs[4]);
62679         this.mainHd = new E(this.mainWrap.dom.firstChild);
62680         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
62681
62682         this.footerPanel = new E(cs[5]);
62683         this.footerPanel.enableDisplayMode("block");
62684
62685         this.resizeProxy = new E(cs[6]);
62686
62687         this.headerSelector = String.format(
62688            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
62689            this.lockedHd.id, this.mainHd.id
62690         );
62691
62692         this.splitterSelector = String.format(
62693            '#{0} div.x-grid-split, #{1} div.x-grid-split',
62694            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
62695         );
62696     },
62697     idToCssName : function(s)
62698     {
62699         return s.replace(/[^a-z0-9]+/ig, '-');
62700     },
62701
62702     getHeaderCell : function(index){
62703         return Roo.DomQuery.select(this.headerSelector)[index];
62704     },
62705
62706     getHeaderCellMeasure : function(index){
62707         return this.getHeaderCell(index).firstChild;
62708     },
62709
62710     getHeaderCellText : function(index){
62711         return this.getHeaderCell(index).firstChild.firstChild;
62712     },
62713
62714     getLockedTable : function(){
62715         return this.lockedBody.dom.firstChild;
62716     },
62717
62718     getBodyTable : function(){
62719         return this.mainBody.dom.firstChild;
62720     },
62721
62722     getLockedRow : function(index){
62723         return this.getLockedTable().rows[index];
62724     },
62725
62726     getRow : function(index){
62727         return this.getBodyTable().rows[index];
62728     },
62729
62730     getRowComposite : function(index){
62731         if(!this.rowEl){
62732             this.rowEl = new Roo.CompositeElementLite();
62733         }
62734         var els = [], lrow, mrow;
62735         if(lrow = this.getLockedRow(index)){
62736             els.push(lrow);
62737         }
62738         if(mrow = this.getRow(index)){
62739             els.push(mrow);
62740         }
62741         this.rowEl.elements = els;
62742         return this.rowEl;
62743     },
62744     /**
62745      * Gets the 'td' of the cell
62746      * 
62747      * @param {Integer} rowIndex row to select
62748      * @param {Integer} colIndex column to select
62749      * 
62750      * @return {Object} 
62751      */
62752     getCell : function(rowIndex, colIndex){
62753         var locked = this.cm.getLockedCount();
62754         var source;
62755         if(colIndex < locked){
62756             source = this.lockedBody.dom.firstChild;
62757         }else{
62758             source = this.mainBody.dom.firstChild;
62759             colIndex -= locked;
62760         }
62761         return source.rows[rowIndex].childNodes[colIndex];
62762     },
62763
62764     getCellText : function(rowIndex, colIndex){
62765         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
62766     },
62767
62768     getCellBox : function(cell){
62769         var b = this.fly(cell).getBox();
62770         if(Roo.isOpera){ // opera fails to report the Y
62771             b.y = cell.offsetTop + this.mainBody.getY();
62772         }
62773         return b;
62774     },
62775
62776     getCellIndex : function(cell){
62777         var id = String(cell.className).match(this.cellRE);
62778         if(id){
62779             return parseInt(id[1], 10);
62780         }
62781         return 0;
62782     },
62783
62784     findHeaderIndex : function(n){
62785         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
62786         return r ? this.getCellIndex(r) : false;
62787     },
62788
62789     findHeaderCell : function(n){
62790         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
62791         return r ? r : false;
62792     },
62793
62794     findRowIndex : function(n){
62795         if(!n){
62796             return false;
62797         }
62798         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
62799         return r ? r.rowIndex : false;
62800     },
62801
62802     findCellIndex : function(node){
62803         var stop = this.el.dom;
62804         while(node && node != stop){
62805             if(this.findRE.test(node.className)){
62806                 return this.getCellIndex(node);
62807             }
62808             node = node.parentNode;
62809         }
62810         return false;
62811     },
62812
62813     getColumnId : function(index){
62814         return this.cm.getColumnId(index);
62815     },
62816
62817     getSplitters : function()
62818     {
62819         if(this.splitterSelector){
62820            return Roo.DomQuery.select(this.splitterSelector);
62821         }else{
62822             return null;
62823       }
62824     },
62825
62826     getSplitter : function(index){
62827         return this.getSplitters()[index];
62828     },
62829
62830     onRowOver : function(e, t){
62831         var row;
62832         if((row = this.findRowIndex(t)) !== false){
62833             this.getRowComposite(row).addClass("x-grid-row-over");
62834         }
62835     },
62836
62837     onRowOut : function(e, t){
62838         var row;
62839         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
62840             this.getRowComposite(row).removeClass("x-grid-row-over");
62841         }
62842     },
62843
62844     renderHeaders : function(){
62845         var cm = this.cm;
62846         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
62847         var cb = [], lb = [], sb = [], lsb = [], p = {};
62848         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62849             p.cellId = "x-grid-hd-0-" + i;
62850             p.splitId = "x-grid-csplit-0-" + i;
62851             p.id = cm.getColumnId(i);
62852             p.value = cm.getColumnHeader(i) || "";
62853             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
62854             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
62855             if(!cm.isLocked(i)){
62856                 cb[cb.length] = ct.apply(p);
62857                 sb[sb.length] = st.apply(p);
62858             }else{
62859                 lb[lb.length] = ct.apply(p);
62860                 lsb[lsb.length] = st.apply(p);
62861             }
62862         }
62863         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
62864                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
62865     },
62866
62867     updateHeaders : function(){
62868         var html = this.renderHeaders();
62869         this.lockedHd.update(html[0]);
62870         this.mainHd.update(html[1]);
62871     },
62872
62873     /**
62874      * Focuses the specified row.
62875      * @param {Number} row The row index
62876      */
62877     focusRow : function(row)
62878     {
62879         //Roo.log('GridView.focusRow');
62880         var x = this.scroller.dom.scrollLeft;
62881         this.focusCell(row, 0, false);
62882         this.scroller.dom.scrollLeft = x;
62883     },
62884
62885     /**
62886      * Focuses the specified cell.
62887      * @param {Number} row The row index
62888      * @param {Number} col The column index
62889      * @param {Boolean} hscroll false to disable horizontal scrolling
62890      */
62891     focusCell : function(row, col, hscroll)
62892     {
62893         //Roo.log('GridView.focusCell');
62894         var el = this.ensureVisible(row, col, hscroll);
62895         this.focusEl.alignTo(el, "tl-tl");
62896         if(Roo.isGecko){
62897             this.focusEl.focus();
62898         }else{
62899             this.focusEl.focus.defer(1, this.focusEl);
62900         }
62901     },
62902
62903     /**
62904      * Scrolls the specified cell into view
62905      * @param {Number} row The row index
62906      * @param {Number} col The column index
62907      * @param {Boolean} hscroll false to disable horizontal scrolling
62908      */
62909     ensureVisible : function(row, col, hscroll)
62910     {
62911         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
62912         //return null; //disable for testing.
62913         if(typeof row != "number"){
62914             row = row.rowIndex;
62915         }
62916         if(row < 0 && row >= this.ds.getCount()){
62917             return  null;
62918         }
62919         col = (col !== undefined ? col : 0);
62920         var cm = this.grid.colModel;
62921         while(cm.isHidden(col)){
62922             col++;
62923         }
62924
62925         var el = this.getCell(row, col);
62926         if(!el){
62927             return null;
62928         }
62929         var c = this.scroller.dom;
62930
62931         var ctop = parseInt(el.offsetTop, 10);
62932         var cleft = parseInt(el.offsetLeft, 10);
62933         var cbot = ctop + el.offsetHeight;
62934         var cright = cleft + el.offsetWidth;
62935         
62936         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
62937         var stop = parseInt(c.scrollTop, 10);
62938         var sleft = parseInt(c.scrollLeft, 10);
62939         var sbot = stop + ch;
62940         var sright = sleft + c.clientWidth;
62941         /*
62942         Roo.log('GridView.ensureVisible:' +
62943                 ' ctop:' + ctop +
62944                 ' c.clientHeight:' + c.clientHeight +
62945                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
62946                 ' stop:' + stop +
62947                 ' cbot:' + cbot +
62948                 ' sbot:' + sbot +
62949                 ' ch:' + ch  
62950                 );
62951         */
62952         if(ctop < stop){
62953             c.scrollTop = ctop;
62954             //Roo.log("set scrolltop to ctop DISABLE?");
62955         }else if(cbot > sbot){
62956             //Roo.log("set scrolltop to cbot-ch");
62957             c.scrollTop = cbot-ch;
62958         }
62959         
62960         if(hscroll !== false){
62961             if(cleft < sleft){
62962                 c.scrollLeft = cleft;
62963             }else if(cright > sright){
62964                 c.scrollLeft = cright-c.clientWidth;
62965             }
62966         }
62967          
62968         return el;
62969     },
62970
62971     updateColumns : function(){
62972         this.grid.stopEditing();
62973         var cm = this.grid.colModel, colIds = this.getColumnIds();
62974         //var totalWidth = cm.getTotalWidth();
62975         var pos = 0;
62976         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62977             //if(cm.isHidden(i)) continue;
62978             var w = cm.getColumnWidth(i);
62979             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
62980             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
62981         }
62982         this.updateSplitters();
62983     },
62984
62985     generateRules : function(cm){
62986         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
62987         Roo.util.CSS.removeStyleSheet(rulesId);
62988         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62989             var cid = cm.getColumnId(i);
62990             var align = '';
62991             if(cm.config[i].align){
62992                 align = 'text-align:'+cm.config[i].align+';';
62993             }
62994             var hidden = '';
62995             if(cm.isHidden(i)){
62996                 hidden = 'display:none;';
62997             }
62998             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
62999             ruleBuf.push(
63000                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
63001                     this.hdSelector, cid, " {\n", align, width, "}\n",
63002                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
63003                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
63004         }
63005         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
63006     },
63007
63008     updateSplitters : function(){
63009         var cm = this.cm, s = this.getSplitters();
63010         if(s){ // splitters not created yet
63011             var pos = 0, locked = true;
63012             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63013                 if(cm.isHidden(i)) {
63014                     continue;
63015                 }
63016                 var w = cm.getColumnWidth(i); // make sure it's a number
63017                 if(!cm.isLocked(i) && locked){
63018                     pos = 0;
63019                     locked = false;
63020                 }
63021                 pos += w;
63022                 s[i].style.left = (pos-this.splitOffset) + "px";
63023             }
63024         }
63025     },
63026
63027     handleHiddenChange : function(colModel, colIndex, hidden){
63028         if(hidden){
63029             this.hideColumn(colIndex);
63030         }else{
63031             this.unhideColumn(colIndex);
63032         }
63033     },
63034
63035     hideColumn : function(colIndex){
63036         var cid = this.getColumnId(colIndex);
63037         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
63038         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
63039         if(Roo.isSafari){
63040             this.updateHeaders();
63041         }
63042         this.updateSplitters();
63043         this.layout();
63044     },
63045
63046     unhideColumn : function(colIndex){
63047         var cid = this.getColumnId(colIndex);
63048         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
63049         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
63050
63051         if(Roo.isSafari){
63052             this.updateHeaders();
63053         }
63054         this.updateSplitters();
63055         this.layout();
63056     },
63057
63058     insertRows : function(dm, firstRow, lastRow, isUpdate){
63059         if(firstRow == 0 && lastRow == dm.getCount()-1){
63060             this.refresh();
63061         }else{
63062             if(!isUpdate){
63063                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
63064             }
63065             var s = this.getScrollState();
63066             var markup = this.renderRows(firstRow, lastRow);
63067             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
63068             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
63069             this.restoreScroll(s);
63070             if(!isUpdate){
63071                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
63072                 this.syncRowHeights(firstRow, lastRow);
63073                 this.stripeRows(firstRow);
63074                 this.layout();
63075             }
63076         }
63077     },
63078
63079     bufferRows : function(markup, target, index){
63080         var before = null, trows = target.rows, tbody = target.tBodies[0];
63081         if(index < trows.length){
63082             before = trows[index];
63083         }
63084         var b = document.createElement("div");
63085         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
63086         var rows = b.firstChild.rows;
63087         for(var i = 0, len = rows.length; i < len; i++){
63088             if(before){
63089                 tbody.insertBefore(rows[0], before);
63090             }else{
63091                 tbody.appendChild(rows[0]);
63092             }
63093         }
63094         b.innerHTML = "";
63095         b = null;
63096     },
63097
63098     deleteRows : function(dm, firstRow, lastRow){
63099         if(dm.getRowCount()<1){
63100             this.fireEvent("beforerefresh", this);
63101             this.mainBody.update("");
63102             this.lockedBody.update("");
63103             this.fireEvent("refresh", this);
63104         }else{
63105             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
63106             var bt = this.getBodyTable();
63107             var tbody = bt.firstChild;
63108             var rows = bt.rows;
63109             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
63110                 tbody.removeChild(rows[firstRow]);
63111             }
63112             this.stripeRows(firstRow);
63113             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
63114         }
63115     },
63116
63117     updateRows : function(dataSource, firstRow, lastRow){
63118         var s = this.getScrollState();
63119         this.refresh();
63120         this.restoreScroll(s);
63121     },
63122
63123     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
63124         if(!noRefresh){
63125            this.refresh();
63126         }
63127         this.updateHeaderSortState();
63128     },
63129
63130     getScrollState : function(){
63131         
63132         var sb = this.scroller.dom;
63133         return {left: sb.scrollLeft, top: sb.scrollTop};
63134     },
63135
63136     stripeRows : function(startRow){
63137         if(!this.grid.stripeRows || this.ds.getCount() < 1){
63138             return;
63139         }
63140         startRow = startRow || 0;
63141         var rows = this.getBodyTable().rows;
63142         var lrows = this.getLockedTable().rows;
63143         var cls = ' x-grid-row-alt ';
63144         for(var i = startRow, len = rows.length; i < len; i++){
63145             var row = rows[i], lrow = lrows[i];
63146             var isAlt = ((i+1) % 2 == 0);
63147             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
63148             if(isAlt == hasAlt){
63149                 continue;
63150             }
63151             if(isAlt){
63152                 row.className += " x-grid-row-alt";
63153             }else{
63154                 row.className = row.className.replace("x-grid-row-alt", "");
63155             }
63156             if(lrow){
63157                 lrow.className = row.className;
63158             }
63159         }
63160     },
63161
63162     restoreScroll : function(state){
63163         //Roo.log('GridView.restoreScroll');
63164         var sb = this.scroller.dom;
63165         sb.scrollLeft = state.left;
63166         sb.scrollTop = state.top;
63167         this.syncScroll();
63168     },
63169
63170     syncScroll : function(){
63171         //Roo.log('GridView.syncScroll');
63172         var sb = this.scroller.dom;
63173         var sh = this.mainHd.dom;
63174         var bs = this.mainBody.dom;
63175         var lv = this.lockedBody.dom;
63176         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
63177         lv.scrollTop = bs.scrollTop = sb.scrollTop;
63178     },
63179
63180     handleScroll : function(e){
63181         this.syncScroll();
63182         var sb = this.scroller.dom;
63183         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
63184         e.stopEvent();
63185     },
63186
63187     handleWheel : function(e){
63188         var d = e.getWheelDelta();
63189         this.scroller.dom.scrollTop -= d*22;
63190         // set this here to prevent jumpy scrolling on large tables
63191         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
63192         e.stopEvent();
63193     },
63194
63195     renderRows : function(startRow, endRow){
63196         // pull in all the crap needed to render rows
63197         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
63198         var colCount = cm.getColumnCount();
63199
63200         if(ds.getCount() < 1){
63201             return ["", ""];
63202         }
63203
63204         // build a map for all the columns
63205         var cs = [];
63206         for(var i = 0; i < colCount; i++){
63207             var name = cm.getDataIndex(i);
63208             cs[i] = {
63209                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
63210                 renderer : cm.getRenderer(i),
63211                 id : cm.getColumnId(i),
63212                 locked : cm.isLocked(i),
63213                 has_editor : cm.isCellEditable(i)
63214             };
63215         }
63216
63217         startRow = startRow || 0;
63218         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
63219
63220         // records to render
63221         var rs = ds.getRange(startRow, endRow);
63222
63223         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
63224     },
63225
63226     // As much as I hate to duplicate code, this was branched because FireFox really hates
63227     // [].join("") on strings. The performance difference was substantial enough to
63228     // branch this function
63229     doRender : Roo.isGecko ?
63230             function(cs, rs, ds, startRow, colCount, stripe){
63231                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63232                 // buffers
63233                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63234                 
63235                 var hasListener = this.grid.hasListener('rowclass');
63236                 var rowcfg = {};
63237                 for(var j = 0, len = rs.length; j < len; j++){
63238                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
63239                     for(var i = 0; i < colCount; i++){
63240                         c = cs[i];
63241                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63242                         p.id = c.id;
63243                         p.css = p.attr = "";
63244                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63245                         if(p.value == undefined || p.value === "") {
63246                             p.value = "&#160;";
63247                         }
63248                         if(c.has_editor){
63249                             p.css += ' x-grid-editable-cell';
63250                         }
63251                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
63252                             p.css +=  ' x-grid-dirty-cell';
63253                         }
63254                         var markup = ct.apply(p);
63255                         if(!c.locked){
63256                             cb+= markup;
63257                         }else{
63258                             lcb+= markup;
63259                         }
63260                     }
63261                     var alt = [];
63262                     if(stripe && ((rowIndex+1) % 2 == 0)){
63263                         alt.push("x-grid-row-alt")
63264                     }
63265                     if(r.dirty){
63266                         alt.push(  " x-grid-dirty-row");
63267                     }
63268                     rp.cells = lcb;
63269                     if(this.getRowClass){
63270                         alt.push(this.getRowClass(r, rowIndex));
63271                     }
63272                     if (hasListener) {
63273                         rowcfg = {
63274                              
63275                             record: r,
63276                             rowIndex : rowIndex,
63277                             rowClass : ''
63278                         };
63279                         this.grid.fireEvent('rowclass', this, rowcfg);
63280                         alt.push(rowcfg.rowClass);
63281                     }
63282                     rp.alt = alt.join(" ");
63283                     lbuf+= rt.apply(rp);
63284                     rp.cells = cb;
63285                     buf+=  rt.apply(rp);
63286                 }
63287                 return [lbuf, buf];
63288             } :
63289             function(cs, rs, ds, startRow, colCount, stripe){
63290                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63291                 // buffers
63292                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63293                 var hasListener = this.grid.hasListener('rowclass');
63294  
63295                 var rowcfg = {};
63296                 for(var j = 0, len = rs.length; j < len; j++){
63297                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
63298                     for(var i = 0; i < colCount; i++){
63299                         c = cs[i];
63300                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63301                         p.id = c.id;
63302                         p.css = p.attr = "";
63303                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63304                         if(p.value == undefined || p.value === "") {
63305                             p.value = "&#160;";
63306                         }
63307                         //Roo.log(c);
63308                          if(c.has_editor){
63309                             p.css += ' x-grid-editable-cell';
63310                         }
63311                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
63312                             p.css += ' x-grid-dirty-cell' 
63313                         }
63314                         
63315                         var markup = ct.apply(p);
63316                         if(!c.locked){
63317                             cb[cb.length] = markup;
63318                         }else{
63319                             lcb[lcb.length] = markup;
63320                         }
63321                     }
63322                     var alt = [];
63323                     if(stripe && ((rowIndex+1) % 2 == 0)){
63324                         alt.push( "x-grid-row-alt");
63325                     }
63326                     if(r.dirty){
63327                         alt.push(" x-grid-dirty-row");
63328                     }
63329                     rp.cells = lcb;
63330                     if(this.getRowClass){
63331                         alt.push( this.getRowClass(r, rowIndex));
63332                     }
63333                     if (hasListener) {
63334                         rowcfg = {
63335                              
63336                             record: r,
63337                             rowIndex : rowIndex,
63338                             rowClass : ''
63339                         };
63340                         this.grid.fireEvent('rowclass', this, rowcfg);
63341                         alt.push(rowcfg.rowClass);
63342                     }
63343                     
63344                     rp.alt = alt.join(" ");
63345                     rp.cells = lcb.join("");
63346                     lbuf[lbuf.length] = rt.apply(rp);
63347                     rp.cells = cb.join("");
63348                     buf[buf.length] =  rt.apply(rp);
63349                 }
63350                 return [lbuf.join(""), buf.join("")];
63351             },
63352
63353     renderBody : function(){
63354         var markup = this.renderRows();
63355         var bt = this.templates.body;
63356         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
63357     },
63358
63359     /**
63360      * Refreshes the grid
63361      * @param {Boolean} headersToo
63362      */
63363     refresh : function(headersToo){
63364         this.fireEvent("beforerefresh", this);
63365         this.grid.stopEditing();
63366         var result = this.renderBody();
63367         this.lockedBody.update(result[0]);
63368         this.mainBody.update(result[1]);
63369         if(headersToo === true){
63370             this.updateHeaders();
63371             this.updateColumns();
63372             this.updateSplitters();
63373             this.updateHeaderSortState();
63374         }
63375         this.syncRowHeights();
63376         this.layout();
63377         this.fireEvent("refresh", this);
63378     },
63379
63380     handleColumnMove : function(cm, oldIndex, newIndex){
63381         this.indexMap = null;
63382         var s = this.getScrollState();
63383         this.refresh(true);
63384         this.restoreScroll(s);
63385         this.afterMove(newIndex);
63386     },
63387
63388     afterMove : function(colIndex){
63389         if(this.enableMoveAnim && Roo.enableFx){
63390             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
63391         }
63392         // if multisort - fix sortOrder, and reload..
63393         if (this.grid.dataSource.multiSort) {
63394             // the we can call sort again..
63395             var dm = this.grid.dataSource;
63396             var cm = this.grid.colModel;
63397             var so = [];
63398             for(var i = 0; i < cm.config.length; i++ ) {
63399                 
63400                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
63401                     continue; // dont' bother, it's not in sort list or being set.
63402                 }
63403                 
63404                 so.push(cm.config[i].dataIndex);
63405             };
63406             dm.sortOrder = so;
63407             dm.load(dm.lastOptions);
63408             
63409             
63410         }
63411         
63412     },
63413
63414     updateCell : function(dm, rowIndex, dataIndex){
63415         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
63416         if(typeof colIndex == "undefined"){ // not present in grid
63417             return;
63418         }
63419         var cm = this.grid.colModel;
63420         var cell = this.getCell(rowIndex, colIndex);
63421         var cellText = this.getCellText(rowIndex, colIndex);
63422
63423         var p = {
63424             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
63425             id : cm.getColumnId(colIndex),
63426             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
63427         };
63428         var renderer = cm.getRenderer(colIndex);
63429         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
63430         if(typeof val == "undefined" || val === "") {
63431             val = "&#160;";
63432         }
63433         cellText.innerHTML = val;
63434         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
63435         this.syncRowHeights(rowIndex, rowIndex);
63436     },
63437
63438     calcColumnWidth : function(colIndex, maxRowsToMeasure){
63439         var maxWidth = 0;
63440         if(this.grid.autoSizeHeaders){
63441             var h = this.getHeaderCellMeasure(colIndex);
63442             maxWidth = Math.max(maxWidth, h.scrollWidth);
63443         }
63444         var tb, index;
63445         if(this.cm.isLocked(colIndex)){
63446             tb = this.getLockedTable();
63447             index = colIndex;
63448         }else{
63449             tb = this.getBodyTable();
63450             index = colIndex - this.cm.getLockedCount();
63451         }
63452         if(tb && tb.rows){
63453             var rows = tb.rows;
63454             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
63455             for(var i = 0; i < stopIndex; i++){
63456                 var cell = rows[i].childNodes[index].firstChild;
63457                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
63458             }
63459         }
63460         return maxWidth + /*margin for error in IE*/ 5;
63461     },
63462     /**
63463      * Autofit a column to its content.
63464      * @param {Number} colIndex
63465      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
63466      */
63467      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
63468          if(this.cm.isHidden(colIndex)){
63469              return; // can't calc a hidden column
63470          }
63471         if(forceMinSize){
63472             var cid = this.cm.getColumnId(colIndex);
63473             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
63474            if(this.grid.autoSizeHeaders){
63475                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
63476            }
63477         }
63478         var newWidth = this.calcColumnWidth(colIndex);
63479         this.cm.setColumnWidth(colIndex,
63480             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
63481         if(!suppressEvent){
63482             this.grid.fireEvent("columnresize", colIndex, newWidth);
63483         }
63484     },
63485
63486     /**
63487      * Autofits all columns to their content and then expands to fit any extra space in the grid
63488      */
63489      autoSizeColumns : function(){
63490         var cm = this.grid.colModel;
63491         var colCount = cm.getColumnCount();
63492         for(var i = 0; i < colCount; i++){
63493             this.autoSizeColumn(i, true, true);
63494         }
63495         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
63496             this.fitColumns();
63497         }else{
63498             this.updateColumns();
63499             this.layout();
63500         }
63501     },
63502
63503     /**
63504      * Autofits all columns to the grid's width proportionate with their current size
63505      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
63506      */
63507     fitColumns : function(reserveScrollSpace){
63508         var cm = this.grid.colModel;
63509         var colCount = cm.getColumnCount();
63510         var cols = [];
63511         var width = 0;
63512         var i, w;
63513         for (i = 0; i < colCount; i++){
63514             if(!cm.isHidden(i) && !cm.isFixed(i)){
63515                 w = cm.getColumnWidth(i);
63516                 cols.push(i);
63517                 cols.push(w);
63518                 width += w;
63519             }
63520         }
63521         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
63522         if(reserveScrollSpace){
63523             avail -= 17;
63524         }
63525         var frac = (avail - cm.getTotalWidth())/width;
63526         while (cols.length){
63527             w = cols.pop();
63528             i = cols.pop();
63529             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
63530         }
63531         this.updateColumns();
63532         this.layout();
63533     },
63534
63535     onRowSelect : function(rowIndex){
63536         var row = this.getRowComposite(rowIndex);
63537         row.addClass("x-grid-row-selected");
63538     },
63539
63540     onRowDeselect : function(rowIndex){
63541         var row = this.getRowComposite(rowIndex);
63542         row.removeClass("x-grid-row-selected");
63543     },
63544
63545     onCellSelect : function(row, col){
63546         var cell = this.getCell(row, col);
63547         if(cell){
63548             Roo.fly(cell).addClass("x-grid-cell-selected");
63549         }
63550     },
63551
63552     onCellDeselect : function(row, col){
63553         var cell = this.getCell(row, col);
63554         if(cell){
63555             Roo.fly(cell).removeClass("x-grid-cell-selected");
63556         }
63557     },
63558
63559     updateHeaderSortState : function(){
63560         
63561         // sort state can be single { field: xxx, direction : yyy}
63562         // or   { xxx=>ASC , yyy : DESC ..... }
63563         
63564         var mstate = {};
63565         if (!this.ds.multiSort) { 
63566             var state = this.ds.getSortState();
63567             if(!state){
63568                 return;
63569             }
63570             mstate[state.field] = state.direction;
63571             // FIXME... - this is not used here.. but might be elsewhere..
63572             this.sortState = state;
63573             
63574         } else {
63575             mstate = this.ds.sortToggle;
63576         }
63577         //remove existing sort classes..
63578         
63579         var sc = this.sortClasses;
63580         var hds = this.el.select(this.headerSelector).removeClass(sc);
63581         
63582         for(var f in mstate) {
63583         
63584             var sortColumn = this.cm.findColumnIndex(f);
63585             
63586             if(sortColumn != -1){
63587                 var sortDir = mstate[f];        
63588                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
63589             }
63590         }
63591         
63592          
63593         
63594     },
63595
63596
63597     handleHeaderClick : function(g, index,e){
63598         
63599         Roo.log("header click");
63600         
63601         if (Roo.isTouch) {
63602             // touch events on header are handled by context
63603             this.handleHdCtx(g,index,e);
63604             return;
63605         }
63606         
63607         
63608         if(this.headersDisabled){
63609             return;
63610         }
63611         var dm = g.dataSource, cm = g.colModel;
63612         if(!cm.isSortable(index)){
63613             return;
63614         }
63615         g.stopEditing();
63616         
63617         if (dm.multiSort) {
63618             // update the sortOrder
63619             var so = [];
63620             for(var i = 0; i < cm.config.length; i++ ) {
63621                 
63622                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
63623                     continue; // dont' bother, it's not in sort list or being set.
63624                 }
63625                 
63626                 so.push(cm.config[i].dataIndex);
63627             };
63628             dm.sortOrder = so;
63629         }
63630         
63631         
63632         dm.sort(cm.getDataIndex(index));
63633     },
63634
63635
63636     destroy : function(){
63637         if(this.colMenu){
63638             this.colMenu.removeAll();
63639             Roo.menu.MenuMgr.unregister(this.colMenu);
63640             this.colMenu.getEl().remove();
63641             delete this.colMenu;
63642         }
63643         if(this.hmenu){
63644             this.hmenu.removeAll();
63645             Roo.menu.MenuMgr.unregister(this.hmenu);
63646             this.hmenu.getEl().remove();
63647             delete this.hmenu;
63648         }
63649         if(this.grid.enableColumnMove){
63650             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63651             if(dds){
63652                 for(var dd in dds){
63653                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
63654                         var elid = dds[dd].dragElId;
63655                         dds[dd].unreg();
63656                         Roo.get(elid).remove();
63657                     } else if(dds[dd].config.isTarget){
63658                         dds[dd].proxyTop.remove();
63659                         dds[dd].proxyBottom.remove();
63660                         dds[dd].unreg();
63661                     }
63662                     if(Roo.dd.DDM.locationCache[dd]){
63663                         delete Roo.dd.DDM.locationCache[dd];
63664                     }
63665                 }
63666                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63667             }
63668         }
63669         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
63670         this.bind(null, null);
63671         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
63672     },
63673
63674     handleLockChange : function(){
63675         this.refresh(true);
63676     },
63677
63678     onDenyColumnLock : function(){
63679
63680     },
63681
63682     onDenyColumnHide : function(){
63683
63684     },
63685
63686     handleHdMenuClick : function(item){
63687         var index = this.hdCtxIndex;
63688         var cm = this.cm, ds = this.ds;
63689         switch(item.id){
63690             case "asc":
63691                 ds.sort(cm.getDataIndex(index), "ASC");
63692                 break;
63693             case "desc":
63694                 ds.sort(cm.getDataIndex(index), "DESC");
63695                 break;
63696             case "lock":
63697                 var lc = cm.getLockedCount();
63698                 if(cm.getColumnCount(true) <= lc+1){
63699                     this.onDenyColumnLock();
63700                     return;
63701                 }
63702                 if(lc != index){
63703                     cm.setLocked(index, true, true);
63704                     cm.moveColumn(index, lc);
63705                     this.grid.fireEvent("columnmove", index, lc);
63706                 }else{
63707                     cm.setLocked(index, true);
63708                 }
63709             break;
63710             case "unlock":
63711                 var lc = cm.getLockedCount();
63712                 if((lc-1) != index){
63713                     cm.setLocked(index, false, true);
63714                     cm.moveColumn(index, lc-1);
63715                     this.grid.fireEvent("columnmove", index, lc-1);
63716                 }else{
63717                     cm.setLocked(index, false);
63718                 }
63719             break;
63720             case 'wider': // used to expand cols on touch..
63721             case 'narrow':
63722                 var cw = cm.getColumnWidth(index);
63723                 cw += (item.id == 'wider' ? 1 : -1) * 50;
63724                 cw = Math.max(0, cw);
63725                 cw = Math.min(cw,4000);
63726                 cm.setColumnWidth(index, cw);
63727                 break;
63728                 
63729             default:
63730                 index = cm.getIndexById(item.id.substr(4));
63731                 if(index != -1){
63732                     if(item.checked && cm.getColumnCount(true) <= 1){
63733                         this.onDenyColumnHide();
63734                         return false;
63735                     }
63736                     cm.setHidden(index, item.checked);
63737                 }
63738         }
63739         return true;
63740     },
63741
63742     beforeColMenuShow : function(){
63743         var cm = this.cm,  colCount = cm.getColumnCount();
63744         this.colMenu.removeAll();
63745         
63746         var items = [];
63747         for(var i = 0; i < colCount; i++){
63748             items.push({
63749                 id: "col-"+cm.getColumnId(i),
63750                 text: cm.getColumnHeader(i),
63751                 checked: !cm.isHidden(i),
63752                 hideOnClick:false
63753             });
63754         }
63755         
63756         if (this.grid.sortColMenu) {
63757             items.sort(function(a,b) {
63758                 if (a.text == b.text) {
63759                     return 0;
63760                 }
63761                 return a.text.toUpperCase() > b.text.toUpperCase() ? 1 : -1;
63762             });
63763         }
63764         
63765         for(var i = 0; i < colCount; i++){
63766             this.colMenu.add(new Roo.menu.CheckItem(items[i]));
63767         }
63768     },
63769
63770     handleHdCtx : function(g, index, e){
63771         e.stopEvent();
63772         var hd = this.getHeaderCell(index);
63773         this.hdCtxIndex = index;
63774         var ms = this.hmenu.items, cm = this.cm;
63775         ms.get("asc").setDisabled(!cm.isSortable(index));
63776         ms.get("desc").setDisabled(!cm.isSortable(index));
63777         if(this.grid.enableColLock !== false){
63778             ms.get("lock").setDisabled(cm.isLocked(index));
63779             ms.get("unlock").setDisabled(!cm.isLocked(index));
63780         }
63781         this.hmenu.show(hd, "tl-bl");
63782     },
63783
63784     handleHdOver : function(e){
63785         var hd = this.findHeaderCell(e.getTarget());
63786         if(hd && !this.headersDisabled){
63787             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
63788                this.fly(hd).addClass("x-grid-hd-over");
63789             }
63790         }
63791     },
63792
63793     handleHdOut : function(e){
63794         var hd = this.findHeaderCell(e.getTarget());
63795         if(hd){
63796             this.fly(hd).removeClass("x-grid-hd-over");
63797         }
63798     },
63799
63800     handleSplitDblClick : function(e, t){
63801         var i = this.getCellIndex(t);
63802         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
63803             this.autoSizeColumn(i, true);
63804             this.layout();
63805         }
63806     },
63807
63808     render : function(){
63809
63810         var cm = this.cm;
63811         var colCount = cm.getColumnCount();
63812
63813         if(this.grid.monitorWindowResize === true){
63814             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
63815         }
63816         var header = this.renderHeaders();
63817         var body = this.templates.body.apply({rows:""});
63818         var html = this.templates.master.apply({
63819             lockedBody: body,
63820             body: body,
63821             lockedHeader: header[0],
63822             header: header[1]
63823         });
63824
63825         //this.updateColumns();
63826
63827         this.grid.getGridEl().dom.innerHTML = html;
63828
63829         this.initElements();
63830         
63831         // a kludge to fix the random scolling effect in webkit
63832         this.el.on("scroll", function() {
63833             this.el.dom.scrollTop=0; // hopefully not recursive..
63834         },this);
63835
63836         this.scroller.on("scroll", this.handleScroll, this);
63837         this.lockedBody.on("mousewheel", this.handleWheel, this);
63838         this.mainBody.on("mousewheel", this.handleWheel, this);
63839
63840         this.mainHd.on("mouseover", this.handleHdOver, this);
63841         this.mainHd.on("mouseout", this.handleHdOut, this);
63842         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
63843                 {delegate: "."+this.splitClass});
63844
63845         this.lockedHd.on("mouseover", this.handleHdOver, this);
63846         this.lockedHd.on("mouseout", this.handleHdOut, this);
63847         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
63848                 {delegate: "."+this.splitClass});
63849
63850         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
63851             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
63852         }
63853
63854         this.updateSplitters();
63855
63856         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
63857             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
63858             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
63859         }
63860
63861         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
63862             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
63863             this.hmenu.add(
63864                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
63865                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
63866             );
63867             if(this.grid.enableColLock !== false){
63868                 this.hmenu.add('-',
63869                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
63870                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
63871                 );
63872             }
63873             if (Roo.isTouch) {
63874                  this.hmenu.add('-',
63875                     {id:"wider", text: this.columnsWiderText},
63876                     {id:"narrow", text: this.columnsNarrowText }
63877                 );
63878                 
63879                  
63880             }
63881             
63882             if(this.grid.enableColumnHide !== false){
63883
63884                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
63885                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
63886                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
63887
63888                 this.hmenu.add('-',
63889                     {id:"columns", text: this.columnsText, menu: this.colMenu}
63890                 );
63891             }
63892             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
63893
63894             this.grid.on("headercontextmenu", this.handleHdCtx, this);
63895         }
63896
63897         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
63898             this.dd = new Roo.grid.GridDragZone(this.grid, {
63899                 ddGroup : this.grid.ddGroup || 'GridDD'
63900             });
63901             
63902         }
63903
63904         /*
63905         for(var i = 0; i < colCount; i++){
63906             if(cm.isHidden(i)){
63907                 this.hideColumn(i);
63908             }
63909             if(cm.config[i].align){
63910                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
63911                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
63912             }
63913         }*/
63914         
63915         this.updateHeaderSortState();
63916
63917         this.beforeInitialResize();
63918         this.layout(true);
63919
63920         // two part rendering gives faster view to the user
63921         this.renderPhase2.defer(1, this);
63922     },
63923
63924     renderPhase2 : function(){
63925         // render the rows now
63926         this.refresh();
63927         if(this.grid.autoSizeColumns){
63928             this.autoSizeColumns();
63929         }
63930     },
63931
63932     beforeInitialResize : function(){
63933
63934     },
63935
63936     onColumnSplitterMoved : function(i, w){
63937         this.userResized = true;
63938         var cm = this.grid.colModel;
63939         cm.setColumnWidth(i, w, true);
63940         var cid = cm.getColumnId(i);
63941         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
63942         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
63943         this.updateSplitters();
63944         this.layout();
63945         this.grid.fireEvent("columnresize", i, w);
63946     },
63947
63948     syncRowHeights : function(startIndex, endIndex){
63949         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
63950             startIndex = startIndex || 0;
63951             var mrows = this.getBodyTable().rows;
63952             var lrows = this.getLockedTable().rows;
63953             var len = mrows.length-1;
63954             endIndex = Math.min(endIndex || len, len);
63955             for(var i = startIndex; i <= endIndex; i++){
63956                 var m = mrows[i], l = lrows[i];
63957                 var h = Math.max(m.offsetHeight, l.offsetHeight);
63958                 m.style.height = l.style.height = h + "px";
63959             }
63960         }
63961     },
63962
63963     layout : function(initialRender, is2ndPass)
63964     {
63965         var g = this.grid;
63966         var auto = g.autoHeight;
63967         var scrollOffset = 16;
63968         var c = g.getGridEl(), cm = this.cm,
63969                 expandCol = g.autoExpandColumn,
63970                 gv = this;
63971         //c.beginMeasure();
63972
63973         if(!c.dom.offsetWidth){ // display:none?
63974             if(initialRender){
63975                 this.lockedWrap.show();
63976                 this.mainWrap.show();
63977             }
63978             return;
63979         }
63980
63981         var hasLock = this.cm.isLocked(0);
63982
63983         var tbh = this.headerPanel.getHeight();
63984         var bbh = this.footerPanel.getHeight();
63985
63986         if(auto){
63987             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
63988             var newHeight = ch + c.getBorderWidth("tb");
63989             if(g.maxHeight){
63990                 newHeight = Math.min(g.maxHeight, newHeight);
63991             }
63992             c.setHeight(newHeight);
63993         }
63994
63995         if(g.autoWidth){
63996             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
63997         }
63998
63999         var s = this.scroller;
64000
64001         var csize = c.getSize(true);
64002
64003         this.el.setSize(csize.width, csize.height);
64004
64005         this.headerPanel.setWidth(csize.width);
64006         this.footerPanel.setWidth(csize.width);
64007
64008         var hdHeight = this.mainHd.getHeight();
64009         var vw = csize.width;
64010         var vh = csize.height - (tbh + bbh);
64011
64012         s.setSize(vw, vh);
64013
64014         var bt = this.getBodyTable();
64015         
64016         if(cm.getLockedCount() == cm.config.length){
64017             bt = this.getLockedTable();
64018         }
64019         
64020         var ltWidth = hasLock ?
64021                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
64022
64023         var scrollHeight = bt.offsetHeight;
64024         var scrollWidth = ltWidth + bt.offsetWidth;
64025         var vscroll = false, hscroll = false;
64026
64027         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
64028
64029         var lw = this.lockedWrap, mw = this.mainWrap;
64030         var lb = this.lockedBody, mb = this.mainBody;
64031
64032         setTimeout(function(){
64033             var t = s.dom.offsetTop;
64034             var w = s.dom.clientWidth,
64035                 h = s.dom.clientHeight;
64036
64037             lw.setTop(t);
64038             lw.setSize(ltWidth, h);
64039
64040             mw.setLeftTop(ltWidth, t);
64041             mw.setSize(w-ltWidth, h);
64042
64043             lb.setHeight(h-hdHeight);
64044             mb.setHeight(h-hdHeight);
64045
64046             if(is2ndPass !== true && !gv.userResized && expandCol){
64047                 // high speed resize without full column calculation
64048                 
64049                 var ci = cm.getIndexById(expandCol);
64050                 if (ci < 0) {
64051                     ci = cm.findColumnIndex(expandCol);
64052                 }
64053                 ci = Math.max(0, ci); // make sure it's got at least the first col.
64054                 var expandId = cm.getColumnId(ci);
64055                 var  tw = cm.getTotalWidth(false);
64056                 var currentWidth = cm.getColumnWidth(ci);
64057                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
64058                 if(currentWidth != cw){
64059                     cm.setColumnWidth(ci, cw, true);
64060                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64061                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64062                     gv.updateSplitters();
64063                     gv.layout(false, true);
64064                 }
64065             }
64066
64067             if(initialRender){
64068                 lw.show();
64069                 mw.show();
64070             }
64071             //c.endMeasure();
64072         }, 10);
64073     },
64074
64075     onWindowResize : function(){
64076         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
64077             return;
64078         }
64079         this.layout();
64080     },
64081
64082     appendFooter : function(parentEl){
64083         return null;
64084     },
64085
64086     sortAscText : "Sort Ascending",
64087     sortDescText : "Sort Descending",
64088     lockText : "Lock Column",
64089     unlockText : "Unlock Column",
64090     columnsText : "Columns",
64091  
64092     columnsWiderText : "Wider",
64093     columnsNarrowText : "Thinner"
64094 });
64095
64096
64097 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
64098     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
64099     this.proxy.el.addClass('x-grid3-col-dd');
64100 };
64101
64102 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
64103     handleMouseDown : function(e){
64104
64105     },
64106
64107     callHandleMouseDown : function(e){
64108         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
64109     }
64110 });
64111 /*
64112  * Based on:
64113  * Ext JS Library 1.1.1
64114  * Copyright(c) 2006-2007, Ext JS, LLC.
64115  *
64116  * Originally Released Under LGPL - original licence link has changed is not relivant.
64117  *
64118  * Fork - LGPL
64119  * <script type="text/javascript">
64120  */
64121  /**
64122  * @extends Roo.dd.DDProxy
64123  * @class Roo.grid.SplitDragZone
64124  * Support for Column Header resizing
64125  * @constructor
64126  * @param {Object} config
64127  */
64128 // private
64129 // This is a support class used internally by the Grid components
64130 Roo.grid.SplitDragZone = function(grid, hd, hd2){
64131     this.grid = grid;
64132     this.view = grid.getView();
64133     this.proxy = this.view.resizeProxy;
64134     Roo.grid.SplitDragZone.superclass.constructor.call(
64135         this,
64136         hd, // ID
64137         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
64138         {  // CONFIG
64139             dragElId : Roo.id(this.proxy.dom),
64140             resizeFrame:false
64141         }
64142     );
64143     
64144     this.setHandleElId(Roo.id(hd));
64145     if (hd2 !== false) {
64146         this.setOuterHandleElId(Roo.id(hd2));
64147     }
64148     
64149     this.scroll = false;
64150 };
64151 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
64152     fly: Roo.Element.fly,
64153
64154     b4StartDrag : function(x, y){
64155         this.view.headersDisabled = true;
64156         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
64157                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
64158         );
64159         this.proxy.setHeight(h);
64160         
64161         // for old system colWidth really stored the actual width?
64162         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
64163         // which in reality did not work.. - it worked only for fixed sizes
64164         // for resizable we need to use actual sizes.
64165         var w = this.cm.getColumnWidth(this.cellIndex);
64166         if (!this.view.mainWrap) {
64167             // bootstrap.
64168             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
64169         }
64170         
64171         
64172         
64173         // this was w-this.grid.minColumnWidth;
64174         // doesnt really make sense? - w = thie curren width or the rendered one?
64175         var minw = Math.max(w-this.grid.minColumnWidth, 0);
64176         this.resetConstraints();
64177         this.setXConstraint(minw, 1000);
64178         this.setYConstraint(0, 0);
64179         this.minX = x - minw;
64180         this.maxX = x + 1000;
64181         this.startPos = x;
64182         if (!this.view.mainWrap) { // this is Bootstrap code..
64183             this.getDragEl().style.display='block';
64184         }
64185         
64186         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
64187     },
64188
64189
64190     handleMouseDown : function(e){
64191         ev = Roo.EventObject.setEvent(e);
64192         var t = this.fly(ev.getTarget());
64193         if(t.hasClass("x-grid-split")){
64194             this.cellIndex = this.view.getCellIndex(t.dom);
64195             this.split = t.dom;
64196             this.cm = this.grid.colModel;
64197             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
64198                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
64199             }
64200         }
64201     },
64202
64203     endDrag : function(e){
64204         this.view.headersDisabled = false;
64205         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
64206         var diff = endX - this.startPos;
64207         // 
64208         var w = this.cm.getColumnWidth(this.cellIndex);
64209         if (!this.view.mainWrap) {
64210             w = 0;
64211         }
64212         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
64213     },
64214
64215     autoOffset : function(){
64216         this.setDelta(0,0);
64217     }
64218 });/*
64219  * Based on:
64220  * Ext JS Library 1.1.1
64221  * Copyright(c) 2006-2007, Ext JS, LLC.
64222  *
64223  * Originally Released Under LGPL - original licence link has changed is not relivant.
64224  *
64225  * Fork - LGPL
64226  * <script type="text/javascript">
64227  */
64228  
64229 // private
64230 // This is a support class used internally by the Grid components
64231 Roo.grid.GridDragZone = function(grid, config){
64232     this.view = grid.getView();
64233     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
64234     if(this.view.lockedBody){
64235         this.setHandleElId(Roo.id(this.view.mainBody.dom));
64236         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
64237     }
64238     this.scroll = false;
64239     this.grid = grid;
64240     this.ddel = document.createElement('div');
64241     this.ddel.className = 'x-grid-dd-wrap';
64242 };
64243
64244 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
64245     ddGroup : "GridDD",
64246
64247     getDragData : function(e){
64248         var t = Roo.lib.Event.getTarget(e);
64249         var rowIndex = this.view.findRowIndex(t);
64250         var sm = this.grid.selModel;
64251             
64252         //Roo.log(rowIndex);
64253         
64254         if (sm.getSelectedCell) {
64255             // cell selection..
64256             if (!sm.getSelectedCell()) {
64257                 return false;
64258             }
64259             if (rowIndex != sm.getSelectedCell()[0]) {
64260                 return false;
64261             }
64262         
64263         }
64264         if (sm.getSelections && sm.getSelections().length < 1) {
64265             return false;
64266         }
64267         
64268         
64269         // before it used to all dragging of unseleted... - now we dont do that.
64270         if(rowIndex !== false){
64271             
64272             // if editorgrid.. 
64273             
64274             
64275             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
64276                
64277             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
64278               //  
64279             //}
64280             if (e.hasModifier()){
64281                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
64282             }
64283             
64284             Roo.log("getDragData");
64285             
64286             return {
64287                 grid: this.grid,
64288                 ddel: this.ddel,
64289                 rowIndex: rowIndex,
64290                 selections: sm.getSelections ? sm.getSelections() : (
64291                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
64292             };
64293         }
64294         return false;
64295     },
64296     
64297     
64298     onInitDrag : function(e){
64299         var data = this.dragData;
64300         this.ddel.innerHTML = this.grid.getDragDropText();
64301         this.proxy.update(this.ddel);
64302         // fire start drag?
64303     },
64304
64305     afterRepair : function(){
64306         this.dragging = false;
64307     },
64308
64309     getRepairXY : function(e, data){
64310         return false;
64311     },
64312
64313     onEndDrag : function(data, e){
64314         // fire end drag?
64315     },
64316
64317     onValidDrop : function(dd, e, id){
64318         // fire drag drop?
64319         this.hideProxy();
64320     },
64321
64322     beforeInvalidDrop : function(e, id){
64323
64324     }
64325 });/*
64326  * Based on:
64327  * Ext JS Library 1.1.1
64328  * Copyright(c) 2006-2007, Ext JS, LLC.
64329  *
64330  * Originally Released Under LGPL - original licence link has changed is not relivant.
64331  *
64332  * Fork - LGPL
64333  * <script type="text/javascript">
64334  */
64335  
64336
64337 /**
64338  * @class Roo.grid.ColumnModel
64339  * @extends Roo.util.Observable
64340  * This is the default implementation of a ColumnModel used by the Grid. It defines
64341  * the columns in the grid.
64342  * <br>Usage:<br>
64343  <pre><code>
64344  var colModel = new Roo.grid.ColumnModel([
64345         {header: "Ticker", width: 60, sortable: true, locked: true},
64346         {header: "Company Name", width: 150, sortable: true},
64347         {header: "Market Cap.", width: 100, sortable: true},
64348         {header: "$ Sales", width: 100, sortable: true, renderer: money},
64349         {header: "Employees", width: 100, sortable: true, resizable: false}
64350  ]);
64351  </code></pre>
64352  * <p>
64353  
64354  * The config options listed for this class are options which may appear in each
64355  * individual column definition.
64356  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
64357  * @constructor
64358  * @param {Object} config An Array of column config objects. See this class's
64359  * config objects for details.
64360 */
64361 Roo.grid.ColumnModel = function(config){
64362         /**
64363      * The config passed into the constructor
64364      */
64365     this.config = []; //config;
64366     this.lookup = {};
64367
64368     // if no id, create one
64369     // if the column does not have a dataIndex mapping,
64370     // map it to the order it is in the config
64371     for(var i = 0, len = config.length; i < len; i++){
64372         this.addColumn(config[i]);
64373         
64374     }
64375
64376     /**
64377      * The width of columns which have no width specified (defaults to 100)
64378      * @type Number
64379      */
64380     this.defaultWidth = 100;
64381
64382     /**
64383      * Default sortable of columns which have no sortable specified (defaults to false)
64384      * @type Boolean
64385      */
64386     this.defaultSortable = false;
64387
64388     this.addEvents({
64389         /**
64390              * @event widthchange
64391              * Fires when the width of a column changes.
64392              * @param {ColumnModel} this
64393              * @param {Number} columnIndex The column index
64394              * @param {Number} newWidth The new width
64395              */
64396             "widthchange": true,
64397         /**
64398              * @event headerchange
64399              * Fires when the text of a header changes.
64400              * @param {ColumnModel} this
64401              * @param {Number} columnIndex The column index
64402              * @param {Number} newText The new header text
64403              */
64404             "headerchange": true,
64405         /**
64406              * @event hiddenchange
64407              * Fires when a column is hidden or "unhidden".
64408              * @param {ColumnModel} this
64409              * @param {Number} columnIndex The column index
64410              * @param {Boolean} hidden true if hidden, false otherwise
64411              */
64412             "hiddenchange": true,
64413             /**
64414          * @event columnmoved
64415          * Fires when a column is moved.
64416          * @param {ColumnModel} this
64417          * @param {Number} oldIndex
64418          * @param {Number} newIndex
64419          */
64420         "columnmoved" : true,
64421         /**
64422          * @event columlockchange
64423          * Fires when a column's locked state is changed
64424          * @param {ColumnModel} this
64425          * @param {Number} colIndex
64426          * @param {Boolean} locked true if locked
64427          */
64428         "columnlockchange" : true
64429     });
64430     Roo.grid.ColumnModel.superclass.constructor.call(this);
64431 };
64432 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
64433     /**
64434      * @cfg {String} header [required] The header text to display in the Grid view.
64435      */
64436         /**
64437      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
64438      */
64439         /**
64440      * @cfg {String} smHeader Header at Bootsrap Small width
64441      */
64442         /**
64443      * @cfg {String} mdHeader Header at Bootsrap Medium width
64444      */
64445         /**
64446      * @cfg {String} lgHeader Header at Bootsrap Large width
64447      */
64448         /**
64449      * @cfg {String} xlHeader Header at Bootsrap extra Large width
64450      */
64451     /**
64452      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
64453      * {@link Roo.data.Record} definition from which to draw the column's value. If not
64454      * specified, the column's index is used as an index into the Record's data Array.
64455      */
64456     /**
64457      * @cfg {Number} width  The initial width in pixels of the column. Using this
64458      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
64459      */
64460     /**
64461      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
64462      * Defaults to the value of the {@link #defaultSortable} property.
64463      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
64464      */
64465     /**
64466      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
64467      */
64468     /**
64469      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
64470      */
64471     /**
64472      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
64473      */
64474     /**
64475      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
64476      */
64477     /**
64478      * @cfg {Function} renderer A function used to generate HTML markup for a cell
64479      * given the cell's data value. See {@link #setRenderer}. If not specified, the
64480      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
64481      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
64482      */
64483        /**
64484      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
64485      */
64486     /**
64487      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
64488      */
64489     /**
64490      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
64491      */
64492     /**
64493      * @cfg {String} cursor ( auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing)
64494      */
64495     /**
64496      * @cfg {String} tooltip mouse over tooltip text
64497      */
64498     /**
64499      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
64500      */
64501     /**
64502      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
64503      */
64504     /**
64505      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
64506      */
64507     /**
64508      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
64509      */
64510         /**
64511      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
64512      */
64513     /**
64514      * Returns the id of the column at the specified index.
64515      * @param {Number} index The column index
64516      * @return {String} the id
64517      */
64518     getColumnId : function(index){
64519         return this.config[index].id;
64520     },
64521
64522     /**
64523      * Returns the column for a specified id.
64524      * @param {String} id The column id
64525      * @return {Object} the column
64526      */
64527     getColumnById : function(id){
64528         return this.lookup[id];
64529     },
64530
64531     
64532     /**
64533      * Returns the column Object for a specified dataIndex.
64534      * @param {String} dataIndex The column dataIndex
64535      * @return {Object|Boolean} the column or false if not found
64536      */
64537     getColumnByDataIndex: function(dataIndex){
64538         var index = this.findColumnIndex(dataIndex);
64539         return index > -1 ? this.config[index] : false;
64540     },
64541     
64542     /**
64543      * Returns the index for a specified column id.
64544      * @param {String} id The column id
64545      * @return {Number} the index, or -1 if not found
64546      */
64547     getIndexById : function(id){
64548         for(var i = 0, len = this.config.length; i < len; i++){
64549             if(this.config[i].id == id){
64550                 return i;
64551             }
64552         }
64553         return -1;
64554     },
64555     
64556     /**
64557      * Returns the index for a specified column dataIndex.
64558      * @param {String} dataIndex The column dataIndex
64559      * @return {Number} the index, or -1 if not found
64560      */
64561     
64562     findColumnIndex : function(dataIndex){
64563         for(var i = 0, len = this.config.length; i < len; i++){
64564             if(this.config[i].dataIndex == dataIndex){
64565                 return i;
64566             }
64567         }
64568         return -1;
64569     },
64570     
64571     
64572     moveColumn : function(oldIndex, newIndex){
64573         var c = this.config[oldIndex];
64574         this.config.splice(oldIndex, 1);
64575         this.config.splice(newIndex, 0, c);
64576         this.dataMap = null;
64577         this.fireEvent("columnmoved", this, oldIndex, newIndex);
64578     },
64579
64580     isLocked : function(colIndex){
64581         return this.config[colIndex].locked === true;
64582     },
64583
64584     setLocked : function(colIndex, value, suppressEvent){
64585         if(this.isLocked(colIndex) == value){
64586             return;
64587         }
64588         this.config[colIndex].locked = value;
64589         if(!suppressEvent){
64590             this.fireEvent("columnlockchange", this, colIndex, value);
64591         }
64592     },
64593
64594     getTotalLockedWidth : function(){
64595         var totalWidth = 0;
64596         for(var i = 0; i < this.config.length; i++){
64597             if(this.isLocked(i) && !this.isHidden(i)){
64598                 this.totalWidth += this.getColumnWidth(i);
64599             }
64600         }
64601         return totalWidth;
64602     },
64603
64604     getLockedCount : function(){
64605         for(var i = 0, len = this.config.length; i < len; i++){
64606             if(!this.isLocked(i)){
64607                 return i;
64608             }
64609         }
64610         
64611         return this.config.length;
64612     },
64613
64614     /**
64615      * Returns the number of columns.
64616      * @return {Number}
64617      */
64618     getColumnCount : function(visibleOnly){
64619         if(visibleOnly === true){
64620             var c = 0;
64621             for(var i = 0, len = this.config.length; i < len; i++){
64622                 if(!this.isHidden(i)){
64623                     c++;
64624                 }
64625             }
64626             return c;
64627         }
64628         return this.config.length;
64629     },
64630
64631     /**
64632      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
64633      * @param {Function} fn
64634      * @param {Object} scope (optional)
64635      * @return {Array} result
64636      */
64637     getColumnsBy : function(fn, scope){
64638         var r = [];
64639         for(var i = 0, len = this.config.length; i < len; i++){
64640             var c = this.config[i];
64641             if(fn.call(scope||this, c, i) === true){
64642                 r[r.length] = c;
64643             }
64644         }
64645         return r;
64646     },
64647
64648     /**
64649      * Returns true if the specified column is sortable.
64650      * @param {Number} col The column index
64651      * @return {Boolean}
64652      */
64653     isSortable : function(col){
64654         if(typeof this.config[col].sortable == "undefined"){
64655             return this.defaultSortable;
64656         }
64657         return this.config[col].sortable;
64658     },
64659
64660     /**
64661      * Returns the rendering (formatting) function defined for the column.
64662      * @param {Number} col The column index.
64663      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
64664      */
64665     getRenderer : function(col){
64666         if(!this.config[col].renderer){
64667             return Roo.grid.ColumnModel.defaultRenderer;
64668         }
64669         return this.config[col].renderer;
64670     },
64671
64672     /**
64673      * Sets the rendering (formatting) function for a column.
64674      * @param {Number} col The column index
64675      * @param {Function} fn The function to use to process the cell's raw data
64676      * to return HTML markup for the grid view. The render function is called with
64677      * the following parameters:<ul>
64678      * <li>Data value.</li>
64679      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
64680      * <li>css A CSS style string to apply to the table cell.</li>
64681      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
64682      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
64683      * <li>Row index</li>
64684      * <li>Column index</li>
64685      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
64686      */
64687     setRenderer : function(col, fn){
64688         this.config[col].renderer = fn;
64689     },
64690
64691     /**
64692      * Returns the width for the specified column.
64693      * @param {Number} col The column index
64694      * @param (optional) {String} gridSize bootstrap width size.
64695      * @return {Number}
64696      */
64697     getColumnWidth : function(col, gridSize)
64698         {
64699                 var cfg = this.config[col];
64700                 
64701                 if (typeof(gridSize) == 'undefined') {
64702                         return cfg.width * 1 || this.defaultWidth;
64703                 }
64704                 if (gridSize === false) { // if we set it..
64705                         return cfg.width || false;
64706                 }
64707                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
64708                 
64709                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
64710                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
64711                                 continue;
64712                         }
64713                         return cfg[ sizes[i] ];
64714                 }
64715                 return 1;
64716                 
64717     },
64718
64719     /**
64720      * Sets the width for a column.
64721      * @param {Number} col The column index
64722      * @param {Number} width The new width
64723      */
64724     setColumnWidth : function(col, width, suppressEvent){
64725         this.config[col].width = width;
64726         this.totalWidth = null;
64727         if(!suppressEvent){
64728              this.fireEvent("widthchange", this, col, width);
64729         }
64730     },
64731
64732     /**
64733      * Returns the total width of all columns.
64734      * @param {Boolean} includeHidden True to include hidden column widths
64735      * @return {Number}
64736      */
64737     getTotalWidth : function(includeHidden){
64738         if(!this.totalWidth){
64739             this.totalWidth = 0;
64740             for(var i = 0, len = this.config.length; i < len; i++){
64741                 if(includeHidden || !this.isHidden(i)){
64742                     this.totalWidth += this.getColumnWidth(i);
64743                 }
64744             }
64745         }
64746         return this.totalWidth;
64747     },
64748
64749     /**
64750      * Returns the header for the specified column.
64751      * @param {Number} col The column index
64752      * @return {String}
64753      */
64754     getColumnHeader : function(col){
64755         return this.config[col].header;
64756     },
64757
64758     /**
64759      * Sets the header for a column.
64760      * @param {Number} col The column index
64761      * @param {String} header The new header
64762      */
64763     setColumnHeader : function(col, header){
64764         this.config[col].header = header;
64765         this.fireEvent("headerchange", this, col, header);
64766     },
64767
64768     /**
64769      * Returns the tooltip for the specified column.
64770      * @param {Number} col The column index
64771      * @return {String}
64772      */
64773     getColumnTooltip : function(col){
64774             return this.config[col].tooltip;
64775     },
64776     /**
64777      * Sets the tooltip for a column.
64778      * @param {Number} col The column index
64779      * @param {String} tooltip The new tooltip
64780      */
64781     setColumnTooltip : function(col, tooltip){
64782             this.config[col].tooltip = tooltip;
64783     },
64784
64785     /**
64786      * Returns the dataIndex for the specified column.
64787      * @param {Number} col The column index
64788      * @return {Number}
64789      */
64790     getDataIndex : function(col){
64791         return this.config[col].dataIndex;
64792     },
64793
64794     /**
64795      * Sets the dataIndex for a column.
64796      * @param {Number} col The column index
64797      * @param {Number} dataIndex The new dataIndex
64798      */
64799     setDataIndex : function(col, dataIndex){
64800         this.config[col].dataIndex = dataIndex;
64801     },
64802
64803     
64804     
64805     /**
64806      * Returns true if the cell is editable.
64807      * @param {Number} colIndex The column index
64808      * @param {Number} rowIndex The row index - this is nto actually used..?
64809      * @return {Boolean}
64810      */
64811     isCellEditable : function(colIndex, rowIndex){
64812         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
64813     },
64814
64815     /**
64816      * Returns the editor defined for the cell/column.
64817      * return false or null to disable editing.
64818      * @param {Number} colIndex The column index
64819      * @param {Number} rowIndex The row index
64820      * @return {Object}
64821      */
64822     getCellEditor : function(colIndex, rowIndex){
64823         return this.config[colIndex].editor;
64824     },
64825
64826     /**
64827      * Sets if a column is editable.
64828      * @param {Number} col The column index
64829      * @param {Boolean} editable True if the column is editable
64830      */
64831     setEditable : function(col, editable){
64832         this.config[col].editable = editable;
64833     },
64834
64835
64836     /**
64837      * Returns true if the column is hidden.
64838      * @param {Number} colIndex The column index
64839      * @return {Boolean}
64840      */
64841     isHidden : function(colIndex){
64842         return this.config[colIndex].hidden;
64843     },
64844
64845
64846     /**
64847      * Returns true if the column width cannot be changed
64848      */
64849     isFixed : function(colIndex){
64850         return this.config[colIndex].fixed;
64851     },
64852
64853     /**
64854      * Returns true if the column can be resized
64855      * @return {Boolean}
64856      */
64857     isResizable : function(colIndex){
64858         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
64859     },
64860     /**
64861      * Sets if a column is hidden.
64862      * @param {Number} colIndex The column index
64863      * @param {Boolean} hidden True if the column is hidden
64864      */
64865     setHidden : function(colIndex, hidden){
64866         this.config[colIndex].hidden = hidden;
64867         this.totalWidth = null;
64868         this.fireEvent("hiddenchange", this, colIndex, hidden);
64869     },
64870
64871     /**
64872      * Sets the editor for a column.
64873      * @param {Number} col The column index
64874      * @param {Object} editor The editor object
64875      */
64876     setEditor : function(col, editor){
64877         this.config[col].editor = editor;
64878     },
64879     /**
64880      * Add a column (experimental...) - defaults to adding to the end..
64881      * @param {Object} config 
64882     */
64883     addColumn : function(c)
64884     {
64885     
64886         var i = this.config.length;
64887         this.config[i] = c;
64888         
64889         if(typeof c.dataIndex == "undefined"){
64890             c.dataIndex = i;
64891         }
64892         if(typeof c.renderer == "string"){
64893             c.renderer = Roo.util.Format[c.renderer];
64894         }
64895         if(typeof c.id == "undefined"){
64896             c.id = Roo.id();
64897         }
64898         if(c.editor && c.editor.xtype){
64899             c.editor  = Roo.factory(c.editor, Roo.grid);
64900         }
64901         if(c.editor && c.editor.isFormField){
64902             c.editor = new Roo.grid.GridEditor(c.editor);
64903         }
64904         this.lookup[c.id] = c;
64905     }
64906     
64907 });
64908
64909 Roo.grid.ColumnModel.defaultRenderer = function(value)
64910 {
64911     if(typeof value == "object") {
64912         return value;
64913     }
64914         if(typeof value == "string" && value.length < 1){
64915             return "&#160;";
64916         }
64917     
64918         return String.format("{0}", value);
64919 };
64920
64921 // Alias for backwards compatibility
64922 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
64923 /*
64924  * Based on:
64925  * Ext JS Library 1.1.1
64926  * Copyright(c) 2006-2007, Ext JS, LLC.
64927  *
64928  * Originally Released Under LGPL - original licence link has changed is not relivant.
64929  *
64930  * Fork - LGPL
64931  * <script type="text/javascript">
64932  */
64933
64934 /**
64935  * @class Roo.grid.AbstractSelectionModel
64936  * @extends Roo.util.Observable
64937  * @abstract
64938  * Abstract base class for grid SelectionModels.  It provides the interface that should be
64939  * implemented by descendant classes.  This class should not be directly instantiated.
64940  * @constructor
64941  */
64942 Roo.grid.AbstractSelectionModel = function(){
64943     this.locked = false;
64944     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
64945 };
64946
64947 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
64948     /** @ignore Called by the grid automatically. Do not call directly. */
64949     init : function(grid){
64950         this.grid = grid;
64951         this.initEvents();
64952     },
64953
64954     /**
64955      * Locks the selections.
64956      */
64957     lock : function(){
64958         this.locked = true;
64959     },
64960
64961     /**
64962      * Unlocks the selections.
64963      */
64964     unlock : function(){
64965         this.locked = false;
64966     },
64967
64968     /**
64969      * Returns true if the selections are locked.
64970      * @return {Boolean}
64971      */
64972     isLocked : function(){
64973         return this.locked;
64974     }
64975 });/*
64976  * Based on:
64977  * Ext JS Library 1.1.1
64978  * Copyright(c) 2006-2007, Ext JS, LLC.
64979  *
64980  * Originally Released Under LGPL - original licence link has changed is not relivant.
64981  *
64982  * Fork - LGPL
64983  * <script type="text/javascript">
64984  */
64985 /**
64986  * @extends Roo.grid.AbstractSelectionModel
64987  * @class Roo.grid.RowSelectionModel
64988  * The default SelectionModel used by {@link Roo.grid.Grid}.
64989  * It supports multiple selections and keyboard selection/navigation. 
64990  * @constructor
64991  * @param {Object} config
64992  */
64993 Roo.grid.RowSelectionModel = function(config){
64994     Roo.apply(this, config);
64995     this.selections = new Roo.util.MixedCollection(false, function(o){
64996         return o.id;
64997     });
64998
64999     this.last = false;
65000     this.lastActive = false;
65001
65002     this.addEvents({
65003         /**
65004         * @event selectionchange
65005         * Fires when the selection changes
65006         * @param {SelectionModel} this
65007         */
65008        "selectionchange" : true,
65009        /**
65010         * @event afterselectionchange
65011         * Fires after the selection changes (eg. by key press or clicking)
65012         * @param {SelectionModel} this
65013         */
65014        "afterselectionchange" : true,
65015        /**
65016         * @event beforerowselect
65017         * Fires when a row is selected being selected, return false to cancel.
65018         * @param {SelectionModel} this
65019         * @param {Number} rowIndex The selected index
65020         * @param {Boolean} keepExisting False if other selections will be cleared
65021         */
65022        "beforerowselect" : true,
65023        /**
65024         * @event rowselect
65025         * Fires when a row is selected.
65026         * @param {SelectionModel} this
65027         * @param {Number} rowIndex The selected index
65028         * @param {Roo.data.Record} r The record
65029         */
65030        "rowselect" : true,
65031        /**
65032         * @event rowdeselect
65033         * Fires when a row is deselected.
65034         * @param {SelectionModel} this
65035         * @param {Number} rowIndex The selected index
65036         */
65037         "rowdeselect" : true
65038     });
65039     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
65040     this.locked = false;
65041 };
65042
65043 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
65044     /**
65045      * @cfg {Boolean} singleSelect
65046      * True to allow selection of only one row at a time (defaults to false)
65047      */
65048     singleSelect : false,
65049
65050     // private
65051     initEvents : function(){
65052
65053         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
65054             this.grid.on("mousedown", this.handleMouseDown, this);
65055         }else{ // allow click to work like normal
65056             this.grid.on("rowclick", this.handleDragableRowClick, this);
65057         }
65058         // bootstrap does not have a view..
65059         var view = this.grid.view ? this.grid.view : this.grid;
65060         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
65061             "up" : function(e){
65062                 if(!e.shiftKey){
65063                     this.selectPrevious(e.shiftKey);
65064                 }else if(this.last !== false && this.lastActive !== false){
65065                     var last = this.last;
65066                     this.selectRange(this.last,  this.lastActive-1);
65067                     view.focusRow(this.lastActive);
65068                     if(last !== false){
65069                         this.last = last;
65070                     }
65071                 }else{
65072                     this.selectFirstRow();
65073                 }
65074                 this.fireEvent("afterselectionchange", this);
65075             },
65076             "down" : function(e){
65077                 if(!e.shiftKey){
65078                     this.selectNext(e.shiftKey);
65079                 }else if(this.last !== false && this.lastActive !== false){
65080                     var last = this.last;
65081                     this.selectRange(this.last,  this.lastActive+1);
65082                     view.focusRow(this.lastActive);
65083                     if(last !== false){
65084                         this.last = last;
65085                     }
65086                 }else{
65087                     this.selectFirstRow();
65088                 }
65089                 this.fireEvent("afterselectionchange", this);
65090             },
65091             scope: this
65092         });
65093
65094          
65095         view.on("refresh", this.onRefresh, this);
65096         view.on("rowupdated", this.onRowUpdated, this);
65097         view.on("rowremoved", this.onRemove, this);
65098     },
65099
65100     // private
65101     onRefresh : function(){
65102         var ds = this.grid.ds, i, v = this.grid.view;
65103         var s = this.selections;
65104         s.each(function(r){
65105             if((i = ds.indexOfId(r.id)) != -1){
65106                 v.onRowSelect(i);
65107                 s.add(ds.getAt(i)); // updating the selection relate data
65108             }else{
65109                 s.remove(r);
65110             }
65111         });
65112     },
65113
65114     // private
65115     onRemove : function(v, index, r){
65116         this.selections.remove(r);
65117     },
65118
65119     // private
65120     onRowUpdated : function(v, index, r){
65121         if(this.isSelected(r)){
65122             v.onRowSelect(index);
65123         }
65124     },
65125
65126     /**
65127      * Select records.
65128      * @param {Array} records The records to select
65129      * @param {Boolean} keepExisting (optional) True to keep existing selections
65130      */
65131     selectRecords : function(records, keepExisting){
65132         if(!keepExisting){
65133             this.clearSelections();
65134         }
65135         var ds = this.grid.ds;
65136         for(var i = 0, len = records.length; i < len; i++){
65137             this.selectRow(ds.indexOf(records[i]), true);
65138         }
65139     },
65140
65141     /**
65142      * Gets the number of selected rows.
65143      * @return {Number}
65144      */
65145     getCount : function(){
65146         return this.selections.length;
65147     },
65148
65149     /**
65150      * Selects the first row in the grid.
65151      */
65152     selectFirstRow : function(){
65153         this.selectRow(0);
65154     },
65155
65156     /**
65157      * Select the last row.
65158      * @param {Boolean} keepExisting (optional) True to keep existing selections
65159      */
65160     selectLastRow : function(keepExisting){
65161         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
65162     },
65163
65164     /**
65165      * Selects the row immediately following the last selected row.
65166      * @param {Boolean} keepExisting (optional) True to keep existing selections
65167      */
65168     selectNext : function(keepExisting){
65169         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
65170             this.selectRow(this.last+1, keepExisting);
65171             var view = this.grid.view ? this.grid.view : this.grid;
65172             view.focusRow(this.last);
65173         }
65174     },
65175
65176     /**
65177      * Selects the row that precedes the last selected row.
65178      * @param {Boolean} keepExisting (optional) True to keep existing selections
65179      */
65180     selectPrevious : function(keepExisting){
65181         if(this.last){
65182             this.selectRow(this.last-1, keepExisting);
65183             var view = this.grid.view ? this.grid.view : this.grid;
65184             view.focusRow(this.last);
65185         }
65186     },
65187
65188     /**
65189      * Returns the selected records
65190      * @return {Array} Array of selected records
65191      */
65192     getSelections : function(){
65193         return [].concat(this.selections.items);
65194     },
65195
65196     /**
65197      * Returns the first selected record.
65198      * @return {Record}
65199      */
65200     getSelected : function(){
65201         return this.selections.itemAt(0);
65202     },
65203
65204
65205     /**
65206      * Clears all selections.
65207      */
65208     clearSelections : function(fast){
65209         if(this.locked) {
65210             return;
65211         }
65212         if(fast !== true){
65213             var ds = this.grid.ds;
65214             var s = this.selections;
65215             s.each(function(r){
65216                 this.deselectRow(ds.indexOfId(r.id));
65217             }, this);
65218             s.clear();
65219         }else{
65220             this.selections.clear();
65221         }
65222         this.last = false;
65223     },
65224
65225
65226     /**
65227      * Selects all rows.
65228      */
65229     selectAll : function(){
65230         if(this.locked) {
65231             return;
65232         }
65233         this.selections.clear();
65234         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
65235             this.selectRow(i, true);
65236         }
65237     },
65238
65239     /**
65240      * Returns True if there is a selection.
65241      * @return {Boolean}
65242      */
65243     hasSelection : function(){
65244         return this.selections.length > 0;
65245     },
65246
65247     /**
65248      * Returns True if the specified row is selected.
65249      * @param {Number/Record} record The record or index of the record to check
65250      * @return {Boolean}
65251      */
65252     isSelected : function(index){
65253         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
65254         return (r && this.selections.key(r.id) ? true : false);
65255     },
65256
65257     /**
65258      * Returns True if the specified record id is selected.
65259      * @param {String} id The id of record to check
65260      * @return {Boolean}
65261      */
65262     isIdSelected : function(id){
65263         return (this.selections.key(id) ? true : false);
65264     },
65265
65266     // private
65267     handleMouseDown : function(e, t)
65268     {
65269         var view = this.grid.view ? this.grid.view : this.grid;
65270         var rowIndex;
65271         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
65272             return;
65273         };
65274         if(e.shiftKey && this.last !== false){
65275             var last = this.last;
65276             this.selectRange(last, rowIndex, e.ctrlKey);
65277             this.last = last; // reset the last
65278             view.focusRow(rowIndex);
65279         }else{
65280             var isSelected = this.isSelected(rowIndex);
65281             if(e.button !== 0 && isSelected){
65282                 view.focusRow(rowIndex);
65283             }else if(e.ctrlKey && isSelected){
65284                 this.deselectRow(rowIndex);
65285             }else if(!isSelected){
65286                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
65287                 view.focusRow(rowIndex);
65288             }
65289         }
65290         this.fireEvent("afterselectionchange", this);
65291     },
65292     // private
65293     handleDragableRowClick :  function(grid, rowIndex, e) 
65294     {
65295         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
65296             this.selectRow(rowIndex, false);
65297             var view = this.grid.view ? this.grid.view : this.grid;
65298             view.focusRow(rowIndex);
65299              this.fireEvent("afterselectionchange", this);
65300         }
65301     },
65302     
65303     /**
65304      * Selects multiple rows.
65305      * @param {Array} rows Array of the indexes of the row to select
65306      * @param {Boolean} keepExisting (optional) True to keep existing selections
65307      */
65308     selectRows : function(rows, keepExisting){
65309         if(!keepExisting){
65310             this.clearSelections();
65311         }
65312         for(var i = 0, len = rows.length; i < len; i++){
65313             this.selectRow(rows[i], true);
65314         }
65315     },
65316
65317     /**
65318      * Selects a range of rows. All rows in between startRow and endRow are also selected.
65319      * @param {Number} startRow The index of the first row in the range
65320      * @param {Number} endRow The index of the last row in the range
65321      * @param {Boolean} keepExisting (optional) True to retain existing selections
65322      */
65323     selectRange : function(startRow, endRow, keepExisting){
65324         if(this.locked) {
65325             return;
65326         }
65327         if(!keepExisting){
65328             this.clearSelections();
65329         }
65330         if(startRow <= endRow){
65331             for(var i = startRow; i <= endRow; i++){
65332                 this.selectRow(i, true);
65333             }
65334         }else{
65335             for(var i = startRow; i >= endRow; i--){
65336                 this.selectRow(i, true);
65337             }
65338         }
65339     },
65340
65341     /**
65342      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
65343      * @param {Number} startRow The index of the first row in the range
65344      * @param {Number} endRow The index of the last row in the range
65345      */
65346     deselectRange : function(startRow, endRow, preventViewNotify){
65347         if(this.locked) {
65348             return;
65349         }
65350         for(var i = startRow; i <= endRow; i++){
65351             this.deselectRow(i, preventViewNotify);
65352         }
65353     },
65354
65355     /**
65356      * Selects a row.
65357      * @param {Number} row The index of the row to select
65358      * @param {Boolean} keepExisting (optional) True to keep existing selections
65359      */
65360     selectRow : function(index, keepExisting, preventViewNotify){
65361         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
65362             return;
65363         }
65364         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
65365             if(!keepExisting || this.singleSelect){
65366                 this.clearSelections();
65367             }
65368             var r = this.grid.ds.getAt(index);
65369             this.selections.add(r);
65370             this.last = this.lastActive = index;
65371             if(!preventViewNotify){
65372                 var view = this.grid.view ? this.grid.view : this.grid;
65373                 view.onRowSelect(index);
65374             }
65375             this.fireEvent("rowselect", this, index, r);
65376             this.fireEvent("selectionchange", this);
65377         }
65378     },
65379
65380     /**
65381      * Deselects a row.
65382      * @param {Number} row The index of the row to deselect
65383      */
65384     deselectRow : function(index, preventViewNotify){
65385         if(this.locked) {
65386             return;
65387         }
65388         if(this.last == index){
65389             this.last = false;
65390         }
65391         if(this.lastActive == index){
65392             this.lastActive = false;
65393         }
65394         var r = this.grid.ds.getAt(index);
65395         this.selections.remove(r);
65396         if(!preventViewNotify){
65397             var view = this.grid.view ? this.grid.view : this.grid;
65398             view.onRowDeselect(index);
65399         }
65400         this.fireEvent("rowdeselect", this, index);
65401         this.fireEvent("selectionchange", this);
65402     },
65403
65404     // private
65405     restoreLast : function(){
65406         if(this._last){
65407             this.last = this._last;
65408         }
65409     },
65410
65411     // private
65412     acceptsNav : function(row, col, cm){
65413         return !cm.isHidden(col) && cm.isCellEditable(col, row);
65414     },
65415
65416     // private
65417     onEditorKey : function(field, e){
65418         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
65419         if(k == e.TAB){
65420             e.stopEvent();
65421             ed.completeEdit();
65422             if(e.shiftKey){
65423                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
65424             }else{
65425                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65426             }
65427         }else if(k == e.ENTER && !e.ctrlKey){
65428             e.stopEvent();
65429             ed.completeEdit();
65430             if(e.shiftKey){
65431                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
65432             }else{
65433                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
65434             }
65435         }else if(k == e.ESC){
65436             ed.cancelEdit();
65437         }
65438         if(newCell){
65439             g.startEditing(newCell[0], newCell[1]);
65440         }
65441     }
65442 });/*
65443  * Based on:
65444  * Ext JS Library 1.1.1
65445  * Copyright(c) 2006-2007, Ext JS, LLC.
65446  *
65447  * Originally Released Under LGPL - original licence link has changed is not relivant.
65448  *
65449  * Fork - LGPL
65450  * <script type="text/javascript">
65451  */
65452 /**
65453  * @class Roo.grid.CellSelectionModel
65454  * @extends Roo.grid.AbstractSelectionModel
65455  * This class provides the basic implementation for cell selection in a grid.
65456  * @constructor
65457  * @param {Object} config The object containing the configuration of this model.
65458  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
65459  */
65460 Roo.grid.CellSelectionModel = function(config){
65461     Roo.apply(this, config);
65462
65463     this.selection = null;
65464
65465     this.addEvents({
65466         /**
65467              * @event beforerowselect
65468              * Fires before a cell is selected.
65469              * @param {SelectionModel} this
65470              * @param {Number} rowIndex The selected row index
65471              * @param {Number} colIndex The selected cell index
65472              */
65473             "beforecellselect" : true,
65474         /**
65475              * @event cellselect
65476              * Fires when a cell is selected.
65477              * @param {SelectionModel} this
65478              * @param {Number} rowIndex The selected row index
65479              * @param {Number} colIndex The selected cell index
65480              */
65481             "cellselect" : true,
65482         /**
65483              * @event selectionchange
65484              * Fires when the active selection changes.
65485              * @param {SelectionModel} this
65486              * @param {Object} selection null for no selection or an object (o) with two properties
65487                 <ul>
65488                 <li>o.record: the record object for the row the selection is in</li>
65489                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
65490                 </ul>
65491              */
65492             "selectionchange" : true,
65493         /**
65494              * @event tabend
65495              * Fires when the tab (or enter) was pressed on the last editable cell
65496              * You can use this to trigger add new row.
65497              * @param {SelectionModel} this
65498              */
65499             "tabend" : true,
65500          /**
65501              * @event beforeeditnext
65502              * Fires before the next editable sell is made active
65503              * You can use this to skip to another cell or fire the tabend
65504              *    if you set cell to false
65505              * @param {Object} eventdata object : { cell : [ row, col ] } 
65506              */
65507             "beforeeditnext" : true
65508     });
65509     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
65510 };
65511
65512 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
65513     
65514     enter_is_tab: false,
65515
65516     /** @ignore */
65517     initEvents : function(){
65518         this.grid.on("mousedown", this.handleMouseDown, this);
65519         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
65520         var view = this.grid.view;
65521         view.on("refresh", this.onViewChange, this);
65522         view.on("rowupdated", this.onRowUpdated, this);
65523         view.on("beforerowremoved", this.clearSelections, this);
65524         view.on("beforerowsinserted", this.clearSelections, this);
65525         if(this.grid.isEditor){
65526             this.grid.on("beforeedit", this.beforeEdit,  this);
65527         }
65528     },
65529
65530         //private
65531     beforeEdit : function(e){
65532         this.select(e.row, e.column, false, true, e.record);
65533     },
65534
65535         //private
65536     onRowUpdated : function(v, index, r){
65537         if(this.selection && this.selection.record == r){
65538             v.onCellSelect(index, this.selection.cell[1]);
65539         }
65540     },
65541
65542         //private
65543     onViewChange : function(){
65544         this.clearSelections(true);
65545     },
65546
65547         /**
65548          * Returns the currently selected cell,.
65549          * @return {Array} The selected cell (row, column) or null if none selected.
65550          */
65551     getSelectedCell : function(){
65552         return this.selection ? this.selection.cell : null;
65553     },
65554
65555     /**
65556      * Clears all selections.
65557      * @param {Boolean} true to prevent the gridview from being notified about the change.
65558      */
65559     clearSelections : function(preventNotify){
65560         var s = this.selection;
65561         if(s){
65562             if(preventNotify !== true){
65563                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
65564             }
65565             this.selection = null;
65566             this.fireEvent("selectionchange", this, null);
65567         }
65568     },
65569
65570     /**
65571      * Returns true if there is a selection.
65572      * @return {Boolean}
65573      */
65574     hasSelection : function(){
65575         return this.selection ? true : false;
65576     },
65577
65578     /** @ignore */
65579     handleMouseDown : function(e, t){
65580         var v = this.grid.getView();
65581         if(this.isLocked()){
65582             return;
65583         };
65584         var row = v.findRowIndex(t);
65585         var cell = v.findCellIndex(t);
65586         if(row !== false && cell !== false){
65587             this.select(row, cell);
65588         }
65589     },
65590
65591     /**
65592      * Selects a cell.
65593      * @param {Number} rowIndex
65594      * @param {Number} collIndex
65595      */
65596     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
65597         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
65598             this.clearSelections();
65599             r = r || this.grid.dataSource.getAt(rowIndex);
65600             this.selection = {
65601                 record : r,
65602                 cell : [rowIndex, colIndex]
65603             };
65604             if(!preventViewNotify){
65605                 var v = this.grid.getView();
65606                 v.onCellSelect(rowIndex, colIndex);
65607                 if(preventFocus !== true){
65608                     v.focusCell(rowIndex, colIndex);
65609                 }
65610             }
65611             this.fireEvent("cellselect", this, rowIndex, colIndex);
65612             this.fireEvent("selectionchange", this, this.selection);
65613         }
65614     },
65615
65616         //private
65617     isSelectable : function(rowIndex, colIndex, cm){
65618         return !cm.isHidden(colIndex);
65619     },
65620
65621     /** @ignore */
65622     handleKeyDown : function(e){
65623         //Roo.log('Cell Sel Model handleKeyDown');
65624         if(!e.isNavKeyPress()){
65625             return;
65626         }
65627         var g = this.grid, s = this.selection;
65628         if(!s){
65629             e.stopEvent();
65630             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
65631             if(cell){
65632                 this.select(cell[0], cell[1]);
65633             }
65634             return;
65635         }
65636         var sm = this;
65637         var walk = function(row, col, step){
65638             return g.walkCells(row, col, step, sm.isSelectable,  sm);
65639         };
65640         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
65641         var newCell;
65642
65643       
65644
65645         switch(k){
65646             case e.TAB:
65647                 // handled by onEditorKey
65648                 if (g.isEditor && g.editing) {
65649                     return;
65650                 }
65651                 if(e.shiftKey) {
65652                     newCell = walk(r, c-1, -1);
65653                 } else {
65654                     newCell = walk(r, c+1, 1);
65655                 }
65656                 break;
65657             
65658             case e.DOWN:
65659                newCell = walk(r+1, c, 1);
65660                 break;
65661             
65662             case e.UP:
65663                 newCell = walk(r-1, c, -1);
65664                 break;
65665             
65666             case e.RIGHT:
65667                 newCell = walk(r, c+1, 1);
65668                 break;
65669             
65670             case e.LEFT:
65671                 newCell = walk(r, c-1, -1);
65672                 break;
65673             
65674             case e.ENTER:
65675                 
65676                 if(g.isEditor && !g.editing){
65677                    g.startEditing(r, c);
65678                    e.stopEvent();
65679                    return;
65680                 }
65681                 
65682                 
65683              break;
65684         };
65685         if(newCell){
65686             this.select(newCell[0], newCell[1]);
65687             e.stopEvent();
65688             
65689         }
65690     },
65691
65692     acceptsNav : function(row, col, cm){
65693         return !cm.isHidden(col) && cm.isCellEditable(col, row);
65694     },
65695     /**
65696      * Selects a cell.
65697      * @param {Number} field (not used) - as it's normally used as a listener
65698      * @param {Number} e - event - fake it by using
65699      *
65700      * var e = Roo.EventObjectImpl.prototype;
65701      * e.keyCode = e.TAB
65702      *
65703      * 
65704      */
65705     onEditorKey : function(field, e){
65706         
65707         var k = e.getKey(),
65708             newCell,
65709             g = this.grid,
65710             ed = g.activeEditor,
65711             forward = false;
65712         ///Roo.log('onEditorKey' + k);
65713         
65714         
65715         if (this.enter_is_tab && k == e.ENTER) {
65716             k = e.TAB;
65717         }
65718         
65719         if(k == e.TAB){
65720             if(e.shiftKey){
65721                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
65722             }else{
65723                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65724                 forward = true;
65725             }
65726             
65727             e.stopEvent();
65728             
65729         } else if(k == e.ENTER &&  !e.ctrlKey){
65730             ed.completeEdit();
65731             e.stopEvent();
65732             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65733         
65734                 } else if(k == e.ESC){
65735             ed.cancelEdit();
65736         }
65737                 
65738         if (newCell) {
65739             var ecall = { cell : newCell, forward : forward };
65740             this.fireEvent('beforeeditnext', ecall );
65741             newCell = ecall.cell;
65742                         forward = ecall.forward;
65743         }
65744                 
65745         if(newCell){
65746             //Roo.log('next cell after edit');
65747             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
65748         } else if (forward) {
65749             // tabbed past last
65750             this.fireEvent.defer(100, this, ['tabend',this]);
65751         }
65752     }
65753 });/*
65754  * Based on:
65755  * Ext JS Library 1.1.1
65756  * Copyright(c) 2006-2007, Ext JS, LLC.
65757  *
65758  * Originally Released Under LGPL - original licence link has changed is not relivant.
65759  *
65760  * Fork - LGPL
65761  * <script type="text/javascript">
65762  */
65763  
65764 /**
65765  * @class Roo.grid.EditorGrid
65766  * @extends Roo.grid.Grid
65767  * Class for creating and editable grid.
65768  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
65769  * The container MUST have some type of size defined for the grid to fill. The container will be 
65770  * automatically set to position relative if it isn't already.
65771  * @param {Object} dataSource The data model to bind to
65772  * @param {Object} colModel The column model with info about this grid's columns
65773  */
65774 Roo.grid.EditorGrid = function(container, config){
65775     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
65776     this.getGridEl().addClass("xedit-grid");
65777
65778     if(!this.selModel){
65779         this.selModel = new Roo.grid.CellSelectionModel();
65780     }
65781
65782     this.activeEditor = null;
65783
65784         this.addEvents({
65785             /**
65786              * @event beforeedit
65787              * Fires before cell editing is triggered. The edit event object has the following properties <br />
65788              * <ul style="padding:5px;padding-left:16px;">
65789              * <li>grid - This grid</li>
65790              * <li>record - The record being edited</li>
65791              * <li>field - The field name being edited</li>
65792              * <li>value - The value for the field being edited.</li>
65793              * <li>row - The grid row index</li>
65794              * <li>column - The grid column index</li>
65795              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
65796              * </ul>
65797              * @param {Object} e An edit event (see above for description)
65798              */
65799             "beforeedit" : true,
65800             /**
65801              * @event afteredit
65802              * Fires after a cell is edited. <br />
65803              * <ul style="padding:5px;padding-left:16px;">
65804              * <li>grid - This grid</li>
65805              * <li>record - The record being edited</li>
65806              * <li>field - The field name being edited</li>
65807              * <li>value - The value being set</li>
65808              * <li>originalValue - The original value for the field, before the edit.</li>
65809              * <li>row - The grid row index</li>
65810              * <li>column - The grid column index</li>
65811              * </ul>
65812              * @param {Object} e An edit event (see above for description)
65813              */
65814             "afteredit" : true,
65815             /**
65816              * @event validateedit
65817              * Fires after a cell is edited, but before the value is set in the record. 
65818          * You can use this to modify the value being set in the field, Return false
65819              * to cancel the change. The edit event object has the following properties <br />
65820              * <ul style="padding:5px;padding-left:16px;">
65821          * <li>editor - This editor</li>
65822              * <li>grid - This grid</li>
65823              * <li>record - The record being edited</li>
65824              * <li>field - The field name being edited</li>
65825              * <li>value - The value being set</li>
65826              * <li>originalValue - The original value for the field, before the edit.</li>
65827              * <li>row - The grid row index</li>
65828              * <li>column - The grid column index</li>
65829              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
65830              * </ul>
65831              * @param {Object} e An edit event (see above for description)
65832              */
65833             "validateedit" : true
65834         });
65835     this.on("bodyscroll", this.stopEditing,  this);
65836     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
65837 };
65838
65839 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
65840     /**
65841      * @cfg {Number} clicksToEdit
65842      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
65843      */
65844     clicksToEdit: 2,
65845
65846     // private
65847     isEditor : true,
65848     // private
65849     trackMouseOver: false, // causes very odd FF errors
65850
65851     onCellDblClick : function(g, row, col){
65852         this.startEditing(row, col);
65853     },
65854
65855     onEditComplete : function(ed, value, startValue){
65856         this.editing = false;
65857         this.activeEditor = null;
65858         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
65859         var r = ed.record;
65860         var field = this.colModel.getDataIndex(ed.col);
65861         var e = {
65862             grid: this,
65863             record: r,
65864             field: field,
65865             originalValue: startValue,
65866             value: value,
65867             row: ed.row,
65868             column: ed.col,
65869             cancel:false,
65870             editor: ed
65871         };
65872         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
65873         cell.show();
65874           
65875         if(String(value) !== String(startValue)){
65876             
65877             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
65878                 r.set(field, e.value);
65879                 // if we are dealing with a combo box..
65880                 // then we also set the 'name' colum to be the displayField
65881                 if (ed.field.displayField && ed.field.name) {
65882                     r.set(ed.field.name, ed.field.el.dom.value);
65883                 }
65884                 
65885                 delete e.cancel; //?? why!!!
65886                 this.fireEvent("afteredit", e);
65887             }
65888         } else {
65889             this.fireEvent("afteredit", e); // always fire it!
65890         }
65891         this.view.focusCell(ed.row, ed.col);
65892     },
65893
65894     /**
65895      * Starts editing the specified for the specified row/column
65896      * @param {Number} rowIndex
65897      * @param {Number} colIndex
65898      */
65899     startEditing : function(row, col){
65900         this.stopEditing();
65901         if(this.colModel.isCellEditable(col, row)){
65902             this.view.ensureVisible(row, col, true);
65903           
65904             var r = this.dataSource.getAt(row);
65905             var field = this.colModel.getDataIndex(col);
65906             var cell = Roo.get(this.view.getCell(row,col));
65907             var e = {
65908                 grid: this,
65909                 record: r,
65910                 field: field,
65911                 value: r.data[field],
65912                 row: row,
65913                 column: col,
65914                 cancel:false 
65915             };
65916             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
65917                 this.editing = true;
65918                 var ed = this.colModel.getCellEditor(col, row);
65919                 
65920                 if (!ed) {
65921                     return;
65922                 }
65923                 if(!ed.rendered){
65924                     ed.render(ed.parentEl || document.body);
65925                 }
65926                 ed.field.reset();
65927                
65928                 cell.hide();
65929                 
65930                 (function(){ // complex but required for focus issues in safari, ie and opera
65931                     ed.row = row;
65932                     ed.col = col;
65933                     ed.record = r;
65934                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
65935                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
65936                     this.activeEditor = ed;
65937                     var v = r.data[field];
65938                     ed.startEdit(this.view.getCell(row, col), v);
65939                     // combo's with 'displayField and name set
65940                     if (ed.field.displayField && ed.field.name) {
65941                         ed.field.el.dom.value = r.data[ed.field.name];
65942                     }
65943                     
65944                     
65945                 }).defer(50, this);
65946             }
65947         }
65948     },
65949         
65950     /**
65951      * Stops any active editing
65952      */
65953     stopEditing : function(){
65954         if(this.activeEditor){
65955             this.activeEditor.completeEdit();
65956         }
65957         this.activeEditor = null;
65958     },
65959         
65960          /**
65961      * Called to get grid's drag proxy text, by default returns this.ddText.
65962      * @return {String}
65963      */
65964     getDragDropText : function(){
65965         var count = this.selModel.getSelectedCell() ? 1 : 0;
65966         return String.format(this.ddText, count, count == 1 ? '' : 's');
65967     }
65968         
65969 });/*
65970  * Based on:
65971  * Ext JS Library 1.1.1
65972  * Copyright(c) 2006-2007, Ext JS, LLC.
65973  *
65974  * Originally Released Under LGPL - original licence link has changed is not relivant.
65975  *
65976  * Fork - LGPL
65977  * <script type="text/javascript">
65978  */
65979
65980 // private - not really -- you end up using it !
65981 // This is a support class used internally by the Grid components
65982
65983 /**
65984  * @class Roo.grid.GridEditor
65985  * @extends Roo.Editor
65986  * Class for creating and editable grid elements.
65987  * @param {Object} config any settings (must include field)
65988  */
65989 Roo.grid.GridEditor = function(field, config){
65990     if (!config && field.field) {
65991         config = field;
65992         field = Roo.factory(config.field, Roo.form);
65993     }
65994     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
65995     field.monitorTab = false;
65996 };
65997
65998 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
65999     
66000     /**
66001      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
66002      */
66003     
66004     alignment: "tl-tl",
66005     autoSize: "width",
66006     hideEl : false,
66007     cls: "x-small-editor x-grid-editor",
66008     shim:false,
66009     shadow:"frame"
66010 });/*
66011  * Based on:
66012  * Ext JS Library 1.1.1
66013  * Copyright(c) 2006-2007, Ext JS, LLC.
66014  *
66015  * Originally Released Under LGPL - original licence link has changed is not relivant.
66016  *
66017  * Fork - LGPL
66018  * <script type="text/javascript">
66019  */
66020   
66021
66022   
66023 Roo.grid.PropertyRecord = Roo.data.Record.create([
66024     {name:'name',type:'string'},  'value'
66025 ]);
66026
66027
66028 Roo.grid.PropertyStore = function(grid, source){
66029     this.grid = grid;
66030     this.store = new Roo.data.Store({
66031         recordType : Roo.grid.PropertyRecord
66032     });
66033     this.store.on('update', this.onUpdate,  this);
66034     if(source){
66035         this.setSource(source);
66036     }
66037     Roo.grid.PropertyStore.superclass.constructor.call(this);
66038 };
66039
66040
66041
66042 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
66043     setSource : function(o){
66044         this.source = o;
66045         this.store.removeAll();
66046         var data = [];
66047         for(var k in o){
66048             if(this.isEditableValue(o[k])){
66049                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
66050             }
66051         }
66052         this.store.loadRecords({records: data}, {}, true);
66053     },
66054
66055     onUpdate : function(ds, record, type){
66056         if(type == Roo.data.Record.EDIT){
66057             var v = record.data['value'];
66058             var oldValue = record.modified['value'];
66059             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
66060                 this.source[record.id] = v;
66061                 record.commit();
66062                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
66063             }else{
66064                 record.reject();
66065             }
66066         }
66067     },
66068
66069     getProperty : function(row){
66070        return this.store.getAt(row);
66071     },
66072
66073     isEditableValue: function(val){
66074         if(val && val instanceof Date){
66075             return true;
66076         }else if(typeof val == 'object' || typeof val == 'function'){
66077             return false;
66078         }
66079         return true;
66080     },
66081
66082     setValue : function(prop, value){
66083         this.source[prop] = value;
66084         this.store.getById(prop).set('value', value);
66085     },
66086
66087     getSource : function(){
66088         return this.source;
66089     }
66090 });
66091
66092 Roo.grid.PropertyColumnModel = function(grid, store){
66093     this.grid = grid;
66094     var g = Roo.grid;
66095     g.PropertyColumnModel.superclass.constructor.call(this, [
66096         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
66097         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
66098     ]);
66099     this.store = store;
66100     this.bselect = Roo.DomHelper.append(document.body, {
66101         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
66102             {tag: 'option', value: 'true', html: 'true'},
66103             {tag: 'option', value: 'false', html: 'false'}
66104         ]
66105     });
66106     Roo.id(this.bselect);
66107     var f = Roo.form;
66108     this.editors = {
66109         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
66110         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
66111         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
66112         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
66113         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
66114     };
66115     this.renderCellDelegate = this.renderCell.createDelegate(this);
66116     this.renderPropDelegate = this.renderProp.createDelegate(this);
66117 };
66118
66119 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
66120     
66121     
66122     nameText : 'Name',
66123     valueText : 'Value',
66124     
66125     dateFormat : 'm/j/Y',
66126     
66127     
66128     renderDate : function(dateVal){
66129         return dateVal.dateFormat(this.dateFormat);
66130     },
66131
66132     renderBool : function(bVal){
66133         return bVal ? 'true' : 'false';
66134     },
66135
66136     isCellEditable : function(colIndex, rowIndex){
66137         return colIndex == 1;
66138     },
66139
66140     getRenderer : function(col){
66141         return col == 1 ?
66142             this.renderCellDelegate : this.renderPropDelegate;
66143     },
66144
66145     renderProp : function(v){
66146         return this.getPropertyName(v);
66147     },
66148
66149     renderCell : function(val){
66150         var rv = val;
66151         if(val instanceof Date){
66152             rv = this.renderDate(val);
66153         }else if(typeof val == 'boolean'){
66154             rv = this.renderBool(val);
66155         }
66156         return Roo.util.Format.htmlEncode(rv);
66157     },
66158
66159     getPropertyName : function(name){
66160         var pn = this.grid.propertyNames;
66161         return pn && pn[name] ? pn[name] : name;
66162     },
66163
66164     getCellEditor : function(colIndex, rowIndex){
66165         var p = this.store.getProperty(rowIndex);
66166         var n = p.data['name'], val = p.data['value'];
66167         
66168         if(typeof(this.grid.customEditors[n]) == 'string'){
66169             return this.editors[this.grid.customEditors[n]];
66170         }
66171         if(typeof(this.grid.customEditors[n]) != 'undefined'){
66172             return this.grid.customEditors[n];
66173         }
66174         if(val instanceof Date){
66175             return this.editors['date'];
66176         }else if(typeof val == 'number'){
66177             return this.editors['number'];
66178         }else if(typeof val == 'boolean'){
66179             return this.editors['boolean'];
66180         }else{
66181             return this.editors['string'];
66182         }
66183     }
66184 });
66185
66186 /**
66187  * @class Roo.grid.PropertyGrid
66188  * @extends Roo.grid.EditorGrid
66189  * This class represents the  interface of a component based property grid control.
66190  * <br><br>Usage:<pre><code>
66191  var grid = new Roo.grid.PropertyGrid("my-container-id", {
66192       
66193  });
66194  // set any options
66195  grid.render();
66196  * </code></pre>
66197   
66198  * @constructor
66199  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66200  * The container MUST have some type of size defined for the grid to fill. The container will be
66201  * automatically set to position relative if it isn't already.
66202  * @param {Object} config A config object that sets properties on this grid.
66203  */
66204 Roo.grid.PropertyGrid = function(container, config){
66205     config = config || {};
66206     var store = new Roo.grid.PropertyStore(this);
66207     this.store = store;
66208     var cm = new Roo.grid.PropertyColumnModel(this, store);
66209     store.store.sort('name', 'ASC');
66210     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
66211         ds: store.store,
66212         cm: cm,
66213         enableColLock:false,
66214         enableColumnMove:false,
66215         stripeRows:false,
66216         trackMouseOver: false,
66217         clicksToEdit:1
66218     }, config));
66219     this.getGridEl().addClass('x-props-grid');
66220     this.lastEditRow = null;
66221     this.on('columnresize', this.onColumnResize, this);
66222     this.addEvents({
66223          /**
66224              * @event beforepropertychange
66225              * Fires before a property changes (return false to stop?)
66226              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66227              * @param {String} id Record Id
66228              * @param {String} newval New Value
66229          * @param {String} oldval Old Value
66230              */
66231         "beforepropertychange": true,
66232         /**
66233              * @event propertychange
66234              * Fires after a property changes
66235              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66236              * @param {String} id Record Id
66237              * @param {String} newval New Value
66238          * @param {String} oldval Old Value
66239              */
66240         "propertychange": true
66241     });
66242     this.customEditors = this.customEditors || {};
66243 };
66244 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
66245     
66246      /**
66247      * @cfg {Object} customEditors map of colnames=> custom editors.
66248      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
66249      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
66250      * false disables editing of the field.
66251          */
66252     
66253       /**
66254      * @cfg {Object} propertyNames map of property Names to their displayed value
66255          */
66256     
66257     render : function(){
66258         Roo.grid.PropertyGrid.superclass.render.call(this);
66259         this.autoSize.defer(100, this);
66260     },
66261
66262     autoSize : function(){
66263         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
66264         if(this.view){
66265             this.view.fitColumns();
66266         }
66267     },
66268
66269     onColumnResize : function(){
66270         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
66271         this.autoSize();
66272     },
66273     /**
66274      * Sets the data for the Grid
66275      * accepts a Key => Value object of all the elements avaiable.
66276      * @param {Object} data  to appear in grid.
66277      */
66278     setSource : function(source){
66279         this.store.setSource(source);
66280         //this.autoSize();
66281     },
66282     /**
66283      * Gets all the data from the grid.
66284      * @return {Object} data  data stored in grid
66285      */
66286     getSource : function(){
66287         return this.store.getSource();
66288     }
66289 });/*
66290   
66291  * Licence LGPL
66292  
66293  */
66294  
66295 /**
66296  * @class Roo.grid.Calendar
66297  * @extends Roo.grid.Grid
66298  * This class extends the Grid to provide a calendar widget
66299  * <br><br>Usage:<pre><code>
66300  var grid = new Roo.grid.Calendar("my-container-id", {
66301      ds: myDataStore,
66302      cm: myColModel,
66303      selModel: mySelectionModel,
66304      autoSizeColumns: true,
66305      monitorWindowResize: false,
66306      trackMouseOver: true
66307      eventstore : real data store..
66308  });
66309  // set any options
66310  grid.render();
66311   
66312   * @constructor
66313  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66314  * The container MUST have some type of size defined for the grid to fill. The container will be
66315  * automatically set to position relative if it isn't already.
66316  * @param {Object} config A config object that sets properties on this grid.
66317  */
66318 Roo.grid.Calendar = function(container, config){
66319         // initialize the container
66320         this.container = Roo.get(container);
66321         this.container.update("");
66322         this.container.setStyle("overflow", "hidden");
66323     this.container.addClass('x-grid-container');
66324
66325     this.id = this.container.id;
66326
66327     Roo.apply(this, config);
66328     // check and correct shorthanded configs
66329     
66330     var rows = [];
66331     var d =1;
66332     for (var r = 0;r < 6;r++) {
66333         
66334         rows[r]=[];
66335         for (var c =0;c < 7;c++) {
66336             rows[r][c]= '';
66337         }
66338     }
66339     if (this.eventStore) {
66340         this.eventStore= Roo.factory(this.eventStore, Roo.data);
66341         this.eventStore.on('load',this.onLoad, this);
66342         this.eventStore.on('beforeload',this.clearEvents, this);
66343          
66344     }
66345     
66346     this.dataSource = new Roo.data.Store({
66347             proxy: new Roo.data.MemoryProxy(rows),
66348             reader: new Roo.data.ArrayReader({}, [
66349                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
66350     });
66351
66352     this.dataSource.load();
66353     this.ds = this.dataSource;
66354     this.ds.xmodule = this.xmodule || false;
66355     
66356     
66357     var cellRender = function(v,x,r)
66358     {
66359         return String.format(
66360             '<div class="fc-day  fc-widget-content"><div>' +
66361                 '<div class="fc-event-container"></div>' +
66362                 '<div class="fc-day-number">{0}</div>'+
66363                 
66364                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
66365             '</div></div>', v);
66366     
66367     }
66368     
66369     
66370     this.colModel = new Roo.grid.ColumnModel( [
66371         {
66372             xtype: 'ColumnModel',
66373             xns: Roo.grid,
66374             dataIndex : 'weekday0',
66375             header : 'Sunday',
66376             renderer : cellRender
66377         },
66378         {
66379             xtype: 'ColumnModel',
66380             xns: Roo.grid,
66381             dataIndex : 'weekday1',
66382             header : 'Monday',
66383             renderer : cellRender
66384         },
66385         {
66386             xtype: 'ColumnModel',
66387             xns: Roo.grid,
66388             dataIndex : 'weekday2',
66389             header : 'Tuesday',
66390             renderer : cellRender
66391         },
66392         {
66393             xtype: 'ColumnModel',
66394             xns: Roo.grid,
66395             dataIndex : 'weekday3',
66396             header : 'Wednesday',
66397             renderer : cellRender
66398         },
66399         {
66400             xtype: 'ColumnModel',
66401             xns: Roo.grid,
66402             dataIndex : 'weekday4',
66403             header : 'Thursday',
66404             renderer : cellRender
66405         },
66406         {
66407             xtype: 'ColumnModel',
66408             xns: Roo.grid,
66409             dataIndex : 'weekday5',
66410             header : 'Friday',
66411             renderer : cellRender
66412         },
66413         {
66414             xtype: 'ColumnModel',
66415             xns: Roo.grid,
66416             dataIndex : 'weekday6',
66417             header : 'Saturday',
66418             renderer : cellRender
66419         }
66420     ]);
66421     this.cm = this.colModel;
66422     this.cm.xmodule = this.xmodule || false;
66423  
66424         
66425           
66426     //this.selModel = new Roo.grid.CellSelectionModel();
66427     //this.sm = this.selModel;
66428     //this.selModel.init(this);
66429     
66430     
66431     if(this.width){
66432         this.container.setWidth(this.width);
66433     }
66434
66435     if(this.height){
66436         this.container.setHeight(this.height);
66437     }
66438     /** @private */
66439         this.addEvents({
66440         // raw events
66441         /**
66442          * @event click
66443          * The raw click event for the entire grid.
66444          * @param {Roo.EventObject} e
66445          */
66446         "click" : true,
66447         /**
66448          * @event dblclick
66449          * The raw dblclick event for the entire grid.
66450          * @param {Roo.EventObject} e
66451          */
66452         "dblclick" : true,
66453         /**
66454          * @event contextmenu
66455          * The raw contextmenu event for the entire grid.
66456          * @param {Roo.EventObject} e
66457          */
66458         "contextmenu" : true,
66459         /**
66460          * @event mousedown
66461          * The raw mousedown event for the entire grid.
66462          * @param {Roo.EventObject} e
66463          */
66464         "mousedown" : true,
66465         /**
66466          * @event mouseup
66467          * The raw mouseup event for the entire grid.
66468          * @param {Roo.EventObject} e
66469          */
66470         "mouseup" : true,
66471         /**
66472          * @event mouseover
66473          * The raw mouseover event for the entire grid.
66474          * @param {Roo.EventObject} e
66475          */
66476         "mouseover" : true,
66477         /**
66478          * @event mouseout
66479          * The raw mouseout event for the entire grid.
66480          * @param {Roo.EventObject} e
66481          */
66482         "mouseout" : true,
66483         /**
66484          * @event keypress
66485          * The raw keypress event for the entire grid.
66486          * @param {Roo.EventObject} e
66487          */
66488         "keypress" : true,
66489         /**
66490          * @event keydown
66491          * The raw keydown event for the entire grid.
66492          * @param {Roo.EventObject} e
66493          */
66494         "keydown" : true,
66495
66496         // custom events
66497
66498         /**
66499          * @event cellclick
66500          * Fires when a cell is clicked
66501          * @param {Grid} this
66502          * @param {Number} rowIndex
66503          * @param {Number} columnIndex
66504          * @param {Roo.EventObject} e
66505          */
66506         "cellclick" : true,
66507         /**
66508          * @event celldblclick
66509          * Fires when a cell is double clicked
66510          * @param {Grid} this
66511          * @param {Number} rowIndex
66512          * @param {Number} columnIndex
66513          * @param {Roo.EventObject} e
66514          */
66515         "celldblclick" : true,
66516         /**
66517          * @event rowclick
66518          * Fires when a row is clicked
66519          * @param {Grid} this
66520          * @param {Number} rowIndex
66521          * @param {Roo.EventObject} e
66522          */
66523         "rowclick" : true,
66524         /**
66525          * @event rowdblclick
66526          * Fires when a row is double clicked
66527          * @param {Grid} this
66528          * @param {Number} rowIndex
66529          * @param {Roo.EventObject} e
66530          */
66531         "rowdblclick" : true,
66532         /**
66533          * @event headerclick
66534          * Fires when a header is clicked
66535          * @param {Grid} this
66536          * @param {Number} columnIndex
66537          * @param {Roo.EventObject} e
66538          */
66539         "headerclick" : true,
66540         /**
66541          * @event headerdblclick
66542          * Fires when a header cell is double clicked
66543          * @param {Grid} this
66544          * @param {Number} columnIndex
66545          * @param {Roo.EventObject} e
66546          */
66547         "headerdblclick" : true,
66548         /**
66549          * @event rowcontextmenu
66550          * Fires when a row is right clicked
66551          * @param {Grid} this
66552          * @param {Number} rowIndex
66553          * @param {Roo.EventObject} e
66554          */
66555         "rowcontextmenu" : true,
66556         /**
66557          * @event cellcontextmenu
66558          * Fires when a cell is right clicked
66559          * @param {Grid} this
66560          * @param {Number} rowIndex
66561          * @param {Number} cellIndex
66562          * @param {Roo.EventObject} e
66563          */
66564          "cellcontextmenu" : true,
66565         /**
66566          * @event headercontextmenu
66567          * Fires when a header is right clicked
66568          * @param {Grid} this
66569          * @param {Number} columnIndex
66570          * @param {Roo.EventObject} e
66571          */
66572         "headercontextmenu" : true,
66573         /**
66574          * @event bodyscroll
66575          * Fires when the body element is scrolled
66576          * @param {Number} scrollLeft
66577          * @param {Number} scrollTop
66578          */
66579         "bodyscroll" : true,
66580         /**
66581          * @event columnresize
66582          * Fires when the user resizes a column
66583          * @param {Number} columnIndex
66584          * @param {Number} newSize
66585          */
66586         "columnresize" : true,
66587         /**
66588          * @event columnmove
66589          * Fires when the user moves a column
66590          * @param {Number} oldIndex
66591          * @param {Number} newIndex
66592          */
66593         "columnmove" : true,
66594         /**
66595          * @event startdrag
66596          * Fires when row(s) start being dragged
66597          * @param {Grid} this
66598          * @param {Roo.GridDD} dd The drag drop object
66599          * @param {event} e The raw browser event
66600          */
66601         "startdrag" : true,
66602         /**
66603          * @event enddrag
66604          * Fires when a drag operation is complete
66605          * @param {Grid} this
66606          * @param {Roo.GridDD} dd The drag drop object
66607          * @param {event} e The raw browser event
66608          */
66609         "enddrag" : true,
66610         /**
66611          * @event dragdrop
66612          * Fires when dragged row(s) are dropped on a valid DD target
66613          * @param {Grid} this
66614          * @param {Roo.GridDD} dd The drag drop object
66615          * @param {String} targetId The target drag drop object
66616          * @param {event} e The raw browser event
66617          */
66618         "dragdrop" : true,
66619         /**
66620          * @event dragover
66621          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
66622          * @param {Grid} this
66623          * @param {Roo.GridDD} dd The drag drop object
66624          * @param {String} targetId The target drag drop object
66625          * @param {event} e The raw browser event
66626          */
66627         "dragover" : true,
66628         /**
66629          * @event dragenter
66630          *  Fires when the dragged row(s) first cross another DD target while being dragged
66631          * @param {Grid} this
66632          * @param {Roo.GridDD} dd The drag drop object
66633          * @param {String} targetId The target drag drop object
66634          * @param {event} e The raw browser event
66635          */
66636         "dragenter" : true,
66637         /**
66638          * @event dragout
66639          * Fires when the dragged row(s) leave another DD target while being dragged
66640          * @param {Grid} this
66641          * @param {Roo.GridDD} dd The drag drop object
66642          * @param {String} targetId The target drag drop object
66643          * @param {event} e The raw browser event
66644          */
66645         "dragout" : true,
66646         /**
66647          * @event rowclass
66648          * Fires when a row is rendered, so you can change add a style to it.
66649          * @param {GridView} gridview   The grid view
66650          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
66651          */
66652         'rowclass' : true,
66653
66654         /**
66655          * @event render
66656          * Fires when the grid is rendered
66657          * @param {Grid} grid
66658          */
66659         'render' : true,
66660             /**
66661              * @event select
66662              * Fires when a date is selected
66663              * @param {DatePicker} this
66664              * @param {Date} date The selected date
66665              */
66666         'select': true,
66667         /**
66668              * @event monthchange
66669              * Fires when the displayed month changes 
66670              * @param {DatePicker} this
66671              * @param {Date} date The selected month
66672              */
66673         'monthchange': true,
66674         /**
66675              * @event evententer
66676              * Fires when mouse over an event
66677              * @param {Calendar} this
66678              * @param {event} Event
66679              */
66680         'evententer': true,
66681         /**
66682              * @event eventleave
66683              * Fires when the mouse leaves an
66684              * @param {Calendar} this
66685              * @param {event}
66686              */
66687         'eventleave': true,
66688         /**
66689              * @event eventclick
66690              * Fires when the mouse click an
66691              * @param {Calendar} this
66692              * @param {event}
66693              */
66694         'eventclick': true,
66695         /**
66696              * @event eventrender
66697              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
66698              * @param {Calendar} this
66699              * @param {data} data to be modified
66700              */
66701         'eventrender': true
66702         
66703     });
66704
66705     Roo.grid.Grid.superclass.constructor.call(this);
66706     this.on('render', function() {
66707         this.view.el.addClass('x-grid-cal'); 
66708         
66709         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
66710
66711     },this);
66712     
66713     if (!Roo.grid.Calendar.style) {
66714         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
66715             
66716             
66717             '.x-grid-cal .x-grid-col' :  {
66718                 height: 'auto !important',
66719                 'vertical-align': 'top'
66720             },
66721             '.x-grid-cal  .fc-event-hori' : {
66722                 height: '14px'
66723             }
66724              
66725             
66726         }, Roo.id());
66727     }
66728
66729     
66730     
66731 };
66732 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
66733     /**
66734      * @cfg {Store} eventStore The store that loads events.
66735      */
66736     eventStore : 25,
66737
66738      
66739     activeDate : false,
66740     startDay : 0,
66741     autoWidth : true,
66742     monitorWindowResize : false,
66743
66744     
66745     resizeColumns : function() {
66746         var col = (this.view.el.getWidth() / 7) - 3;
66747         // loop through cols, and setWidth
66748         for(var i =0 ; i < 7 ; i++){
66749             this.cm.setColumnWidth(i, col);
66750         }
66751     },
66752      setDate :function(date) {
66753         
66754         Roo.log('setDate?');
66755         
66756         this.resizeColumns();
66757         var vd = this.activeDate;
66758         this.activeDate = date;
66759 //        if(vd && this.el){
66760 //            var t = date.getTime();
66761 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
66762 //                Roo.log('using add remove');
66763 //                
66764 //                this.fireEvent('monthchange', this, date);
66765 //                
66766 //                this.cells.removeClass("fc-state-highlight");
66767 //                this.cells.each(function(c){
66768 //                   if(c.dateValue == t){
66769 //                       c.addClass("fc-state-highlight");
66770 //                       setTimeout(function(){
66771 //                            try{c.dom.firstChild.focus();}catch(e){}
66772 //                       }, 50);
66773 //                       return false;
66774 //                   }
66775 //                   return true;
66776 //                });
66777 //                return;
66778 //            }
66779 //        }
66780         
66781         var days = date.getDaysInMonth();
66782         
66783         var firstOfMonth = date.getFirstDateOfMonth();
66784         var startingPos = firstOfMonth.getDay()-this.startDay;
66785         
66786         if(startingPos < this.startDay){
66787             startingPos += 7;
66788         }
66789         
66790         var pm = date.add(Date.MONTH, -1);
66791         var prevStart = pm.getDaysInMonth()-startingPos;
66792 //        
66793         
66794         
66795         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
66796         
66797         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
66798         //this.cells.addClassOnOver('fc-state-hover');
66799         
66800         var cells = this.cells.elements;
66801         var textEls = this.textNodes;
66802         
66803         //Roo.each(cells, function(cell){
66804         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
66805         //});
66806         
66807         days += startingPos;
66808
66809         // convert everything to numbers so it's fast
66810         var day = 86400000;
66811         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
66812         //Roo.log(d);
66813         //Roo.log(pm);
66814         //Roo.log(prevStart);
66815         
66816         var today = new Date().clearTime().getTime();
66817         var sel = date.clearTime().getTime();
66818         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
66819         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
66820         var ddMatch = this.disabledDatesRE;
66821         var ddText = this.disabledDatesText;
66822         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
66823         var ddaysText = this.disabledDaysText;
66824         var format = this.format;
66825         
66826         var setCellClass = function(cal, cell){
66827             
66828             //Roo.log('set Cell Class');
66829             cell.title = "";
66830             var t = d.getTime();
66831             
66832             //Roo.log(d);
66833             
66834             
66835             cell.dateValue = t;
66836             if(t == today){
66837                 cell.className += " fc-today";
66838                 cell.className += " fc-state-highlight";
66839                 cell.title = cal.todayText;
66840             }
66841             if(t == sel){
66842                 // disable highlight in other month..
66843                 cell.className += " fc-state-highlight";
66844                 
66845             }
66846             // disabling
66847             if(t < min) {
66848                 //cell.className = " fc-state-disabled";
66849                 cell.title = cal.minText;
66850                 return;
66851             }
66852             if(t > max) {
66853                 //cell.className = " fc-state-disabled";
66854                 cell.title = cal.maxText;
66855                 return;
66856             }
66857             if(ddays){
66858                 if(ddays.indexOf(d.getDay()) != -1){
66859                     // cell.title = ddaysText;
66860                    // cell.className = " fc-state-disabled";
66861                 }
66862             }
66863             if(ddMatch && format){
66864                 var fvalue = d.dateFormat(format);
66865                 if(ddMatch.test(fvalue)){
66866                     cell.title = ddText.replace("%0", fvalue);
66867                    cell.className = " fc-state-disabled";
66868                 }
66869             }
66870             
66871             if (!cell.initialClassName) {
66872                 cell.initialClassName = cell.dom.className;
66873             }
66874             
66875             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
66876         };
66877
66878         var i = 0;
66879         
66880         for(; i < startingPos; i++) {
66881             cells[i].dayName =  (++prevStart);
66882             Roo.log(textEls[i]);
66883             d.setDate(d.getDate()+1);
66884             
66885             //cells[i].className = "fc-past fc-other-month";
66886             setCellClass(this, cells[i]);
66887         }
66888         
66889         var intDay = 0;
66890         
66891         for(; i < days; i++){
66892             intDay = i - startingPos + 1;
66893             cells[i].dayName =  (intDay);
66894             d.setDate(d.getDate()+1);
66895             
66896             cells[i].className = ''; // "x-date-active";
66897             setCellClass(this, cells[i]);
66898         }
66899         var extraDays = 0;
66900         
66901         for(; i < 42; i++) {
66902             //textEls[i].innerHTML = (++extraDays);
66903             
66904             d.setDate(d.getDate()+1);
66905             cells[i].dayName = (++extraDays);
66906             cells[i].className = "fc-future fc-other-month";
66907             setCellClass(this, cells[i]);
66908         }
66909         
66910         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
66911         
66912         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
66913         
66914         // this will cause all the cells to mis
66915         var rows= [];
66916         var i =0;
66917         for (var r = 0;r < 6;r++) {
66918             for (var c =0;c < 7;c++) {
66919                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
66920             }    
66921         }
66922         
66923         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
66924         for(i=0;i<cells.length;i++) {
66925             
66926             this.cells.elements[i].dayName = cells[i].dayName ;
66927             this.cells.elements[i].className = cells[i].className;
66928             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
66929             this.cells.elements[i].title = cells[i].title ;
66930             this.cells.elements[i].dateValue = cells[i].dateValue ;
66931         }
66932         
66933         
66934         
66935         
66936         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
66937         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
66938         
66939         ////if(totalRows != 6){
66940             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
66941            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
66942        // }
66943         
66944         this.fireEvent('monthchange', this, date);
66945         
66946         
66947     },
66948  /**
66949      * Returns the grid's SelectionModel.
66950      * @return {SelectionModel}
66951      */
66952     getSelectionModel : function(){
66953         if(!this.selModel){
66954             this.selModel = new Roo.grid.CellSelectionModel();
66955         }
66956         return this.selModel;
66957     },
66958
66959     load: function() {
66960         this.eventStore.load()
66961         
66962         
66963         
66964     },
66965     
66966     findCell : function(dt) {
66967         dt = dt.clearTime().getTime();
66968         var ret = false;
66969         this.cells.each(function(c){
66970             //Roo.log("check " +c.dateValue + '?=' + dt);
66971             if(c.dateValue == dt){
66972                 ret = c;
66973                 return false;
66974             }
66975             return true;
66976         });
66977         
66978         return ret;
66979     },
66980     
66981     findCells : function(rec) {
66982         var s = rec.data.start_dt.clone().clearTime().getTime();
66983        // Roo.log(s);
66984         var e= rec.data.end_dt.clone().clearTime().getTime();
66985        // Roo.log(e);
66986         var ret = [];
66987         this.cells.each(function(c){
66988              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
66989             
66990             if(c.dateValue > e){
66991                 return ;
66992             }
66993             if(c.dateValue < s){
66994                 return ;
66995             }
66996             ret.push(c);
66997         });
66998         
66999         return ret;    
67000     },
67001     
67002     findBestRow: function(cells)
67003     {
67004         var ret = 0;
67005         
67006         for (var i =0 ; i < cells.length;i++) {
67007             ret  = Math.max(cells[i].rows || 0,ret);
67008         }
67009         return ret;
67010         
67011     },
67012     
67013     
67014     addItem : function(rec)
67015     {
67016         // look for vertical location slot in
67017         var cells = this.findCells(rec);
67018         
67019         rec.row = this.findBestRow(cells);
67020         
67021         // work out the location.
67022         
67023         var crow = false;
67024         var rows = [];
67025         for(var i =0; i < cells.length; i++) {
67026             if (!crow) {
67027                 crow = {
67028                     start : cells[i],
67029                     end :  cells[i]
67030                 };
67031                 continue;
67032             }
67033             if (crow.start.getY() == cells[i].getY()) {
67034                 // on same row.
67035                 crow.end = cells[i];
67036                 continue;
67037             }
67038             // different row.
67039             rows.push(crow);
67040             crow = {
67041                 start: cells[i],
67042                 end : cells[i]
67043             };
67044             
67045         }
67046         
67047         rows.push(crow);
67048         rec.els = [];
67049         rec.rows = rows;
67050         rec.cells = cells;
67051         for (var i = 0; i < cells.length;i++) {
67052             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
67053             
67054         }
67055         
67056         
67057     },
67058     
67059     clearEvents: function() {
67060         
67061         if (!this.eventStore.getCount()) {
67062             return;
67063         }
67064         // reset number of rows in cells.
67065         Roo.each(this.cells.elements, function(c){
67066             c.rows = 0;
67067         });
67068         
67069         this.eventStore.each(function(e) {
67070             this.clearEvent(e);
67071         },this);
67072         
67073     },
67074     
67075     clearEvent : function(ev)
67076     {
67077         if (ev.els) {
67078             Roo.each(ev.els, function(el) {
67079                 el.un('mouseenter' ,this.onEventEnter, this);
67080                 el.un('mouseleave' ,this.onEventLeave, this);
67081                 el.remove();
67082             },this);
67083             ev.els = [];
67084         }
67085     },
67086     
67087     
67088     renderEvent : function(ev,ctr) {
67089         if (!ctr) {
67090              ctr = this.view.el.select('.fc-event-container',true).first();
67091         }
67092         
67093          
67094         this.clearEvent(ev);
67095             //code
67096        
67097         
67098         
67099         ev.els = [];
67100         var cells = ev.cells;
67101         var rows = ev.rows;
67102         this.fireEvent('eventrender', this, ev);
67103         
67104         for(var i =0; i < rows.length; i++) {
67105             
67106             cls = '';
67107             if (i == 0) {
67108                 cls += ' fc-event-start';
67109             }
67110             if ((i+1) == rows.length) {
67111                 cls += ' fc-event-end';
67112             }
67113             
67114             //Roo.log(ev.data);
67115             // how many rows should it span..
67116             var cg = this.eventTmpl.append(ctr,Roo.apply({
67117                 fccls : cls
67118                 
67119             }, ev.data) , true);
67120             
67121             
67122             cg.on('mouseenter' ,this.onEventEnter, this, ev);
67123             cg.on('mouseleave' ,this.onEventLeave, this, ev);
67124             cg.on('click', this.onEventClick, this, ev);
67125             
67126             ev.els.push(cg);
67127             
67128             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
67129             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
67130             //Roo.log(cg);
67131              
67132             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
67133             cg.setWidth(ebox.right - sbox.x -2);
67134         }
67135     },
67136     
67137     renderEvents: function()
67138     {   
67139         // first make sure there is enough space..
67140         
67141         if (!this.eventTmpl) {
67142             this.eventTmpl = new Roo.Template(
67143                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
67144                     '<div class="fc-event-inner">' +
67145                         '<span class="fc-event-time">{time}</span>' +
67146                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
67147                     '</div>' +
67148                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
67149                 '</div>'
67150             );
67151                 
67152         }
67153                
67154         
67155         
67156         this.cells.each(function(c) {
67157             //Roo.log(c.select('.fc-day-content div',true).first());
67158             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
67159         });
67160         
67161         var ctr = this.view.el.select('.fc-event-container',true).first();
67162         
67163         var cls;
67164         this.eventStore.each(function(ev){
67165             
67166             this.renderEvent(ev);
67167              
67168              
67169         }, this);
67170         this.view.layout();
67171         
67172     },
67173     
67174     onEventEnter: function (e, el,event,d) {
67175         this.fireEvent('evententer', this, el, event);
67176     },
67177     
67178     onEventLeave: function (e, el,event,d) {
67179         this.fireEvent('eventleave', this, el, event);
67180     },
67181     
67182     onEventClick: function (e, el,event,d) {
67183         this.fireEvent('eventclick', this, el, event);
67184     },
67185     
67186     onMonthChange: function () {
67187         this.store.load();
67188     },
67189     
67190     onLoad: function () {
67191         
67192         //Roo.log('calendar onload');
67193 //         
67194         if(this.eventStore.getCount() > 0){
67195             
67196            
67197             
67198             this.eventStore.each(function(d){
67199                 
67200                 
67201                 // FIXME..
67202                 var add =   d.data;
67203                 if (typeof(add.end_dt) == 'undefined')  {
67204                     Roo.log("Missing End time in calendar data: ");
67205                     Roo.log(d);
67206                     return;
67207                 }
67208                 if (typeof(add.start_dt) == 'undefined')  {
67209                     Roo.log("Missing Start time in calendar data: ");
67210                     Roo.log(d);
67211                     return;
67212                 }
67213                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
67214                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
67215                 add.id = add.id || d.id;
67216                 add.title = add.title || '??';
67217                 
67218                 this.addItem(d);
67219                 
67220              
67221             },this);
67222         }
67223         
67224         this.renderEvents();
67225     }
67226     
67227
67228 });
67229 /*
67230  grid : {
67231                 xtype: 'Grid',
67232                 xns: Roo.grid,
67233                 listeners : {
67234                     render : function ()
67235                     {
67236                         _this.grid = this;
67237                         
67238                         if (!this.view.el.hasClass('course-timesheet')) {
67239                             this.view.el.addClass('course-timesheet');
67240                         }
67241                         if (this.tsStyle) {
67242                             this.ds.load({});
67243                             return; 
67244                         }
67245                         Roo.log('width');
67246                         Roo.log(_this.grid.view.el.getWidth());
67247                         
67248                         
67249                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
67250                             '.course-timesheet .x-grid-row' : {
67251                                 height: '80px'
67252                             },
67253                             '.x-grid-row td' : {
67254                                 'vertical-align' : 0
67255                             },
67256                             '.course-edit-link' : {
67257                                 'color' : 'blue',
67258                                 'text-overflow' : 'ellipsis',
67259                                 'overflow' : 'hidden',
67260                                 'white-space' : 'nowrap',
67261                                 'cursor' : 'pointer'
67262                             },
67263                             '.sub-link' : {
67264                                 'color' : 'green'
67265                             },
67266                             '.de-act-sup-link' : {
67267                                 'color' : 'purple',
67268                                 'text-decoration' : 'line-through'
67269                             },
67270                             '.de-act-link' : {
67271                                 'color' : 'red',
67272                                 'text-decoration' : 'line-through'
67273                             },
67274                             '.course-timesheet .course-highlight' : {
67275                                 'border-top-style': 'dashed !important',
67276                                 'border-bottom-bottom': 'dashed !important'
67277                             },
67278                             '.course-timesheet .course-item' : {
67279                                 'font-family'   : 'tahoma, arial, helvetica',
67280                                 'font-size'     : '11px',
67281                                 'overflow'      : 'hidden',
67282                                 'padding-left'  : '10px',
67283                                 'padding-right' : '10px',
67284                                 'padding-top' : '10px' 
67285                             }
67286                             
67287                         }, Roo.id());
67288                                 this.ds.load({});
67289                     }
67290                 },
67291                 autoWidth : true,
67292                 monitorWindowResize : false,
67293                 cellrenderer : function(v,x,r)
67294                 {
67295                     return v;
67296                 },
67297                 sm : {
67298                     xtype: 'CellSelectionModel',
67299                     xns: Roo.grid
67300                 },
67301                 dataSource : {
67302                     xtype: 'Store',
67303                     xns: Roo.data,
67304                     listeners : {
67305                         beforeload : function (_self, options)
67306                         {
67307                             options.params = options.params || {};
67308                             options.params._month = _this.monthField.getValue();
67309                             options.params.limit = 9999;
67310                             options.params['sort'] = 'when_dt';    
67311                             options.params['dir'] = 'ASC';    
67312                             this.proxy.loadResponse = this.loadResponse;
67313                             Roo.log("load?");
67314                             //this.addColumns();
67315                         },
67316                         load : function (_self, records, options)
67317                         {
67318                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
67319                                 // if you click on the translation.. you can edit it...
67320                                 var el = Roo.get(this);
67321                                 var id = el.dom.getAttribute('data-id');
67322                                 var d = el.dom.getAttribute('data-date');
67323                                 var t = el.dom.getAttribute('data-time');
67324                                 //var id = this.child('span').dom.textContent;
67325                                 
67326                                 //Roo.log(this);
67327                                 Pman.Dialog.CourseCalendar.show({
67328                                     id : id,
67329                                     when_d : d,
67330                                     when_t : t,
67331                                     productitem_active : id ? 1 : 0
67332                                 }, function() {
67333                                     _this.grid.ds.load({});
67334                                 });
67335                            
67336                            });
67337                            
67338                            _this.panel.fireEvent('resize', [ '', '' ]);
67339                         }
67340                     },
67341                     loadResponse : function(o, success, response){
67342                             // this is overridden on before load..
67343                             
67344                             Roo.log("our code?");       
67345                             //Roo.log(success);
67346                             //Roo.log(response)
67347                             delete this.activeRequest;
67348                             if(!success){
67349                                 this.fireEvent("loadexception", this, o, response);
67350                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67351                                 return;
67352                             }
67353                             var result;
67354                             try {
67355                                 result = o.reader.read(response);
67356                             }catch(e){
67357                                 Roo.log("load exception?");
67358                                 this.fireEvent("loadexception", this, o, response, e);
67359                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67360                                 return;
67361                             }
67362                             Roo.log("ready...");        
67363                             // loop through result.records;
67364                             // and set this.tdate[date] = [] << array of records..
67365                             _this.tdata  = {};
67366                             Roo.each(result.records, function(r){
67367                                 //Roo.log(r.data);
67368                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
67369                                     _this.tdata[r.data.when_dt.format('j')] = [];
67370                                 }
67371                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
67372                             });
67373                             
67374                             //Roo.log(_this.tdata);
67375                             
67376                             result.records = [];
67377                             result.totalRecords = 6;
67378                     
67379                             // let's generate some duumy records for the rows.
67380                             //var st = _this.dateField.getValue();
67381                             
67382                             // work out monday..
67383                             //st = st.add(Date.DAY, -1 * st.format('w'));
67384                             
67385                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67386                             
67387                             var firstOfMonth = date.getFirstDayOfMonth();
67388                             var days = date.getDaysInMonth();
67389                             var d = 1;
67390                             var firstAdded = false;
67391                             for (var i = 0; i < result.totalRecords ; i++) {
67392                                 //var d= st.add(Date.DAY, i);
67393                                 var row = {};
67394                                 var added = 0;
67395                                 for(var w = 0 ; w < 7 ; w++){
67396                                     if(!firstAdded && firstOfMonth != w){
67397                                         continue;
67398                                     }
67399                                     if(d > days){
67400                                         continue;
67401                                     }
67402                                     firstAdded = true;
67403                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
67404                                     row['weekday'+w] = String.format(
67405                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
67406                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
67407                                                     d,
67408                                                     date.format('Y-m-')+dd
67409                                                 );
67410                                     added++;
67411                                     if(typeof(_this.tdata[d]) != 'undefined'){
67412                                         Roo.each(_this.tdata[d], function(r){
67413                                             var is_sub = '';
67414                                             var deactive = '';
67415                                             var id = r.id;
67416                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
67417                                             if(r.parent_id*1>0){
67418                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
67419                                                 id = r.parent_id;
67420                                             }
67421                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
67422                                                 deactive = 'de-act-link';
67423                                             }
67424                                             
67425                                             row['weekday'+w] += String.format(
67426                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
67427                                                     id, //0
67428                                                     r.product_id_name, //1
67429                                                     r.when_dt.format('h:ia'), //2
67430                                                     is_sub, //3
67431                                                     deactive, //4
67432                                                     desc // 5
67433                                             );
67434                                         });
67435                                     }
67436                                     d++;
67437                                 }
67438                                 
67439                                 // only do this if something added..
67440                                 if(added > 0){ 
67441                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
67442                                 }
67443                                 
67444                                 
67445                                 // push it twice. (second one with an hour..
67446                                 
67447                             }
67448                             //Roo.log(result);
67449                             this.fireEvent("load", this, o, o.request.arg);
67450                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
67451                         },
67452                     sortInfo : {field: 'when_dt', direction : 'ASC' },
67453                     proxy : {
67454                         xtype: 'HttpProxy',
67455                         xns: Roo.data,
67456                         method : 'GET',
67457                         url : baseURL + '/Roo/Shop_course.php'
67458                     },
67459                     reader : {
67460                         xtype: 'JsonReader',
67461                         xns: Roo.data,
67462                         id : 'id',
67463                         fields : [
67464                             {
67465                                 'name': 'id',
67466                                 'type': 'int'
67467                             },
67468                             {
67469                                 'name': 'when_dt',
67470                                 'type': 'string'
67471                             },
67472                             {
67473                                 'name': 'end_dt',
67474                                 'type': 'string'
67475                             },
67476                             {
67477                                 'name': 'parent_id',
67478                                 'type': 'int'
67479                             },
67480                             {
67481                                 'name': 'product_id',
67482                                 'type': 'int'
67483                             },
67484                             {
67485                                 'name': 'productitem_id',
67486                                 'type': 'int'
67487                             },
67488                             {
67489                                 'name': 'guid',
67490                                 'type': 'int'
67491                             }
67492                         ]
67493                     }
67494                 },
67495                 toolbar : {
67496                     xtype: 'Toolbar',
67497                     xns: Roo,
67498                     items : [
67499                         {
67500                             xtype: 'Button',
67501                             xns: Roo.Toolbar,
67502                             listeners : {
67503                                 click : function (_self, e)
67504                                 {
67505                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67506                                     sd.setMonth(sd.getMonth()-1);
67507                                     _this.monthField.setValue(sd.format('Y-m-d'));
67508                                     _this.grid.ds.load({});
67509                                 }
67510                             },
67511                             text : "Back"
67512                         },
67513                         {
67514                             xtype: 'Separator',
67515                             xns: Roo.Toolbar
67516                         },
67517                         {
67518                             xtype: 'MonthField',
67519                             xns: Roo.form,
67520                             listeners : {
67521                                 render : function (_self)
67522                                 {
67523                                     _this.monthField = _self;
67524                                    // _this.monthField.set  today
67525                                 },
67526                                 select : function (combo, date)
67527                                 {
67528                                     _this.grid.ds.load({});
67529                                 }
67530                             },
67531                             value : (function() { return new Date(); })()
67532                         },
67533                         {
67534                             xtype: 'Separator',
67535                             xns: Roo.Toolbar
67536                         },
67537                         {
67538                             xtype: 'TextItem',
67539                             xns: Roo.Toolbar,
67540                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
67541                         },
67542                         {
67543                             xtype: 'Fill',
67544                             xns: Roo.Toolbar
67545                         },
67546                         {
67547                             xtype: 'Button',
67548                             xns: Roo.Toolbar,
67549                             listeners : {
67550                                 click : function (_self, e)
67551                                 {
67552                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67553                                     sd.setMonth(sd.getMonth()+1);
67554                                     _this.monthField.setValue(sd.format('Y-m-d'));
67555                                     _this.grid.ds.load({});
67556                                 }
67557                             },
67558                             text : "Next"
67559                         }
67560                     ]
67561                 },
67562                  
67563             }
67564         };
67565         
67566         *//*
67567  * Based on:
67568  * Ext JS Library 1.1.1
67569  * Copyright(c) 2006-2007, Ext JS, LLC.
67570  *
67571  * Originally Released Under LGPL - original licence link has changed is not relivant.
67572  *
67573  * Fork - LGPL
67574  * <script type="text/javascript">
67575  */
67576  
67577 /**
67578  * @class Roo.LoadMask
67579  * A simple utility class for generically masking elements while loading data.  If the element being masked has
67580  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
67581  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
67582  * element's UpdateManager load indicator and will be destroyed after the initial load.
67583  * @constructor
67584  * Create a new LoadMask
67585  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
67586  * @param {Object} config The config object
67587  */
67588 Roo.LoadMask = function(el, config){
67589     this.el = Roo.get(el);
67590     Roo.apply(this, config);
67591     if(this.store){
67592         this.store.on('beforeload', this.onBeforeLoad, this);
67593         this.store.on('load', this.onLoad, this);
67594         this.store.on('loadexception', this.onLoadException, this);
67595         this.removeMask = false;
67596     }else{
67597         var um = this.el.getUpdateManager();
67598         um.showLoadIndicator = false; // disable the default indicator
67599         um.on('beforeupdate', this.onBeforeLoad, this);
67600         um.on('update', this.onLoad, this);
67601         um.on('failure', this.onLoad, this);
67602         this.removeMask = true;
67603     }
67604 };
67605
67606 Roo.LoadMask.prototype = {
67607     /**
67608      * @cfg {Boolean} removeMask
67609      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
67610      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
67611      */
67612     removeMask : false,
67613     /**
67614      * @cfg {String} msg
67615      * The text to display in a centered loading message box (defaults to 'Loading...')
67616      */
67617     msg : 'Loading...',
67618     /**
67619      * @cfg {String} msgCls
67620      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
67621      */
67622     msgCls : 'x-mask-loading',
67623
67624     /**
67625      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
67626      * @type Boolean
67627      */
67628     disabled: false,
67629
67630     /**
67631      * Disables the mask to prevent it from being displayed
67632      */
67633     disable : function(){
67634        this.disabled = true;
67635     },
67636
67637     /**
67638      * Enables the mask so that it can be displayed
67639      */
67640     enable : function(){
67641         this.disabled = false;
67642     },
67643     
67644     onLoadException : function()
67645     {
67646         Roo.log(arguments);
67647         
67648         if (typeof(arguments[3]) != 'undefined') {
67649             Roo.MessageBox.alert("Error loading",arguments[3]);
67650         } 
67651         /*
67652         try {
67653             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
67654                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
67655             }   
67656         } catch(e) {
67657             
67658         }
67659         */
67660     
67661         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67662     },
67663     // private
67664     onLoad : function()
67665     {
67666         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67667     },
67668
67669     // private
67670     onBeforeLoad : function(){
67671         if(!this.disabled){
67672             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
67673         }
67674     },
67675
67676     // private
67677     destroy : function(){
67678         if(this.store){
67679             this.store.un('beforeload', this.onBeforeLoad, this);
67680             this.store.un('load', this.onLoad, this);
67681             this.store.un('loadexception', this.onLoadException, this);
67682         }else{
67683             var um = this.el.getUpdateManager();
67684             um.un('beforeupdate', this.onBeforeLoad, this);
67685             um.un('update', this.onLoad, this);
67686             um.un('failure', this.onLoad, this);
67687         }
67688     }
67689 };/*
67690  * Based on:
67691  * Ext JS Library 1.1.1
67692  * Copyright(c) 2006-2007, Ext JS, LLC.
67693  *
67694  * Originally Released Under LGPL - original licence link has changed is not relivant.
67695  *
67696  * Fork - LGPL
67697  * <script type="text/javascript">
67698  */
67699
67700
67701 /**
67702  * @class Roo.XTemplate
67703  * @extends Roo.Template
67704  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
67705 <pre><code>
67706 var t = new Roo.XTemplate(
67707         '&lt;select name="{name}"&gt;',
67708                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
67709         '&lt;/select&gt;'
67710 );
67711  
67712 // then append, applying the master template values
67713  </code></pre>
67714  *
67715  * Supported features:
67716  *
67717  *  Tags:
67718
67719 <pre><code>
67720       {a_variable} - output encoded.
67721       {a_variable.format:("Y-m-d")} - call a method on the variable
67722       {a_variable:raw} - unencoded output
67723       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
67724       {a_variable:this.method_on_template(...)} - call a method on the template object.
67725  
67726 </code></pre>
67727  *  The tpl tag:
67728 <pre><code>
67729         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
67730         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
67731         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
67732         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
67733   
67734         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
67735         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
67736 </code></pre>
67737  *      
67738  */
67739 Roo.XTemplate = function()
67740 {
67741     Roo.XTemplate.superclass.constructor.apply(this, arguments);
67742     if (this.html) {
67743         this.compile();
67744     }
67745 };
67746
67747
67748 Roo.extend(Roo.XTemplate, Roo.Template, {
67749
67750     /**
67751      * The various sub templates
67752      */
67753     tpls : false,
67754     /**
67755      *
67756      * basic tag replacing syntax
67757      * WORD:WORD()
67758      *
67759      * // you can fake an object call by doing this
67760      *  x.t:(test,tesT) 
67761      * 
67762      */
67763     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
67764
67765     /**
67766      * compile the template
67767      *
67768      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
67769      *
67770      */
67771     compile: function()
67772     {
67773         var s = this.html;
67774      
67775         s = ['<tpl>', s, '</tpl>'].join('');
67776     
67777         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
67778             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
67779             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
67780             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
67781             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
67782             m,
67783             id     = 0,
67784             tpls   = [];
67785     
67786         while(true == !!(m = s.match(re))){
67787             var forMatch   = m[0].match(nameRe),
67788                 ifMatch   = m[0].match(ifRe),
67789                 execMatch   = m[0].match(execRe),
67790                 namedMatch   = m[0].match(namedRe),
67791                 
67792                 exp  = null, 
67793                 fn   = null,
67794                 exec = null,
67795                 name = forMatch && forMatch[1] ? forMatch[1] : '';
67796                 
67797             if (ifMatch) {
67798                 // if - puts fn into test..
67799                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
67800                 if(exp){
67801                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
67802                 }
67803             }
67804             
67805             if (execMatch) {
67806                 // exec - calls a function... returns empty if true is  returned.
67807                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
67808                 if(exp){
67809                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
67810                 }
67811             }
67812             
67813             
67814             if (name) {
67815                 // for = 
67816                 switch(name){
67817                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
67818                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
67819                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
67820                 }
67821             }
67822             var uid = namedMatch ? namedMatch[1] : id;
67823             
67824             
67825             tpls.push({
67826                 id:     namedMatch ? namedMatch[1] : id,
67827                 target: name,
67828                 exec:   exec,
67829                 test:   fn,
67830                 body:   m[1] || ''
67831             });
67832             if (namedMatch) {
67833                 s = s.replace(m[0], '');
67834             } else { 
67835                 s = s.replace(m[0], '{xtpl'+ id + '}');
67836             }
67837             ++id;
67838         }
67839         this.tpls = [];
67840         for(var i = tpls.length-1; i >= 0; --i){
67841             this.compileTpl(tpls[i]);
67842             this.tpls[tpls[i].id] = tpls[i];
67843         }
67844         this.master = tpls[tpls.length-1];
67845         return this;
67846     },
67847     /**
67848      * same as applyTemplate, except it's done to one of the subTemplates
67849      * when using named templates, you can do:
67850      *
67851      * var str = pl.applySubTemplate('your-name', values);
67852      *
67853      * 
67854      * @param {Number} id of the template
67855      * @param {Object} values to apply to template
67856      * @param {Object} parent (normaly the instance of this object)
67857      */
67858     applySubTemplate : function(id, values, parent)
67859     {
67860         
67861         
67862         var t = this.tpls[id];
67863         
67864         
67865         try { 
67866             if(t.test && !t.test.call(this, values, parent)){
67867                 return '';
67868             }
67869         } catch(e) {
67870             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
67871             Roo.log(e.toString());
67872             Roo.log(t.test);
67873             return ''
67874         }
67875         try { 
67876             
67877             if(t.exec && t.exec.call(this, values, parent)){
67878                 return '';
67879             }
67880         } catch(e) {
67881             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
67882             Roo.log(e.toString());
67883             Roo.log(t.exec);
67884             return ''
67885         }
67886         try {
67887             var vs = t.target ? t.target.call(this, values, parent) : values;
67888             parent = t.target ? values : parent;
67889             if(t.target && vs instanceof Array){
67890                 var buf = [];
67891                 for(var i = 0, len = vs.length; i < len; i++){
67892                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
67893                 }
67894                 return buf.join('');
67895             }
67896             return t.compiled.call(this, vs, parent);
67897         } catch (e) {
67898             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
67899             Roo.log(e.toString());
67900             Roo.log(t.compiled);
67901             return '';
67902         }
67903     },
67904
67905     compileTpl : function(tpl)
67906     {
67907         var fm = Roo.util.Format;
67908         var useF = this.disableFormats !== true;
67909         var sep = Roo.isGecko ? "+" : ",";
67910         var undef = function(str) {
67911             Roo.log("Property not found :"  + str);
67912             return '';
67913         };
67914         
67915         var fn = function(m, name, format, args)
67916         {
67917             //Roo.log(arguments);
67918             args = args ? args.replace(/\\'/g,"'") : args;
67919             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
67920             if (typeof(format) == 'undefined') {
67921                 format= 'htmlEncode';
67922             }
67923             if (format == 'raw' ) {
67924                 format = false;
67925             }
67926             
67927             if(name.substr(0, 4) == 'xtpl'){
67928                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
67929             }
67930             
67931             // build an array of options to determine if value is undefined..
67932             
67933             // basically get 'xxxx.yyyy' then do
67934             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
67935             //    (function () { Roo.log("Property not found"); return ''; })() :
67936             //    ......
67937             
67938             var udef_ar = [];
67939             var lookfor = '';
67940             Roo.each(name.split('.'), function(st) {
67941                 lookfor += (lookfor.length ? '.': '') + st;
67942                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
67943             });
67944             
67945             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
67946             
67947             
67948             if(format && useF){
67949                 
67950                 args = args ? ',' + args : "";
67951                  
67952                 if(format.substr(0, 5) != "this."){
67953                     format = "fm." + format + '(';
67954                 }else{
67955                     format = 'this.call("'+ format.substr(5) + '", ';
67956                     args = ", values";
67957                 }
67958                 
67959                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
67960             }
67961              
67962             if (args.length) {
67963                 // called with xxyx.yuu:(test,test)
67964                 // change to ()
67965                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
67966             }
67967             // raw.. - :raw modifier..
67968             return "'"+ sep + udef_st  + name + ")"+sep+"'";
67969             
67970         };
67971         var body;
67972         // branched to use + in gecko and [].join() in others
67973         if(Roo.isGecko){
67974             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
67975                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
67976                     "';};};";
67977         }else{
67978             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
67979             body.push(tpl.body.replace(/(\r\n|\n)/g,
67980                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
67981             body.push("'].join('');};};");
67982             body = body.join('');
67983         }
67984         
67985         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
67986        
67987         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
67988         eval(body);
67989         
67990         return this;
67991     },
67992
67993     applyTemplate : function(values){
67994         return this.master.compiled.call(this, values, {});
67995         //var s = this.subs;
67996     },
67997
67998     apply : function(){
67999         return this.applyTemplate.apply(this, arguments);
68000     }
68001
68002  });
68003
68004 Roo.XTemplate.from = function(el){
68005     el = Roo.getDom(el);
68006     return new Roo.XTemplate(el.value || el.innerHTML);
68007 };