Fix #6666 - paging upgrade to bs4
[roojs1] / roojs-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         }
672         
673     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     },
1019     /**
1020      * equals
1021      * @param {Array} o The array to compare to
1022      * @returns {Boolean} true if the same
1023      */
1024     equals : function(b)
1025     {
1026         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1027         if (this === b) {
1028             return true;
1029          }
1030         if (b == null) {
1031             return false;
1032         }
1033         if (this.length !== b.length) {
1034             return false;
1035         }
1036       
1037         // sort?? a.sort().equals(b.sort());
1038       
1039         for (var i = 0; i < this.length; ++i) {
1040             if (this[i] !== b[i]) {
1041                 return false;
1042             }
1043         }
1044         return true;
1045     }
1046 });
1047
1048
1049  
1050 /*
1051  * Based on:
1052  * Ext JS Library 1.1.1
1053  * Copyright(c) 2006-2007, Ext JS, LLC.
1054  *
1055  * Originally Released Under LGPL - original licence link has changed is not relivant.
1056  *
1057  * Fork - LGPL
1058  * <script type="text/javascript">
1059  */
1060
1061 /**
1062  * @class Date
1063  *
1064  * The date parsing and format syntax is a subset of
1065  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1066  * supported will provide results equivalent to their PHP versions.
1067  *
1068  * Following is the list of all currently supported formats:
1069  *<pre>
1070 Sample date:
1071 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1072
1073 Format  Output      Description
1074 ------  ----------  --------------------------------------------------------------
1075   d      10         Day of the month, 2 digits with leading zeros
1076   D      Wed        A textual representation of a day, three letters
1077   j      10         Day of the month without leading zeros
1078   l      Wednesday  A full textual representation of the day of the week
1079   S      th         English ordinal day of month suffix, 2 chars (use with j)
1080   w      3          Numeric representation of the day of the week
1081   z      9          The julian date, or day of the year (0-365)
1082   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1083   F      January    A full textual representation of the month
1084   m      01         Numeric representation of a month, with leading zeros
1085   M      Jan        Month name abbreviation, three letters
1086   n      1          Numeric representation of a month, without leading zeros
1087   t      31         Number of days in the given month
1088   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1089   Y      2007       A full numeric representation of a year, 4 digits
1090   y      07         A two digit representation of a year
1091   a      pm         Lowercase Ante meridiem and Post meridiem
1092   A      PM         Uppercase Ante meridiem and Post meridiem
1093   g      3          12-hour format of an hour without leading zeros
1094   G      15         24-hour format of an hour without leading zeros
1095   h      03         12-hour format of an hour with leading zeros
1096   H      15         24-hour format of an hour with leading zeros
1097   i      05         Minutes with leading zeros
1098   s      01         Seconds, with leading zeros
1099   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1100   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1101   T      CST        Timezone setting of the machine running the code
1102   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1103 </pre>
1104  *
1105  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1106  * <pre><code>
1107 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1108 document.write(dt.format('Y-m-d'));                         //2007-01-10
1109 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1110 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1111  </code></pre>
1112  *
1113  * Here are some standard date/time patterns that you might find helpful.  They
1114  * are not part of the source of Date.js, but to use them you can simply copy this
1115  * block of code into any script that is included after Date.js and they will also become
1116  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1117  * <pre><code>
1118 Date.patterns = {
1119     ISO8601Long:"Y-m-d H:i:s",
1120     ISO8601Short:"Y-m-d",
1121     ShortDate: "n/j/Y",
1122     LongDate: "l, F d, Y",
1123     FullDateTime: "l, F d, Y g:i:s A",
1124     MonthDay: "F d",
1125     ShortTime: "g:i A",
1126     LongTime: "g:i:s A",
1127     SortableDateTime: "Y-m-d\\TH:i:s",
1128     UniversalSortableDateTime: "Y-m-d H:i:sO",
1129     YearMonth: "F, Y"
1130 };
1131 </code></pre>
1132  *
1133  * Example usage:
1134  * <pre><code>
1135 var dt = new Date();
1136 document.write(dt.format(Date.patterns.ShortDate));
1137  </code></pre>
1138  */
1139
1140 /*
1141  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1142  * They generate precompiled functions from date formats instead of parsing and
1143  * processing the pattern every time you format a date.  These functions are available
1144  * on every Date object (any javascript function).
1145  *
1146  * The original article and download are here:
1147  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1148  *
1149  */
1150  
1151  
1152  // was in core
1153 /**
1154  Returns the number of milliseconds between this date and date
1155  @param {Date} date (optional) Defaults to now
1156  @return {Number} The diff in milliseconds
1157  @member Date getElapsed
1158  */
1159 Date.prototype.getElapsed = function(date) {
1160         return Math.abs((date || new Date()).getTime()-this.getTime());
1161 };
1162 // was in date file..
1163
1164
1165 // private
1166 Date.parseFunctions = {count:0};
1167 // private
1168 Date.parseRegexes = [];
1169 // private
1170 Date.formatFunctions = {count:0};
1171
1172 // private
1173 Date.prototype.dateFormat = function(format) {
1174     if (Date.formatFunctions[format] == null) {
1175         Date.createNewFormat(format);
1176     }
1177     var func = Date.formatFunctions[format];
1178     return this[func]();
1179 };
1180
1181
1182 /**
1183  * Formats a date given the supplied format string
1184  * @param {String} format The format string
1185  * @return {String} The formatted date
1186  * @method
1187  */
1188 Date.prototype.format = Date.prototype.dateFormat;
1189
1190 // private
1191 Date.createNewFormat = function(format) {
1192     var funcName = "format" + Date.formatFunctions.count++;
1193     Date.formatFunctions[format] = funcName;
1194     var code = "Date.prototype." + funcName + " = function(){return ";
1195     var special = false;
1196     var ch = '';
1197     for (var i = 0; i < format.length; ++i) {
1198         ch = format.charAt(i);
1199         if (!special && ch == "\\") {
1200             special = true;
1201         }
1202         else if (special) {
1203             special = false;
1204             code += "'" + String.escape(ch) + "' + ";
1205         }
1206         else {
1207             code += Date.getFormatCode(ch);
1208         }
1209     }
1210     /** eval:var:zzzzzzzzzzzzz */
1211     eval(code.substring(0, code.length - 3) + ";}");
1212 };
1213
1214 // private
1215 Date.getFormatCode = function(character) {
1216     switch (character) {
1217     case "d":
1218         return "String.leftPad(this.getDate(), 2, '0') + ";
1219     case "D":
1220         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1221     case "j":
1222         return "this.getDate() + ";
1223     case "l":
1224         return "Date.dayNames[this.getDay()] + ";
1225     case "S":
1226         return "this.getSuffix() + ";
1227     case "w":
1228         return "this.getDay() + ";
1229     case "z":
1230         return "this.getDayOfYear() + ";
1231     case "W":
1232         return "this.getWeekOfYear() + ";
1233     case "F":
1234         return "Date.monthNames[this.getMonth()] + ";
1235     case "m":
1236         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1237     case "M":
1238         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1239     case "n":
1240         return "(this.getMonth() + 1) + ";
1241     case "t":
1242         return "this.getDaysInMonth() + ";
1243     case "L":
1244         return "(this.isLeapYear() ? 1 : 0) + ";
1245     case "Y":
1246         return "this.getFullYear() + ";
1247     case "y":
1248         return "('' + this.getFullYear()).substring(2, 4) + ";
1249     case "a":
1250         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1251     case "A":
1252         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1253     case "g":
1254         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1255     case "G":
1256         return "this.getHours() + ";
1257     case "h":
1258         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1259     case "H":
1260         return "String.leftPad(this.getHours(), 2, '0') + ";
1261     case "i":
1262         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1263     case "s":
1264         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1265     case "O":
1266         return "this.getGMTOffset() + ";
1267     case "P":
1268         return "this.getGMTColonOffset() + ";
1269     case "T":
1270         return "this.getTimezone() + ";
1271     case "Z":
1272         return "(this.getTimezoneOffset() * -60) + ";
1273     default:
1274         return "'" + String.escape(character) + "' + ";
1275     }
1276 };
1277
1278 /**
1279  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1280  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1281  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1282  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1283  * string or the parse operation will fail.
1284  * Example Usage:
1285 <pre><code>
1286 //dt = Fri May 25 2007 (current date)
1287 var dt = new Date();
1288
1289 //dt = Thu May 25 2006 (today's month/day in 2006)
1290 dt = Date.parseDate("2006", "Y");
1291
1292 //dt = Sun Jan 15 2006 (all date parts specified)
1293 dt = Date.parseDate("2006-1-15", "Y-m-d");
1294
1295 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1296 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1297 </code></pre>
1298  * @param {String} input The unparsed date as a string
1299  * @param {String} format The format the date is in
1300  * @return {Date} The parsed date
1301  * @static
1302  */
1303 Date.parseDate = function(input, format) {
1304     if (Date.parseFunctions[format] == null) {
1305         Date.createParser(format);
1306     }
1307     var func = Date.parseFunctions[format];
1308     return Date[func](input);
1309 };
1310 /**
1311  * @private
1312  */
1313
1314 Date.createParser = function(format) {
1315     var funcName = "parse" + Date.parseFunctions.count++;
1316     var regexNum = Date.parseRegexes.length;
1317     var currentGroup = 1;
1318     Date.parseFunctions[format] = funcName;
1319
1320     var code = "Date." + funcName + " = function(input){\n"
1321         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1322         + "var d = new Date();\n"
1323         + "y = d.getFullYear();\n"
1324         + "m = d.getMonth();\n"
1325         + "d = d.getDate();\n"
1326         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1327         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1328         + "if (results && results.length > 0) {";
1329     var regex = "";
1330
1331     var special = false;
1332     var ch = '';
1333     for (var i = 0; i < format.length; ++i) {
1334         ch = format.charAt(i);
1335         if (!special && ch == "\\") {
1336             special = true;
1337         }
1338         else if (special) {
1339             special = false;
1340             regex += String.escape(ch);
1341         }
1342         else {
1343             var obj = Date.formatCodeToRegex(ch, currentGroup);
1344             currentGroup += obj.g;
1345             regex += obj.s;
1346             if (obj.g && obj.c) {
1347                 code += obj.c;
1348             }
1349         }
1350     }
1351
1352     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1353         + "{v = new Date(y, m, d, h, i, s);}\n"
1354         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1355         + "{v = new Date(y, m, d, h, i);}\n"
1356         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1357         + "{v = new Date(y, m, d, h);}\n"
1358         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1359         + "{v = new Date(y, m, d);}\n"
1360         + "else if (y >= 0 && m >= 0)\n"
1361         + "{v = new Date(y, m);}\n"
1362         + "else if (y >= 0)\n"
1363         + "{v = new Date(y);}\n"
1364         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1365         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1366         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1367         + ";}";
1368
1369     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1370     /** eval:var:zzzzzzzzzzzzz */
1371     eval(code);
1372 };
1373
1374 // private
1375 Date.formatCodeToRegex = function(character, currentGroup) {
1376     switch (character) {
1377     case "D":
1378         return {g:0,
1379         c:null,
1380         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1381     case "j":
1382         return {g:1,
1383             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1384             s:"(\\d{1,2})"}; // day of month without leading zeroes
1385     case "d":
1386         return {g:1,
1387             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1388             s:"(\\d{2})"}; // day of month with leading zeroes
1389     case "l":
1390         return {g:0,
1391             c:null,
1392             s:"(?:" + Date.dayNames.join("|") + ")"};
1393     case "S":
1394         return {g:0,
1395             c:null,
1396             s:"(?:st|nd|rd|th)"};
1397     case "w":
1398         return {g:0,
1399             c:null,
1400             s:"\\d"};
1401     case "z":
1402         return {g:0,
1403             c:null,
1404             s:"(?:\\d{1,3})"};
1405     case "W":
1406         return {g:0,
1407             c:null,
1408             s:"(?:\\d{2})"};
1409     case "F":
1410         return {g:1,
1411             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1412             s:"(" + Date.monthNames.join("|") + ")"};
1413     case "M":
1414         return {g:1,
1415             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1416             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1417     case "n":
1418         return {g:1,
1419             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1420             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1421     case "m":
1422         return {g:1,
1423             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1424             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1425     case "t":
1426         return {g:0,
1427             c:null,
1428             s:"\\d{1,2}"};
1429     case "L":
1430         return {g:0,
1431             c:null,
1432             s:"(?:1|0)"};
1433     case "Y":
1434         return {g:1,
1435             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1436             s:"(\\d{4})"};
1437     case "y":
1438         return {g:1,
1439             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1440                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1441             s:"(\\d{1,2})"};
1442     case "a":
1443         return {g:1,
1444             c:"if (results[" + currentGroup + "] == 'am') {\n"
1445                 + "if (h == 12) { h = 0; }\n"
1446                 + "} else { if (h < 12) { h += 12; }}",
1447             s:"(am|pm)"};
1448     case "A":
1449         return {g:1,
1450             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1451                 + "if (h == 12) { h = 0; }\n"
1452                 + "} else { if (h < 12) { h += 12; }}",
1453             s:"(AM|PM)"};
1454     case "g":
1455     case "G":
1456         return {g:1,
1457             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1458             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1459     case "h":
1460     case "H":
1461         return {g:1,
1462             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1464     case "i":
1465         return {g:1,
1466             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1467             s:"(\\d{2})"};
1468     case "s":
1469         return {g:1,
1470             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1471             s:"(\\d{2})"};
1472     case "O":
1473         return {g:1,
1474             c:[
1475                 "o = results[", currentGroup, "];\n",
1476                 "var sn = o.substring(0,1);\n", // get + / - sign
1477                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1478                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1479                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1480                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1481             ].join(""),
1482             s:"([+\-]\\d{2,4})"};
1483     
1484     
1485     case "P":
1486         return {g:1,
1487                 c:[
1488                    "o = results[", currentGroup, "];\n",
1489                    "var sn = o.substring(0,1);\n",
1490                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1491                    "var mn = o.substring(4,6) % 60;\n",
1492                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1493                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1494             ].join(""),
1495             s:"([+\-]\\d{4})"};
1496     case "T":
1497         return {g:0,
1498             c:null,
1499             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1500     case "Z":
1501         return {g:1,
1502             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1503                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1504             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1505     default:
1506         return {g:0,
1507             c:null,
1508             s:String.escape(character)};
1509     }
1510 };
1511
1512 /**
1513  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1514  * @return {String} The abbreviated timezone name (e.g. 'CST')
1515  */
1516 Date.prototype.getTimezone = function() {
1517     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1518 };
1519
1520 /**
1521  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1522  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1523  */
1524 Date.prototype.getGMTOffset = function() {
1525     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1526         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1527         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1528 };
1529
1530 /**
1531  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1532  * @return {String} 2-characters representing hours and 2-characters representing minutes
1533  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1534  */
1535 Date.prototype.getGMTColonOffset = function() {
1536         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1537                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1538                 + ":"
1539                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1540 }
1541
1542 /**
1543  * Get the numeric day number of the year, adjusted for leap year.
1544  * @return {Number} 0 through 364 (365 in leap years)
1545  */
1546 Date.prototype.getDayOfYear = function() {
1547     var num = 0;
1548     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1549     for (var i = 0; i < this.getMonth(); ++i) {
1550         num += Date.daysInMonth[i];
1551     }
1552     return num + this.getDate() - 1;
1553 };
1554
1555 /**
1556  * Get the string representation of the numeric week number of the year
1557  * (equivalent to the format specifier 'W').
1558  * @return {String} '00' through '52'
1559  */
1560 Date.prototype.getWeekOfYear = function() {
1561     // Skip to Thursday of this week
1562     var now = this.getDayOfYear() + (4 - this.getDay());
1563     // Find the first Thursday of the year
1564     var jan1 = new Date(this.getFullYear(), 0, 1);
1565     var then = (7 - jan1.getDay() + 4);
1566     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1567 };
1568
1569 /**
1570  * Whether or not the current date is in a leap year.
1571  * @return {Boolean} True if the current date is in a leap year, else false
1572  */
1573 Date.prototype.isLeapYear = function() {
1574     var year = this.getFullYear();
1575     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1576 };
1577
1578 /**
1579  * Get the first day of the current month, adjusted for leap year.  The returned value
1580  * is the numeric day index within the week (0-6) which can be used in conjunction with
1581  * the {@link #monthNames} array to retrieve the textual day name.
1582  * Example:
1583  *<pre><code>
1584 var dt = new Date('1/10/2007');
1585 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1586 </code></pre>
1587  * @return {Number} The day number (0-6)
1588  */
1589 Date.prototype.getFirstDayOfMonth = function() {
1590     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1591     return (day < 0) ? (day + 7) : day;
1592 };
1593
1594 /**
1595  * Get the last day of the current month, adjusted for leap year.  The returned value
1596  * is the numeric day index within the week (0-6) which can be used in conjunction with
1597  * the {@link #monthNames} array to retrieve the textual day name.
1598  * Example:
1599  *<pre><code>
1600 var dt = new Date('1/10/2007');
1601 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1602 </code></pre>
1603  * @return {Number} The day number (0-6)
1604  */
1605 Date.prototype.getLastDayOfMonth = function() {
1606     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1607     return (day < 0) ? (day + 7) : day;
1608 };
1609
1610
1611 /**
1612  * Get the first date of this date's month
1613  * @return {Date}
1614  */
1615 Date.prototype.getFirstDateOfMonth = function() {
1616     return new Date(this.getFullYear(), this.getMonth(), 1);
1617 };
1618
1619 /**
1620  * Get the last date of this date's month
1621  * @return {Date}
1622  */
1623 Date.prototype.getLastDateOfMonth = function() {
1624     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1625 };
1626 /**
1627  * Get the number of days in the current month, adjusted for leap year.
1628  * @return {Number} The number of days in the month
1629  */
1630 Date.prototype.getDaysInMonth = function() {
1631     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1632     return Date.daysInMonth[this.getMonth()];
1633 };
1634
1635 /**
1636  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1637  * @return {String} 'st, 'nd', 'rd' or 'th'
1638  */
1639 Date.prototype.getSuffix = function() {
1640     switch (this.getDate()) {
1641         case 1:
1642         case 21:
1643         case 31:
1644             return "st";
1645         case 2:
1646         case 22:
1647             return "nd";
1648         case 3:
1649         case 23:
1650             return "rd";
1651         default:
1652             return "th";
1653     }
1654 };
1655
1656 // private
1657 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1658
1659 /**
1660  * An array of textual month names.
1661  * Override these values for international dates, for example...
1662  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1663  * @type Array
1664  * @static
1665  */
1666 Date.monthNames =
1667    ["January",
1668     "February",
1669     "March",
1670     "April",
1671     "May",
1672     "June",
1673     "July",
1674     "August",
1675     "September",
1676     "October",
1677     "November",
1678     "December"];
1679
1680 /**
1681  * An array of textual day names.
1682  * Override these values for international dates, for example...
1683  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1684  * @type Array
1685  * @static
1686  */
1687 Date.dayNames =
1688    ["Sunday",
1689     "Monday",
1690     "Tuesday",
1691     "Wednesday",
1692     "Thursday",
1693     "Friday",
1694     "Saturday"];
1695
1696 // private
1697 Date.y2kYear = 50;
1698 // private
1699 Date.monthNumbers = {
1700     Jan:0,
1701     Feb:1,
1702     Mar:2,
1703     Apr:3,
1704     May:4,
1705     Jun:5,
1706     Jul:6,
1707     Aug:7,
1708     Sep:8,
1709     Oct:9,
1710     Nov:10,
1711     Dec:11};
1712
1713 /**
1714  * Creates and returns a new Date instance with the exact same date value as the called instance.
1715  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1716  * variable will also be changed.  When the intention is to create a new variable that will not
1717  * modify the original instance, you should create a clone.
1718  *
1719  * Example of correctly cloning a date:
1720  * <pre><code>
1721 //wrong way:
1722 var orig = new Date('10/1/2006');
1723 var copy = orig;
1724 copy.setDate(5);
1725 document.write(orig);  //returns 'Thu Oct 05 2006'!
1726
1727 //correct way:
1728 var orig = new Date('10/1/2006');
1729 var copy = orig.clone();
1730 copy.setDate(5);
1731 document.write(orig);  //returns 'Thu Oct 01 2006'
1732 </code></pre>
1733  * @return {Date} The new Date instance
1734  */
1735 Date.prototype.clone = function() {
1736         return new Date(this.getTime());
1737 };
1738
1739 /**
1740  * Clears any time information from this date
1741  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1742  @return {Date} this or the clone
1743  */
1744 Date.prototype.clearTime = function(clone){
1745     if(clone){
1746         return this.clone().clearTime();
1747     }
1748     this.setHours(0);
1749     this.setMinutes(0);
1750     this.setSeconds(0);
1751     this.setMilliseconds(0);
1752     return this;
1753 };
1754
1755 // private
1756 // safari setMonth is broken -- check that this is only donw once...
1757 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1758     Date.brokenSetMonth = Date.prototype.setMonth;
1759         Date.prototype.setMonth = function(num){
1760                 if(num <= -1){
1761                         var n = Math.ceil(-num);
1762                         var back_year = Math.ceil(n/12);
1763                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1764                         this.setFullYear(this.getFullYear() - back_year);
1765                         return Date.brokenSetMonth.call(this, month);
1766                 } else {
1767                         return Date.brokenSetMonth.apply(this, arguments);
1768                 }
1769         };
1770 }
1771
1772 /** Date interval constant 
1773 * @static 
1774 * @type String */
1775 Date.MILLI = "ms";
1776 /** Date interval constant 
1777 * @static 
1778 * @type String */
1779 Date.SECOND = "s";
1780 /** Date interval constant 
1781 * @static 
1782 * @type String */
1783 Date.MINUTE = "mi";
1784 /** Date interval constant 
1785 * @static 
1786 * @type String */
1787 Date.HOUR = "h";
1788 /** Date interval constant 
1789 * @static 
1790 * @type String */
1791 Date.DAY = "d";
1792 /** Date interval constant 
1793 * @static 
1794 * @type String */
1795 Date.MONTH = "mo";
1796 /** Date interval constant 
1797 * @static 
1798 * @type String */
1799 Date.YEAR = "y";
1800
1801 /**
1802  * Provides a convenient method of performing basic date arithmetic.  This method
1803  * does not modify the Date instance being called - it creates and returns
1804  * a new Date instance containing the resulting date value.
1805  *
1806  * Examples:
1807  * <pre><code>
1808 //Basic usage:
1809 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1810 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1811
1812 //Negative values will subtract correctly:
1813 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1814 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1815
1816 //You can even chain several calls together in one line!
1817 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1818 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1819  </code></pre>
1820  *
1821  * @param {String} interval   A valid date interval enum value
1822  * @param {Number} value      The amount to add to the current date
1823  * @return {Date} The new Date instance
1824  */
1825 Date.prototype.add = function(interval, value){
1826   var d = this.clone();
1827   if (!interval || value === 0) { return d; }
1828   switch(interval.toLowerCase()){
1829     case Date.MILLI:
1830       d.setMilliseconds(this.getMilliseconds() + value);
1831       break;
1832     case Date.SECOND:
1833       d.setSeconds(this.getSeconds() + value);
1834       break;
1835     case Date.MINUTE:
1836       d.setMinutes(this.getMinutes() + value);
1837       break;
1838     case Date.HOUR:
1839       d.setHours(this.getHours() + value);
1840       break;
1841     case Date.DAY:
1842       d.setDate(this.getDate() + value);
1843       break;
1844     case Date.MONTH:
1845       var day = this.getDate();
1846       if(day > 28){
1847           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1848       }
1849       d.setDate(day);
1850       d.setMonth(this.getMonth() + value);
1851       break;
1852     case Date.YEAR:
1853       d.setFullYear(this.getFullYear() + value);
1854       break;
1855   }
1856   return d;
1857 };
1858 /*
1859  * Based on:
1860  * Ext JS Library 1.1.1
1861  * Copyright(c) 2006-2007, Ext JS, LLC.
1862  *
1863  * Originally Released Under LGPL - original licence link has changed is not relivant.
1864  *
1865  * Fork - LGPL
1866  * <script type="text/javascript">
1867  */
1868
1869 /**
1870  * @class Roo.lib.Dom
1871  * @static
1872  * 
1873  * Dom utils (from YIU afaik)
1874  * 
1875  **/
1876 Roo.lib.Dom = {
1877     /**
1878      * Get the view width
1879      * @param {Boolean} full True will get the full document, otherwise it's the view width
1880      * @return {Number} The width
1881      */
1882      
1883     getViewWidth : function(full) {
1884         return full ? this.getDocumentWidth() : this.getViewportWidth();
1885     },
1886     /**
1887      * Get the view height
1888      * @param {Boolean} full True will get the full document, otherwise it's the view height
1889      * @return {Number} The height
1890      */
1891     getViewHeight : function(full) {
1892         return full ? this.getDocumentHeight() : this.getViewportHeight();
1893     },
1894
1895     getDocumentHeight: function() {
1896         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1897         return Math.max(scrollHeight, this.getViewportHeight());
1898     },
1899
1900     getDocumentWidth: function() {
1901         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1902         return Math.max(scrollWidth, this.getViewportWidth());
1903     },
1904
1905     getViewportHeight: function() {
1906         var height = self.innerHeight;
1907         var mode = document.compatMode;
1908
1909         if ((mode || Roo.isIE) && !Roo.isOpera) {
1910             height = (mode == "CSS1Compat") ?
1911                      document.documentElement.clientHeight :
1912                      document.body.clientHeight;
1913         }
1914
1915         return height;
1916     },
1917
1918     getViewportWidth: function() {
1919         var width = self.innerWidth;
1920         var mode = document.compatMode;
1921
1922         if (mode || Roo.isIE) {
1923             width = (mode == "CSS1Compat") ?
1924                     document.documentElement.clientWidth :
1925                     document.body.clientWidth;
1926         }
1927         return width;
1928     },
1929
1930     isAncestor : function(p, c) {
1931         p = Roo.getDom(p);
1932         c = Roo.getDom(c);
1933         if (!p || !c) {
1934             return false;
1935         }
1936
1937         if (p.contains && !Roo.isSafari) {
1938             return p.contains(c);
1939         } else if (p.compareDocumentPosition) {
1940             return !!(p.compareDocumentPosition(c) & 16);
1941         } else {
1942             var parent = c.parentNode;
1943             while (parent) {
1944                 if (parent == p) {
1945                     return true;
1946                 }
1947                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1948                     return false;
1949                 }
1950                 parent = parent.parentNode;
1951             }
1952             return false;
1953         }
1954     },
1955
1956     getRegion : function(el) {
1957         return Roo.lib.Region.getRegion(el);
1958     },
1959
1960     getY : function(el) {
1961         return this.getXY(el)[1];
1962     },
1963
1964     getX : function(el) {
1965         return this.getXY(el)[0];
1966     },
1967
1968     getXY : function(el) {
1969         var p, pe, b, scroll, bd = document.body;
1970         el = Roo.getDom(el);
1971         var fly = Roo.lib.AnimBase.fly;
1972         if (el.getBoundingClientRect) {
1973             b = el.getBoundingClientRect();
1974             scroll = fly(document).getScroll();
1975             return [b.left + scroll.left, b.top + scroll.top];
1976         }
1977         var x = 0, y = 0;
1978
1979         p = el;
1980
1981         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1982
1983         while (p) {
1984
1985             x += p.offsetLeft;
1986             y += p.offsetTop;
1987
1988             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1989                 hasAbsolute = true;
1990             }
1991
1992             if (Roo.isGecko) {
1993                 pe = fly(p);
1994
1995                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1996                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1997
1998
1999                 x += bl;
2000                 y += bt;
2001
2002
2003                 if (p != el && pe.getStyle('overflow') != 'visible') {
2004                     x += bl;
2005                     y += bt;
2006                 }
2007             }
2008             p = p.offsetParent;
2009         }
2010
2011         if (Roo.isSafari && hasAbsolute) {
2012             x -= bd.offsetLeft;
2013             y -= bd.offsetTop;
2014         }
2015
2016         if (Roo.isGecko && !hasAbsolute) {
2017             var dbd = fly(bd);
2018             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2019             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2020         }
2021
2022         p = el.parentNode;
2023         while (p && p != bd) {
2024             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2025                 x -= p.scrollLeft;
2026                 y -= p.scrollTop;
2027             }
2028             p = p.parentNode;
2029         }
2030         return [x, y];
2031     },
2032  
2033   
2034
2035
2036     setXY : function(el, xy) {
2037         el = Roo.fly(el, '_setXY');
2038         el.position();
2039         var pts = el.translatePoints(xy);
2040         if (xy[0] !== false) {
2041             el.dom.style.left = pts.left + "px";
2042         }
2043         if (xy[1] !== false) {
2044             el.dom.style.top = pts.top + "px";
2045         }
2046     },
2047
2048     setX : function(el, x) {
2049         this.setXY(el, [x, false]);
2050     },
2051
2052     setY : function(el, y) {
2053         this.setXY(el, [false, y]);
2054     }
2055 };
2056 /*
2057  * Portions of this file are based on pieces of Yahoo User Interface Library
2058  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2059  * YUI licensed under the BSD License:
2060  * http://developer.yahoo.net/yui/license.txt
2061  * <script type="text/javascript">
2062  *
2063  */
2064
2065 Roo.lib.Event = function() {
2066     var loadComplete = false;
2067     var listeners = [];
2068     var unloadListeners = [];
2069     var retryCount = 0;
2070     var onAvailStack = [];
2071     var counter = 0;
2072     var lastError = null;
2073
2074     return {
2075         POLL_RETRYS: 200,
2076         POLL_INTERVAL: 20,
2077         EL: 0,
2078         TYPE: 1,
2079         FN: 2,
2080         WFN: 3,
2081         OBJ: 3,
2082         ADJ_SCOPE: 4,
2083         _interval: null,
2084
2085         startInterval: function() {
2086             if (!this._interval) {
2087                 var self = this;
2088                 var callback = function() {
2089                     self._tryPreloadAttach();
2090                 };
2091                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2092
2093             }
2094         },
2095
2096         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2097             onAvailStack.push({ id:         p_id,
2098                 fn:         p_fn,
2099                 obj:        p_obj,
2100                 override:   p_override,
2101                 checkReady: false    });
2102
2103             retryCount = this.POLL_RETRYS;
2104             this.startInterval();
2105         },
2106
2107
2108         addListener: function(el, eventName, fn) {
2109             el = Roo.getDom(el);
2110             if (!el || !fn) {
2111                 return false;
2112             }
2113
2114             if ("unload" == eventName) {
2115                 unloadListeners[unloadListeners.length] =
2116                 [el, eventName, fn];
2117                 return true;
2118             }
2119
2120             var wrappedFn = function(e) {
2121                 return fn(Roo.lib.Event.getEvent(e));
2122             };
2123
2124             var li = [el, eventName, fn, wrappedFn];
2125
2126             var index = listeners.length;
2127             listeners[index] = li;
2128
2129             this.doAdd(el, eventName, wrappedFn, false);
2130             return true;
2131
2132         },
2133
2134
2135         removeListener: function(el, eventName, fn) {
2136             var i, len;
2137
2138             el = Roo.getDom(el);
2139
2140             if(!fn) {
2141                 return this.purgeElement(el, false, eventName);
2142             }
2143
2144
2145             if ("unload" == eventName) {
2146
2147                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2148                     var li = unloadListeners[i];
2149                     if (li &&
2150                         li[0] == el &&
2151                         li[1] == eventName &&
2152                         li[2] == fn) {
2153                         unloadListeners.splice(i, 1);
2154                         return true;
2155                     }
2156                 }
2157
2158                 return false;
2159             }
2160
2161             var cacheItem = null;
2162
2163
2164             var index = arguments[3];
2165
2166             if ("undefined" == typeof index) {
2167                 index = this._getCacheIndex(el, eventName, fn);
2168             }
2169
2170             if (index >= 0) {
2171                 cacheItem = listeners[index];
2172             }
2173
2174             if (!el || !cacheItem) {
2175                 return false;
2176             }
2177
2178             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2179
2180             delete listeners[index][this.WFN];
2181             delete listeners[index][this.FN];
2182             listeners.splice(index, 1);
2183
2184             return true;
2185
2186         },
2187
2188
2189         getTarget: function(ev, resolveTextNode) {
2190             ev = ev.browserEvent || ev;
2191             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2192             var t = ev.target || ev.srcElement;
2193             return this.resolveTextNode(t);
2194         },
2195
2196
2197         resolveTextNode: function(node) {
2198             if (Roo.isSafari && node && 3 == node.nodeType) {
2199                 return node.parentNode;
2200             } else {
2201                 return node;
2202             }
2203         },
2204
2205
2206         getPageX: function(ev) {
2207             ev = ev.browserEvent || ev;
2208             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2209             var x = ev.pageX;
2210             if (!x && 0 !== x) {
2211                 x = ev.clientX || 0;
2212
2213                 if (Roo.isIE) {
2214                     x += this.getScroll()[1];
2215                 }
2216             }
2217
2218             return x;
2219         },
2220
2221
2222         getPageY: function(ev) {
2223             ev = ev.browserEvent || ev;
2224             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2225             var y = ev.pageY;
2226             if (!y && 0 !== y) {
2227                 y = ev.clientY || 0;
2228
2229                 if (Roo.isIE) {
2230                     y += this.getScroll()[0];
2231                 }
2232             }
2233
2234
2235             return y;
2236         },
2237
2238
2239         getXY: function(ev) {
2240             ev = ev.browserEvent || ev;
2241             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2242             return [this.getPageX(ev), this.getPageY(ev)];
2243         },
2244
2245
2246         getRelatedTarget: function(ev) {
2247             ev = ev.browserEvent || ev;
2248             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2249             var t = ev.relatedTarget;
2250             if (!t) {
2251                 if (ev.type == "mouseout") {
2252                     t = ev.toElement;
2253                 } else if (ev.type == "mouseover") {
2254                     t = ev.fromElement;
2255                 }
2256             }
2257
2258             return this.resolveTextNode(t);
2259         },
2260
2261
2262         getTime: function(ev) {
2263             ev = ev.browserEvent || ev;
2264             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2265             if (!ev.time) {
2266                 var t = new Date().getTime();
2267                 try {
2268                     ev.time = t;
2269                 } catch(ex) {
2270                     this.lastError = ex;
2271                     return t;
2272                 }
2273             }
2274
2275             return ev.time;
2276         },
2277
2278
2279         stopEvent: function(ev) {
2280             this.stopPropagation(ev);
2281             this.preventDefault(ev);
2282         },
2283
2284
2285         stopPropagation: function(ev) {
2286             ev = ev.browserEvent || ev;
2287             if (ev.stopPropagation) {
2288                 ev.stopPropagation();
2289             } else {
2290                 ev.cancelBubble = true;
2291             }
2292         },
2293
2294
2295         preventDefault: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             if(ev.preventDefault) {
2298                 ev.preventDefault();
2299             } else {
2300                 ev.returnValue = false;
2301             }
2302         },
2303
2304
2305         getEvent: function(e) {
2306             var ev = e || window.event;
2307             if (!ev) {
2308                 var c = this.getEvent.caller;
2309                 while (c) {
2310                     ev = c.arguments[0];
2311                     if (ev && Event == ev.constructor) {
2312                         break;
2313                     }
2314                     c = c.caller;
2315                 }
2316             }
2317             return ev;
2318         },
2319
2320
2321         getCharCode: function(ev) {
2322             ev = ev.browserEvent || ev;
2323             return ev.charCode || ev.keyCode || 0;
2324         },
2325
2326
2327         _getCacheIndex: function(el, eventName, fn) {
2328             for (var i = 0,len = listeners.length; i < len; ++i) {
2329                 var li = listeners[i];
2330                 if (li &&
2331                     li[this.FN] == fn &&
2332                     li[this.EL] == el &&
2333                     li[this.TYPE] == eventName) {
2334                     return i;
2335                 }
2336             }
2337
2338             return -1;
2339         },
2340
2341
2342         elCache: {},
2343
2344
2345         getEl: function(id) {
2346             return document.getElementById(id);
2347         },
2348
2349
2350         clearCache: function() {
2351         },
2352
2353
2354         _load: function(e) {
2355             loadComplete = true;
2356             var EU = Roo.lib.Event;
2357
2358
2359             if (Roo.isIE) {
2360                 EU.doRemove(window, "load", EU._load);
2361             }
2362         },
2363
2364
2365         _tryPreloadAttach: function() {
2366
2367             if (this.locked) {
2368                 return false;
2369             }
2370
2371             this.locked = true;
2372
2373
2374             var tryAgain = !loadComplete;
2375             if (!tryAgain) {
2376                 tryAgain = (retryCount > 0);
2377             }
2378
2379
2380             var notAvail = [];
2381             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2382                 var item = onAvailStack[i];
2383                 if (item) {
2384                     var el = this.getEl(item.id);
2385
2386                     if (el) {
2387                         if (!item.checkReady ||
2388                             loadComplete ||
2389                             el.nextSibling ||
2390                             (document && document.body)) {
2391
2392                             var scope = el;
2393                             if (item.override) {
2394                                 if (item.override === true) {
2395                                     scope = item.obj;
2396                                 } else {
2397                                     scope = item.override;
2398                                 }
2399                             }
2400                             item.fn.call(scope, item.obj);
2401                             onAvailStack[i] = null;
2402                         }
2403                     } else {
2404                         notAvail.push(item);
2405                     }
2406                 }
2407             }
2408
2409             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2410
2411             if (tryAgain) {
2412
2413                 this.startInterval();
2414             } else {
2415                 clearInterval(this._interval);
2416                 this._interval = null;
2417             }
2418
2419             this.locked = false;
2420
2421             return true;
2422
2423         },
2424
2425
2426         purgeElement: function(el, recurse, eventName) {
2427             var elListeners = this.getListeners(el, eventName);
2428             if (elListeners) {
2429                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2430                     var l = elListeners[i];
2431                     this.removeListener(el, l.type, l.fn);
2432                 }
2433             }
2434
2435             if (recurse && el && el.childNodes) {
2436                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2437                     this.purgeElement(el.childNodes[i], recurse, eventName);
2438                 }
2439             }
2440         },
2441
2442
2443         getListeners: function(el, eventName) {
2444             var results = [], searchLists;
2445             if (!eventName) {
2446                 searchLists = [listeners, unloadListeners];
2447             } else if (eventName == "unload") {
2448                 searchLists = [unloadListeners];
2449             } else {
2450                 searchLists = [listeners];
2451             }
2452
2453             for (var j = 0; j < searchLists.length; ++j) {
2454                 var searchList = searchLists[j];
2455                 if (searchList && searchList.length > 0) {
2456                     for (var i = 0,len = searchList.length; i < len; ++i) {
2457                         var l = searchList[i];
2458                         if (l && l[this.EL] === el &&
2459                             (!eventName || eventName === l[this.TYPE])) {
2460                             results.push({
2461                                 type:   l[this.TYPE],
2462                                 fn:     l[this.FN],
2463                                 obj:    l[this.OBJ],
2464                                 adjust: l[this.ADJ_SCOPE],
2465                                 index:  i
2466                             });
2467                         }
2468                     }
2469                 }
2470             }
2471
2472             return (results.length) ? results : null;
2473         },
2474
2475
2476         _unload: function(e) {
2477
2478             var EU = Roo.lib.Event, i, j, l, len, index;
2479
2480             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2481                 l = unloadListeners[i];
2482                 if (l) {
2483                     var scope = window;
2484                     if (l[EU.ADJ_SCOPE]) {
2485                         if (l[EU.ADJ_SCOPE] === true) {
2486                             scope = l[EU.OBJ];
2487                         } else {
2488                             scope = l[EU.ADJ_SCOPE];
2489                         }
2490                     }
2491                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2492                     unloadListeners[i] = null;
2493                     l = null;
2494                     scope = null;
2495                 }
2496             }
2497
2498             unloadListeners = null;
2499
2500             if (listeners && listeners.length > 0) {
2501                 j = listeners.length;
2502                 while (j) {
2503                     index = j - 1;
2504                     l = listeners[index];
2505                     if (l) {
2506                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2507                                 l[EU.FN], index);
2508                     }
2509                     j = j - 1;
2510                 }
2511                 l = null;
2512
2513                 EU.clearCache();
2514             }
2515
2516             EU.doRemove(window, "unload", EU._unload);
2517
2518         },
2519
2520
2521         getScroll: function() {
2522             var dd = document.documentElement, db = document.body;
2523             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2524                 return [dd.scrollTop, dd.scrollLeft];
2525             } else if (db) {
2526                 return [db.scrollTop, db.scrollLeft];
2527             } else {
2528                 return [0, 0];
2529             }
2530         },
2531
2532
2533         doAdd: function () {
2534             if (window.addEventListener) {
2535                 return function(el, eventName, fn, capture) {
2536                     el.addEventListener(eventName, fn, (capture));
2537                 };
2538             } else if (window.attachEvent) {
2539                 return function(el, eventName, fn, capture) {
2540                     el.attachEvent("on" + eventName, fn);
2541                 };
2542             } else {
2543                 return function() {
2544                 };
2545             }
2546         }(),
2547
2548
2549         doRemove: function() {
2550             if (window.removeEventListener) {
2551                 return function (el, eventName, fn, capture) {
2552                     el.removeEventListener(eventName, fn, (capture));
2553                 };
2554             } else if (window.detachEvent) {
2555                 return function (el, eventName, fn) {
2556                     el.detachEvent("on" + eventName, fn);
2557                 };
2558             } else {
2559                 return function() {
2560                 };
2561             }
2562         }()
2563     };
2564     
2565 }();
2566 (function() {     
2567    
2568     var E = Roo.lib.Event;
2569     E.on = E.addListener;
2570     E.un = E.removeListener;
2571
2572     if (document && document.body) {
2573         E._load();
2574     } else {
2575         E.doAdd(window, "load", E._load);
2576     }
2577     E.doAdd(window, "unload", E._unload);
2578     E._tryPreloadAttach();
2579 })();
2580
2581 /*
2582  * Portions of this file are based on pieces of Yahoo User Interface Library
2583  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2584  * YUI licensed under the BSD License:
2585  * http://developer.yahoo.net/yui/license.txt
2586  * <script type="text/javascript">
2587  *
2588  */
2589
2590 (function() {
2591     /**
2592      * @class Roo.lib.Ajax
2593      *
2594      */
2595     Roo.lib.Ajax = {
2596         /**
2597          * @static 
2598          */
2599         request : function(method, uri, cb, data, options) {
2600             if(options){
2601                 var hs = options.headers;
2602                 if(hs){
2603                     for(var h in hs){
2604                         if(hs.hasOwnProperty(h)){
2605                             this.initHeader(h, hs[h], false);
2606                         }
2607                     }
2608                 }
2609                 if(options.xmlData){
2610                     this.initHeader('Content-Type', 'text/xml', false);
2611                     method = 'POST';
2612                     data = options.xmlData;
2613                 }
2614             }
2615
2616             return this.asyncRequest(method, uri, cb, data);
2617         },
2618
2619         serializeForm : function(form) {
2620             if(typeof form == 'string') {
2621                 form = (document.getElementById(form) || document.forms[form]);
2622             }
2623
2624             var el, name, val, disabled, data = '', hasSubmit = false;
2625             for (var i = 0; i < form.elements.length; i++) {
2626                 el = form.elements[i];
2627                 disabled = form.elements[i].disabled;
2628                 name = form.elements[i].name;
2629                 val = form.elements[i].value;
2630
2631                 if (!disabled && name){
2632                     switch (el.type)
2633                             {
2634                         case 'select-one':
2635                         case 'select-multiple':
2636                             for (var j = 0; j < el.options.length; j++) {
2637                                 if (el.options[j].selected) {
2638                                     if (Roo.isIE) {
2639                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2640                                     }
2641                                     else {
2642                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2643                                     }
2644                                 }
2645                             }
2646                             break;
2647                         case 'radio':
2648                         case 'checkbox':
2649                             if (el.checked) {
2650                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2651                             }
2652                             break;
2653                         case 'file':
2654
2655                         case undefined:
2656
2657                         case 'reset':
2658
2659                         case 'button':
2660
2661                             break;
2662                         case 'submit':
2663                             if(hasSubmit == false) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                                 hasSubmit = true;
2666                             }
2667                             break;
2668                         default:
2669                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2670                             break;
2671                     }
2672                 }
2673             }
2674             data = data.substr(0, data.length - 1);
2675             return data;
2676         },
2677
2678         headers:{},
2679
2680         hasHeaders:false,
2681
2682         useDefaultHeader:true,
2683
2684         defaultPostHeader:'application/x-www-form-urlencoded',
2685
2686         useDefaultXhrHeader:true,
2687
2688         defaultXhrHeader:'XMLHttpRequest',
2689
2690         hasDefaultHeaders:true,
2691
2692         defaultHeaders:{},
2693
2694         poll:{},
2695
2696         timeout:{},
2697
2698         pollInterval:50,
2699
2700         transactionId:0,
2701
2702         setProgId:function(id)
2703         {
2704             this.activeX.unshift(id);
2705         },
2706
2707         setDefaultPostHeader:function(b)
2708         {
2709             this.useDefaultHeader = b;
2710         },
2711
2712         setDefaultXhrHeader:function(b)
2713         {
2714             this.useDefaultXhrHeader = b;
2715         },
2716
2717         setPollingInterval:function(i)
2718         {
2719             if (typeof i == 'number' && isFinite(i)) {
2720                 this.pollInterval = i;
2721             }
2722         },
2723
2724         createXhrObject:function(transactionId)
2725         {
2726             var obj,http;
2727             try
2728             {
2729
2730                 http = new XMLHttpRequest();
2731
2732                 obj = { conn:http, tId:transactionId };
2733             }
2734             catch(e)
2735             {
2736                 for (var i = 0; i < this.activeX.length; ++i) {
2737                     try
2738                     {
2739
2740                         http = new ActiveXObject(this.activeX[i]);
2741
2742                         obj = { conn:http, tId:transactionId };
2743                         break;
2744                     }
2745                     catch(e) {
2746                     }
2747                 }
2748             }
2749             finally
2750             {
2751                 return obj;
2752             }
2753         },
2754
2755         getConnectionObject:function()
2756         {
2757             var o;
2758             var tId = this.transactionId;
2759
2760             try
2761             {
2762                 o = this.createXhrObject(tId);
2763                 if (o) {
2764                     this.transactionId++;
2765                 }
2766             }
2767             catch(e) {
2768             }
2769             finally
2770             {
2771                 return o;
2772             }
2773         },
2774
2775         asyncRequest:function(method, uri, callback, postData)
2776         {
2777             var o = this.getConnectionObject();
2778
2779             if (!o) {
2780                 return null;
2781             }
2782             else {
2783                 o.conn.open(method, uri, true);
2784
2785                 if (this.useDefaultXhrHeader) {
2786                     if (!this.defaultHeaders['X-Requested-With']) {
2787                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2788                     }
2789                 }
2790
2791                 if(postData && this.useDefaultHeader){
2792                     this.initHeader('Content-Type', this.defaultPostHeader);
2793                 }
2794
2795                  if (this.hasDefaultHeaders || this.hasHeaders) {
2796                     this.setHeader(o);
2797                 }
2798
2799                 this.handleReadyState(o, callback);
2800                 o.conn.send(postData || null);
2801
2802                 return o;
2803             }
2804         },
2805
2806         handleReadyState:function(o, callback)
2807         {
2808             var oConn = this;
2809
2810             if (callback && callback.timeout) {
2811                 
2812                 this.timeout[o.tId] = window.setTimeout(function() {
2813                     oConn.abort(o, callback, true);
2814                 }, callback.timeout);
2815             }
2816
2817             this.poll[o.tId] = window.setInterval(
2818                     function() {
2819                         if (o.conn && o.conn.readyState == 4) {
2820                             window.clearInterval(oConn.poll[o.tId]);
2821                             delete oConn.poll[o.tId];
2822
2823                             if(callback && callback.timeout) {
2824                                 window.clearTimeout(oConn.timeout[o.tId]);
2825                                 delete oConn.timeout[o.tId];
2826                             }
2827
2828                             oConn.handleTransactionResponse(o, callback);
2829                         }
2830                     }
2831                     , this.pollInterval);
2832         },
2833
2834         handleTransactionResponse:function(o, callback, isAbort)
2835         {
2836
2837             if (!callback) {
2838                 this.releaseObject(o);
2839                 return;
2840             }
2841
2842             var httpStatus, responseObject;
2843
2844             try
2845             {
2846                 if (o.conn.status !== undefined && o.conn.status != 0) {
2847                     httpStatus = o.conn.status;
2848                 }
2849                 else {
2850                     httpStatus = 13030;
2851                 }
2852             }
2853             catch(e) {
2854
2855
2856                 httpStatus = 13030;
2857             }
2858
2859             if (httpStatus >= 200 && httpStatus < 300) {
2860                 responseObject = this.createResponseObject(o, callback.argument);
2861                 if (callback.success) {
2862                     if (!callback.scope) {
2863                         callback.success(responseObject);
2864                     }
2865                     else {
2866
2867
2868                         callback.success.apply(callback.scope, [responseObject]);
2869                     }
2870                 }
2871             }
2872             else {
2873                 switch (httpStatus) {
2874
2875                     case 12002:
2876                     case 12029:
2877                     case 12030:
2878                     case 12031:
2879                     case 12152:
2880                     case 13030:
2881                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2882                         if (callback.failure) {
2883                             if (!callback.scope) {
2884                                 callback.failure(responseObject);
2885                             }
2886                             else {
2887                                 callback.failure.apply(callback.scope, [responseObject]);
2888                             }
2889                         }
2890                         break;
2891                     default:
2892                         responseObject = this.createResponseObject(o, callback.argument);
2893                         if (callback.failure) {
2894                             if (!callback.scope) {
2895                                 callback.failure(responseObject);
2896                             }
2897                             else {
2898                                 callback.failure.apply(callback.scope, [responseObject]);
2899                             }
2900                         }
2901                 }
2902             }
2903
2904             this.releaseObject(o);
2905             responseObject = null;
2906         },
2907
2908         createResponseObject:function(o, callbackArg)
2909         {
2910             var obj = {};
2911             var headerObj = {};
2912
2913             try
2914             {
2915                 var headerStr = o.conn.getAllResponseHeaders();
2916                 var header = headerStr.split('\n');
2917                 for (var i = 0; i < header.length; i++) {
2918                     var delimitPos = header[i].indexOf(':');
2919                     if (delimitPos != -1) {
2920                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2921                     }
2922                 }
2923             }
2924             catch(e) {
2925             }
2926
2927             obj.tId = o.tId;
2928             obj.status = o.conn.status;
2929             obj.statusText = o.conn.statusText;
2930             obj.getResponseHeader = headerObj;
2931             obj.getAllResponseHeaders = headerStr;
2932             obj.responseText = o.conn.responseText;
2933             obj.responseXML = o.conn.responseXML;
2934
2935             if (typeof callbackArg !== undefined) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         createExceptionObject:function(tId, callbackArg, isAbort)
2943         {
2944             var COMM_CODE = 0;
2945             var COMM_ERROR = 'communication failure';
2946             var ABORT_CODE = -1;
2947             var ABORT_ERROR = 'transaction aborted';
2948
2949             var obj = {};
2950
2951             obj.tId = tId;
2952             if (isAbort) {
2953                 obj.status = ABORT_CODE;
2954                 obj.statusText = ABORT_ERROR;
2955             }
2956             else {
2957                 obj.status = COMM_CODE;
2958                 obj.statusText = COMM_ERROR;
2959             }
2960
2961             if (callbackArg) {
2962                 obj.argument = callbackArg;
2963             }
2964
2965             return obj;
2966         },
2967
2968         initHeader:function(label, value, isDefault)
2969         {
2970             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2971
2972             if (headerObj[label] === undefined) {
2973                 headerObj[label] = value;
2974             }
2975             else {
2976
2977
2978                 headerObj[label] = value + "," + headerObj[label];
2979             }
2980
2981             if (isDefault) {
2982                 this.hasDefaultHeaders = true;
2983             }
2984             else {
2985                 this.hasHeaders = true;
2986             }
2987         },
2988
2989
2990         setHeader:function(o)
2991         {
2992             if (this.hasDefaultHeaders) {
2993                 for (var prop in this.defaultHeaders) {
2994                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2995                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2996                     }
2997                 }
2998             }
2999
3000             if (this.hasHeaders) {
3001                 for (var prop in this.headers) {
3002                     if (this.headers.hasOwnProperty(prop)) {
3003                         o.conn.setRequestHeader(prop, this.headers[prop]);
3004                     }
3005                 }
3006                 this.headers = {};
3007                 this.hasHeaders = false;
3008             }
3009         },
3010
3011         resetDefaultHeaders:function() {
3012             delete this.defaultHeaders;
3013             this.defaultHeaders = {};
3014             this.hasDefaultHeaders = false;
3015         },
3016
3017         abort:function(o, callback, isTimeout)
3018         {
3019             if(this.isCallInProgress(o)) {
3020                 o.conn.abort();
3021                 window.clearInterval(this.poll[o.tId]);
3022                 delete this.poll[o.tId];
3023                 if (isTimeout) {
3024                     delete this.timeout[o.tId];
3025                 }
3026
3027                 this.handleTransactionResponse(o, callback, true);
3028
3029                 return true;
3030             }
3031             else {
3032                 return false;
3033             }
3034         },
3035
3036
3037         isCallInProgress:function(o)
3038         {
3039             if (o && o.conn) {
3040                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3041             }
3042             else {
3043
3044                 return false;
3045             }
3046         },
3047
3048
3049         releaseObject:function(o)
3050         {
3051
3052             o.conn = null;
3053
3054             o = null;
3055         },
3056
3057         activeX:[
3058         'MSXML2.XMLHTTP.3.0',
3059         'MSXML2.XMLHTTP',
3060         'Microsoft.XMLHTTP'
3061         ]
3062
3063
3064     };
3065 })();/*
3066  * Portions of this file are based on pieces of Yahoo User Interface Library
3067  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3068  * YUI licensed under the BSD License:
3069  * http://developer.yahoo.net/yui/license.txt
3070  * <script type="text/javascript">
3071  *
3072  */
3073
3074 Roo.lib.Region = function(t, r, b, l) {
3075     this.top = t;
3076     this[1] = t;
3077     this.right = r;
3078     this.bottom = b;
3079     this.left = l;
3080     this[0] = l;
3081 };
3082
3083
3084 Roo.lib.Region.prototype = {
3085     contains : function(region) {
3086         return ( region.left >= this.left &&
3087                  region.right <= this.right &&
3088                  region.top >= this.top &&
3089                  region.bottom <= this.bottom    );
3090
3091     },
3092
3093     getArea : function() {
3094         return ( (this.bottom - this.top) * (this.right - this.left) );
3095     },
3096
3097     intersect : function(region) {
3098         var t = Math.max(this.top, region.top);
3099         var r = Math.min(this.right, region.right);
3100         var b = Math.min(this.bottom, region.bottom);
3101         var l = Math.max(this.left, region.left);
3102
3103         if (b >= t && r >= l) {
3104             return new Roo.lib.Region(t, r, b, l);
3105         } else {
3106             return null;
3107         }
3108     },
3109     union : function(region) {
3110         var t = Math.min(this.top, region.top);
3111         var r = Math.max(this.right, region.right);
3112         var b = Math.max(this.bottom, region.bottom);
3113         var l = Math.min(this.left, region.left);
3114
3115         return new Roo.lib.Region(t, r, b, l);
3116     },
3117
3118     adjust : function(t, l, b, r) {
3119         this.top += t;
3120         this.left += l;
3121         this.right += r;
3122         this.bottom += b;
3123         return this;
3124     }
3125 };
3126
3127 Roo.lib.Region.getRegion = function(el) {
3128     var p = Roo.lib.Dom.getXY(el);
3129
3130     var t = p[1];
3131     var r = p[0] + el.offsetWidth;
3132     var b = p[1] + el.offsetHeight;
3133     var l = p[0];
3134
3135     return new Roo.lib.Region(t, r, b, l);
3136 };
3137 /*
3138  * Portions of this file are based on pieces of Yahoo User Interface Library
3139  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3140  * YUI licensed under the BSD License:
3141  * http://developer.yahoo.net/yui/license.txt
3142  * <script type="text/javascript">
3143  *
3144  */
3145 //@@dep Roo.lib.Region
3146
3147
3148 Roo.lib.Point = function(x, y) {
3149     if (x instanceof Array) {
3150         y = x[1];
3151         x = x[0];
3152     }
3153     this.x = this.right = this.left = this[0] = x;
3154     this.y = this.top = this.bottom = this[1] = y;
3155 };
3156
3157 Roo.lib.Point.prototype = new Roo.lib.Region();
3158 /*
3159  * Portions of this file are based on pieces of Yahoo User Interface Library
3160  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3161  * YUI licensed under the BSD License:
3162  * http://developer.yahoo.net/yui/license.txt
3163  * <script type="text/javascript">
3164  *
3165  */
3166  
3167 (function() {   
3168
3169     Roo.lib.Anim = {
3170         scroll : function(el, args, duration, easing, cb, scope) {
3171             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3172         },
3173
3174         motion : function(el, args, duration, easing, cb, scope) {
3175             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3176         },
3177
3178         color : function(el, args, duration, easing, cb, scope) {
3179             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3180         },
3181
3182         run : function(el, args, duration, easing, cb, scope, type) {
3183             type = type || Roo.lib.AnimBase;
3184             if (typeof easing == "string") {
3185                 easing = Roo.lib.Easing[easing];
3186             }
3187             var anim = new type(el, args, duration, easing);
3188             anim.animateX(function() {
3189                 Roo.callback(cb, scope);
3190             });
3191             return anim;
3192         }
3193     };
3194 })();/*
3195  * Portions of this file are based on pieces of Yahoo User Interface Library
3196  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3197  * YUI licensed under the BSD License:
3198  * http://developer.yahoo.net/yui/license.txt
3199  * <script type="text/javascript">
3200  *
3201  */
3202
3203 (function() {    
3204     var libFlyweight;
3205     
3206     function fly(el) {
3207         if (!libFlyweight) {
3208             libFlyweight = new Roo.Element.Flyweight();
3209         }
3210         libFlyweight.dom = el;
3211         return libFlyweight;
3212     }
3213
3214     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3215     
3216    
3217     
3218     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3219         if (el) {
3220             this.init(el, attributes, duration, method);
3221         }
3222     };
3223
3224     Roo.lib.AnimBase.fly = fly;
3225     
3226     
3227     
3228     Roo.lib.AnimBase.prototype = {
3229
3230         toString: function() {
3231             var el = this.getEl();
3232             var id = el.id || el.tagName;
3233             return ("Anim " + id);
3234         },
3235
3236         patterns: {
3237             noNegatives:        /width|height|opacity|padding/i,
3238             offsetAttribute:  /^((width|height)|(top|left))$/,
3239             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3240             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3241         },
3242
3243
3244         doMethod: function(attr, start, end) {
3245             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3246         },
3247
3248
3249         setAttribute: function(attr, val, unit) {
3250             if (this.patterns.noNegatives.test(attr)) {
3251                 val = (val > 0) ? val : 0;
3252             }
3253
3254             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3255         },
3256
3257
3258         getAttribute: function(attr) {
3259             var el = this.getEl();
3260             var val = fly(el).getStyle(attr);
3261
3262             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3263                 return parseFloat(val);
3264             }
3265
3266             var a = this.patterns.offsetAttribute.exec(attr) || [];
3267             var pos = !!( a[3] );
3268             var box = !!( a[2] );
3269
3270
3271             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3272                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3273             } else {
3274                 val = 0;
3275             }
3276
3277             return val;
3278         },
3279
3280
3281         getDefaultUnit: function(attr) {
3282             if (this.patterns.defaultUnit.test(attr)) {
3283                 return 'px';
3284             }
3285
3286             return '';
3287         },
3288
3289         animateX : function(callback, scope) {
3290             var f = function() {
3291                 this.onComplete.removeListener(f);
3292                 if (typeof callback == "function") {
3293                     callback.call(scope || this, this);
3294                 }
3295             };
3296             this.onComplete.addListener(f, this);
3297             this.animate();
3298         },
3299
3300
3301         setRuntimeAttribute: function(attr) {
3302             var start;
3303             var end;
3304             var attributes = this.attributes;
3305
3306             this.runtimeAttributes[attr] = {};
3307
3308             var isset = function(prop) {
3309                 return (typeof prop !== 'undefined');
3310             };
3311
3312             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3313                 return false;
3314             }
3315
3316             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3317
3318
3319             if (isset(attributes[attr]['to'])) {
3320                 end = attributes[attr]['to'];
3321             } else if (isset(attributes[attr]['by'])) {
3322                 if (start.constructor == Array) {
3323                     end = [];
3324                     for (var i = 0, len = start.length; i < len; ++i) {
3325                         end[i] = start[i] + attributes[attr]['by'][i];
3326                     }
3327                 } else {
3328                     end = start + attributes[attr]['by'];
3329                 }
3330             }
3331
3332             this.runtimeAttributes[attr].start = start;
3333             this.runtimeAttributes[attr].end = end;
3334
3335
3336             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3337         },
3338
3339
3340         init: function(el, attributes, duration, method) {
3341
3342             var isAnimated = false;
3343
3344
3345             var startTime = null;
3346
3347
3348             var actualFrames = 0;
3349
3350
3351             el = Roo.getDom(el);
3352
3353
3354             this.attributes = attributes || {};
3355
3356
3357             this.duration = duration || 1;
3358
3359
3360             this.method = method || Roo.lib.Easing.easeNone;
3361
3362
3363             this.useSeconds = true;
3364
3365
3366             this.currentFrame = 0;
3367
3368
3369             this.totalFrames = Roo.lib.AnimMgr.fps;
3370
3371
3372             this.getEl = function() {
3373                 return el;
3374             };
3375
3376
3377             this.isAnimated = function() {
3378                 return isAnimated;
3379             };
3380
3381
3382             this.getStartTime = function() {
3383                 return startTime;
3384             };
3385
3386             this.runtimeAttributes = {};
3387
3388
3389             this.animate = function() {
3390                 if (this.isAnimated()) {
3391                     return false;
3392                 }
3393
3394                 this.currentFrame = 0;
3395
3396                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3397
3398                 Roo.lib.AnimMgr.registerElement(this);
3399             };
3400
3401
3402             this.stop = function(finish) {
3403                 if (finish) {
3404                     this.currentFrame = this.totalFrames;
3405                     this._onTween.fire();
3406                 }
3407                 Roo.lib.AnimMgr.stop(this);
3408             };
3409
3410             var onStart = function() {
3411                 this.onStart.fire();
3412
3413                 this.runtimeAttributes = {};
3414                 for (var attr in this.attributes) {
3415                     this.setRuntimeAttribute(attr);
3416                 }
3417
3418                 isAnimated = true;
3419                 actualFrames = 0;
3420                 startTime = new Date();
3421             };
3422
3423
3424             var onTween = function() {
3425                 var data = {
3426                     duration: new Date() - this.getStartTime(),
3427                     currentFrame: this.currentFrame
3428                 };
3429
3430                 data.toString = function() {
3431                     return (
3432                             'duration: ' + data.duration +
3433                             ', currentFrame: ' + data.currentFrame
3434                             );
3435                 };
3436
3437                 this.onTween.fire(data);
3438
3439                 var runtimeAttributes = this.runtimeAttributes;
3440
3441                 for (var attr in runtimeAttributes) {
3442                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3443                 }
3444
3445                 actualFrames += 1;
3446             };
3447
3448             var onComplete = function() {
3449                 var actual_duration = (new Date() - startTime) / 1000 ;
3450
3451                 var data = {
3452                     duration: actual_duration,
3453                     frames: actualFrames,
3454                     fps: actualFrames / actual_duration
3455                 };
3456
3457                 data.toString = function() {
3458                     return (
3459                             'duration: ' + data.duration +
3460                             ', frames: ' + data.frames +
3461                             ', fps: ' + data.fps
3462                             );
3463                 };
3464
3465                 isAnimated = false;
3466                 actualFrames = 0;
3467                 this.onComplete.fire(data);
3468             };
3469
3470
3471             this._onStart = new Roo.util.Event(this);
3472             this.onStart = new Roo.util.Event(this);
3473             this.onTween = new Roo.util.Event(this);
3474             this._onTween = new Roo.util.Event(this);
3475             this.onComplete = new Roo.util.Event(this);
3476             this._onComplete = new Roo.util.Event(this);
3477             this._onStart.addListener(onStart);
3478             this._onTween.addListener(onTween);
3479             this._onComplete.addListener(onComplete);
3480         }
3481     };
3482 })();
3483 /*
3484  * Portions of this file are based on pieces of Yahoo User Interface Library
3485  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3486  * YUI licensed under the BSD License:
3487  * http://developer.yahoo.net/yui/license.txt
3488  * <script type="text/javascript">
3489  *
3490  */
3491
3492 Roo.lib.AnimMgr = new function() {
3493
3494     var thread = null;
3495
3496
3497     var queue = [];
3498
3499
3500     var tweenCount = 0;
3501
3502
3503     this.fps = 1000;
3504
3505
3506     this.delay = 1;
3507
3508
3509     this.registerElement = function(tween) {
3510         queue[queue.length] = tween;
3511         tweenCount += 1;
3512         tween._onStart.fire();
3513         this.start();
3514     };
3515
3516
3517     this.unRegister = function(tween, index) {
3518         tween._onComplete.fire();
3519         index = index || getIndex(tween);
3520         if (index != -1) {
3521             queue.splice(index, 1);
3522         }
3523
3524         tweenCount -= 1;
3525         if (tweenCount <= 0) {
3526             this.stop();
3527         }
3528     };
3529
3530
3531     this.start = function() {
3532         if (thread === null) {
3533             thread = setInterval(this.run, this.delay);
3534         }
3535     };
3536
3537
3538     this.stop = function(tween) {
3539         if (!tween) {
3540             clearInterval(thread);
3541
3542             for (var i = 0, len = queue.length; i < len; ++i) {
3543                 if (queue[0].isAnimated()) {
3544                     this.unRegister(queue[0], 0);
3545                 }
3546             }
3547
3548             queue = [];
3549             thread = null;
3550             tweenCount = 0;
3551         }
3552         else {
3553             this.unRegister(tween);
3554         }
3555     };
3556
3557
3558     this.run = function() {
3559         for (var i = 0, len = queue.length; i < len; ++i) {
3560             var tween = queue[i];
3561             if (!tween || !tween.isAnimated()) {
3562                 continue;
3563             }
3564
3565             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3566             {
3567                 tween.currentFrame += 1;
3568
3569                 if (tween.useSeconds) {
3570                     correctFrame(tween);
3571                 }
3572                 tween._onTween.fire();
3573             }
3574             else {
3575                 Roo.lib.AnimMgr.stop(tween, i);
3576             }
3577         }
3578     };
3579
3580     var getIndex = function(anim) {
3581         for (var i = 0, len = queue.length; i < len; ++i) {
3582             if (queue[i] == anim) {
3583                 return i;
3584             }
3585         }
3586         return -1;
3587     };
3588
3589
3590     var correctFrame = function(tween) {
3591         var frames = tween.totalFrames;
3592         var frame = tween.currentFrame;
3593         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3594         var elapsed = (new Date() - tween.getStartTime());
3595         var tweak = 0;
3596
3597         if (elapsed < tween.duration * 1000) {
3598             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3599         } else {
3600             tweak = frames - (frame + 1);
3601         }
3602         if (tweak > 0 && isFinite(tweak)) {
3603             if (tween.currentFrame + tweak >= frames) {
3604                 tweak = frames - (frame + 1);
3605             }
3606
3607             tween.currentFrame += tweak;
3608         }
3609     };
3610 };
3611
3612     /*
3613  * Portions of this file are based on pieces of Yahoo User Interface Library
3614  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3615  * YUI licensed under the BSD License:
3616  * http://developer.yahoo.net/yui/license.txt
3617  * <script type="text/javascript">
3618  *
3619  */
3620 Roo.lib.Bezier = new function() {
3621
3622         this.getPosition = function(points, t) {
3623             var n = points.length;
3624             var tmp = [];
3625
3626             for (var i = 0; i < n; ++i) {
3627                 tmp[i] = [points[i][0], points[i][1]];
3628             }
3629
3630             for (var j = 1; j < n; ++j) {
3631                 for (i = 0; i < n - j; ++i) {
3632                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3633                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3634                 }
3635             }
3636
3637             return [ tmp[0][0], tmp[0][1] ];
3638
3639         };
3640     };/*
3641  * Portions of this file are based on pieces of Yahoo User Interface Library
3642  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3643  * YUI licensed under the BSD License:
3644  * http://developer.yahoo.net/yui/license.txt
3645  * <script type="text/javascript">
3646  *
3647  */
3648 (function() {
3649
3650     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3651         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3652     };
3653
3654     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3655
3656     var fly = Roo.lib.AnimBase.fly;
3657     var Y = Roo.lib;
3658     var superclass = Y.ColorAnim.superclass;
3659     var proto = Y.ColorAnim.prototype;
3660
3661     proto.toString = function() {
3662         var el = this.getEl();
3663         var id = el.id || el.tagName;
3664         return ("ColorAnim " + id);
3665     };
3666
3667     proto.patterns.color = /color$/i;
3668     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3669     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3670     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3671     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3672
3673
3674     proto.parseColor = function(s) {
3675         if (s.length == 3) {
3676             return s;
3677         }
3678
3679         var c = this.patterns.hex.exec(s);
3680         if (c && c.length == 4) {
3681             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3682         }
3683
3684         c = this.patterns.rgb.exec(s);
3685         if (c && c.length == 4) {
3686             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3687         }
3688
3689         c = this.patterns.hex3.exec(s);
3690         if (c && c.length == 4) {
3691             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3692         }
3693
3694         return null;
3695     };
3696     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3697     proto.getAttribute = function(attr) {
3698         var el = this.getEl();
3699         if (this.patterns.color.test(attr)) {
3700             var val = fly(el).getStyle(attr);
3701
3702             if (this.patterns.transparent.test(val)) {
3703                 var parent = el.parentNode;
3704                 val = fly(parent).getStyle(attr);
3705
3706                 while (parent && this.patterns.transparent.test(val)) {
3707                     parent = parent.parentNode;
3708                     val = fly(parent).getStyle(attr);
3709                     if (parent.tagName.toUpperCase() == 'HTML') {
3710                         val = '#fff';
3711                     }
3712                 }
3713             }
3714         } else {
3715             val = superclass.getAttribute.call(this, attr);
3716         }
3717
3718         return val;
3719     };
3720     proto.getAttribute = function(attr) {
3721         var el = this.getEl();
3722         if (this.patterns.color.test(attr)) {
3723             var val = fly(el).getStyle(attr);
3724
3725             if (this.patterns.transparent.test(val)) {
3726                 var parent = el.parentNode;
3727                 val = fly(parent).getStyle(attr);
3728
3729                 while (parent && this.patterns.transparent.test(val)) {
3730                     parent = parent.parentNode;
3731                     val = fly(parent).getStyle(attr);
3732                     if (parent.tagName.toUpperCase() == 'HTML') {
3733                         val = '#fff';
3734                     }
3735                 }
3736             }
3737         } else {
3738             val = superclass.getAttribute.call(this, attr);
3739         }
3740
3741         return val;
3742     };
3743
3744     proto.doMethod = function(attr, start, end) {
3745         var val;
3746
3747         if (this.patterns.color.test(attr)) {
3748             val = [];
3749             for (var i = 0, len = start.length; i < len; ++i) {
3750                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3751             }
3752
3753             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3754         }
3755         else {
3756             val = superclass.doMethod.call(this, attr, start, end);
3757         }
3758
3759         return val;
3760     };
3761
3762     proto.setRuntimeAttribute = function(attr) {
3763         superclass.setRuntimeAttribute.call(this, attr);
3764
3765         if (this.patterns.color.test(attr)) {
3766             var attributes = this.attributes;
3767             var start = this.parseColor(this.runtimeAttributes[attr].start);
3768             var end = this.parseColor(this.runtimeAttributes[attr].end);
3769
3770             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3771                 end = this.parseColor(attributes[attr].by);
3772
3773                 for (var i = 0, len = start.length; i < len; ++i) {
3774                     end[i] = start[i] + end[i];
3775                 }
3776             }
3777
3778             this.runtimeAttributes[attr].start = start;
3779             this.runtimeAttributes[attr].end = end;
3780         }
3781     };
3782 })();
3783
3784 /*
3785  * Portions of this file are based on pieces of Yahoo User Interface Library
3786  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3787  * YUI licensed under the BSD License:
3788  * http://developer.yahoo.net/yui/license.txt
3789  * <script type="text/javascript">
3790  *
3791  */
3792 Roo.lib.Easing = {
3793
3794
3795     easeNone: function (t, b, c, d) {
3796         return c * t / d + b;
3797     },
3798
3799
3800     easeIn: function (t, b, c, d) {
3801         return c * (t /= d) * t + b;
3802     },
3803
3804
3805     easeOut: function (t, b, c, d) {
3806         return -c * (t /= d) * (t - 2) + b;
3807     },
3808
3809
3810     easeBoth: function (t, b, c, d) {
3811         if ((t /= d / 2) < 1) {
3812             return c / 2 * t * t + b;
3813         }
3814
3815         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3816     },
3817
3818
3819     easeInStrong: function (t, b, c, d) {
3820         return c * (t /= d) * t * t * t + b;
3821     },
3822
3823
3824     easeOutStrong: function (t, b, c, d) {
3825         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3826     },
3827
3828
3829     easeBothStrong: function (t, b, c, d) {
3830         if ((t /= d / 2) < 1) {
3831             return c / 2 * t * t * t * t + b;
3832         }
3833
3834         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3835     },
3836
3837
3838
3839     elasticIn: function (t, b, c, d, a, p) {
3840         if (t == 0) {
3841             return b;
3842         }
3843         if ((t /= d) == 1) {
3844             return b + c;
3845         }
3846         if (!p) {
3847             p = d * .3;
3848         }
3849
3850         if (!a || a < Math.abs(c)) {
3851             a = c;
3852             var s = p / 4;
3853         }
3854         else {
3855             var s = p / (2 * Math.PI) * Math.asin(c / a);
3856         }
3857
3858         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3859     },
3860
3861
3862     elasticOut: function (t, b, c, d, a, p) {
3863         if (t == 0) {
3864             return b;
3865         }
3866         if ((t /= d) == 1) {
3867             return b + c;
3868         }
3869         if (!p) {
3870             p = d * .3;
3871         }
3872
3873         if (!a || a < Math.abs(c)) {
3874             a = c;
3875             var s = p / 4;
3876         }
3877         else {
3878             var s = p / (2 * Math.PI) * Math.asin(c / a);
3879         }
3880
3881         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3882     },
3883
3884
3885     elasticBoth: function (t, b, c, d, a, p) {
3886         if (t == 0) {
3887             return b;
3888         }
3889
3890         if ((t /= d / 2) == 2) {
3891             return b + c;
3892         }
3893
3894         if (!p) {
3895             p = d * (.3 * 1.5);
3896         }
3897
3898         if (!a || a < Math.abs(c)) {
3899             a = c;
3900             var s = p / 4;
3901         }
3902         else {
3903             var s = p / (2 * Math.PI) * Math.asin(c / a);
3904         }
3905
3906         if (t < 1) {
3907             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3908                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3909         }
3910         return a * Math.pow(2, -10 * (t -= 1)) *
3911                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3912     },
3913
3914
3915
3916     backIn: function (t, b, c, d, s) {
3917         if (typeof s == 'undefined') {
3918             s = 1.70158;
3919         }
3920         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3921     },
3922
3923
3924     backOut: function (t, b, c, d, s) {
3925         if (typeof s == 'undefined') {
3926             s = 1.70158;
3927         }
3928         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3929     },
3930
3931
3932     backBoth: function (t, b, c, d, s) {
3933         if (typeof s == 'undefined') {
3934             s = 1.70158;
3935         }
3936
3937         if ((t /= d / 2 ) < 1) {
3938             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3939         }
3940         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3941     },
3942
3943
3944     bounceIn: function (t, b, c, d) {
3945         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3946     },
3947
3948
3949     bounceOut: function (t, b, c, d) {
3950         if ((t /= d) < (1 / 2.75)) {
3951             return c * (7.5625 * t * t) + b;
3952         } else if (t < (2 / 2.75)) {
3953             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3954         } else if (t < (2.5 / 2.75)) {
3955             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3956         }
3957         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3958     },
3959
3960
3961     bounceBoth: function (t, b, c, d) {
3962         if (t < d / 2) {
3963             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3964         }
3965         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3966     }
3967 };/*
3968  * Portions of this file are based on pieces of Yahoo User Interface Library
3969  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3970  * YUI licensed under the BSD License:
3971  * http://developer.yahoo.net/yui/license.txt
3972  * <script type="text/javascript">
3973  *
3974  */
3975     (function() {
3976         Roo.lib.Motion = function(el, attributes, duration, method) {
3977             if (el) {
3978                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3979             }
3980         };
3981
3982         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3983
3984
3985         var Y = Roo.lib;
3986         var superclass = Y.Motion.superclass;
3987         var proto = Y.Motion.prototype;
3988
3989         proto.toString = function() {
3990             var el = this.getEl();
3991             var id = el.id || el.tagName;
3992             return ("Motion " + id);
3993         };
3994
3995         proto.patterns.points = /^points$/i;
3996
3997         proto.setAttribute = function(attr, val, unit) {
3998             if (this.patterns.points.test(attr)) {
3999                 unit = unit || 'px';
4000                 superclass.setAttribute.call(this, 'left', val[0], unit);
4001                 superclass.setAttribute.call(this, 'top', val[1], unit);
4002             } else {
4003                 superclass.setAttribute.call(this, attr, val, unit);
4004             }
4005         };
4006
4007         proto.getAttribute = function(attr) {
4008             if (this.patterns.points.test(attr)) {
4009                 var val = [
4010                         superclass.getAttribute.call(this, 'left'),
4011                         superclass.getAttribute.call(this, 'top')
4012                         ];
4013             } else {
4014                 val = superclass.getAttribute.call(this, attr);
4015             }
4016
4017             return val;
4018         };
4019
4020         proto.doMethod = function(attr, start, end) {
4021             var val = null;
4022
4023             if (this.patterns.points.test(attr)) {
4024                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4025                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4026             } else {
4027                 val = superclass.doMethod.call(this, attr, start, end);
4028             }
4029             return val;
4030         };
4031
4032         proto.setRuntimeAttribute = function(attr) {
4033             if (this.patterns.points.test(attr)) {
4034                 var el = this.getEl();
4035                 var attributes = this.attributes;
4036                 var start;
4037                 var control = attributes['points']['control'] || [];
4038                 var end;
4039                 var i, len;
4040
4041                 if (control.length > 0 && !(control[0] instanceof Array)) {
4042                     control = [control];
4043                 } else {
4044                     var tmp = [];
4045                     for (i = 0,len = control.length; i < len; ++i) {
4046                         tmp[i] = control[i];
4047                     }
4048                     control = tmp;
4049                 }
4050
4051                 Roo.fly(el).position();
4052
4053                 if (isset(attributes['points']['from'])) {
4054                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4055                 }
4056                 else {
4057                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4058                 }
4059
4060                 start = this.getAttribute('points');
4061
4062
4063                 if (isset(attributes['points']['to'])) {
4064                     end = translateValues.call(this, attributes['points']['to'], start);
4065
4066                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4067                     for (i = 0,len = control.length; i < len; ++i) {
4068                         control[i] = translateValues.call(this, control[i], start);
4069                     }
4070
4071
4072                 } else if (isset(attributes['points']['by'])) {
4073                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4074
4075                     for (i = 0,len = control.length; i < len; ++i) {
4076                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4077                     }
4078                 }
4079
4080                 this.runtimeAttributes[attr] = [start];
4081
4082                 if (control.length > 0) {
4083                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4084                 }
4085
4086                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4087             }
4088             else {
4089                 superclass.setRuntimeAttribute.call(this, attr);
4090             }
4091         };
4092
4093         var translateValues = function(val, start) {
4094             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4095             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4096
4097             return val;
4098         };
4099
4100         var isset = function(prop) {
4101             return (typeof prop !== 'undefined');
4102         };
4103     })();
4104 /*
4105  * Portions of this file are based on pieces of Yahoo User Interface Library
4106  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4107  * YUI licensed under the BSD License:
4108  * http://developer.yahoo.net/yui/license.txt
4109  * <script type="text/javascript">
4110  *
4111  */
4112     (function() {
4113         Roo.lib.Scroll = function(el, attributes, duration, method) {
4114             if (el) {
4115                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4116             }
4117         };
4118
4119         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4120
4121
4122         var Y = Roo.lib;
4123         var superclass = Y.Scroll.superclass;
4124         var proto = Y.Scroll.prototype;
4125
4126         proto.toString = function() {
4127             var el = this.getEl();
4128             var id = el.id || el.tagName;
4129             return ("Scroll " + id);
4130         };
4131
4132         proto.doMethod = function(attr, start, end) {
4133             var val = null;
4134
4135             if (attr == 'scroll') {
4136                 val = [
4137                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4138                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4139                         ];
4140
4141             } else {
4142                 val = superclass.doMethod.call(this, attr, start, end);
4143             }
4144             return val;
4145         };
4146
4147         proto.getAttribute = function(attr) {
4148             var val = null;
4149             var el = this.getEl();
4150
4151             if (attr == 'scroll') {
4152                 val = [ el.scrollLeft, el.scrollTop ];
4153             } else {
4154                 val = superclass.getAttribute.call(this, attr);
4155             }
4156
4157             return val;
4158         };
4159
4160         proto.setAttribute = function(attr, val, unit) {
4161             var el = this.getEl();
4162
4163             if (attr == 'scroll') {
4164                 el.scrollLeft = val[0];
4165                 el.scrollTop = val[1];
4166             } else {
4167                 superclass.setAttribute.call(this, attr, val, unit);
4168             }
4169         };
4170     })();
4171 /*
4172  * Based on:
4173  * Ext JS Library 1.1.1
4174  * Copyright(c) 2006-2007, Ext JS, LLC.
4175  *
4176  * Originally Released Under LGPL - original licence link has changed is not relivant.
4177  *
4178  * Fork - LGPL
4179  * <script type="text/javascript">
4180  */
4181
4182
4183 // nasty IE9 hack - what a pile of crap that is..
4184
4185  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4186     Range.prototype.createContextualFragment = function (html) {
4187         var doc = window.document;
4188         var container = doc.createElement("div");
4189         container.innerHTML = html;
4190         var frag = doc.createDocumentFragment(), n;
4191         while ((n = container.firstChild)) {
4192             frag.appendChild(n);
4193         }
4194         return frag;
4195     };
4196 }
4197
4198 /**
4199  * @class Roo.DomHelper
4200  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4201  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
4202  * @singleton
4203  */
4204 Roo.DomHelper = function(){
4205     var tempTableEl = null;
4206     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4207     var tableRe = /^table|tbody|tr|td$/i;
4208     var xmlns = {};
4209     // build as innerHTML where available
4210     /** @ignore */
4211     var createHtml = function(o){
4212         if(typeof o == 'string'){
4213             return o;
4214         }
4215         var b = "";
4216         if(!o.tag){
4217             o.tag = "div";
4218         }
4219         b += "<" + o.tag;
4220         for(var attr in o){
4221             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4222             if(attr == "style"){
4223                 var s = o["style"];
4224                 if(typeof s == "function"){
4225                     s = s.call();
4226                 }
4227                 if(typeof s == "string"){
4228                     b += ' style="' + s + '"';
4229                 }else if(typeof s == "object"){
4230                     b += ' style="';
4231                     for(var key in s){
4232                         if(typeof s[key] != "function"){
4233                             b += key + ":" + s[key] + ";";
4234                         }
4235                     }
4236                     b += '"';
4237                 }
4238             }else{
4239                 if(attr == "cls"){
4240                     b += ' class="' + o["cls"] + '"';
4241                 }else if(attr == "htmlFor"){
4242                     b += ' for="' + o["htmlFor"] + '"';
4243                 }else{
4244                     b += " " + attr + '="' + o[attr] + '"';
4245                 }
4246             }
4247         }
4248         if(emptyTags.test(o.tag)){
4249             b += "/>";
4250         }else{
4251             b += ">";
4252             var cn = o.children || o.cn;
4253             if(cn){
4254                 //http://bugs.kde.org/show_bug.cgi?id=71506
4255                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4256                     for(var i = 0, len = cn.length; i < len; i++) {
4257                         b += createHtml(cn[i], b);
4258                     }
4259                 }else{
4260                     b += createHtml(cn, b);
4261                 }
4262             }
4263             if(o.html){
4264                 b += o.html;
4265             }
4266             b += "</" + o.tag + ">";
4267         }
4268         return b;
4269     };
4270
4271     // build as dom
4272     /** @ignore */
4273     var createDom = function(o, parentNode){
4274          
4275         // defininition craeted..
4276         var ns = false;
4277         if (o.ns && o.ns != 'html') {
4278                
4279             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4280                 xmlns[o.ns] = o.xmlns;
4281                 ns = o.xmlns;
4282             }
4283             if (typeof(xmlns[o.ns]) == 'undefined') {
4284                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4285             }
4286             ns = xmlns[o.ns];
4287         }
4288         
4289         
4290         if (typeof(o) == 'string') {
4291             return parentNode.appendChild(document.createTextNode(o));
4292         }
4293         o.tag = o.tag || div;
4294         if (o.ns && Roo.isIE) {
4295             ns = false;
4296             o.tag = o.ns + ':' + o.tag;
4297             
4298         }
4299         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4300         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4301         for(var attr in o){
4302             
4303             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4304                     attr == "style" || typeof o[attr] == "function") { continue; }
4305                     
4306             if(attr=="cls" && Roo.isIE){
4307                 el.className = o["cls"];
4308             }else{
4309                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4310                 else { 
4311                     el[attr] = o[attr];
4312                 }
4313             }
4314         }
4315         Roo.DomHelper.applyStyles(el, o.style);
4316         var cn = o.children || o.cn;
4317         if(cn){
4318             //http://bugs.kde.org/show_bug.cgi?id=71506
4319              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4320                 for(var i = 0, len = cn.length; i < len; i++) {
4321                     createDom(cn[i], el);
4322                 }
4323             }else{
4324                 createDom(cn, el);
4325             }
4326         }
4327         if(o.html){
4328             el.innerHTML = o.html;
4329         }
4330         if(parentNode){
4331            parentNode.appendChild(el);
4332         }
4333         return el;
4334     };
4335
4336     var ieTable = function(depth, s, h, e){
4337         tempTableEl.innerHTML = [s, h, e].join('');
4338         var i = -1, el = tempTableEl;
4339         while(++i < depth){
4340             el = el.firstChild;
4341         }
4342         return el;
4343     };
4344
4345     // kill repeat to save bytes
4346     var ts = '<table>',
4347         te = '</table>',
4348         tbs = ts+'<tbody>',
4349         tbe = '</tbody>'+te,
4350         trs = tbs + '<tr>',
4351         tre = '</tr>'+tbe;
4352
4353     /**
4354      * @ignore
4355      * Nasty code for IE's broken table implementation
4356      */
4357     var insertIntoTable = function(tag, where, el, html){
4358         if(!tempTableEl){
4359             tempTableEl = document.createElement('div');
4360         }
4361         var node;
4362         var before = null;
4363         if(tag == 'td'){
4364             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4365                 return;
4366             }
4367             if(where == 'beforebegin'){
4368                 before = el;
4369                 el = el.parentNode;
4370             } else{
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373             }
4374             node = ieTable(4, trs, html, tre);
4375         }
4376         else if(tag == 'tr'){
4377             if(where == 'beforebegin'){
4378                 before = el;
4379                 el = el.parentNode;
4380                 node = ieTable(3, tbs, html, tbe);
4381             } else if(where == 'afterend'){
4382                 before = el.nextSibling;
4383                 el = el.parentNode;
4384                 node = ieTable(3, tbs, html, tbe);
4385             } else{ // INTO a TR
4386                 if(where == 'afterbegin'){
4387                     before = el.firstChild;
4388                 }
4389                 node = ieTable(4, trs, html, tre);
4390             }
4391         } else if(tag == 'tbody'){
4392             if(where == 'beforebegin'){
4393                 before = el;
4394                 el = el.parentNode;
4395                 node = ieTable(2, ts, html, te);
4396             } else if(where == 'afterend'){
4397                 before = el.nextSibling;
4398                 el = el.parentNode;
4399                 node = ieTable(2, ts, html, te);
4400             } else{
4401                 if(where == 'afterbegin'){
4402                     before = el.firstChild;
4403                 }
4404                 node = ieTable(3, tbs, html, tbe);
4405             }
4406         } else{ // TABLE
4407             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4408                 return;
4409             }
4410             if(where == 'afterbegin'){
4411                 before = el.firstChild;
4412             }
4413             node = ieTable(2, ts, html, te);
4414         }
4415         el.insertBefore(node, before);
4416         return node;
4417     };
4418
4419     return {
4420     /** True to force the use of DOM instead of html fragments @type Boolean */
4421     useDom : false,
4422
4423     /**
4424      * Returns the markup for the passed Element(s) config
4425      * @param {Object} o The Dom object spec (and children)
4426      * @return {String}
4427      */
4428     markup : function(o){
4429         return createHtml(o);
4430     },
4431
4432     /**
4433      * Applies a style specification to an element
4434      * @param {String/HTMLElement} el The element to apply styles to
4435      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4436      * a function which returns such a specification.
4437      */
4438     applyStyles : function(el, styles){
4439         if(styles){
4440            el = Roo.fly(el);
4441            if(typeof styles == "string"){
4442                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4443                var matches;
4444                while ((matches = re.exec(styles)) != null){
4445                    el.setStyle(matches[1], matches[2]);
4446                }
4447            }else if (typeof styles == "object"){
4448                for (var style in styles){
4449                   el.setStyle(style, styles[style]);
4450                }
4451            }else if (typeof styles == "function"){
4452                 Roo.DomHelper.applyStyles(el, styles.call());
4453            }
4454         }
4455     },
4456
4457     /**
4458      * Inserts an HTML fragment into the Dom
4459      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4460      * @param {HTMLElement} el The context element
4461      * @param {String} html The HTML fragmenet
4462      * @return {HTMLElement} The new node
4463      */
4464     insertHtml : function(where, el, html){
4465         where = where.toLowerCase();
4466         if(el.insertAdjacentHTML){
4467             if(tableRe.test(el.tagName)){
4468                 var rs;
4469                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4470                     return rs;
4471                 }
4472             }
4473             switch(where){
4474                 case "beforebegin":
4475                     el.insertAdjacentHTML('BeforeBegin', html);
4476                     return el.previousSibling;
4477                 case "afterbegin":
4478                     el.insertAdjacentHTML('AfterBegin', html);
4479                     return el.firstChild;
4480                 case "beforeend":
4481                     el.insertAdjacentHTML('BeforeEnd', html);
4482                     return el.lastChild;
4483                 case "afterend":
4484                     el.insertAdjacentHTML('AfterEnd', html);
4485                     return el.nextSibling;
4486             }
4487             throw 'Illegal insertion point -> "' + where + '"';
4488         }
4489         var range = el.ownerDocument.createRange();
4490         var frag;
4491         switch(where){
4492              case "beforebegin":
4493                 range.setStartBefore(el);
4494                 frag = range.createContextualFragment(html);
4495                 el.parentNode.insertBefore(frag, el);
4496                 return el.previousSibling;
4497              case "afterbegin":
4498                 if(el.firstChild){
4499                     range.setStartBefore(el.firstChild);
4500                     frag = range.createContextualFragment(html);
4501                     el.insertBefore(frag, el.firstChild);
4502                     return el.firstChild;
4503                 }else{
4504                     el.innerHTML = html;
4505                     return el.firstChild;
4506                 }
4507             case "beforeend":
4508                 if(el.lastChild){
4509                     range.setStartAfter(el.lastChild);
4510                     frag = range.createContextualFragment(html);
4511                     el.appendChild(frag);
4512                     return el.lastChild;
4513                 }else{
4514                     el.innerHTML = html;
4515                     return el.lastChild;
4516                 }
4517             case "afterend":
4518                 range.setStartAfter(el);
4519                 frag = range.createContextualFragment(html);
4520                 el.parentNode.insertBefore(frag, el.nextSibling);
4521                 return el.nextSibling;
4522             }
4523             throw 'Illegal insertion point -> "' + where + '"';
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and inserts them before el
4528      * @param {String/HTMLElement/Element} el The context element
4529      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4530      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4531      * @return {HTMLElement/Roo.Element} The new node
4532      */
4533     insertBefore : function(el, o, returnElement){
4534         return this.doInsert(el, o, returnElement, "beforeBegin");
4535     },
4536
4537     /**
4538      * Creates new Dom element(s) and inserts them after el
4539      * @param {String/HTMLElement/Element} el The context element
4540      * @param {Object} o The Dom object spec (and children)
4541      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4542      * @return {HTMLElement/Roo.Element} The new node
4543      */
4544     insertAfter : function(el, o, returnElement){
4545         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4546     },
4547
4548     /**
4549      * Creates new Dom element(s) and inserts them as the first child of el
4550      * @param {String/HTMLElement/Element} el The context element
4551      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4552      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4553      * @return {HTMLElement/Roo.Element} The new node
4554      */
4555     insertFirst : function(el, o, returnElement){
4556         return this.doInsert(el, o, returnElement, "afterBegin");
4557     },
4558
4559     // private
4560     doInsert : function(el, o, returnElement, pos, sibling){
4561         el = Roo.getDom(el);
4562         var newNode;
4563         if(this.useDom || o.ns){
4564             newNode = createDom(o, null);
4565             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4566         }else{
4567             var html = createHtml(o);
4568             newNode = this.insertHtml(pos, el, html);
4569         }
4570         return returnElement ? Roo.get(newNode, true) : newNode;
4571     },
4572
4573     /**
4574      * Creates new Dom element(s) and appends them to el
4575      * @param {String/HTMLElement/Element} el The context element
4576      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4577      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4578      * @return {HTMLElement/Roo.Element} The new node
4579      */
4580     append : function(el, o, returnElement){
4581         el = Roo.getDom(el);
4582         var newNode;
4583         if(this.useDom || o.ns){
4584             newNode = createDom(o, null);
4585             el.appendChild(newNode);
4586         }else{
4587             var html = createHtml(o);
4588             newNode = this.insertHtml("beforeEnd", el, html);
4589         }
4590         return returnElement ? Roo.get(newNode, true) : newNode;
4591     },
4592
4593     /**
4594      * Creates new Dom element(s) and overwrites the contents of el with them
4595      * @param {String/HTMLElement/Element} el The context element
4596      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4597      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4598      * @return {HTMLElement/Roo.Element} The new node
4599      */
4600     overwrite : function(el, o, returnElement){
4601         el = Roo.getDom(el);
4602         if (o.ns) {
4603           
4604             while (el.childNodes.length) {
4605                 el.removeChild(el.firstChild);
4606             }
4607             createDom(o, el);
4608         } else {
4609             el.innerHTML = createHtml(o);   
4610         }
4611         
4612         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4613     },
4614
4615     /**
4616      * Creates a new Roo.DomHelper.Template from the Dom object spec
4617      * @param {Object} o The Dom object spec (and children)
4618      * @return {Roo.DomHelper.Template} The new template
4619      */
4620     createTemplate : function(o){
4621         var html = createHtml(o);
4622         return new Roo.Template(html);
4623     }
4624     };
4625 }();
4626 /*
4627  * Based on:
4628  * Ext JS Library 1.1.1
4629  * Copyright(c) 2006-2007, Ext JS, LLC.
4630  *
4631  * Originally Released Under LGPL - original licence link has changed is not relivant.
4632  *
4633  * Fork - LGPL
4634  * <script type="text/javascript">
4635  */
4636  
4637 /**
4638 * @class Roo.Template
4639 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4640 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4641 * Usage:
4642 <pre><code>
4643 var t = new Roo.Template({
4644     html :  '&lt;div name="{id}"&gt;' + 
4645         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4646         '&lt;/div&gt;',
4647     myformat: function (value, allValues) {
4648         return 'XX' + value;
4649     }
4650 });
4651 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4652 </code></pre>
4653 * For more information see this blog post with examples:
4654 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4655      - Create Elements using DOM, HTML fragments and Templates</a>. 
4656 * @constructor
4657 * @param {Object} cfg - Configuration object.
4658 */
4659 Roo.Template = function(cfg){
4660     // BC!
4661     if(cfg instanceof Array){
4662         cfg = cfg.join("");
4663     }else if(arguments.length > 1){
4664         cfg = Array.prototype.join.call(arguments, "");
4665     }
4666     
4667     
4668     if (typeof(cfg) == 'object') {
4669         Roo.apply(this,cfg)
4670     } else {
4671         // bc
4672         this.html = cfg;
4673     }
4674     if (this.url) {
4675         this.load();
4676     }
4677     
4678 };
4679 Roo.Template.prototype = {
4680     
4681     /**
4682      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4683      */
4684     onLoad : false,
4685     
4686     
4687     /**
4688      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
4689      *                    it should be fixed so that template is observable...
4690      */
4691     url : false,
4692     /**
4693      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4694      */
4695     html : '',
4696     
4697     
4698     compiled : false,
4699     loaded : false,
4700     /**
4701      * Returns an HTML fragment of this template with the specified values applied.
4702      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4703      * @return {String} The HTML fragment
4704      */
4705     
4706    
4707     
4708     applyTemplate : function(values){
4709         //Roo.log(["applyTemplate", values]);
4710         try {
4711            
4712             if(this.compiled){
4713                 return this.compiled(values);
4714             }
4715             var useF = this.disableFormats !== true;
4716             var fm = Roo.util.Format, tpl = this;
4717             var fn = function(m, name, format, args){
4718                 if(format && useF){
4719                     if(format.substr(0, 5) == "this."){
4720                         return tpl.call(format.substr(5), values[name], values);
4721                     }else{
4722                         if(args){
4723                             // quoted values are required for strings in compiled templates, 
4724                             // but for non compiled we need to strip them
4725                             // quoted reversed for jsmin
4726                             var re = /^\s*['"](.*)["']\s*$/;
4727                             args = args.split(',');
4728                             for(var i = 0, len = args.length; i < len; i++){
4729                                 args[i] = args[i].replace(re, "$1");
4730                             }
4731                             args = [values[name]].concat(args);
4732                         }else{
4733                             args = [values[name]];
4734                         }
4735                         return fm[format].apply(fm, args);
4736                     }
4737                 }else{
4738                     return values[name] !== undefined ? values[name] : "";
4739                 }
4740             };
4741             return this.html.replace(this.re, fn);
4742         } catch (e) {
4743             Roo.log(e);
4744             throw e;
4745         }
4746          
4747     },
4748     
4749     loading : false,
4750       
4751     load : function ()
4752     {
4753          
4754         if (this.loading) {
4755             return;
4756         }
4757         var _t = this;
4758         
4759         this.loading = true;
4760         this.compiled = false;
4761         
4762         var cx = new Roo.data.Connection();
4763         cx.request({
4764             url : this.url,
4765             method : 'GET',
4766             success : function (response) {
4767                 _t.loading = false;
4768                 _t.url = false;
4769                 
4770                 _t.set(response.responseText,true);
4771                 _t.loaded = true;
4772                 if (_t.onLoad) {
4773                     _t.onLoad();
4774                 }
4775              },
4776             failure : function(response) {
4777                 Roo.log("Template failed to load from " + _t.url);
4778                 _t.loading = false;
4779             }
4780         });
4781     },
4782
4783     /**
4784      * Sets the HTML used as the template and optionally compiles it.
4785      * @param {String} html
4786      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4787      * @return {Roo.Template} this
4788      */
4789     set : function(html, compile){
4790         this.html = html;
4791         this.compiled = false;
4792         if(compile){
4793             this.compile();
4794         }
4795         return this;
4796     },
4797     
4798     /**
4799      * True to disable format functions (defaults to false)
4800      * @type Boolean
4801      */
4802     disableFormats : false,
4803     
4804     /**
4805     * The regular expression used to match template variables 
4806     * @type RegExp
4807     * @property 
4808     */
4809     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4810     
4811     /**
4812      * Compiles the template into an internal function, eliminating the RegEx overhead.
4813      * @return {Roo.Template} this
4814      */
4815     compile : function(){
4816         var fm = Roo.util.Format;
4817         var useF = this.disableFormats !== true;
4818         var sep = Roo.isGecko ? "+" : ",";
4819         var fn = function(m, name, format, args){
4820             if(format && useF){
4821                 args = args ? ',' + args : "";
4822                 if(format.substr(0, 5) != "this."){
4823                     format = "fm." + format + '(';
4824                 }else{
4825                     format = 'this.call("'+ format.substr(5) + '", ';
4826                     args = ", values";
4827                 }
4828             }else{
4829                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4830             }
4831             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4832         };
4833         var body;
4834         // branched to use + in gecko and [].join() in others
4835         if(Roo.isGecko){
4836             body = "this.compiled = function(values){ return '" +
4837                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4838                     "';};";
4839         }else{
4840             body = ["this.compiled = function(values){ return ['"];
4841             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4842             body.push("'].join('');};");
4843             body = body.join('');
4844         }
4845         /**
4846          * eval:var:values
4847          * eval:var:fm
4848          */
4849         eval(body);
4850         return this;
4851     },
4852     
4853     // private function used to call members
4854     call : function(fnName, value, allValues){
4855         return this[fnName](value, allValues);
4856     },
4857     
4858     /**
4859      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4860      * @param {String/HTMLElement/Roo.Element} el The context element
4861      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4862      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4863      * @return {HTMLElement/Roo.Element} The new node or Element
4864      */
4865     insertFirst: function(el, values, returnElement){
4866         return this.doInsert('afterBegin', el, values, returnElement);
4867     },
4868
4869     /**
4870      * Applies the supplied values to the template and inserts the new node(s) before el.
4871      * @param {String/HTMLElement/Roo.Element} el The context element
4872      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4873      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4874      * @return {HTMLElement/Roo.Element} The new node or Element
4875      */
4876     insertBefore: function(el, values, returnElement){
4877         return this.doInsert('beforeBegin', el, values, returnElement);
4878     },
4879
4880     /**
4881      * Applies the supplied values to the template and inserts the new node(s) after el.
4882      * @param {String/HTMLElement/Roo.Element} el The context element
4883      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4884      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4885      * @return {HTMLElement/Roo.Element} The new node or Element
4886      */
4887     insertAfter : function(el, values, returnElement){
4888         return this.doInsert('afterEnd', el, values, returnElement);
4889     },
4890     
4891     /**
4892      * Applies the supplied values to the template and appends the new node(s) to el.
4893      * @param {String/HTMLElement/Roo.Element} el The context element
4894      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4895      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4896      * @return {HTMLElement/Roo.Element} The new node or Element
4897      */
4898     append : function(el, values, returnElement){
4899         return this.doInsert('beforeEnd', el, values, returnElement);
4900     },
4901
4902     doInsert : function(where, el, values, returnEl){
4903         el = Roo.getDom(el);
4904         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4905         return returnEl ? Roo.get(newNode, true) : newNode;
4906     },
4907
4908     /**
4909      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4910      * @param {String/HTMLElement/Roo.Element} el The context element
4911      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4912      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4913      * @return {HTMLElement/Roo.Element} The new node or Element
4914      */
4915     overwrite : function(el, values, returnElement){
4916         el = Roo.getDom(el);
4917         el.innerHTML = this.applyTemplate(values);
4918         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4919     }
4920 };
4921 /**
4922  * Alias for {@link #applyTemplate}
4923  * @method
4924  */
4925 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4926
4927 // backwards compat
4928 Roo.DomHelper.Template = Roo.Template;
4929
4930 /**
4931  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4932  * @param {String/HTMLElement} el A DOM element or its id
4933  * @returns {Roo.Template} The created template
4934  * @static
4935  */
4936 Roo.Template.from = function(el){
4937     el = Roo.getDom(el);
4938     return new Roo.Template(el.value || el.innerHTML);
4939 };/*
4940  * Based on:
4941  * Ext JS Library 1.1.1
4942  * Copyright(c) 2006-2007, Ext JS, LLC.
4943  *
4944  * Originally Released Under LGPL - original licence link has changed is not relivant.
4945  *
4946  * Fork - LGPL
4947  * <script type="text/javascript">
4948  */
4949  
4950
4951 /*
4952  * This is code is also distributed under MIT license for use
4953  * with jQuery and prototype JavaScript libraries.
4954  */
4955 /**
4956  * @class Roo.DomQuery
4957 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
4958 <p>
4959 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
4960
4961 <p>
4962 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
4963 </p>
4964 <h4>Element Selectors:</h4>
4965 <ul class="list">
4966     <li> <b>*</b> any element</li>
4967     <li> <b>E</b> an element with the tag E</li>
4968     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4969     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4970     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4971     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4972 </ul>
4973 <h4>Attribute Selectors:</h4>
4974 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4975 <ul class="list">
4976     <li> <b>E[foo]</b> has an attribute "foo"</li>
4977     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4978     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4979     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4980     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4981     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4982     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4983 </ul>
4984 <h4>Pseudo Classes:</h4>
4985 <ul class="list">
4986     <li> <b>E:first-child</b> E is the first child of its parent</li>
4987     <li> <b>E:last-child</b> E is the last child of its parent</li>
4988     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
4989     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4990     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4991     <li> <b>E:only-child</b> E is the only child of its parent</li>
4992     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
4993     <li> <b>E:first</b> the first E in the resultset</li>
4994     <li> <b>E:last</b> the last E in the resultset</li>
4995     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4996     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4997     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4998     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4999     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5000     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5001     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5002     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5003     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5004 </ul>
5005 <h4>CSS Value Selectors:</h4>
5006 <ul class="list">
5007     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5008     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5009     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5010     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5011     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5012     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5013 </ul>
5014  * @singleton
5015  */
5016 Roo.DomQuery = function(){
5017     var cache = {}, simpleCache = {}, valueCache = {};
5018     var nonSpace = /\S/;
5019     var trimRe = /^\s+|\s+$/g;
5020     var tplRe = /\{(\d+)\}/g;
5021     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5022     var tagTokenRe = /^(#)?([\w-\*]+)/;
5023     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5024
5025     function child(p, index){
5026         var i = 0;
5027         var n = p.firstChild;
5028         while(n){
5029             if(n.nodeType == 1){
5030                if(++i == index){
5031                    return n;
5032                }
5033             }
5034             n = n.nextSibling;
5035         }
5036         return null;
5037     };
5038
5039     function next(n){
5040         while((n = n.nextSibling) && n.nodeType != 1);
5041         return n;
5042     };
5043
5044     function prev(n){
5045         while((n = n.previousSibling) && n.nodeType != 1);
5046         return n;
5047     };
5048
5049     function children(d){
5050         var n = d.firstChild, ni = -1;
5051             while(n){
5052                 var nx = n.nextSibling;
5053                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5054                     d.removeChild(n);
5055                 }else{
5056                     n.nodeIndex = ++ni;
5057                 }
5058                 n = nx;
5059             }
5060             return this;
5061         };
5062
5063     function byClassName(c, a, v){
5064         if(!v){
5065             return c;
5066         }
5067         var r = [], ri = -1, cn;
5068         for(var i = 0, ci; ci = c[i]; i++){
5069             if((' '+ci.className+' ').indexOf(v) != -1){
5070                 r[++ri] = ci;
5071             }
5072         }
5073         return r;
5074     };
5075
5076     function attrValue(n, attr){
5077         if(!n.tagName && typeof n.length != "undefined"){
5078             n = n[0];
5079         }
5080         if(!n){
5081             return null;
5082         }
5083         if(attr == "for"){
5084             return n.htmlFor;
5085         }
5086         if(attr == "class" || attr == "className"){
5087             return n.className;
5088         }
5089         return n.getAttribute(attr) || n[attr];
5090
5091     };
5092
5093     function getNodes(ns, mode, tagName){
5094         var result = [], ri = -1, cs;
5095         if(!ns){
5096             return result;
5097         }
5098         tagName = tagName || "*";
5099         if(typeof ns.getElementsByTagName != "undefined"){
5100             ns = [ns];
5101         }
5102         if(!mode){
5103             for(var i = 0, ni; ni = ns[i]; i++){
5104                 cs = ni.getElementsByTagName(tagName);
5105                 for(var j = 0, ci; ci = cs[j]; j++){
5106                     result[++ri] = ci;
5107                 }
5108             }
5109         }else if(mode == "/" || mode == ">"){
5110             var utag = tagName.toUpperCase();
5111             for(var i = 0, ni, cn; ni = ns[i]; i++){
5112                 cn = ni.children || ni.childNodes;
5113                 for(var j = 0, cj; cj = cn[j]; j++){
5114                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5115                         result[++ri] = cj;
5116                     }
5117                 }
5118             }
5119         }else if(mode == "+"){
5120             var utag = tagName.toUpperCase();
5121             for(var i = 0, n; n = ns[i]; i++){
5122                 while((n = n.nextSibling) && n.nodeType != 1);
5123                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5124                     result[++ri] = n;
5125                 }
5126             }
5127         }else if(mode == "~"){
5128             for(var i = 0, n; n = ns[i]; i++){
5129                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5130                 if(n){
5131                     result[++ri] = n;
5132                 }
5133             }
5134         }
5135         return result;
5136     };
5137
5138     function concat(a, b){
5139         if(b.slice){
5140             return a.concat(b);
5141         }
5142         for(var i = 0, l = b.length; i < l; i++){
5143             a[a.length] = b[i];
5144         }
5145         return a;
5146     }
5147
5148     function byTag(cs, tagName){
5149         if(cs.tagName || cs == document){
5150             cs = [cs];
5151         }
5152         if(!tagName){
5153             return cs;
5154         }
5155         var r = [], ri = -1;
5156         tagName = tagName.toLowerCase();
5157         for(var i = 0, ci; ci = cs[i]; i++){
5158             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5159                 r[++ri] = ci;
5160             }
5161         }
5162         return r;
5163     };
5164
5165     function byId(cs, attr, id){
5166         if(cs.tagName || cs == document){
5167             cs = [cs];
5168         }
5169         if(!id){
5170             return cs;
5171         }
5172         var r = [], ri = -1;
5173         for(var i = 0,ci; ci = cs[i]; i++){
5174             if(ci && ci.id == id){
5175                 r[++ri] = ci;
5176                 return r;
5177             }
5178         }
5179         return r;
5180     };
5181
5182     function byAttribute(cs, attr, value, op, custom){
5183         var r = [], ri = -1, st = custom=="{";
5184         var f = Roo.DomQuery.operators[op];
5185         for(var i = 0, ci; ci = cs[i]; i++){
5186             var a;
5187             if(st){
5188                 a = Roo.DomQuery.getStyle(ci, attr);
5189             }
5190             else if(attr == "class" || attr == "className"){
5191                 a = ci.className;
5192             }else if(attr == "for"){
5193                 a = ci.htmlFor;
5194             }else if(attr == "href"){
5195                 a = ci.getAttribute("href", 2);
5196             }else{
5197                 a = ci.getAttribute(attr);
5198             }
5199             if((f && f(a, value)) || (!f && a)){
5200                 r[++ri] = ci;
5201             }
5202         }
5203         return r;
5204     };
5205
5206     function byPseudo(cs, name, value){
5207         return Roo.DomQuery.pseudos[name](cs, value);
5208     };
5209
5210     // This is for IE MSXML which does not support expandos.
5211     // IE runs the same speed using setAttribute, however FF slows way down
5212     // and Safari completely fails so they need to continue to use expandos.
5213     var isIE = window.ActiveXObject ? true : false;
5214
5215     // this eval is stop the compressor from
5216     // renaming the variable to something shorter
5217     
5218     /** eval:var:batch */
5219     var batch = 30803; 
5220
5221     var key = 30803;
5222
5223     function nodupIEXml(cs){
5224         var d = ++key;
5225         cs[0].setAttribute("_nodup", d);
5226         var r = [cs[0]];
5227         for(var i = 1, len = cs.length; i < len; i++){
5228             var c = cs[i];
5229             if(!c.getAttribute("_nodup") != d){
5230                 c.setAttribute("_nodup", d);
5231                 r[r.length] = c;
5232             }
5233         }
5234         for(var i = 0, len = cs.length; i < len; i++){
5235             cs[i].removeAttribute("_nodup");
5236         }
5237         return r;
5238     }
5239
5240     function nodup(cs){
5241         if(!cs){
5242             return [];
5243         }
5244         var len = cs.length, c, i, r = cs, cj, ri = -1;
5245         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5246             return cs;
5247         }
5248         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5249             return nodupIEXml(cs);
5250         }
5251         var d = ++key;
5252         cs[0]._nodup = d;
5253         for(i = 1; c = cs[i]; i++){
5254             if(c._nodup != d){
5255                 c._nodup = d;
5256             }else{
5257                 r = [];
5258                 for(var j = 0; j < i; j++){
5259                     r[++ri] = cs[j];
5260                 }
5261                 for(j = i+1; cj = cs[j]; j++){
5262                     if(cj._nodup != d){
5263                         cj._nodup = d;
5264                         r[++ri] = cj;
5265                     }
5266                 }
5267                 return r;
5268             }
5269         }
5270         return r;
5271     }
5272
5273     function quickDiffIEXml(c1, c2){
5274         var d = ++key;
5275         for(var i = 0, len = c1.length; i < len; i++){
5276             c1[i].setAttribute("_qdiff", d);
5277         }
5278         var r = [];
5279         for(var i = 0, len = c2.length; i < len; i++){
5280             if(c2[i].getAttribute("_qdiff") != d){
5281                 r[r.length] = c2[i];
5282             }
5283         }
5284         for(var i = 0, len = c1.length; i < len; i++){
5285            c1[i].removeAttribute("_qdiff");
5286         }
5287         return r;
5288     }
5289
5290     function quickDiff(c1, c2){
5291         var len1 = c1.length;
5292         if(!len1){
5293             return c2;
5294         }
5295         if(isIE && c1[0].selectSingleNode){
5296             return quickDiffIEXml(c1, c2);
5297         }
5298         var d = ++key;
5299         for(var i = 0; i < len1; i++){
5300             c1[i]._qdiff = d;
5301         }
5302         var r = [];
5303         for(var i = 0, len = c2.length; i < len; i++){
5304             if(c2[i]._qdiff != d){
5305                 r[r.length] = c2[i];
5306             }
5307         }
5308         return r;
5309     }
5310
5311     function quickId(ns, mode, root, id){
5312         if(ns == root){
5313            var d = root.ownerDocument || root;
5314            return d.getElementById(id);
5315         }
5316         ns = getNodes(ns, mode, "*");
5317         return byId(ns, null, id);
5318     }
5319
5320     return {
5321         getStyle : function(el, name){
5322             return Roo.fly(el).getStyle(name);
5323         },
5324         /**
5325          * Compiles a selector/xpath query into a reusable function. The returned function
5326          * takes one parameter "root" (optional), which is the context node from where the query should start.
5327          * @param {String} selector The selector/xpath query
5328          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5329          * @return {Function}
5330          */
5331         compile : function(path, type){
5332             type = type || "select";
5333             
5334             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5335             var q = path, mode, lq;
5336             var tk = Roo.DomQuery.matchers;
5337             var tklen = tk.length;
5338             var mm;
5339
5340             // accept leading mode switch
5341             var lmode = q.match(modeRe);
5342             if(lmode && lmode[1]){
5343                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5344                 q = q.replace(lmode[1], "");
5345             }
5346             // strip leading slashes
5347             while(path.substr(0, 1)=="/"){
5348                 path = path.substr(1);
5349             }
5350
5351             while(q && lq != q){
5352                 lq = q;
5353                 var tm = q.match(tagTokenRe);
5354                 if(type == "select"){
5355                     if(tm){
5356                         if(tm[1] == "#"){
5357                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5358                         }else{
5359                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5360                         }
5361                         q = q.replace(tm[0], "");
5362                     }else if(q.substr(0, 1) != '@'){
5363                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5364                     }
5365                 }else{
5366                     if(tm){
5367                         if(tm[1] == "#"){
5368                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5369                         }else{
5370                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5371                         }
5372                         q = q.replace(tm[0], "");
5373                     }
5374                 }
5375                 while(!(mm = q.match(modeRe))){
5376                     var matched = false;
5377                     for(var j = 0; j < tklen; j++){
5378                         var t = tk[j];
5379                         var m = q.match(t.re);
5380                         if(m){
5381                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5382                                                     return m[i];
5383                                                 });
5384                             q = q.replace(m[0], "");
5385                             matched = true;
5386                             break;
5387                         }
5388                     }
5389                     // prevent infinite loop on bad selector
5390                     if(!matched){
5391                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5392                     }
5393                 }
5394                 if(mm[1]){
5395                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5396                     q = q.replace(mm[1], "");
5397                 }
5398             }
5399             fn[fn.length] = "return nodup(n);\n}";
5400             
5401              /** 
5402               * list of variables that need from compression as they are used by eval.
5403              *  eval:var:batch 
5404              *  eval:var:nodup
5405              *  eval:var:byTag
5406              *  eval:var:ById
5407              *  eval:var:getNodes
5408              *  eval:var:quickId
5409              *  eval:var:mode
5410              *  eval:var:root
5411              *  eval:var:n
5412              *  eval:var:byClassName
5413              *  eval:var:byPseudo
5414              *  eval:var:byAttribute
5415              *  eval:var:attrValue
5416              * 
5417              **/ 
5418             eval(fn.join(""));
5419             return f;
5420         },
5421
5422         /**
5423          * Selects a group of elements.
5424          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @return {Array}
5427          */
5428         select : function(path, root, type){
5429             if(!root || root == document){
5430                 root = document;
5431             }
5432             if(typeof root == "string"){
5433                 root = document.getElementById(root);
5434             }
5435             var paths = path.split(",");
5436             var results = [];
5437             for(var i = 0, len = paths.length; i < len; i++){
5438                 var p = paths[i].replace(trimRe, "");
5439                 if(!cache[p]){
5440                     cache[p] = Roo.DomQuery.compile(p);
5441                     if(!cache[p]){
5442                         throw p + " is not a valid selector";
5443                     }
5444                 }
5445                 var result = cache[p](root);
5446                 if(result && result != document){
5447                     results = results.concat(result);
5448                 }
5449             }
5450             if(paths.length > 1){
5451                 return nodup(results);
5452             }
5453             return results;
5454         },
5455
5456         /**
5457          * Selects a single element.
5458          * @param {String} selector The selector/xpath query
5459          * @param {Node} root (optional) The start of the query (defaults to document).
5460          * @return {Element}
5461          */
5462         selectNode : function(path, root){
5463             return Roo.DomQuery.select(path, root)[0];
5464         },
5465
5466         /**
5467          * Selects the value of a node, optionally replacing null with the defaultValue.
5468          * @param {String} selector The selector/xpath query
5469          * @param {Node} root (optional) The start of the query (defaults to document).
5470          * @param {String} defaultValue
5471          */
5472         selectValue : function(path, root, defaultValue){
5473             path = path.replace(trimRe, "");
5474             if(!valueCache[path]){
5475                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5476             }
5477             var n = valueCache[path](root);
5478             n = n[0] ? n[0] : n;
5479             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5480             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5481         },
5482
5483         /**
5484          * Selects the value of a node, parsing integers and floats.
5485          * @param {String} selector The selector/xpath query
5486          * @param {Node} root (optional) The start of the query (defaults to document).
5487          * @param {Number} defaultValue
5488          * @return {Number}
5489          */
5490         selectNumber : function(path, root, defaultValue){
5491             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5492             return parseFloat(v);
5493         },
5494
5495         /**
5496          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5497          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5498          * @param {String} selector The simple selector to test
5499          * @return {Boolean}
5500          */
5501         is : function(el, ss){
5502             if(typeof el == "string"){
5503                 el = document.getElementById(el);
5504             }
5505             var isArray = (el instanceof Array);
5506             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5507             return isArray ? (result.length == el.length) : (result.length > 0);
5508         },
5509
5510         /**
5511          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5512          * @param {Array} el An array of elements to filter
5513          * @param {String} selector The simple selector to test
5514          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5515          * the selector instead of the ones that match
5516          * @return {Array}
5517          */
5518         filter : function(els, ss, nonMatches){
5519             ss = ss.replace(trimRe, "");
5520             if(!simpleCache[ss]){
5521                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5522             }
5523             var result = simpleCache[ss](els);
5524             return nonMatches ? quickDiff(result, els) : result;
5525         },
5526
5527         /**
5528          * Collection of matching regular expressions and code snippets.
5529          */
5530         matchers : [{
5531                 re: /^\.([\w-]+)/,
5532                 select: 'n = byClassName(n, null, " {1} ");'
5533             }, {
5534                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5535                 select: 'n = byPseudo(n, "{1}", "{2}");'
5536             },{
5537                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5538                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5539             }, {
5540                 re: /^#([\w-]+)/,
5541                 select: 'n = byId(n, null, "{1}");'
5542             },{
5543                 re: /^@([\w-]+)/,
5544                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5545             }
5546         ],
5547
5548         /**
5549          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5550          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
5551          */
5552         operators : {
5553             "=" : function(a, v){
5554                 return a == v;
5555             },
5556             "!=" : function(a, v){
5557                 return a != v;
5558             },
5559             "^=" : function(a, v){
5560                 return a && a.substr(0, v.length) == v;
5561             },
5562             "$=" : function(a, v){
5563                 return a && a.substr(a.length-v.length) == v;
5564             },
5565             "*=" : function(a, v){
5566                 return a && a.indexOf(v) !== -1;
5567             },
5568             "%=" : function(a, v){
5569                 return (a % v) == 0;
5570             },
5571             "|=" : function(a, v){
5572                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5573             },
5574             "~=" : function(a, v){
5575                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5576             }
5577         },
5578
5579         /**
5580          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5581          * and the argument (if any) supplied in the selector.
5582          */
5583         pseudos : {
5584             "first-child" : function(c){
5585                 var r = [], ri = -1, n;
5586                 for(var i = 0, ci; ci = n = c[i]; i++){
5587                     while((n = n.previousSibling) && n.nodeType != 1);
5588                     if(!n){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "last-child" : function(c){
5596                 var r = [], ri = -1, n;
5597                 for(var i = 0, ci; ci = n = c[i]; i++){
5598                     while((n = n.nextSibling) && n.nodeType != 1);
5599                     if(!n){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "nth-child" : function(c, a) {
5607                 var r = [], ri = -1;
5608                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5609                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5610                 for(var i = 0, n; n = c[i]; i++){
5611                     var pn = n.parentNode;
5612                     if (batch != pn._batch) {
5613                         var j = 0;
5614                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5615                             if(cn.nodeType == 1){
5616                                cn.nodeIndex = ++j;
5617                             }
5618                         }
5619                         pn._batch = batch;
5620                     }
5621                     if (f == 1) {
5622                         if (l == 0 || n.nodeIndex == l){
5623                             r[++ri] = n;
5624                         }
5625                     } else if ((n.nodeIndex + l) % f == 0){
5626                         r[++ri] = n;
5627                     }
5628                 }
5629
5630                 return r;
5631             },
5632
5633             "only-child" : function(c){
5634                 var r = [], ri = -1;;
5635                 for(var i = 0, ci; ci = c[i]; i++){
5636                     if(!prev(ci) && !next(ci)){
5637                         r[++ri] = ci;
5638                     }
5639                 }
5640                 return r;
5641             },
5642
5643             "empty" : function(c){
5644                 var r = [], ri = -1;
5645                 for(var i = 0, ci; ci = c[i]; i++){
5646                     var cns = ci.childNodes, j = 0, cn, empty = true;
5647                     while(cn = cns[j]){
5648                         ++j;
5649                         if(cn.nodeType == 1 || cn.nodeType == 3){
5650                             empty = false;
5651                             break;
5652                         }
5653                     }
5654                     if(empty){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "contains" : function(c, v){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5665                         r[++ri] = ci;
5666                     }
5667                 }
5668                 return r;
5669             },
5670
5671             "nodeValue" : function(c, v){
5672                 var r = [], ri = -1;
5673                 for(var i = 0, ci; ci = c[i]; i++){
5674                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5675                         r[++ri] = ci;
5676                     }
5677                 }
5678                 return r;
5679             },
5680
5681             "checked" : function(c){
5682                 var r = [], ri = -1;
5683                 for(var i = 0, ci; ci = c[i]; i++){
5684                     if(ci.checked == true){
5685                         r[++ri] = ci;
5686                     }
5687                 }
5688                 return r;
5689             },
5690
5691             "not" : function(c, ss){
5692                 return Roo.DomQuery.filter(c, ss, true);
5693             },
5694
5695             "odd" : function(c){
5696                 return this["nth-child"](c, "odd");
5697             },
5698
5699             "even" : function(c){
5700                 return this["nth-child"](c, "even");
5701             },
5702
5703             "nth" : function(c, a){
5704                 return c[a-1] || [];
5705             },
5706
5707             "first" : function(c){
5708                 return c[0] || [];
5709             },
5710
5711             "last" : function(c){
5712                 return c[c.length-1] || [];
5713             },
5714
5715             "has" : function(c, ss){
5716                 var s = Roo.DomQuery.select;
5717                 var r = [], ri = -1;
5718                 for(var i = 0, ci; ci = c[i]; i++){
5719                     if(s(ss, ci).length > 0){
5720                         r[++ri] = ci;
5721                     }
5722                 }
5723                 return r;
5724             },
5725
5726             "next" : function(c, ss){
5727                 var is = Roo.DomQuery.is;
5728                 var r = [], ri = -1;
5729                 for(var i = 0, ci; ci = c[i]; i++){
5730                     var n = next(ci);
5731                     if(n && is(n, ss)){
5732                         r[++ri] = ci;
5733                     }
5734                 }
5735                 return r;
5736             },
5737
5738             "prev" : function(c, ss){
5739                 var is = Roo.DomQuery.is;
5740                 var r = [], ri = -1;
5741                 for(var i = 0, ci; ci = c[i]; i++){
5742                     var n = prev(ci);
5743                     if(n && is(n, ss)){
5744                         r[++ri] = ci;
5745                     }
5746                 }
5747                 return r;
5748             }
5749         }
5750     };
5751 }();
5752
5753 /**
5754  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5755  * @param {String} path The selector/xpath query
5756  * @param {Node} root (optional) The start of the query (defaults to document).
5757  * @return {Array}
5758  * @member Roo
5759  * @method query
5760  */
5761 Roo.query = Roo.DomQuery.select;
5762 /*
5763  * Based on:
5764  * Ext JS Library 1.1.1
5765  * Copyright(c) 2006-2007, Ext JS, LLC.
5766  *
5767  * Originally Released Under LGPL - original licence link has changed is not relivant.
5768  *
5769  * Fork - LGPL
5770  * <script type="text/javascript">
5771  */
5772
5773 /**
5774  * @class Roo.util.Observable
5775  * Base class that provides a common interface for publishing events. Subclasses are expected to
5776  * to have a property "events" with all the events defined.<br>
5777  * For example:
5778  * <pre><code>
5779  Employee = function(name){
5780     this.name = name;
5781     this.addEvents({
5782         "fired" : true,
5783         "quit" : true
5784     });
5785  }
5786  Roo.extend(Employee, Roo.util.Observable);
5787 </code></pre>
5788  * @param {Object} config properties to use (incuding events / listeners)
5789  */
5790
5791 Roo.util.Observable = function(cfg){
5792     
5793     cfg = cfg|| {};
5794     this.addEvents(cfg.events || {});
5795     if (cfg.events) {
5796         delete cfg.events; // make sure
5797     }
5798      
5799     Roo.apply(this, cfg);
5800     
5801     if(this.listeners){
5802         this.on(this.listeners);
5803         delete this.listeners;
5804     }
5805 };
5806 Roo.util.Observable.prototype = {
5807     /** 
5808  * @cfg {Object} listeners  list of events and functions to call for this object, 
5809  * For example :
5810  * <pre><code>
5811     listeners :  { 
5812        'click' : function(e) {
5813            ..... 
5814         } ,
5815         .... 
5816     } 
5817   </code></pre>
5818  */
5819     
5820     
5821     /**
5822      * Fires the specified event with the passed parameters (minus the event name).
5823      * @param {String} eventName
5824      * @param {Object...} args Variable number of parameters are passed to handlers
5825      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5826      */
5827     fireEvent : function(){
5828         var ce = this.events[arguments[0].toLowerCase()];
5829         if(typeof ce == "object"){
5830             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5831         }else{
5832             return true;
5833         }
5834     },
5835
5836     // private
5837     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5838
5839     /**
5840      * Appends an event handler to this component
5841      * @param {String}   eventName The type of event to listen for
5842      * @param {Function} handler The method the event invokes
5843      * @param {Object}   scope (optional) The scope in which to execute the handler
5844      * function. The handler function's "this" context.
5845      * @param {Object}   options (optional) An object containing handler configuration
5846      * properties. This may contain any of the following properties:<ul>
5847      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5848      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5849      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5850      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5851      * by the specified number of milliseconds. If the event fires again within that time, the original
5852      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5853      * </ul><br>
5854      * <p>
5855      * <b>Combining Options</b><br>
5856      * Using the options argument, it is possible to combine different types of listeners:<br>
5857      * <br>
5858      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5859                 <pre><code>
5860                 el.on('click', this.onClick, this, {
5861                         single: true,
5862                 delay: 100,
5863                 forumId: 4
5864                 });
5865                 </code></pre>
5866      * <p>
5867      * <b>Attaching multiple handlers in 1 call</b><br>
5868      * The method also allows for a single argument to be passed which is a config object containing properties
5869      * which specify multiple handlers.
5870      * <pre><code>
5871                 el.on({
5872                         'click': {
5873                         fn: this.onClick,
5874                         scope: this,
5875                         delay: 100
5876                 }, 
5877                 'mouseover': {
5878                         fn: this.onMouseOver,
5879                         scope: this
5880                 },
5881                 'mouseout': {
5882                         fn: this.onMouseOut,
5883                         scope: this
5884                 }
5885                 });
5886                 </code></pre>
5887      * <p>
5888      * Or a shorthand syntax which passes the same scope object to all handlers:
5889         <pre><code>
5890                 el.on({
5891                         'click': this.onClick,
5892                 'mouseover': this.onMouseOver,
5893                 'mouseout': this.onMouseOut,
5894                 scope: this
5895                 });
5896                 </code></pre>
5897      */
5898     addListener : function(eventName, fn, scope, o){
5899         if(typeof eventName == "object"){
5900             o = eventName;
5901             for(var e in o){
5902                 if(this.filterOptRe.test(e)){
5903                     continue;
5904                 }
5905                 if(typeof o[e] == "function"){
5906                     // shared options
5907                     this.addListener(e, o[e], o.scope,  o);
5908                 }else{
5909                     // individual options
5910                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5911                 }
5912             }
5913             return;
5914         }
5915         o = (!o || typeof o == "boolean") ? {} : o;
5916         eventName = eventName.toLowerCase();
5917         var ce = this.events[eventName] || true;
5918         if(typeof ce == "boolean"){
5919             ce = new Roo.util.Event(this, eventName);
5920             this.events[eventName] = ce;
5921         }
5922         ce.addListener(fn, scope, o);
5923     },
5924
5925     /**
5926      * Removes a listener
5927      * @param {String}   eventName     The type of event to listen for
5928      * @param {Function} handler        The handler to remove
5929      * @param {Object}   scope  (optional) The scope (this object) for the handler
5930      */
5931     removeListener : function(eventName, fn, scope){
5932         var ce = this.events[eventName.toLowerCase()];
5933         if(typeof ce == "object"){
5934             ce.removeListener(fn, scope);
5935         }
5936     },
5937
5938     /**
5939      * Removes all listeners for this object
5940      */
5941     purgeListeners : function(){
5942         for(var evt in this.events){
5943             if(typeof this.events[evt] == "object"){
5944                  this.events[evt].clearListeners();
5945             }
5946         }
5947     },
5948
5949     relayEvents : function(o, events){
5950         var createHandler = function(ename){
5951             return function(){
5952                  
5953                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5954             };
5955         };
5956         for(var i = 0, len = events.length; i < len; i++){
5957             var ename = events[i];
5958             if(!this.events[ename]){
5959                 this.events[ename] = true;
5960             };
5961             o.on(ename, createHandler(ename), this);
5962         }
5963     },
5964
5965     /**
5966      * Used to define events on this Observable
5967      * @param {Object} object The object with the events defined
5968      */
5969     addEvents : function(o){
5970         if(!this.events){
5971             this.events = {};
5972         }
5973         Roo.applyIf(this.events, o);
5974     },
5975
5976     /**
5977      * Checks to see if this object has any listeners for a specified event
5978      * @param {String} eventName The name of the event to check for
5979      * @return {Boolean} True if the event is being listened for, else false
5980      */
5981     hasListener : function(eventName){
5982         var e = this.events[eventName];
5983         return typeof e == "object" && e.listeners.length > 0;
5984     }
5985 };
5986 /**
5987  * Appends an event handler to this element (shorthand for addListener)
5988  * @param {String}   eventName     The type of event to listen for
5989  * @param {Function} handler        The method the event invokes
5990  * @param {Object}   scope (optional) The scope in which to execute the handler
5991  * function. The handler function's "this" context.
5992  * @param {Object}   options  (optional)
5993  * @method
5994  */
5995 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5996 /**
5997  * Removes a listener (shorthand for removeListener)
5998  * @param {String}   eventName     The type of event to listen for
5999  * @param {Function} handler        The handler to remove
6000  * @param {Object}   scope  (optional) The scope (this object) for the handler
6001  * @method
6002  */
6003 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6004
6005 /**
6006  * Starts capture on the specified Observable. All events will be passed
6007  * to the supplied function with the event name + standard signature of the event
6008  * <b>before</b> the event is fired. If the supplied function returns false,
6009  * the event will not fire.
6010  * @param {Observable} o The Observable to capture
6011  * @param {Function} fn The function to call
6012  * @param {Object} scope (optional) The scope (this object) for the fn
6013  * @static
6014  */
6015 Roo.util.Observable.capture = function(o, fn, scope){
6016     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6017 };
6018
6019 /**
6020  * Removes <b>all</b> added captures from the Observable.
6021  * @param {Observable} o The Observable to release
6022  * @static
6023  */
6024 Roo.util.Observable.releaseCapture = function(o){
6025     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6026 };
6027
6028 (function(){
6029
6030     var createBuffered = function(h, o, scope){
6031         var task = new Roo.util.DelayedTask();
6032         return function(){
6033             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6034         };
6035     };
6036
6037     var createSingle = function(h, e, fn, scope){
6038         return function(){
6039             e.removeListener(fn, scope);
6040             return h.apply(scope, arguments);
6041         };
6042     };
6043
6044     var createDelayed = function(h, o, scope){
6045         return function(){
6046             var args = Array.prototype.slice.call(arguments, 0);
6047             setTimeout(function(){
6048                 h.apply(scope, args);
6049             }, o.delay || 10);
6050         };
6051     };
6052
6053     Roo.util.Event = function(obj, name){
6054         this.name = name;
6055         this.obj = obj;
6056         this.listeners = [];
6057     };
6058
6059     Roo.util.Event.prototype = {
6060         addListener : function(fn, scope, options){
6061             var o = options || {};
6062             scope = scope || this.obj;
6063             if(!this.isListening(fn, scope)){
6064                 var l = {fn: fn, scope: scope, options: o};
6065                 var h = fn;
6066                 if(o.delay){
6067                     h = createDelayed(h, o, scope);
6068                 }
6069                 if(o.single){
6070                     h = createSingle(h, this, fn, scope);
6071                 }
6072                 if(o.buffer){
6073                     h = createBuffered(h, o, scope);
6074                 }
6075                 l.fireFn = h;
6076                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6077                     this.listeners.push(l);
6078                 }else{
6079                     this.listeners = this.listeners.slice(0);
6080                     this.listeners.push(l);
6081                 }
6082             }
6083         },
6084
6085         findListener : function(fn, scope){
6086             scope = scope || this.obj;
6087             var ls = this.listeners;
6088             for(var i = 0, len = ls.length; i < len; i++){
6089                 var l = ls[i];
6090                 if(l.fn == fn && l.scope == scope){
6091                     return i;
6092                 }
6093             }
6094             return -1;
6095         },
6096
6097         isListening : function(fn, scope){
6098             return this.findListener(fn, scope) != -1;
6099         },
6100
6101         removeListener : function(fn, scope){
6102             var index;
6103             if((index = this.findListener(fn, scope)) != -1){
6104                 if(!this.firing){
6105                     this.listeners.splice(index, 1);
6106                 }else{
6107                     this.listeners = this.listeners.slice(0);
6108                     this.listeners.splice(index, 1);
6109                 }
6110                 return true;
6111             }
6112             return false;
6113         },
6114
6115         clearListeners : function(){
6116             this.listeners = [];
6117         },
6118
6119         fire : function(){
6120             var ls = this.listeners, scope, len = ls.length;
6121             if(len > 0){
6122                 this.firing = true;
6123                 var args = Array.prototype.slice.call(arguments, 0);                
6124                 for(var i = 0; i < len; i++){
6125                     var l = ls[i];
6126                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6127                         this.firing = false;
6128                         return false;
6129                     }
6130                 }
6131                 this.firing = false;
6132             }
6133             return true;
6134         }
6135     };
6136 })();/*
6137  * RooJS Library 
6138  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6139  *
6140  * Licence LGPL 
6141  *
6142  */
6143  
6144 /**
6145  * @class Roo.Document
6146  * @extends Roo.util.Observable
6147  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6148  * 
6149  * @param {Object} config the methods and properties of the 'base' class for the application.
6150  * 
6151  *  Generic Page handler - implement this to start your app..
6152  * 
6153  * eg.
6154  *  MyProject = new Roo.Document({
6155         events : {
6156             'load' : true // your events..
6157         },
6158         listeners : {
6159             'ready' : function() {
6160                 // fired on Roo.onReady()
6161             }
6162         }
6163  * 
6164  */
6165 Roo.Document = function(cfg) {
6166      
6167     this.addEvents({ 
6168         'ready' : true
6169     });
6170     Roo.util.Observable.call(this,cfg);
6171     
6172     var _this = this;
6173     
6174     Roo.onReady(function() {
6175         _this.fireEvent('ready');
6176     },null,false);
6177     
6178     
6179 }
6180
6181 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6182  * Based on:
6183  * Ext JS Library 1.1.1
6184  * Copyright(c) 2006-2007, Ext JS, LLC.
6185  *
6186  * Originally Released Under LGPL - original licence link has changed is not relivant.
6187  *
6188  * Fork - LGPL
6189  * <script type="text/javascript">
6190  */
6191
6192 /**
6193  * @class Roo.EventManager
6194  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6195  * several useful events directly.
6196  * See {@link Roo.EventObject} for more details on normalized event objects.
6197  * @singleton
6198  */
6199 Roo.EventManager = function(){
6200     var docReadyEvent, docReadyProcId, docReadyState = false;
6201     var resizeEvent, resizeTask, textEvent, textSize;
6202     var E = Roo.lib.Event;
6203     var D = Roo.lib.Dom;
6204
6205     
6206     
6207
6208     var fireDocReady = function(){
6209         if(!docReadyState){
6210             docReadyState = true;
6211             Roo.isReady = true;
6212             if(docReadyProcId){
6213                 clearInterval(docReadyProcId);
6214             }
6215             if(Roo.isGecko || Roo.isOpera) {
6216                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6217             }
6218             if(Roo.isIE){
6219                 var defer = document.getElementById("ie-deferred-loader");
6220                 if(defer){
6221                     defer.onreadystatechange = null;
6222                     defer.parentNode.removeChild(defer);
6223                 }
6224             }
6225             if(docReadyEvent){
6226                 docReadyEvent.fire();
6227                 docReadyEvent.clearListeners();
6228             }
6229         }
6230     };
6231     
6232     var initDocReady = function(){
6233         docReadyEvent = new Roo.util.Event();
6234         if(Roo.isGecko || Roo.isOpera) {
6235             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6236         }else if(Roo.isIE){
6237             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6238             var defer = document.getElementById("ie-deferred-loader");
6239             defer.onreadystatechange = function(){
6240                 if(this.readyState == "complete"){
6241                     fireDocReady();
6242                 }
6243             };
6244         }else if(Roo.isSafari){ 
6245             docReadyProcId = setInterval(function(){
6246                 var rs = document.readyState;
6247                 if(rs == "complete") {
6248                     fireDocReady();     
6249                  }
6250             }, 10);
6251         }
6252         // no matter what, make sure it fires on load
6253         E.on(window, "load", fireDocReady);
6254     };
6255
6256     var createBuffered = function(h, o){
6257         var task = new Roo.util.DelayedTask(h);
6258         return function(e){
6259             // create new event object impl so new events don't wipe out properties
6260             e = new Roo.EventObjectImpl(e);
6261             task.delay(o.buffer, h, null, [e]);
6262         };
6263     };
6264
6265     var createSingle = function(h, el, ename, fn){
6266         return function(e){
6267             Roo.EventManager.removeListener(el, ename, fn);
6268             h(e);
6269         };
6270     };
6271
6272     var createDelayed = function(h, o){
6273         return function(e){
6274             // create new event object impl so new events don't wipe out properties
6275             e = new Roo.EventObjectImpl(e);
6276             setTimeout(function(){
6277                 h(e);
6278             }, o.delay || 10);
6279         };
6280     };
6281     var transitionEndVal = false;
6282     
6283     var transitionEnd = function()
6284     {
6285         if (transitionEndVal) {
6286             return transitionEndVal;
6287         }
6288         var el = document.createElement('div');
6289
6290         var transEndEventNames = {
6291             WebkitTransition : 'webkitTransitionEnd',
6292             MozTransition    : 'transitionend',
6293             OTransition      : 'oTransitionEnd otransitionend',
6294             transition       : 'transitionend'
6295         };
6296     
6297         for (var name in transEndEventNames) {
6298             if (el.style[name] !== undefined) {
6299                 transitionEndVal = transEndEventNames[name];
6300                 return  transitionEndVal ;
6301             }
6302         }
6303     }
6304     
6305
6306     var listen = function(element, ename, opt, fn, scope){
6307         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6308         fn = fn || o.fn; scope = scope || o.scope;
6309         var el = Roo.getDom(element);
6310         
6311         
6312         if(!el){
6313             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6314         }
6315         
6316         if (ename == 'transitionend') {
6317             ename = transitionEnd();
6318         }
6319         var h = function(e){
6320             e = Roo.EventObject.setEvent(e);
6321             var t;
6322             if(o.delegate){
6323                 t = e.getTarget(o.delegate, el);
6324                 if(!t){
6325                     return;
6326                 }
6327             }else{
6328                 t = e.target;
6329             }
6330             if(o.stopEvent === true){
6331                 e.stopEvent();
6332             }
6333             if(o.preventDefault === true){
6334                e.preventDefault();
6335             }
6336             if(o.stopPropagation === true){
6337                 e.stopPropagation();
6338             }
6339
6340             if(o.normalized === false){
6341                 e = e.browserEvent;
6342             }
6343
6344             fn.call(scope || el, e, t, o);
6345         };
6346         if(o.delay){
6347             h = createDelayed(h, o);
6348         }
6349         if(o.single){
6350             h = createSingle(h, el, ename, fn);
6351         }
6352         if(o.buffer){
6353             h = createBuffered(h, o);
6354         }
6355         
6356         fn._handlers = fn._handlers || [];
6357         
6358         
6359         fn._handlers.push([Roo.id(el), ename, h]);
6360         
6361         
6362          
6363         E.on(el, ename, h);
6364         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6365             el.addEventListener("DOMMouseScroll", h, false);
6366             E.on(window, 'unload', function(){
6367                 el.removeEventListener("DOMMouseScroll", h, false);
6368             });
6369         }
6370         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6371             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6372         }
6373         return h;
6374     };
6375
6376     var stopListening = function(el, ename, fn){
6377         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6378         if(hds){
6379             for(var i = 0, len = hds.length; i < len; i++){
6380                 var h = hds[i];
6381                 if(h[0] == id && h[1] == ename){
6382                     hd = h[2];
6383                     hds.splice(i, 1);
6384                     break;
6385                 }
6386             }
6387         }
6388         E.un(el, ename, hd);
6389         el = Roo.getDom(el);
6390         if(ename == "mousewheel" && el.addEventListener){
6391             el.removeEventListener("DOMMouseScroll", hd, false);
6392         }
6393         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6394             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6395         }
6396     };
6397
6398     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6399     
6400     var pub = {
6401         
6402         
6403         /** 
6404          * Fix for doc tools
6405          * @scope Roo.EventManager
6406          */
6407         
6408         
6409         /** 
6410          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6411          * object with a Roo.EventObject
6412          * @param {Function} fn        The method the event invokes
6413          * @param {Object}   scope    An object that becomes the scope of the handler
6414          * @param {boolean}  override If true, the obj passed in becomes
6415          *                             the execution scope of the listener
6416          * @return {Function} The wrapped function
6417          * @deprecated
6418          */
6419         wrap : function(fn, scope, override){
6420             return function(e){
6421                 Roo.EventObject.setEvent(e);
6422                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6423             };
6424         },
6425         
6426         /**
6427      * Appends an event handler to an element (shorthand for addListener)
6428      * @param {String/HTMLElement}   element        The html element or id to assign the
6429      * @param {String}   eventName The type of event to listen for
6430      * @param {Function} handler The method the event invokes
6431      * @param {Object}   scope (optional) The scope in which to execute the handler
6432      * function. The handler function's "this" context.
6433      * @param {Object}   options (optional) An object containing handler configuration
6434      * properties. This may contain any of the following properties:<ul>
6435      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6436      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6437      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6438      * <li>preventDefault {Boolean} True to prevent the default action</li>
6439      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6440      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6441      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6442      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6443      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6444      * by the specified number of milliseconds. If the event fires again within that time, the original
6445      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6446      * </ul><br>
6447      * <p>
6448      * <b>Combining Options</b><br>
6449      * Using the options argument, it is possible to combine different types of listeners:<br>
6450      * <br>
6451      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6452      * Code:<pre><code>
6453 el.on('click', this.onClick, this, {
6454     single: true,
6455     delay: 100,
6456     stopEvent : true,
6457     forumId: 4
6458 });</code></pre>
6459      * <p>
6460      * <b>Attaching multiple handlers in 1 call</b><br>
6461       * The method also allows for a single argument to be passed which is a config object containing properties
6462      * which specify multiple handlers.
6463      * <p>
6464      * Code:<pre><code>
6465 el.on({
6466     'click' : {
6467         fn: this.onClick
6468         scope: this,
6469         delay: 100
6470     },
6471     'mouseover' : {
6472         fn: this.onMouseOver
6473         scope: this
6474     },
6475     'mouseout' : {
6476         fn: this.onMouseOut
6477         scope: this
6478     }
6479 });</code></pre>
6480      * <p>
6481      * Or a shorthand syntax:<br>
6482      * Code:<pre><code>
6483 el.on({
6484     'click' : this.onClick,
6485     'mouseover' : this.onMouseOver,
6486     'mouseout' : this.onMouseOut
6487     scope: this
6488 });</code></pre>
6489      */
6490         addListener : function(element, eventName, fn, scope, options){
6491             if(typeof eventName == "object"){
6492                 var o = eventName;
6493                 for(var e in o){
6494                     if(propRe.test(e)){
6495                         continue;
6496                     }
6497                     if(typeof o[e] == "function"){
6498                         // shared options
6499                         listen(element, e, o, o[e], o.scope);
6500                     }else{
6501                         // individual options
6502                         listen(element, e, o[e]);
6503                     }
6504                 }
6505                 return;
6506             }
6507             return listen(element, eventName, options, fn, scope);
6508         },
6509         
6510         /**
6511          * Removes an event handler
6512          *
6513          * @param {String/HTMLElement}   element        The id or html element to remove the 
6514          *                             event from
6515          * @param {String}   eventName     The type of event
6516          * @param {Function} fn
6517          * @return {Boolean} True if a listener was actually removed
6518          */
6519         removeListener : function(element, eventName, fn){
6520             return stopListening(element, eventName, fn);
6521         },
6522         
6523         /**
6524          * Fires when the document is ready (before onload and before images are loaded). Can be 
6525          * accessed shorthanded Roo.onReady().
6526          * @param {Function} fn        The method the event invokes
6527          * @param {Object}   scope    An  object that becomes the scope of the handler
6528          * @param {boolean}  options
6529          */
6530         onDocumentReady : function(fn, scope, options){
6531             if(docReadyState){ // if it already fired
6532                 docReadyEvent.addListener(fn, scope, options);
6533                 docReadyEvent.fire();
6534                 docReadyEvent.clearListeners();
6535                 return;
6536             }
6537             if(!docReadyEvent){
6538                 initDocReady();
6539             }
6540             docReadyEvent.addListener(fn, scope, options);
6541         },
6542         
6543         /**
6544          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6545          * @param {Function} fn        The method the event invokes
6546          * @param {Object}   scope    An object that becomes the scope of the handler
6547          * @param {boolean}  options
6548          */
6549         onWindowResize : function(fn, scope, options){
6550             if(!resizeEvent){
6551                 resizeEvent = new Roo.util.Event();
6552                 resizeTask = new Roo.util.DelayedTask(function(){
6553                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6554                 });
6555                 E.on(window, "resize", function(){
6556                     if(Roo.isIE){
6557                         resizeTask.delay(50);
6558                     }else{
6559                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6560                     }
6561                 });
6562             }
6563             resizeEvent.addListener(fn, scope, options);
6564         },
6565
6566         /**
6567          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6568          * @param {Function} fn        The method the event invokes
6569          * @param {Object}   scope    An object that becomes the scope of the handler
6570          * @param {boolean}  options
6571          */
6572         onTextResize : function(fn, scope, options){
6573             if(!textEvent){
6574                 textEvent = new Roo.util.Event();
6575                 var textEl = new Roo.Element(document.createElement('div'));
6576                 textEl.dom.className = 'x-text-resize';
6577                 textEl.dom.innerHTML = 'X';
6578                 textEl.appendTo(document.body);
6579                 textSize = textEl.dom.offsetHeight;
6580                 setInterval(function(){
6581                     if(textEl.dom.offsetHeight != textSize){
6582                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6583                     }
6584                 }, this.textResizeInterval);
6585             }
6586             textEvent.addListener(fn, scope, options);
6587         },
6588
6589         /**
6590          * Removes the passed window resize listener.
6591          * @param {Function} fn        The method the event invokes
6592          * @param {Object}   scope    The scope of handler
6593          */
6594         removeResizeListener : function(fn, scope){
6595             if(resizeEvent){
6596                 resizeEvent.removeListener(fn, scope);
6597             }
6598         },
6599
6600         // private
6601         fireResize : function(){
6602             if(resizeEvent){
6603                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6604             }   
6605         },
6606         /**
6607          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6608          */
6609         ieDeferSrc : false,
6610         /**
6611          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6612          */
6613         textResizeInterval : 50
6614     };
6615     
6616     /**
6617      * Fix for doc tools
6618      * @scopeAlias pub=Roo.EventManager
6619      */
6620     
6621      /**
6622      * Appends an event handler to an element (shorthand for addListener)
6623      * @param {String/HTMLElement}   element        The html element or id to assign the
6624      * @param {String}   eventName The type of event to listen for
6625      * @param {Function} handler The method the event invokes
6626      * @param {Object}   scope (optional) The scope in which to execute the handler
6627      * function. The handler function's "this" context.
6628      * @param {Object}   options (optional) An object containing handler configuration
6629      * properties. This may contain any of the following properties:<ul>
6630      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6631      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6632      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6633      * <li>preventDefault {Boolean} True to prevent the default action</li>
6634      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6635      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6636      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6637      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6638      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6639      * by the specified number of milliseconds. If the event fires again within that time, the original
6640      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6641      * </ul><br>
6642      * <p>
6643      * <b>Combining Options</b><br>
6644      * Using the options argument, it is possible to combine different types of listeners:<br>
6645      * <br>
6646      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6647      * Code:<pre><code>
6648 el.on('click', this.onClick, this, {
6649     single: true,
6650     delay: 100,
6651     stopEvent : true,
6652     forumId: 4
6653 });</code></pre>
6654      * <p>
6655      * <b>Attaching multiple handlers in 1 call</b><br>
6656       * The method also allows for a single argument to be passed which is a config object containing properties
6657      * which specify multiple handlers.
6658      * <p>
6659      * Code:<pre><code>
6660 el.on({
6661     'click' : {
6662         fn: this.onClick
6663         scope: this,
6664         delay: 100
6665     },
6666     'mouseover' : {
6667         fn: this.onMouseOver
6668         scope: this
6669     },
6670     'mouseout' : {
6671         fn: this.onMouseOut
6672         scope: this
6673     }
6674 });</code></pre>
6675      * <p>
6676      * Or a shorthand syntax:<br>
6677      * Code:<pre><code>
6678 el.on({
6679     'click' : this.onClick,
6680     'mouseover' : this.onMouseOver,
6681     'mouseout' : this.onMouseOut
6682     scope: this
6683 });</code></pre>
6684      */
6685     pub.on = pub.addListener;
6686     pub.un = pub.removeListener;
6687
6688     pub.stoppedMouseDownEvent = new Roo.util.Event();
6689     return pub;
6690 }();
6691 /**
6692   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6693   * @param {Function} fn        The method the event invokes
6694   * @param {Object}   scope    An  object that becomes the scope of the handler
6695   * @param {boolean}  override If true, the obj passed in becomes
6696   *                             the execution scope of the listener
6697   * @member Roo
6698   * @method onReady
6699  */
6700 Roo.onReady = Roo.EventManager.onDocumentReady;
6701
6702 Roo.onReady(function(){
6703     var bd = Roo.get(document.body);
6704     if(!bd){ return; }
6705
6706     var cls = [
6707             Roo.isIE ? "roo-ie"
6708             : Roo.isIE11 ? "roo-ie11"
6709             : Roo.isEdge ? "roo-edge"
6710             : Roo.isGecko ? "roo-gecko"
6711             : Roo.isOpera ? "roo-opera"
6712             : Roo.isSafari ? "roo-safari" : ""];
6713
6714     if(Roo.isMac){
6715         cls.push("roo-mac");
6716     }
6717     if(Roo.isLinux){
6718         cls.push("roo-linux");
6719     }
6720     if(Roo.isIOS){
6721         cls.push("roo-ios");
6722     }
6723     if(Roo.isTouch){
6724         cls.push("roo-touch");
6725     }
6726     if(Roo.isBorderBox){
6727         cls.push('roo-border-box');
6728     }
6729     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6730         var p = bd.dom.parentNode;
6731         if(p){
6732             p.className += ' roo-strict';
6733         }
6734     }
6735     bd.addClass(cls.join(' '));
6736 });
6737
6738 /**
6739  * @class Roo.EventObject
6740  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6741  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6742  * Example:
6743  * <pre><code>
6744  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6745     e.preventDefault();
6746     var target = e.getTarget();
6747     ...
6748  }
6749  var myDiv = Roo.get("myDiv");
6750  myDiv.on("click", handleClick);
6751  //or
6752  Roo.EventManager.on("myDiv", 'click', handleClick);
6753  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6754  </code></pre>
6755  * @singleton
6756  */
6757 Roo.EventObject = function(){
6758     
6759     var E = Roo.lib.Event;
6760     
6761     // safari keypress events for special keys return bad keycodes
6762     var safariKeys = {
6763         63234 : 37, // left
6764         63235 : 39, // right
6765         63232 : 38, // up
6766         63233 : 40, // down
6767         63276 : 33, // page up
6768         63277 : 34, // page down
6769         63272 : 46, // delete
6770         63273 : 36, // home
6771         63275 : 35  // end
6772     };
6773
6774     // normalize button clicks
6775     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6776                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6777
6778     Roo.EventObjectImpl = function(e){
6779         if(e){
6780             this.setEvent(e.browserEvent || e);
6781         }
6782     };
6783     Roo.EventObjectImpl.prototype = {
6784         /**
6785          * Used to fix doc tools.
6786          * @scope Roo.EventObject.prototype
6787          */
6788             
6789
6790         
6791         
6792         /** The normal browser event */
6793         browserEvent : null,
6794         /** The button pressed in a mouse event */
6795         button : -1,
6796         /** True if the shift key was down during the event */
6797         shiftKey : false,
6798         /** True if the control key was down during the event */
6799         ctrlKey : false,
6800         /** True if the alt key was down during the event */
6801         altKey : false,
6802
6803         /** Key constant 
6804         * @type Number */
6805         BACKSPACE : 8,
6806         /** Key constant 
6807         * @type Number */
6808         TAB : 9,
6809         /** Key constant 
6810         * @type Number */
6811         RETURN : 13,
6812         /** Key constant 
6813         * @type Number */
6814         ENTER : 13,
6815         /** Key constant 
6816         * @type Number */
6817         SHIFT : 16,
6818         /** Key constant 
6819         * @type Number */
6820         CONTROL : 17,
6821         /** Key constant 
6822         * @type Number */
6823         ESC : 27,
6824         /** Key constant 
6825         * @type Number */
6826         SPACE : 32,
6827         /** Key constant 
6828         * @type Number */
6829         PAGEUP : 33,
6830         /** Key constant 
6831         * @type Number */
6832         PAGEDOWN : 34,
6833         /** Key constant 
6834         * @type Number */
6835         END : 35,
6836         /** Key constant 
6837         * @type Number */
6838         HOME : 36,
6839         /** Key constant 
6840         * @type Number */
6841         LEFT : 37,
6842         /** Key constant 
6843         * @type Number */
6844         UP : 38,
6845         /** Key constant 
6846         * @type Number */
6847         RIGHT : 39,
6848         /** Key constant 
6849         * @type Number */
6850         DOWN : 40,
6851         /** Key constant 
6852         * @type Number */
6853         DELETE : 46,
6854         /** Key constant 
6855         * @type Number */
6856         F5 : 116,
6857
6858            /** @private */
6859         setEvent : function(e){
6860             if(e == this || (e && e.browserEvent)){ // already wrapped
6861                 return e;
6862             }
6863             this.browserEvent = e;
6864             if(e){
6865                 // normalize buttons
6866                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6867                 if(e.type == 'click' && this.button == -1){
6868                     this.button = 0;
6869                 }
6870                 this.type = e.type;
6871                 this.shiftKey = e.shiftKey;
6872                 // mac metaKey behaves like ctrlKey
6873                 this.ctrlKey = e.ctrlKey || e.metaKey;
6874                 this.altKey = e.altKey;
6875                 // in getKey these will be normalized for the mac
6876                 this.keyCode = e.keyCode;
6877                 // keyup warnings on firefox.
6878                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6879                 // cache the target for the delayed and or buffered events
6880                 this.target = E.getTarget(e);
6881                 // same for XY
6882                 this.xy = E.getXY(e);
6883             }else{
6884                 this.button = -1;
6885                 this.shiftKey = false;
6886                 this.ctrlKey = false;
6887                 this.altKey = false;
6888                 this.keyCode = 0;
6889                 this.charCode =0;
6890                 this.target = null;
6891                 this.xy = [0, 0];
6892             }
6893             return this;
6894         },
6895
6896         /**
6897          * Stop the event (preventDefault and stopPropagation)
6898          */
6899         stopEvent : function(){
6900             if(this.browserEvent){
6901                 if(this.browserEvent.type == 'mousedown'){
6902                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6903                 }
6904                 E.stopEvent(this.browserEvent);
6905             }
6906         },
6907
6908         /**
6909          * Prevents the browsers default handling of the event.
6910          */
6911         preventDefault : function(){
6912             if(this.browserEvent){
6913                 E.preventDefault(this.browserEvent);
6914             }
6915         },
6916
6917         /** @private */
6918         isNavKeyPress : function(){
6919             var k = this.keyCode;
6920             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6921             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6922         },
6923
6924         isSpecialKey : function(){
6925             var k = this.keyCode;
6926             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6927             (k == 16) || (k == 17) ||
6928             (k >= 18 && k <= 20) ||
6929             (k >= 33 && k <= 35) ||
6930             (k >= 36 && k <= 39) ||
6931             (k >= 44 && k <= 45);
6932         },
6933         /**
6934          * Cancels bubbling of the event.
6935          */
6936         stopPropagation : function(){
6937             if(this.browserEvent){
6938                 if(this.type == 'mousedown'){
6939                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6940                 }
6941                 E.stopPropagation(this.browserEvent);
6942             }
6943         },
6944
6945         /**
6946          * Gets the key code for the event.
6947          * @return {Number}
6948          */
6949         getCharCode : function(){
6950             return this.charCode || this.keyCode;
6951         },
6952
6953         /**
6954          * Returns a normalized keyCode for the event.
6955          * @return {Number} The key code
6956          */
6957         getKey : function(){
6958             var k = this.keyCode || this.charCode;
6959             return Roo.isSafari ? (safariKeys[k] || k) : k;
6960         },
6961
6962         /**
6963          * Gets the x coordinate of the event.
6964          * @return {Number}
6965          */
6966         getPageX : function(){
6967             return this.xy[0];
6968         },
6969
6970         /**
6971          * Gets the y coordinate of the event.
6972          * @return {Number}
6973          */
6974         getPageY : function(){
6975             return this.xy[1];
6976         },
6977
6978         /**
6979          * Gets the time of the event.
6980          * @return {Number}
6981          */
6982         getTime : function(){
6983             if(this.browserEvent){
6984                 return E.getTime(this.browserEvent);
6985             }
6986             return null;
6987         },
6988
6989         /**
6990          * Gets the page coordinates of the event.
6991          * @return {Array} The xy values like [x, y]
6992          */
6993         getXY : function(){
6994             return this.xy;
6995         },
6996
6997         /**
6998          * Gets the target for the event.
6999          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7000          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7001                 search as a number or element (defaults to 10 || document.body)
7002          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7003          * @return {HTMLelement}
7004          */
7005         getTarget : function(selector, maxDepth, returnEl){
7006             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7007         },
7008         /**
7009          * Gets the related target.
7010          * @return {HTMLElement}
7011          */
7012         getRelatedTarget : function(){
7013             if(this.browserEvent){
7014                 return E.getRelatedTarget(this.browserEvent);
7015             }
7016             return null;
7017         },
7018
7019         /**
7020          * Normalizes mouse wheel delta across browsers
7021          * @return {Number} The delta
7022          */
7023         getWheelDelta : function(){
7024             var e = this.browserEvent;
7025             var delta = 0;
7026             if(e.wheelDelta){ /* IE/Opera. */
7027                 delta = e.wheelDelta/120;
7028             }else if(e.detail){ /* Mozilla case. */
7029                 delta = -e.detail/3;
7030             }
7031             return delta;
7032         },
7033
7034         /**
7035          * Returns true if the control, meta, shift or alt key was pressed during this event.
7036          * @return {Boolean}
7037          */
7038         hasModifier : function(){
7039             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7040         },
7041
7042         /**
7043          * Returns true if the target of this event equals el or is a child of el
7044          * @param {String/HTMLElement/Element} el
7045          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7046          * @return {Boolean}
7047          */
7048         within : function(el, related){
7049             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7050             return t && Roo.fly(el).contains(t);
7051         },
7052
7053         getPoint : function(){
7054             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7055         }
7056     };
7057
7058     return new Roo.EventObjectImpl();
7059 }();
7060             
7061     /*
7062  * Based on:
7063  * Ext JS Library 1.1.1
7064  * Copyright(c) 2006-2007, Ext JS, LLC.
7065  *
7066  * Originally Released Under LGPL - original licence link has changed is not relivant.
7067  *
7068  * Fork - LGPL
7069  * <script type="text/javascript">
7070  */
7071
7072  
7073 // was in Composite Element!??!?!
7074  
7075 (function(){
7076     var D = Roo.lib.Dom;
7077     var E = Roo.lib.Event;
7078     var A = Roo.lib.Anim;
7079
7080     // local style camelizing for speed
7081     var propCache = {};
7082     var camelRe = /(-[a-z])/gi;
7083     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7084     var view = document.defaultView;
7085
7086 /**
7087  * @class Roo.Element
7088  * Represents an Element in the DOM.<br><br>
7089  * Usage:<br>
7090 <pre><code>
7091 var el = Roo.get("my-div");
7092
7093 // or with getEl
7094 var el = getEl("my-div");
7095
7096 // or with a DOM element
7097 var el = Roo.get(myDivElement);
7098 </code></pre>
7099  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7100  * each call instead of constructing a new one.<br><br>
7101  * <b>Animations</b><br />
7102  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7103  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7104 <pre>
7105 Option    Default   Description
7106 --------- --------  ---------------------------------------------
7107 duration  .35       The duration of the animation in seconds
7108 easing    easeOut   The YUI easing method
7109 callback  none      A function to execute when the anim completes
7110 scope     this      The scope (this) of the callback function
7111 </pre>
7112 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7113 * manipulate the animation. Here's an example:
7114 <pre><code>
7115 var el = Roo.get("my-div");
7116
7117 // no animation
7118 el.setWidth(100);
7119
7120 // default animation
7121 el.setWidth(100, true);
7122
7123 // animation with some options set
7124 el.setWidth(100, {
7125     duration: 1,
7126     callback: this.foo,
7127     scope: this
7128 });
7129
7130 // using the "anim" property to get the Anim object
7131 var opt = {
7132     duration: 1,
7133     callback: this.foo,
7134     scope: this
7135 };
7136 el.setWidth(100, opt);
7137 ...
7138 if(opt.anim.isAnimated()){
7139     opt.anim.stop();
7140 }
7141 </code></pre>
7142 * <b> Composite (Collections of) Elements</b><br />
7143  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7144  * @constructor Create a new Element directly.
7145  * @param {String/HTMLElement} element
7146  * @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).
7147  */
7148     Roo.Element = function(element, forceNew){
7149         var dom = typeof element == "string" ?
7150                 document.getElementById(element) : element;
7151         if(!dom){ // invalid id/element
7152             return null;
7153         }
7154         var id = dom.id;
7155         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7156             return Roo.Element.cache[id];
7157         }
7158
7159         /**
7160          * The DOM element
7161          * @type HTMLElement
7162          */
7163         this.dom = dom;
7164
7165         /**
7166          * The DOM element ID
7167          * @type String
7168          */
7169         this.id = id || Roo.id(dom);
7170     };
7171
7172     var El = Roo.Element;
7173
7174     El.prototype = {
7175         /**
7176          * The element's default display mode  (defaults to "") 
7177          * @type String
7178          */
7179         originalDisplay : "",
7180
7181         
7182         // note this is overridden in BS version..
7183         visibilityMode : 1, 
7184         /**
7185          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7186          * @type String
7187          */
7188         defaultUnit : "px",
7189         
7190         /**
7191          * Sets the element's visibility mode. When setVisible() is called it
7192          * will use this to determine whether to set the visibility or the display property.
7193          * @param visMode Element.VISIBILITY or Element.DISPLAY
7194          * @return {Roo.Element} this
7195          */
7196         setVisibilityMode : function(visMode){
7197             this.visibilityMode = visMode;
7198             return this;
7199         },
7200         /**
7201          * Convenience method for setVisibilityMode(Element.DISPLAY)
7202          * @param {String} display (optional) What to set display to when visible
7203          * @return {Roo.Element} this
7204          */
7205         enableDisplayMode : function(display){
7206             this.setVisibilityMode(El.DISPLAY);
7207             if(typeof display != "undefined") { this.originalDisplay = display; }
7208             return this;
7209         },
7210
7211         /**
7212          * 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)
7213          * @param {String} selector The simple selector to test
7214          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7215                 search as a number or element (defaults to 10 || document.body)
7216          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7217          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7218          */
7219         findParent : function(simpleSelector, maxDepth, returnEl){
7220             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7221             maxDepth = maxDepth || 50;
7222             if(typeof maxDepth != "number"){
7223                 stopEl = Roo.getDom(maxDepth);
7224                 maxDepth = 10;
7225             }
7226             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7227                 if(dq.is(p, simpleSelector)){
7228                     return returnEl ? Roo.get(p) : p;
7229                 }
7230                 depth++;
7231                 p = p.parentNode;
7232             }
7233             return null;
7234         },
7235
7236
7237         /**
7238          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7239          * @param {String} selector The simple selector to test
7240          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7241                 search as a number or element (defaults to 10 || document.body)
7242          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7243          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7244          */
7245         findParentNode : function(simpleSelector, maxDepth, returnEl){
7246             var p = Roo.fly(this.dom.parentNode, '_internal');
7247             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7248         },
7249         
7250         /**
7251          * Looks at  the scrollable parent element
7252          */
7253         findScrollableParent : function()
7254         {
7255             var overflowRegex = /(auto|scroll)/;
7256             
7257             if(this.getStyle('position') === 'fixed'){
7258                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7259             }
7260             
7261             var excludeStaticParent = this.getStyle('position') === "absolute";
7262             
7263             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7264                 
7265                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7266                     continue;
7267                 }
7268                 
7269                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7270                     return parent;
7271                 }
7272                 
7273                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7274                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7275                 }
7276             }
7277             
7278             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7279         },
7280
7281         /**
7282          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7283          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7284          * @param {String} selector The simple selector to test
7285          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7286                 search as a number or element (defaults to 10 || document.body)
7287          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7288          */
7289         up : function(simpleSelector, maxDepth){
7290             return this.findParentNode(simpleSelector, maxDepth, true);
7291         },
7292
7293
7294
7295         /**
7296          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7297          * @param {String} selector The simple selector to test
7298          * @return {Boolean} True if this element matches the selector, else false
7299          */
7300         is : function(simpleSelector){
7301             return Roo.DomQuery.is(this.dom, simpleSelector);
7302         },
7303
7304         /**
7305          * Perform animation on this element.
7306          * @param {Object} args The YUI animation control args
7307          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7308          * @param {Function} onComplete (optional) Function to call when animation completes
7309          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7310          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7311          * @return {Roo.Element} this
7312          */
7313         animate : function(args, duration, onComplete, easing, animType){
7314             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7315             return this;
7316         },
7317
7318         /*
7319          * @private Internal animation call
7320          */
7321         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7322             animType = animType || 'run';
7323             opt = opt || {};
7324             var anim = Roo.lib.Anim[animType](
7325                 this.dom, args,
7326                 (opt.duration || defaultDur) || .35,
7327                 (opt.easing || defaultEase) || 'easeOut',
7328                 function(){
7329                     Roo.callback(cb, this);
7330                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7331                 },
7332                 this
7333             );
7334             opt.anim = anim;
7335             return anim;
7336         },
7337
7338         // private legacy anim prep
7339         preanim : function(a, i){
7340             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7341         },
7342
7343         /**
7344          * Removes worthless text nodes
7345          * @param {Boolean} forceReclean (optional) By default the element
7346          * keeps track if it has been cleaned already so
7347          * you can call this over and over. However, if you update the element and
7348          * need to force a reclean, you can pass true.
7349          */
7350         clean : function(forceReclean){
7351             if(this.isCleaned && forceReclean !== true){
7352                 return this;
7353             }
7354             var ns = /\S/;
7355             var d = this.dom, n = d.firstChild, ni = -1;
7356             while(n){
7357                 var nx = n.nextSibling;
7358                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7359                     d.removeChild(n);
7360                 }else{
7361                     n.nodeIndex = ++ni;
7362                 }
7363                 n = nx;
7364             }
7365             this.isCleaned = true;
7366             return this;
7367         },
7368
7369         // private
7370         calcOffsetsTo : function(el){
7371             el = Roo.get(el);
7372             var d = el.dom;
7373             var restorePos = false;
7374             if(el.getStyle('position') == 'static'){
7375                 el.position('relative');
7376                 restorePos = true;
7377             }
7378             var x = 0, y =0;
7379             var op = this.dom;
7380             while(op && op != d && op.tagName != 'HTML'){
7381                 x+= op.offsetLeft;
7382                 y+= op.offsetTop;
7383                 op = op.offsetParent;
7384             }
7385             if(restorePos){
7386                 el.position('static');
7387             }
7388             return [x, y];
7389         },
7390
7391         /**
7392          * Scrolls this element into view within the passed container.
7393          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7394          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7395          * @return {Roo.Element} this
7396          */
7397         scrollIntoView : function(container, hscroll){
7398             var c = Roo.getDom(container) || document.body;
7399             var el = this.dom;
7400
7401             var o = this.calcOffsetsTo(c),
7402                 l = o[0],
7403                 t = o[1],
7404                 b = t+el.offsetHeight,
7405                 r = l+el.offsetWidth;
7406
7407             var ch = c.clientHeight;
7408             var ct = parseInt(c.scrollTop, 10);
7409             var cl = parseInt(c.scrollLeft, 10);
7410             var cb = ct + ch;
7411             var cr = cl + c.clientWidth;
7412
7413             if(t < ct){
7414                 c.scrollTop = t;
7415             }else if(b > cb){
7416                 c.scrollTop = b-ch;
7417             }
7418
7419             if(hscroll !== false){
7420                 if(l < cl){
7421                     c.scrollLeft = l;
7422                 }else if(r > cr){
7423                     c.scrollLeft = r-c.clientWidth;
7424                 }
7425             }
7426             return this;
7427         },
7428
7429         // private
7430         scrollChildIntoView : function(child, hscroll){
7431             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7432         },
7433
7434         /**
7435          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7436          * the new height may not be available immediately.
7437          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7438          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7439          * @param {Function} onComplete (optional) Function to call when animation completes
7440          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7441          * @return {Roo.Element} this
7442          */
7443         autoHeight : function(animate, duration, onComplete, easing){
7444             var oldHeight = this.getHeight();
7445             this.clip();
7446             this.setHeight(1); // force clipping
7447             setTimeout(function(){
7448                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7449                 if(!animate){
7450                     this.setHeight(height);
7451                     this.unclip();
7452                     if(typeof onComplete == "function"){
7453                         onComplete();
7454                     }
7455                 }else{
7456                     this.setHeight(oldHeight); // restore original height
7457                     this.setHeight(height, animate, duration, function(){
7458                         this.unclip();
7459                         if(typeof onComplete == "function") { onComplete(); }
7460                     }.createDelegate(this), easing);
7461                 }
7462             }.createDelegate(this), 0);
7463             return this;
7464         },
7465
7466         /**
7467          * Returns true if this element is an ancestor of the passed element
7468          * @param {HTMLElement/String} el The element to check
7469          * @return {Boolean} True if this element is an ancestor of el, else false
7470          */
7471         contains : function(el){
7472             if(!el){return false;}
7473             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7474         },
7475
7476         /**
7477          * Checks whether the element is currently visible using both visibility and display properties.
7478          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7479          * @return {Boolean} True if the element is currently visible, else false
7480          */
7481         isVisible : function(deep) {
7482             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7483             if(deep !== true || !vis){
7484                 return vis;
7485             }
7486             var p = this.dom.parentNode;
7487             while(p && p.tagName.toLowerCase() != "body"){
7488                 if(!Roo.fly(p, '_isVisible').isVisible()){
7489                     return false;
7490                 }
7491                 p = p.parentNode;
7492             }
7493             return true;
7494         },
7495
7496         /**
7497          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7498          * @param {String} selector The CSS selector
7499          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7500          * @return {CompositeElement/CompositeElementLite} The composite element
7501          */
7502         select : function(selector, unique){
7503             return El.select(selector, unique, this.dom);
7504         },
7505
7506         /**
7507          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7508          * @param {String} selector The CSS selector
7509          * @return {Array} An array of the matched nodes
7510          */
7511         query : function(selector, unique){
7512             return Roo.DomQuery.select(selector, this.dom);
7513         },
7514
7515         /**
7516          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7517          * @param {String} selector The CSS selector
7518          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7519          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7520          */
7521         child : function(selector, returnDom){
7522             var n = Roo.DomQuery.selectNode(selector, this.dom);
7523             return returnDom ? n : Roo.get(n);
7524         },
7525
7526         /**
7527          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7528          * @param {String} selector The CSS selector
7529          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7530          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7531          */
7532         down : function(selector, returnDom){
7533             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7534             return returnDom ? n : Roo.get(n);
7535         },
7536
7537         /**
7538          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7539          * @param {String} group The group the DD object is member of
7540          * @param {Object} config The DD config object
7541          * @param {Object} overrides An object containing methods to override/implement on the DD object
7542          * @return {Roo.dd.DD} The DD object
7543          */
7544         initDD : function(group, config, overrides){
7545             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7546             return Roo.apply(dd, overrides);
7547         },
7548
7549         /**
7550          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7551          * @param {String} group The group the DDProxy object is member of
7552          * @param {Object} config The DDProxy config object
7553          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7554          * @return {Roo.dd.DDProxy} The DDProxy object
7555          */
7556         initDDProxy : function(group, config, overrides){
7557             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7558             return Roo.apply(dd, overrides);
7559         },
7560
7561         /**
7562          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7563          * @param {String} group The group the DDTarget object is member of
7564          * @param {Object} config The DDTarget config object
7565          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7566          * @return {Roo.dd.DDTarget} The DDTarget object
7567          */
7568         initDDTarget : function(group, config, overrides){
7569             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7570             return Roo.apply(dd, overrides);
7571         },
7572
7573         /**
7574          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7575          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7576          * @param {Boolean} visible Whether the element is visible
7577          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7578          * @return {Roo.Element} this
7579          */
7580          setVisible : function(visible, animate){
7581             if(!animate || !A){
7582                 if(this.visibilityMode == El.DISPLAY){
7583                     this.setDisplayed(visible);
7584                 }else{
7585                     this.fixDisplay();
7586                     this.dom.style.visibility = visible ? "visible" : "hidden";
7587                 }
7588             }else{
7589                 // closure for composites
7590                 var dom = this.dom;
7591                 var visMode = this.visibilityMode;
7592                 if(visible){
7593                     this.setOpacity(.01);
7594                     this.setVisible(true);
7595                 }
7596                 this.anim({opacity: { to: (visible?1:0) }},
7597                       this.preanim(arguments, 1),
7598                       null, .35, 'easeIn', function(){
7599                          if(!visible){
7600                              if(visMode == El.DISPLAY){
7601                                  dom.style.display = "none";
7602                              }else{
7603                                  dom.style.visibility = "hidden";
7604                              }
7605                              Roo.get(dom).setOpacity(1);
7606                          }
7607                      });
7608             }
7609             return this;
7610         },
7611
7612         /**
7613          * Returns true if display is not "none"
7614          * @return {Boolean}
7615          */
7616         isDisplayed : function() {
7617             return this.getStyle("display") != "none";
7618         },
7619
7620         /**
7621          * Toggles the element's visibility or display, depending on visibility mode.
7622          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7623          * @return {Roo.Element} this
7624          */
7625         toggle : function(animate){
7626             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7627             return this;
7628         },
7629
7630         /**
7631          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7632          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7633          * @return {Roo.Element} this
7634          */
7635         setDisplayed : function(value) {
7636             if(typeof value == "boolean"){
7637                value = value ? this.originalDisplay : "none";
7638             }
7639             this.setStyle("display", value);
7640             return this;
7641         },
7642
7643         /**
7644          * Tries to focus the element. Any exceptions are caught and ignored.
7645          * @return {Roo.Element} this
7646          */
7647         focus : function() {
7648             try{
7649                 this.dom.focus();
7650             }catch(e){}
7651             return this;
7652         },
7653
7654         /**
7655          * Tries to blur the element. Any exceptions are caught and ignored.
7656          * @return {Roo.Element} this
7657          */
7658         blur : function() {
7659             try{
7660                 this.dom.blur();
7661             }catch(e){}
7662             return this;
7663         },
7664
7665         /**
7666          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7667          * @param {String/Array} className The CSS class to add, or an array of classes
7668          * @return {Roo.Element} this
7669          */
7670         addClass : function(className){
7671             if(className instanceof Array){
7672                 for(var i = 0, len = className.length; i < len; i++) {
7673                     this.addClass(className[i]);
7674                 }
7675             }else{
7676                 if(className && !this.hasClass(className)){
7677                     this.dom.className = this.dom.className + " " + className;
7678                 }
7679             }
7680             return this;
7681         },
7682
7683         /**
7684          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7685          * @param {String/Array} className The CSS class to add, or an array of classes
7686          * @return {Roo.Element} this
7687          */
7688         radioClass : function(className){
7689             var siblings = this.dom.parentNode.childNodes;
7690             for(var i = 0; i < siblings.length; i++) {
7691                 var s = siblings[i];
7692                 if(s.nodeType == 1){
7693                     Roo.get(s).removeClass(className);
7694                 }
7695             }
7696             this.addClass(className);
7697             return this;
7698         },
7699
7700         /**
7701          * Removes one or more CSS classes from the element.
7702          * @param {String/Array} className The CSS class to remove, or an array of classes
7703          * @return {Roo.Element} this
7704          */
7705         removeClass : function(className){
7706             if(!className || !this.dom.className){
7707                 return this;
7708             }
7709             if(className instanceof Array){
7710                 for(var i = 0, len = className.length; i < len; i++) {
7711                     this.removeClass(className[i]);
7712                 }
7713             }else{
7714                 if(this.hasClass(className)){
7715                     var re = this.classReCache[className];
7716                     if (!re) {
7717                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7718                        this.classReCache[className] = re;
7719                     }
7720                     this.dom.className =
7721                         this.dom.className.replace(re, " ");
7722                 }
7723             }
7724             return this;
7725         },
7726
7727         // private
7728         classReCache: {},
7729
7730         /**
7731          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7732          * @param {String} className The CSS class to toggle
7733          * @return {Roo.Element} this
7734          */
7735         toggleClass : function(className){
7736             if(this.hasClass(className)){
7737                 this.removeClass(className);
7738             }else{
7739                 this.addClass(className);
7740             }
7741             return this;
7742         },
7743
7744         /**
7745          * Checks if the specified CSS class exists on this element's DOM node.
7746          * @param {String} className The CSS class to check for
7747          * @return {Boolean} True if the class exists, else false
7748          */
7749         hasClass : function(className){
7750             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7751         },
7752
7753         /**
7754          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7755          * @param {String} oldClassName The CSS class to replace
7756          * @param {String} newClassName The replacement CSS class
7757          * @return {Roo.Element} this
7758          */
7759         replaceClass : function(oldClassName, newClassName){
7760             this.removeClass(oldClassName);
7761             this.addClass(newClassName);
7762             return this;
7763         },
7764
7765         /**
7766          * Returns an object with properties matching the styles requested.
7767          * For example, el.getStyles('color', 'font-size', 'width') might return
7768          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7769          * @param {String} style1 A style name
7770          * @param {String} style2 A style name
7771          * @param {String} etc.
7772          * @return {Object} The style object
7773          */
7774         getStyles : function(){
7775             var a = arguments, len = a.length, r = {};
7776             for(var i = 0; i < len; i++){
7777                 r[a[i]] = this.getStyle(a[i]);
7778             }
7779             return r;
7780         },
7781
7782         /**
7783          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7784          * @param {String} property The style property whose value is returned.
7785          * @return {String} The current value of the style property for this element.
7786          */
7787         getStyle : function(){
7788             return view && view.getComputedStyle ?
7789                 function(prop){
7790                     var el = this.dom, v, cs, camel;
7791                     if(prop == 'float'){
7792                         prop = "cssFloat";
7793                     }
7794                     if(el.style && (v = el.style[prop])){
7795                         return v;
7796                     }
7797                     if(cs = view.getComputedStyle(el, "")){
7798                         if(!(camel = propCache[prop])){
7799                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7800                         }
7801                         return cs[camel];
7802                     }
7803                     return null;
7804                 } :
7805                 function(prop){
7806                     var el = this.dom, v, cs, camel;
7807                     if(prop == 'opacity'){
7808                         if(typeof el.style.filter == 'string'){
7809                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7810                             if(m){
7811                                 var fv = parseFloat(m[1]);
7812                                 if(!isNaN(fv)){
7813                                     return fv ? fv / 100 : 0;
7814                                 }
7815                             }
7816                         }
7817                         return 1;
7818                     }else if(prop == 'float'){
7819                         prop = "styleFloat";
7820                     }
7821                     if(!(camel = propCache[prop])){
7822                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7823                     }
7824                     if(v = el.style[camel]){
7825                         return v;
7826                     }
7827                     if(cs = el.currentStyle){
7828                         return cs[camel];
7829                     }
7830                     return null;
7831                 };
7832         }(),
7833
7834         /**
7835          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7836          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7837          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7838          * @return {Roo.Element} this
7839          */
7840         setStyle : function(prop, value){
7841             if(typeof prop == "string"){
7842                 
7843                 if (prop == 'float') {
7844                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7845                     return this;
7846                 }
7847                 
7848                 var camel;
7849                 if(!(camel = propCache[prop])){
7850                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7851                 }
7852                 
7853                 if(camel == 'opacity') {
7854                     this.setOpacity(value);
7855                 }else{
7856                     this.dom.style[camel] = value;
7857                 }
7858             }else{
7859                 for(var style in prop){
7860                     if(typeof prop[style] != "function"){
7861                        this.setStyle(style, prop[style]);
7862                     }
7863                 }
7864             }
7865             return this;
7866         },
7867
7868         /**
7869          * More flexible version of {@link #setStyle} for setting style properties.
7870          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7871          * a function which returns such a specification.
7872          * @return {Roo.Element} this
7873          */
7874         applyStyles : function(style){
7875             Roo.DomHelper.applyStyles(this.dom, style);
7876             return this;
7877         },
7878
7879         /**
7880           * 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).
7881           * @return {Number} The X position of the element
7882           */
7883         getX : function(){
7884             return D.getX(this.dom);
7885         },
7886
7887         /**
7888           * 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).
7889           * @return {Number} The Y position of the element
7890           */
7891         getY : function(){
7892             return D.getY(this.dom);
7893         },
7894
7895         /**
7896           * 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).
7897           * @return {Array} The XY position of the element
7898           */
7899         getXY : function(){
7900             return D.getXY(this.dom);
7901         },
7902
7903         /**
7904          * 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).
7905          * @param {Number} The X position of the element
7906          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7907          * @return {Roo.Element} this
7908          */
7909         setX : function(x, animate){
7910             if(!animate || !A){
7911                 D.setX(this.dom, x);
7912             }else{
7913                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7914             }
7915             return this;
7916         },
7917
7918         /**
7919          * 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).
7920          * @param {Number} The Y position of the element
7921          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7922          * @return {Roo.Element} this
7923          */
7924         setY : function(y, animate){
7925             if(!animate || !A){
7926                 D.setY(this.dom, y);
7927             }else{
7928                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7929             }
7930             return this;
7931         },
7932
7933         /**
7934          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7935          * @param {String} left The left CSS property value
7936          * @return {Roo.Element} this
7937          */
7938         setLeft : function(left){
7939             this.setStyle("left", this.addUnits(left));
7940             return this;
7941         },
7942
7943         /**
7944          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7945          * @param {String} top The top CSS property value
7946          * @return {Roo.Element} this
7947          */
7948         setTop : function(top){
7949             this.setStyle("top", this.addUnits(top));
7950             return this;
7951         },
7952
7953         /**
7954          * Sets the element's CSS right style.
7955          * @param {String} right The right CSS property value
7956          * @return {Roo.Element} this
7957          */
7958         setRight : function(right){
7959             this.setStyle("right", this.addUnits(right));
7960             return this;
7961         },
7962
7963         /**
7964          * Sets the element's CSS bottom style.
7965          * @param {String} bottom The bottom CSS property value
7966          * @return {Roo.Element} this
7967          */
7968         setBottom : function(bottom){
7969             this.setStyle("bottom", this.addUnits(bottom));
7970             return this;
7971         },
7972
7973         /**
7974          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7975          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7976          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7977          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7978          * @return {Roo.Element} this
7979          */
7980         setXY : function(pos, animate){
7981             if(!animate || !A){
7982                 D.setXY(this.dom, pos);
7983             }else{
7984                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7985             }
7986             return this;
7987         },
7988
7989         /**
7990          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7991          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7992          * @param {Number} x X value for new position (coordinates are page-based)
7993          * @param {Number} y Y value for new position (coordinates are page-based)
7994          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7995          * @return {Roo.Element} this
7996          */
7997         setLocation : function(x, y, animate){
7998             this.setXY([x, y], this.preanim(arguments, 2));
7999             return this;
8000         },
8001
8002         /**
8003          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8004          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8005          * @param {Number} x X value for new position (coordinates are page-based)
8006          * @param {Number} y Y value for new position (coordinates are page-based)
8007          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8008          * @return {Roo.Element} this
8009          */
8010         moveTo : function(x, y, animate){
8011             this.setXY([x, y], this.preanim(arguments, 2));
8012             return this;
8013         },
8014
8015         /**
8016          * Returns the region of the given element.
8017          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8018          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8019          */
8020         getRegion : function(){
8021             return D.getRegion(this.dom);
8022         },
8023
8024         /**
8025          * Returns the offset height of the element
8026          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8027          * @return {Number} The element's height
8028          */
8029         getHeight : function(contentHeight){
8030             var h = this.dom.offsetHeight || 0;
8031             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8032         },
8033
8034         /**
8035          * Returns the offset width of the element
8036          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8037          * @return {Number} The element's width
8038          */
8039         getWidth : function(contentWidth){
8040             var w = this.dom.offsetWidth || 0;
8041             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8042         },
8043
8044         /**
8045          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8046          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8047          * if a height has not been set using CSS.
8048          * @return {Number}
8049          */
8050         getComputedHeight : function(){
8051             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8052             if(!h){
8053                 h = parseInt(this.getStyle('height'), 10) || 0;
8054                 if(!this.isBorderBox()){
8055                     h += this.getFrameWidth('tb');
8056                 }
8057             }
8058             return h;
8059         },
8060
8061         /**
8062          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8063          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8064          * if a width has not been set using CSS.
8065          * @return {Number}
8066          */
8067         getComputedWidth : function(){
8068             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8069             if(!w){
8070                 w = parseInt(this.getStyle('width'), 10) || 0;
8071                 if(!this.isBorderBox()){
8072                     w += this.getFrameWidth('lr');
8073                 }
8074             }
8075             return w;
8076         },
8077
8078         /**
8079          * Returns the size of the element.
8080          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8081          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8082          */
8083         getSize : function(contentSize){
8084             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8085         },
8086
8087         /**
8088          * Returns the width and height of the viewport.
8089          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8090          */
8091         getViewSize : function(){
8092             var d = this.dom, doc = document, aw = 0, ah = 0;
8093             if(d == doc || d == doc.body){
8094                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8095             }else{
8096                 return {
8097                     width : d.clientWidth,
8098                     height: d.clientHeight
8099                 };
8100             }
8101         },
8102
8103         /**
8104          * Returns the value of the "value" attribute
8105          * @param {Boolean} asNumber true to parse the value as a number
8106          * @return {String/Number}
8107          */
8108         getValue : function(asNumber){
8109             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8110         },
8111
8112         // private
8113         adjustWidth : function(width){
8114             if(typeof width == "number"){
8115                 if(this.autoBoxAdjust && !this.isBorderBox()){
8116                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8117                 }
8118                 if(width < 0){
8119                     width = 0;
8120                 }
8121             }
8122             return width;
8123         },
8124
8125         // private
8126         adjustHeight : function(height){
8127             if(typeof height == "number"){
8128                if(this.autoBoxAdjust && !this.isBorderBox()){
8129                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8130                }
8131                if(height < 0){
8132                    height = 0;
8133                }
8134             }
8135             return height;
8136         },
8137
8138         /**
8139          * Set the width of the element
8140          * @param {Number} width The new width
8141          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8142          * @return {Roo.Element} this
8143          */
8144         setWidth : function(width, animate){
8145             width = this.adjustWidth(width);
8146             if(!animate || !A){
8147                 this.dom.style.width = this.addUnits(width);
8148             }else{
8149                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8150             }
8151             return this;
8152         },
8153
8154         /**
8155          * Set the height of the element
8156          * @param {Number} height The new height
8157          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8158          * @return {Roo.Element} this
8159          */
8160          setHeight : function(height, animate){
8161             height = this.adjustHeight(height);
8162             if(!animate || !A){
8163                 this.dom.style.height = this.addUnits(height);
8164             }else{
8165                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8166             }
8167             return this;
8168         },
8169
8170         /**
8171          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8172          * @param {Number} width The new width
8173          * @param {Number} height The new height
8174          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8175          * @return {Roo.Element} this
8176          */
8177          setSize : function(width, height, animate){
8178             if(typeof width == "object"){ // in case of object from getSize()
8179                 height = width.height; width = width.width;
8180             }
8181             width = this.adjustWidth(width); height = this.adjustHeight(height);
8182             if(!animate || !A){
8183                 this.dom.style.width = this.addUnits(width);
8184                 this.dom.style.height = this.addUnits(height);
8185             }else{
8186                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8187             }
8188             return this;
8189         },
8190
8191         /**
8192          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8193          * @param {Number} x X value for new position (coordinates are page-based)
8194          * @param {Number} y Y value for new position (coordinates are page-based)
8195          * @param {Number} width The new width
8196          * @param {Number} height The new height
8197          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8198          * @return {Roo.Element} this
8199          */
8200         setBounds : function(x, y, width, height, animate){
8201             if(!animate || !A){
8202                 this.setSize(width, height);
8203                 this.setLocation(x, y);
8204             }else{
8205                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8206                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8207                               this.preanim(arguments, 4), 'motion');
8208             }
8209             return this;
8210         },
8211
8212         /**
8213          * 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.
8214          * @param {Roo.lib.Region} region The region to fill
8215          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8216          * @return {Roo.Element} this
8217          */
8218         setRegion : function(region, animate){
8219             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8220             return this;
8221         },
8222
8223         /**
8224          * Appends an event handler
8225          *
8226          * @param {String}   eventName     The type of event to append
8227          * @param {Function} fn        The method the event invokes
8228          * @param {Object} scope       (optional) The scope (this object) of the fn
8229          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8230          */
8231         addListener : function(eventName, fn, scope, options){
8232             if (this.dom) {
8233                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8234             }
8235         },
8236
8237         /**
8238          * Removes an event handler from this element
8239          * @param {String} eventName the type of event to remove
8240          * @param {Function} fn the method the event invokes
8241          * @return {Roo.Element} this
8242          */
8243         removeListener : function(eventName, fn){
8244             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8245             return this;
8246         },
8247
8248         /**
8249          * Removes all previous added listeners from this element
8250          * @return {Roo.Element} this
8251          */
8252         removeAllListeners : function(){
8253             E.purgeElement(this.dom);
8254             return this;
8255         },
8256
8257         relayEvent : function(eventName, observable){
8258             this.on(eventName, function(e){
8259                 observable.fireEvent(eventName, e);
8260             });
8261         },
8262
8263         /**
8264          * Set the opacity of the element
8265          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8266          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8267          * @return {Roo.Element} this
8268          */
8269          setOpacity : function(opacity, animate){
8270             if(!animate || !A){
8271                 var s = this.dom.style;
8272                 if(Roo.isIE){
8273                     s.zoom = 1;
8274                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8275                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8276                 }else{
8277                     s.opacity = opacity;
8278                 }
8279             }else{
8280                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8281             }
8282             return this;
8283         },
8284
8285         /**
8286          * Gets the left X coordinate
8287          * @param {Boolean} local True to get the local css position instead of page coordinate
8288          * @return {Number}
8289          */
8290         getLeft : function(local){
8291             if(!local){
8292                 return this.getX();
8293             }else{
8294                 return parseInt(this.getStyle("left"), 10) || 0;
8295             }
8296         },
8297
8298         /**
8299          * Gets the right X coordinate of the element (element X position + element width)
8300          * @param {Boolean} local True to get the local css position instead of page coordinate
8301          * @return {Number}
8302          */
8303         getRight : function(local){
8304             if(!local){
8305                 return this.getX() + this.getWidth();
8306             }else{
8307                 return (this.getLeft(true) + this.getWidth()) || 0;
8308             }
8309         },
8310
8311         /**
8312          * Gets the top Y coordinate
8313          * @param {Boolean} local True to get the local css position instead of page coordinate
8314          * @return {Number}
8315          */
8316         getTop : function(local) {
8317             if(!local){
8318                 return this.getY();
8319             }else{
8320                 return parseInt(this.getStyle("top"), 10) || 0;
8321             }
8322         },
8323
8324         /**
8325          * Gets the bottom Y coordinate of the element (element Y position + element height)
8326          * @param {Boolean} local True to get the local css position instead of page coordinate
8327          * @return {Number}
8328          */
8329         getBottom : function(local){
8330             if(!local){
8331                 return this.getY() + this.getHeight();
8332             }else{
8333                 return (this.getTop(true) + this.getHeight()) || 0;
8334             }
8335         },
8336
8337         /**
8338         * Initializes positioning on this element. If a desired position is not passed, it will make the
8339         * the element positioned relative IF it is not already positioned.
8340         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8341         * @param {Number} zIndex (optional) The zIndex to apply
8342         * @param {Number} x (optional) Set the page X position
8343         * @param {Number} y (optional) Set the page Y position
8344         */
8345         position : function(pos, zIndex, x, y){
8346             if(!pos){
8347                if(this.getStyle('position') == 'static'){
8348                    this.setStyle('position', 'relative');
8349                }
8350             }else{
8351                 this.setStyle("position", pos);
8352             }
8353             if(zIndex){
8354                 this.setStyle("z-index", zIndex);
8355             }
8356             if(x !== undefined && y !== undefined){
8357                 this.setXY([x, y]);
8358             }else if(x !== undefined){
8359                 this.setX(x);
8360             }else if(y !== undefined){
8361                 this.setY(y);
8362             }
8363         },
8364
8365         /**
8366         * Clear positioning back to the default when the document was loaded
8367         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8368         * @return {Roo.Element} this
8369          */
8370         clearPositioning : function(value){
8371             value = value ||'';
8372             this.setStyle({
8373                 "left": value,
8374                 "right": value,
8375                 "top": value,
8376                 "bottom": value,
8377                 "z-index": "",
8378                 "position" : "static"
8379             });
8380             return this;
8381         },
8382
8383         /**
8384         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8385         * snapshot before performing an update and then restoring the element.
8386         * @return {Object}
8387         */
8388         getPositioning : function(){
8389             var l = this.getStyle("left");
8390             var t = this.getStyle("top");
8391             return {
8392                 "position" : this.getStyle("position"),
8393                 "left" : l,
8394                 "right" : l ? "" : this.getStyle("right"),
8395                 "top" : t,
8396                 "bottom" : t ? "" : this.getStyle("bottom"),
8397                 "z-index" : this.getStyle("z-index")
8398             };
8399         },
8400
8401         /**
8402          * Gets the width of the border(s) for the specified side(s)
8403          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8404          * passing lr would get the border (l)eft width + the border (r)ight width.
8405          * @return {Number} The width of the sides passed added together
8406          */
8407         getBorderWidth : function(side){
8408             return this.addStyles(side, El.borders);
8409         },
8410
8411         /**
8412          * Gets the width of the padding(s) for the specified side(s)
8413          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8414          * passing lr would get the padding (l)eft + the padding (r)ight.
8415          * @return {Number} The padding of the sides passed added together
8416          */
8417         getPadding : function(side){
8418             return this.addStyles(side, El.paddings);
8419         },
8420
8421         /**
8422         * Set positioning with an object returned by getPositioning().
8423         * @param {Object} posCfg
8424         * @return {Roo.Element} this
8425          */
8426         setPositioning : function(pc){
8427             this.applyStyles(pc);
8428             if(pc.right == "auto"){
8429                 this.dom.style.right = "";
8430             }
8431             if(pc.bottom == "auto"){
8432                 this.dom.style.bottom = "";
8433             }
8434             return this;
8435         },
8436
8437         // private
8438         fixDisplay : function(){
8439             if(this.getStyle("display") == "none"){
8440                 this.setStyle("visibility", "hidden");
8441                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8442                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8443                     this.setStyle("display", "block");
8444                 }
8445             }
8446         },
8447
8448         /**
8449          * Quick set left and top adding default units
8450          * @param {String} left The left CSS property value
8451          * @param {String} top The top CSS property value
8452          * @return {Roo.Element} this
8453          */
8454          setLeftTop : function(left, top){
8455             this.dom.style.left = this.addUnits(left);
8456             this.dom.style.top = this.addUnits(top);
8457             return this;
8458         },
8459
8460         /**
8461          * Move this element relative to its current position.
8462          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8463          * @param {Number} distance How far to move the element in pixels
8464          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8465          * @return {Roo.Element} this
8466          */
8467          move : function(direction, distance, animate){
8468             var xy = this.getXY();
8469             direction = direction.toLowerCase();
8470             switch(direction){
8471                 case "l":
8472                 case "left":
8473                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8474                     break;
8475                case "r":
8476                case "right":
8477                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8478                     break;
8479                case "t":
8480                case "top":
8481                case "up":
8482                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8483                     break;
8484                case "b":
8485                case "bottom":
8486                case "down":
8487                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8488                     break;
8489             }
8490             return this;
8491         },
8492
8493         /**
8494          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8495          * @return {Roo.Element} this
8496          */
8497         clip : function(){
8498             if(!this.isClipped){
8499                this.isClipped = true;
8500                this.originalClip = {
8501                    "o": this.getStyle("overflow"),
8502                    "x": this.getStyle("overflow-x"),
8503                    "y": this.getStyle("overflow-y")
8504                };
8505                this.setStyle("overflow", "hidden");
8506                this.setStyle("overflow-x", "hidden");
8507                this.setStyle("overflow-y", "hidden");
8508             }
8509             return this;
8510         },
8511
8512         /**
8513          *  Return clipping (overflow) to original clipping before clip() was called
8514          * @return {Roo.Element} this
8515          */
8516         unclip : function(){
8517             if(this.isClipped){
8518                 this.isClipped = false;
8519                 var o = this.originalClip;
8520                 if(o.o){this.setStyle("overflow", o.o);}
8521                 if(o.x){this.setStyle("overflow-x", o.x);}
8522                 if(o.y){this.setStyle("overflow-y", o.y);}
8523             }
8524             return this;
8525         },
8526
8527
8528         /**
8529          * Gets the x,y coordinates specified by the anchor position on the element.
8530          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8531          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8532          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8533          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8534          * @return {Array} [x, y] An array containing the element's x and y coordinates
8535          */
8536         getAnchorXY : function(anchor, local, s){
8537             //Passing a different size is useful for pre-calculating anchors,
8538             //especially for anchored animations that change the el size.
8539
8540             var w, h, vp = false;
8541             if(!s){
8542                 var d = this.dom;
8543                 if(d == document.body || d == document){
8544                     vp = true;
8545                     w = D.getViewWidth(); h = D.getViewHeight();
8546                 }else{
8547                     w = this.getWidth(); h = this.getHeight();
8548                 }
8549             }else{
8550                 w = s.width;  h = s.height;
8551             }
8552             var x = 0, y = 0, r = Math.round;
8553             switch((anchor || "tl").toLowerCase()){
8554                 case "c":
8555                     x = r(w*.5);
8556                     y = r(h*.5);
8557                 break;
8558                 case "t":
8559                     x = r(w*.5);
8560                     y = 0;
8561                 break;
8562                 case "l":
8563                     x = 0;
8564                     y = r(h*.5);
8565                 break;
8566                 case "r":
8567                     x = w;
8568                     y = r(h*.5);
8569                 break;
8570                 case "b":
8571                     x = r(w*.5);
8572                     y = h;
8573                 break;
8574                 case "tl":
8575                     x = 0;
8576                     y = 0;
8577                 break;
8578                 case "bl":
8579                     x = 0;
8580                     y = h;
8581                 break;
8582                 case "br":
8583                     x = w;
8584                     y = h;
8585                 break;
8586                 case "tr":
8587                     x = w;
8588                     y = 0;
8589                 break;
8590             }
8591             if(local === true){
8592                 return [x, y];
8593             }
8594             if(vp){
8595                 var sc = this.getScroll();
8596                 return [x + sc.left, y + sc.top];
8597             }
8598             //Add the element's offset xy
8599             var o = this.getXY();
8600             return [x+o[0], y+o[1]];
8601         },
8602
8603         /**
8604          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8605          * supported position values.
8606          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8607          * @param {String} position The position to align to.
8608          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8609          * @return {Array} [x, y]
8610          */
8611         getAlignToXY : function(el, p, o)
8612         {
8613             el = Roo.get(el);
8614             var d = this.dom;
8615             if(!el.dom){
8616                 throw "Element.alignTo with an element that doesn't exist";
8617             }
8618             var c = false; //constrain to viewport
8619             var p1 = "", p2 = "";
8620             o = o || [0,0];
8621
8622             if(!p){
8623                 p = "tl-bl";
8624             }else if(p == "?"){
8625                 p = "tl-bl?";
8626             }else if(p.indexOf("-") == -1){
8627                 p = "tl-" + p;
8628             }
8629             p = p.toLowerCase();
8630             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8631             if(!m){
8632                throw "Element.alignTo with an invalid alignment " + p;
8633             }
8634             p1 = m[1]; p2 = m[2]; c = !!m[3];
8635
8636             //Subtract the aligned el's internal xy from the target's offset xy
8637             //plus custom offset to get the aligned el's new offset xy
8638             var a1 = this.getAnchorXY(p1, true);
8639             var a2 = el.getAnchorXY(p2, false);
8640             var x = a2[0] - a1[0] + o[0];
8641             var y = a2[1] - a1[1] + o[1];
8642             if(c){
8643                 //constrain the aligned el to viewport if necessary
8644                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8645                 // 5px of margin for ie
8646                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8647
8648                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8649                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8650                 //otherwise swap the aligned el to the opposite border of the target.
8651                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8652                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8653                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8654                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8655
8656                var doc = document;
8657                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8658                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8659
8660                if((x+w) > dw + scrollX){
8661                     x = swapX ? r.left-w : dw+scrollX-w;
8662                 }
8663                if(x < scrollX){
8664                    x = swapX ? r.right : scrollX;
8665                }
8666                if((y+h) > dh + scrollY){
8667                     y = swapY ? r.top-h : dh+scrollY-h;
8668                 }
8669                if (y < scrollY){
8670                    y = swapY ? r.bottom : scrollY;
8671                }
8672             }
8673             return [x,y];
8674         },
8675
8676         // private
8677         getConstrainToXY : function(){
8678             var os = {top:0, left:0, bottom:0, right: 0};
8679
8680             return function(el, local, offsets, proposedXY){
8681                 el = Roo.get(el);
8682                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8683
8684                 var vw, vh, vx = 0, vy = 0;
8685                 if(el.dom == document.body || el.dom == document){
8686                     vw = Roo.lib.Dom.getViewWidth();
8687                     vh = Roo.lib.Dom.getViewHeight();
8688                 }else{
8689                     vw = el.dom.clientWidth;
8690                     vh = el.dom.clientHeight;
8691                     if(!local){
8692                         var vxy = el.getXY();
8693                         vx = vxy[0];
8694                         vy = vxy[1];
8695                     }
8696                 }
8697
8698                 var s = el.getScroll();
8699
8700                 vx += offsets.left + s.left;
8701                 vy += offsets.top + s.top;
8702
8703                 vw -= offsets.right;
8704                 vh -= offsets.bottom;
8705
8706                 var vr = vx+vw;
8707                 var vb = vy+vh;
8708
8709                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8710                 var x = xy[0], y = xy[1];
8711                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8712
8713                 // only move it if it needs it
8714                 var moved = false;
8715
8716                 // first validate right/bottom
8717                 if((x + w) > vr){
8718                     x = vr - w;
8719                     moved = true;
8720                 }
8721                 if((y + h) > vb){
8722                     y = vb - h;
8723                     moved = true;
8724                 }
8725                 // then make sure top/left isn't negative
8726                 if(x < vx){
8727                     x = vx;
8728                     moved = true;
8729                 }
8730                 if(y < vy){
8731                     y = vy;
8732                     moved = true;
8733                 }
8734                 return moved ? [x, y] : false;
8735             };
8736         }(),
8737
8738         // private
8739         adjustForConstraints : function(xy, parent, offsets){
8740             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8741         },
8742
8743         /**
8744          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8745          * document it aligns it to the viewport.
8746          * The position parameter is optional, and can be specified in any one of the following formats:
8747          * <ul>
8748          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8749          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8750          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8751          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8752          *   <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
8753          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8754          * </ul>
8755          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8756          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8757          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8758          * that specified in order to enforce the viewport constraints.
8759          * Following are all of the supported anchor positions:
8760     <pre>
8761     Value  Description
8762     -----  -----------------------------
8763     tl     The top left corner (default)
8764     t      The center of the top edge
8765     tr     The top right corner
8766     l      The center of the left edge
8767     c      In the center of the element
8768     r      The center of the right edge
8769     bl     The bottom left corner
8770     b      The center of the bottom edge
8771     br     The bottom right corner
8772     </pre>
8773     Example Usage:
8774     <pre><code>
8775     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8776     el.alignTo("other-el");
8777
8778     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8779     el.alignTo("other-el", "tr?");
8780
8781     // align the bottom right corner of el with the center left edge of other-el
8782     el.alignTo("other-el", "br-l?");
8783
8784     // align the center of el with the bottom left corner of other-el and
8785     // adjust the x position by -6 pixels (and the y position by 0)
8786     el.alignTo("other-el", "c-bl", [-6, 0]);
8787     </code></pre>
8788          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8789          * @param {String} position The position to align to.
8790          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8791          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8792          * @return {Roo.Element} this
8793          */
8794         alignTo : function(element, position, offsets, animate){
8795             var xy = this.getAlignToXY(element, position, offsets);
8796             this.setXY(xy, this.preanim(arguments, 3));
8797             return this;
8798         },
8799
8800         /**
8801          * Anchors an element to another element and realigns it when the window is resized.
8802          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8803          * @param {String} position The position to align to.
8804          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8805          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8806          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8807          * is a number, it is used as the buffer delay (defaults to 50ms).
8808          * @param {Function} callback The function to call after the animation finishes
8809          * @return {Roo.Element} this
8810          */
8811         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8812             var action = function(){
8813                 this.alignTo(el, alignment, offsets, animate);
8814                 Roo.callback(callback, this);
8815             };
8816             Roo.EventManager.onWindowResize(action, this);
8817             var tm = typeof monitorScroll;
8818             if(tm != 'undefined'){
8819                 Roo.EventManager.on(window, 'scroll', action, this,
8820                     {buffer: tm == 'number' ? monitorScroll : 50});
8821             }
8822             action.call(this); // align immediately
8823             return this;
8824         },
8825         /**
8826          * Clears any opacity settings from this element. Required in some cases for IE.
8827          * @return {Roo.Element} this
8828          */
8829         clearOpacity : function(){
8830             if (window.ActiveXObject) {
8831                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8832                     this.dom.style.filter = "";
8833                 }
8834             } else {
8835                 this.dom.style.opacity = "";
8836                 this.dom.style["-moz-opacity"] = "";
8837                 this.dom.style["-khtml-opacity"] = "";
8838             }
8839             return this;
8840         },
8841
8842         /**
8843          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8844          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8845          * @return {Roo.Element} this
8846          */
8847         hide : function(animate){
8848             this.setVisible(false, this.preanim(arguments, 0));
8849             return this;
8850         },
8851
8852         /**
8853         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8854         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8855          * @return {Roo.Element} this
8856          */
8857         show : function(animate){
8858             this.setVisible(true, this.preanim(arguments, 0));
8859             return this;
8860         },
8861
8862         /**
8863          * @private Test if size has a unit, otherwise appends the default
8864          */
8865         addUnits : function(size){
8866             return Roo.Element.addUnits(size, this.defaultUnit);
8867         },
8868
8869         /**
8870          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8871          * @return {Roo.Element} this
8872          */
8873         beginMeasure : function(){
8874             var el = this.dom;
8875             if(el.offsetWidth || el.offsetHeight){
8876                 return this; // offsets work already
8877             }
8878             var changed = [];
8879             var p = this.dom, b = document.body; // start with this element
8880             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8881                 var pe = Roo.get(p);
8882                 if(pe.getStyle('display') == 'none'){
8883                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8884                     p.style.visibility = "hidden";
8885                     p.style.display = "block";
8886                 }
8887                 p = p.parentNode;
8888             }
8889             this._measureChanged = changed;
8890             return this;
8891
8892         },
8893
8894         /**
8895          * Restores displays to before beginMeasure was called
8896          * @return {Roo.Element} this
8897          */
8898         endMeasure : function(){
8899             var changed = this._measureChanged;
8900             if(changed){
8901                 for(var i = 0, len = changed.length; i < len; i++) {
8902                     var r = changed[i];
8903                     r.el.style.visibility = r.visibility;
8904                     r.el.style.display = "none";
8905                 }
8906                 this._measureChanged = null;
8907             }
8908             return this;
8909         },
8910
8911         /**
8912         * Update the innerHTML of this element, optionally searching for and processing scripts
8913         * @param {String} html The new HTML
8914         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8915         * @param {Function} callback For async script loading you can be noticed when the update completes
8916         * @return {Roo.Element} this
8917          */
8918         update : function(html, loadScripts, callback){
8919             if(typeof html == "undefined"){
8920                 html = "";
8921             }
8922             if(loadScripts !== true){
8923                 this.dom.innerHTML = html;
8924                 if(typeof callback == "function"){
8925                     callback();
8926                 }
8927                 return this;
8928             }
8929             var id = Roo.id();
8930             var dom = this.dom;
8931
8932             html += '<span id="' + id + '"></span>';
8933
8934             E.onAvailable(id, function(){
8935                 var hd = document.getElementsByTagName("head")[0];
8936                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8937                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8938                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8939
8940                 var match;
8941                 while(match = re.exec(html)){
8942                     var attrs = match[1];
8943                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8944                     if(srcMatch && srcMatch[2]){
8945                        var s = document.createElement("script");
8946                        s.src = srcMatch[2];
8947                        var typeMatch = attrs.match(typeRe);
8948                        if(typeMatch && typeMatch[2]){
8949                            s.type = typeMatch[2];
8950                        }
8951                        hd.appendChild(s);
8952                     }else if(match[2] && match[2].length > 0){
8953                         if(window.execScript) {
8954                            window.execScript(match[2]);
8955                         } else {
8956                             /**
8957                              * eval:var:id
8958                              * eval:var:dom
8959                              * eval:var:html
8960                              * 
8961                              */
8962                            window.eval(match[2]);
8963                         }
8964                     }
8965                 }
8966                 var el = document.getElementById(id);
8967                 if(el){el.parentNode.removeChild(el);}
8968                 if(typeof callback == "function"){
8969                     callback();
8970                 }
8971             });
8972             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8973             return this;
8974         },
8975
8976         /**
8977          * Direct access to the UpdateManager update() method (takes the same parameters).
8978          * @param {String/Function} url The url for this request or a function to call to get the url
8979          * @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}
8980          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8981          * @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.
8982          * @return {Roo.Element} this
8983          */
8984         load : function(){
8985             var um = this.getUpdateManager();
8986             um.update.apply(um, arguments);
8987             return this;
8988         },
8989
8990         /**
8991         * Gets this element's UpdateManager
8992         * @return {Roo.UpdateManager} The UpdateManager
8993         */
8994         getUpdateManager : function(){
8995             if(!this.updateManager){
8996                 this.updateManager = new Roo.UpdateManager(this);
8997             }
8998             return this.updateManager;
8999         },
9000
9001         /**
9002          * Disables text selection for this element (normalized across browsers)
9003          * @return {Roo.Element} this
9004          */
9005         unselectable : function(){
9006             this.dom.unselectable = "on";
9007             this.swallowEvent("selectstart", true);
9008             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9009             this.addClass("x-unselectable");
9010             return this;
9011         },
9012
9013         /**
9014         * Calculates the x, y to center this element on the screen
9015         * @return {Array} The x, y values [x, y]
9016         */
9017         getCenterXY : function(){
9018             return this.getAlignToXY(document, 'c-c');
9019         },
9020
9021         /**
9022         * Centers the Element in either the viewport, or another Element.
9023         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9024         */
9025         center : function(centerIn){
9026             this.alignTo(centerIn || document, 'c-c');
9027             return this;
9028         },
9029
9030         /**
9031          * Tests various css rules/browsers to determine if this element uses a border box
9032          * @return {Boolean}
9033          */
9034         isBorderBox : function(){
9035             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9036         },
9037
9038         /**
9039          * Return a box {x, y, width, height} that can be used to set another elements
9040          * size/location to match this element.
9041          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9042          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9043          * @return {Object} box An object in the format {x, y, width, height}
9044          */
9045         getBox : function(contentBox, local){
9046             var xy;
9047             if(!local){
9048                 xy = this.getXY();
9049             }else{
9050                 var left = parseInt(this.getStyle("left"), 10) || 0;
9051                 var top = parseInt(this.getStyle("top"), 10) || 0;
9052                 xy = [left, top];
9053             }
9054             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9055             if(!contentBox){
9056                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9057             }else{
9058                 var l = this.getBorderWidth("l")+this.getPadding("l");
9059                 var r = this.getBorderWidth("r")+this.getPadding("r");
9060                 var t = this.getBorderWidth("t")+this.getPadding("t");
9061                 var b = this.getBorderWidth("b")+this.getPadding("b");
9062                 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)};
9063             }
9064             bx.right = bx.x + bx.width;
9065             bx.bottom = bx.y + bx.height;
9066             return bx;
9067         },
9068
9069         /**
9070          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9071          for more information about the sides.
9072          * @param {String} sides
9073          * @return {Number}
9074          */
9075         getFrameWidth : function(sides, onlyContentBox){
9076             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9077         },
9078
9079         /**
9080          * 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.
9081          * @param {Object} box The box to fill {x, y, width, height}
9082          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9083          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9084          * @return {Roo.Element} this
9085          */
9086         setBox : function(box, adjust, animate){
9087             var w = box.width, h = box.height;
9088             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9089                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9090                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9091             }
9092             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9093             return this;
9094         },
9095
9096         /**
9097          * Forces the browser to repaint this element
9098          * @return {Roo.Element} this
9099          */
9100          repaint : function(){
9101             var dom = this.dom;
9102             this.addClass("x-repaint");
9103             setTimeout(function(){
9104                 Roo.get(dom).removeClass("x-repaint");
9105             }, 1);
9106             return this;
9107         },
9108
9109         /**
9110          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9111          * then it returns the calculated width of the sides (see getPadding)
9112          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9113          * @return {Object/Number}
9114          */
9115         getMargins : function(side){
9116             if(!side){
9117                 return {
9118                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9119                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9120                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9121                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9122                 };
9123             }else{
9124                 return this.addStyles(side, El.margins);
9125              }
9126         },
9127
9128         // private
9129         addStyles : function(sides, styles){
9130             var val = 0, v, w;
9131             for(var i = 0, len = sides.length; i < len; i++){
9132                 v = this.getStyle(styles[sides.charAt(i)]);
9133                 if(v){
9134                      w = parseInt(v, 10);
9135                      if(w){ val += w; }
9136                 }
9137             }
9138             return val;
9139         },
9140
9141         /**
9142          * Creates a proxy element of this element
9143          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9144          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9145          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9146          * @return {Roo.Element} The new proxy element
9147          */
9148         createProxy : function(config, renderTo, matchBox){
9149             if(renderTo){
9150                 renderTo = Roo.getDom(renderTo);
9151             }else{
9152                 renderTo = document.body;
9153             }
9154             config = typeof config == "object" ?
9155                 config : {tag : "div", cls: config};
9156             var proxy = Roo.DomHelper.append(renderTo, config, true);
9157             if(matchBox){
9158                proxy.setBox(this.getBox());
9159             }
9160             return proxy;
9161         },
9162
9163         /**
9164          * Puts a mask over this element to disable user interaction. Requires core.css.
9165          * This method can only be applied to elements which accept child nodes.
9166          * @param {String} msg (optional) A message to display in the mask
9167          * @param {String} msgCls (optional) A css class to apply to the msg element
9168          * @return {Element} The mask  element
9169          */
9170         mask : function(msg, msgCls)
9171         {
9172             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9173                 this.setStyle("position", "relative");
9174             }
9175             if(!this._mask){
9176                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9177             }
9178             
9179             this.addClass("x-masked");
9180             this._mask.setDisplayed(true);
9181             
9182             // we wander
9183             var z = 0;
9184             var dom = this.dom;
9185             while (dom && dom.style) {
9186                 if (!isNaN(parseInt(dom.style.zIndex))) {
9187                     z = Math.max(z, parseInt(dom.style.zIndex));
9188                 }
9189                 dom = dom.parentNode;
9190             }
9191             // if we are masking the body - then it hides everything..
9192             if (this.dom == document.body) {
9193                 z = 1000000;
9194                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9195                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9196             }
9197            
9198             if(typeof msg == 'string'){
9199                 if(!this._maskMsg){
9200                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9201                         cls: "roo-el-mask-msg", 
9202                         cn: [
9203                             {
9204                                 tag: 'i',
9205                                 cls: 'fa fa-spinner fa-spin'
9206                             },
9207                             {
9208                                 tag: 'div'
9209                             }   
9210                         ]
9211                     }, true);
9212                 }
9213                 var mm = this._maskMsg;
9214                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9215                 if (mm.dom.lastChild) { // weird IE issue?
9216                     mm.dom.lastChild.innerHTML = msg;
9217                 }
9218                 mm.setDisplayed(true);
9219                 mm.center(this);
9220                 mm.setStyle('z-index', z + 102);
9221             }
9222             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9223                 this._mask.setHeight(this.getHeight());
9224             }
9225             this._mask.setStyle('z-index', z + 100);
9226             
9227             return this._mask;
9228         },
9229
9230         /**
9231          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9232          * it is cached for reuse.
9233          */
9234         unmask : function(removeEl){
9235             if(this._mask){
9236                 if(removeEl === true){
9237                     this._mask.remove();
9238                     delete this._mask;
9239                     if(this._maskMsg){
9240                         this._maskMsg.remove();
9241                         delete this._maskMsg;
9242                     }
9243                 }else{
9244                     this._mask.setDisplayed(false);
9245                     if(this._maskMsg){
9246                         this._maskMsg.setDisplayed(false);
9247                     }
9248                 }
9249             }
9250             this.removeClass("x-masked");
9251         },
9252
9253         /**
9254          * Returns true if this element is masked
9255          * @return {Boolean}
9256          */
9257         isMasked : function(){
9258             return this._mask && this._mask.isVisible();
9259         },
9260
9261         /**
9262          * Creates an iframe shim for this element to keep selects and other windowed objects from
9263          * showing through.
9264          * @return {Roo.Element} The new shim element
9265          */
9266         createShim : function(){
9267             var el = document.createElement('iframe');
9268             el.frameBorder = 'no';
9269             el.className = 'roo-shim';
9270             if(Roo.isIE && Roo.isSecure){
9271                 el.src = Roo.SSL_SECURE_URL;
9272             }
9273             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9274             shim.autoBoxAdjust = false;
9275             return shim;
9276         },
9277
9278         /**
9279          * Removes this element from the DOM and deletes it from the cache
9280          */
9281         remove : function(){
9282             if(this.dom.parentNode){
9283                 this.dom.parentNode.removeChild(this.dom);
9284             }
9285             delete El.cache[this.dom.id];
9286         },
9287
9288         /**
9289          * Sets up event handlers to add and remove a css class when the mouse is over this element
9290          * @param {String} className
9291          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9292          * mouseout events for children elements
9293          * @return {Roo.Element} this
9294          */
9295         addClassOnOver : function(className, preventFlicker){
9296             this.on("mouseover", function(){
9297                 Roo.fly(this, '_internal').addClass(className);
9298             }, this.dom);
9299             var removeFn = function(e){
9300                 if(preventFlicker !== true || !e.within(this, true)){
9301                     Roo.fly(this, '_internal').removeClass(className);
9302                 }
9303             };
9304             this.on("mouseout", removeFn, this.dom);
9305             return this;
9306         },
9307
9308         /**
9309          * Sets up event handlers to add and remove a css class when this element has the focus
9310          * @param {String} className
9311          * @return {Roo.Element} this
9312          */
9313         addClassOnFocus : function(className){
9314             this.on("focus", function(){
9315                 Roo.fly(this, '_internal').addClass(className);
9316             }, this.dom);
9317             this.on("blur", function(){
9318                 Roo.fly(this, '_internal').removeClass(className);
9319             }, this.dom);
9320             return this;
9321         },
9322         /**
9323          * 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)
9324          * @param {String} className
9325          * @return {Roo.Element} this
9326          */
9327         addClassOnClick : function(className){
9328             var dom = this.dom;
9329             this.on("mousedown", function(){
9330                 Roo.fly(dom, '_internal').addClass(className);
9331                 var d = Roo.get(document);
9332                 var fn = function(){
9333                     Roo.fly(dom, '_internal').removeClass(className);
9334                     d.removeListener("mouseup", fn);
9335                 };
9336                 d.on("mouseup", fn);
9337             });
9338             return this;
9339         },
9340
9341         /**
9342          * Stops the specified event from bubbling and optionally prevents the default action
9343          * @param {String} eventName
9344          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9345          * @return {Roo.Element} this
9346          */
9347         swallowEvent : function(eventName, preventDefault){
9348             var fn = function(e){
9349                 e.stopPropagation();
9350                 if(preventDefault){
9351                     e.preventDefault();
9352                 }
9353             };
9354             if(eventName instanceof Array){
9355                 for(var i = 0, len = eventName.length; i < len; i++){
9356                      this.on(eventName[i], fn);
9357                 }
9358                 return this;
9359             }
9360             this.on(eventName, fn);
9361             return this;
9362         },
9363
9364         /**
9365          * @private
9366          */
9367       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9368
9369         /**
9370          * Sizes this element to its parent element's dimensions performing
9371          * neccessary box adjustments.
9372          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9373          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9374          * @return {Roo.Element} this
9375          */
9376         fitToParent : function(monitorResize, targetParent) {
9377           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9378           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9379           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9380             return;
9381           }
9382           var p = Roo.get(targetParent || this.dom.parentNode);
9383           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9384           if (monitorResize === true) {
9385             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9386             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9387           }
9388           return this;
9389         },
9390
9391         /**
9392          * Gets the next sibling, skipping text nodes
9393          * @return {HTMLElement} The next sibling or null
9394          */
9395         getNextSibling : function(){
9396             var n = this.dom.nextSibling;
9397             while(n && n.nodeType != 1){
9398                 n = n.nextSibling;
9399             }
9400             return n;
9401         },
9402
9403         /**
9404          * Gets the previous sibling, skipping text nodes
9405          * @return {HTMLElement} The previous sibling or null
9406          */
9407         getPrevSibling : function(){
9408             var n = this.dom.previousSibling;
9409             while(n && n.nodeType != 1){
9410                 n = n.previousSibling;
9411             }
9412             return n;
9413         },
9414
9415
9416         /**
9417          * Appends the passed element(s) to this element
9418          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9419          * @return {Roo.Element} this
9420          */
9421         appendChild: function(el){
9422             el = Roo.get(el);
9423             el.appendTo(this);
9424             return this;
9425         },
9426
9427         /**
9428          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9429          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9430          * automatically generated with the specified attributes.
9431          * @param {HTMLElement} insertBefore (optional) a child element of this element
9432          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9433          * @return {Roo.Element} The new child element
9434          */
9435         createChild: function(config, insertBefore, returnDom){
9436             config = config || {tag:'div'};
9437             if(insertBefore){
9438                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9439             }
9440             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9441         },
9442
9443         /**
9444          * Appends this element to the passed element
9445          * @param {String/HTMLElement/Element} el The new parent element
9446          * @return {Roo.Element} this
9447          */
9448         appendTo: function(el){
9449             el = Roo.getDom(el);
9450             el.appendChild(this.dom);
9451             return this;
9452         },
9453
9454         /**
9455          * Inserts this element before the passed element in the DOM
9456          * @param {String/HTMLElement/Element} el The element to insert before
9457          * @return {Roo.Element} this
9458          */
9459         insertBefore: function(el){
9460             el = Roo.getDom(el);
9461             el.parentNode.insertBefore(this.dom, el);
9462             return this;
9463         },
9464
9465         /**
9466          * Inserts this element after the passed element in the DOM
9467          * @param {String/HTMLElement/Element} el The element to insert after
9468          * @return {Roo.Element} this
9469          */
9470         insertAfter: function(el){
9471             el = Roo.getDom(el);
9472             el.parentNode.insertBefore(this.dom, el.nextSibling);
9473             return this;
9474         },
9475
9476         /**
9477          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9478          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9479          * @return {Roo.Element} The new child
9480          */
9481         insertFirst: function(el, returnDom){
9482             el = el || {};
9483             if(typeof el == 'object' && !el.nodeType){ // dh config
9484                 return this.createChild(el, this.dom.firstChild, returnDom);
9485             }else{
9486                 el = Roo.getDom(el);
9487                 this.dom.insertBefore(el, this.dom.firstChild);
9488                 return !returnDom ? Roo.get(el) : el;
9489             }
9490         },
9491
9492         /**
9493          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9494          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9495          * @param {String} where (optional) 'before' or 'after' defaults to before
9496          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9497          * @return {Roo.Element} the inserted Element
9498          */
9499         insertSibling: function(el, where, returnDom){
9500             where = where ? where.toLowerCase() : 'before';
9501             el = el || {};
9502             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9503
9504             if(typeof el == 'object' && !el.nodeType){ // dh config
9505                 if(where == 'after' && !this.dom.nextSibling){
9506                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9507                 }else{
9508                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9509                 }
9510
9511             }else{
9512                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9513                             where == 'before' ? this.dom : this.dom.nextSibling);
9514                 if(!returnDom){
9515                     rt = Roo.get(rt);
9516                 }
9517             }
9518             return rt;
9519         },
9520
9521         /**
9522          * Creates and wraps this element with another element
9523          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9524          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9525          * @return {HTMLElement/Element} The newly created wrapper element
9526          */
9527         wrap: function(config, returnDom){
9528             if(!config){
9529                 config = {tag: "div"};
9530             }
9531             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9532             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9533             return newEl;
9534         },
9535
9536         /**
9537          * Replaces the passed element with this element
9538          * @param {String/HTMLElement/Element} el The element to replace
9539          * @return {Roo.Element} this
9540          */
9541         replace: function(el){
9542             el = Roo.get(el);
9543             this.insertBefore(el);
9544             el.remove();
9545             return this;
9546         },
9547
9548         /**
9549          * Inserts an html fragment into this element
9550          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9551          * @param {String} html The HTML fragment
9552          * @param {Boolean} returnEl True to return an Roo.Element
9553          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9554          */
9555         insertHtml : function(where, html, returnEl){
9556             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9557             return returnEl ? Roo.get(el) : el;
9558         },
9559
9560         /**
9561          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9562          * @param {Object} o The object with the attributes
9563          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9564          * @return {Roo.Element} this
9565          */
9566         set : function(o, useSet){
9567             var el = this.dom;
9568             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9569             for(var attr in o){
9570                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9571                 if(attr=="cls"){
9572                     el.className = o["cls"];
9573                 }else{
9574                     if(useSet) {
9575                         el.setAttribute(attr, o[attr]);
9576                     } else {
9577                         el[attr] = o[attr];
9578                     }
9579                 }
9580             }
9581             if(o.style){
9582                 Roo.DomHelper.applyStyles(el, o.style);
9583             }
9584             return this;
9585         },
9586
9587         /**
9588          * Convenience method for constructing a KeyMap
9589          * @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:
9590          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9591          * @param {Function} fn The function to call
9592          * @param {Object} scope (optional) The scope of the function
9593          * @return {Roo.KeyMap} The KeyMap created
9594          */
9595         addKeyListener : function(key, fn, scope){
9596             var config;
9597             if(typeof key != "object" || key instanceof Array){
9598                 config = {
9599                     key: key,
9600                     fn: fn,
9601                     scope: scope
9602                 };
9603             }else{
9604                 config = {
9605                     key : key.key,
9606                     shift : key.shift,
9607                     ctrl : key.ctrl,
9608                     alt : key.alt,
9609                     fn: fn,
9610                     scope: scope
9611                 };
9612             }
9613             return new Roo.KeyMap(this, config);
9614         },
9615
9616         /**
9617          * Creates a KeyMap for this element
9618          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9619          * @return {Roo.KeyMap} The KeyMap created
9620          */
9621         addKeyMap : function(config){
9622             return new Roo.KeyMap(this, config);
9623         },
9624
9625         /**
9626          * Returns true if this element is scrollable.
9627          * @return {Boolean}
9628          */
9629          isScrollable : function(){
9630             var dom = this.dom;
9631             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9632         },
9633
9634         /**
9635          * 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().
9636          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9637          * @param {Number} value The new scroll value
9638          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9639          * @return {Element} this
9640          */
9641
9642         scrollTo : function(side, value, animate){
9643             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9644             if(!animate || !A){
9645                 this.dom[prop] = value;
9646             }else{
9647                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9648                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9649             }
9650             return this;
9651         },
9652
9653         /**
9654          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9655          * within this element's scrollable range.
9656          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9657          * @param {Number} distance How far to scroll the element in pixels
9658          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9659          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9660          * was scrolled as far as it could go.
9661          */
9662          scroll : function(direction, distance, animate){
9663              if(!this.isScrollable()){
9664                  return;
9665              }
9666              var el = this.dom;
9667              var l = el.scrollLeft, t = el.scrollTop;
9668              var w = el.scrollWidth, h = el.scrollHeight;
9669              var cw = el.clientWidth, ch = el.clientHeight;
9670              direction = direction.toLowerCase();
9671              var scrolled = false;
9672              var a = this.preanim(arguments, 2);
9673              switch(direction){
9674                  case "l":
9675                  case "left":
9676                      if(w - l > cw){
9677                          var v = Math.min(l + distance, w-cw);
9678                          this.scrollTo("left", v, a);
9679                          scrolled = true;
9680                      }
9681                      break;
9682                 case "r":
9683                 case "right":
9684                      if(l > 0){
9685                          var v = Math.max(l - distance, 0);
9686                          this.scrollTo("left", v, a);
9687                          scrolled = true;
9688                      }
9689                      break;
9690                 case "t":
9691                 case "top":
9692                 case "up":
9693                      if(t > 0){
9694                          var v = Math.max(t - distance, 0);
9695                          this.scrollTo("top", v, a);
9696                          scrolled = true;
9697                      }
9698                      break;
9699                 case "b":
9700                 case "bottom":
9701                 case "down":
9702                      if(h - t > ch){
9703                          var v = Math.min(t + distance, h-ch);
9704                          this.scrollTo("top", v, a);
9705                          scrolled = true;
9706                      }
9707                      break;
9708              }
9709              return scrolled;
9710         },
9711
9712         /**
9713          * Translates the passed page coordinates into left/top css values for this element
9714          * @param {Number/Array} x The page x or an array containing [x, y]
9715          * @param {Number} y The page y
9716          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9717          */
9718         translatePoints : function(x, y){
9719             if(typeof x == 'object' || x instanceof Array){
9720                 y = x[1]; x = x[0];
9721             }
9722             var p = this.getStyle('position');
9723             var o = this.getXY();
9724
9725             var l = parseInt(this.getStyle('left'), 10);
9726             var t = parseInt(this.getStyle('top'), 10);
9727
9728             if(isNaN(l)){
9729                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9730             }
9731             if(isNaN(t)){
9732                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9733             }
9734
9735             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9736         },
9737
9738         /**
9739          * Returns the current scroll position of the element.
9740          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9741          */
9742         getScroll : function(){
9743             var d = this.dom, doc = document;
9744             if(d == doc || d == doc.body){
9745                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9746                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9747                 return {left: l, top: t};
9748             }else{
9749                 return {left: d.scrollLeft, top: d.scrollTop};
9750             }
9751         },
9752
9753         /**
9754          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9755          * are convert to standard 6 digit hex color.
9756          * @param {String} attr The css attribute
9757          * @param {String} defaultValue The default value to use when a valid color isn't found
9758          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9759          * YUI color anims.
9760          */
9761         getColor : function(attr, defaultValue, prefix){
9762             var v = this.getStyle(attr);
9763             if(!v || v == "transparent" || v == "inherit") {
9764                 return defaultValue;
9765             }
9766             var color = typeof prefix == "undefined" ? "#" : prefix;
9767             if(v.substr(0, 4) == "rgb("){
9768                 var rvs = v.slice(4, v.length -1).split(",");
9769                 for(var i = 0; i < 3; i++){
9770                     var h = parseInt(rvs[i]).toString(16);
9771                     if(h < 16){
9772                         h = "0" + h;
9773                     }
9774                     color += h;
9775                 }
9776             } else {
9777                 if(v.substr(0, 1) == "#"){
9778                     if(v.length == 4) {
9779                         for(var i = 1; i < 4; i++){
9780                             var c = v.charAt(i);
9781                             color +=  c + c;
9782                         }
9783                     }else if(v.length == 7){
9784                         color += v.substr(1);
9785                     }
9786                 }
9787             }
9788             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9789         },
9790
9791         /**
9792          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9793          * gradient background, rounded corners and a 4-way shadow.
9794          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9795          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9796          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9797          * @return {Roo.Element} this
9798          */
9799         boxWrap : function(cls){
9800             cls = cls || 'x-box';
9801             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9802             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9803             return el;
9804         },
9805
9806         /**
9807          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9808          * @param {String} namespace The namespace in which to look for the attribute
9809          * @param {String} name The attribute name
9810          * @return {String} The attribute value
9811          */
9812         getAttributeNS : Roo.isIE ? function(ns, name){
9813             var d = this.dom;
9814             var type = typeof d[ns+":"+name];
9815             if(type != 'undefined' && type != 'unknown'){
9816                 return d[ns+":"+name];
9817             }
9818             return d[name];
9819         } : function(ns, name){
9820             var d = this.dom;
9821             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9822         },
9823         
9824         
9825         /**
9826          * Sets or Returns the value the dom attribute value
9827          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9828          * @param {String} value (optional) The value to set the attribute to
9829          * @return {String} The attribute value
9830          */
9831         attr : function(name){
9832             if (arguments.length > 1) {
9833                 this.dom.setAttribute(name, arguments[1]);
9834                 return arguments[1];
9835             }
9836             if (typeof(name) == 'object') {
9837                 for(var i in name) {
9838                     this.attr(i, name[i]);
9839                 }
9840                 return name;
9841             }
9842             
9843             
9844             if (!this.dom.hasAttribute(name)) {
9845                 return undefined;
9846             }
9847             return this.dom.getAttribute(name);
9848         }
9849         
9850         
9851         
9852     };
9853
9854     var ep = El.prototype;
9855
9856     /**
9857      * Appends an event handler (Shorthand for addListener)
9858      * @param {String}   eventName     The type of event to append
9859      * @param {Function} fn        The method the event invokes
9860      * @param {Object} scope       (optional) The scope (this object) of the fn
9861      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9862      * @method
9863      */
9864     ep.on = ep.addListener;
9865         // backwards compat
9866     ep.mon = ep.addListener;
9867
9868     /**
9869      * Removes an event handler from this element (shorthand for removeListener)
9870      * @param {String} eventName the type of event to remove
9871      * @param {Function} fn the method the event invokes
9872      * @return {Roo.Element} this
9873      * @method
9874      */
9875     ep.un = ep.removeListener;
9876
9877     /**
9878      * true to automatically adjust width and height settings for box-model issues (default to true)
9879      */
9880     ep.autoBoxAdjust = true;
9881
9882     // private
9883     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9884
9885     // private
9886     El.addUnits = function(v, defaultUnit){
9887         if(v === "" || v == "auto"){
9888             return v;
9889         }
9890         if(v === undefined){
9891             return '';
9892         }
9893         if(typeof v == "number" || !El.unitPattern.test(v)){
9894             return v + (defaultUnit || 'px');
9895         }
9896         return v;
9897     };
9898
9899     // special markup used throughout Roo when box wrapping elements
9900     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>';
9901     /**
9902      * Visibility mode constant - Use visibility to hide element
9903      * @static
9904      * @type Number
9905      */
9906     El.VISIBILITY = 1;
9907     /**
9908      * Visibility mode constant - Use display to hide element
9909      * @static
9910      * @type Number
9911      */
9912     El.DISPLAY = 2;
9913
9914     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9915     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9916     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9917
9918
9919
9920     /**
9921      * @private
9922      */
9923     El.cache = {};
9924
9925     var docEl;
9926
9927     /**
9928      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9929      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9930      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9931      * @return {Element} The Element object
9932      * @static
9933      */
9934     El.get = function(el){
9935         var ex, elm, id;
9936         if(!el){ return null; }
9937         if(typeof el == "string"){ // element id
9938             if(!(elm = document.getElementById(el))){
9939                 return null;
9940             }
9941             if(ex = El.cache[el]){
9942                 ex.dom = elm;
9943             }else{
9944                 ex = El.cache[el] = new El(elm);
9945             }
9946             return ex;
9947         }else if(el.tagName){ // dom element
9948             if(!(id = el.id)){
9949                 id = Roo.id(el);
9950             }
9951             if(ex = El.cache[id]){
9952                 ex.dom = el;
9953             }else{
9954                 ex = El.cache[id] = new El(el);
9955             }
9956             return ex;
9957         }else if(el instanceof El){
9958             if(el != docEl){
9959                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9960                                                               // catch case where it hasn't been appended
9961                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9962             }
9963             return el;
9964         }else if(el.isComposite){
9965             return el;
9966         }else if(el instanceof Array){
9967             return El.select(el);
9968         }else if(el == document){
9969             // create a bogus element object representing the document object
9970             if(!docEl){
9971                 var f = function(){};
9972                 f.prototype = El.prototype;
9973                 docEl = new f();
9974                 docEl.dom = document;
9975             }
9976             return docEl;
9977         }
9978         return null;
9979     };
9980
9981     // private
9982     El.uncache = function(el){
9983         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9984             if(a[i]){
9985                 delete El.cache[a[i].id || a[i]];
9986             }
9987         }
9988     };
9989
9990     // private
9991     // Garbage collection - uncache elements/purge listeners on orphaned elements
9992     // so we don't hold a reference and cause the browser to retain them
9993     El.garbageCollect = function(){
9994         if(!Roo.enableGarbageCollector){
9995             clearInterval(El.collectorThread);
9996             return;
9997         }
9998         for(var eid in El.cache){
9999             var el = El.cache[eid], d = el.dom;
10000             // -------------------------------------------------------
10001             // Determining what is garbage:
10002             // -------------------------------------------------------
10003             // !d
10004             // dom node is null, definitely garbage
10005             // -------------------------------------------------------
10006             // !d.parentNode
10007             // no parentNode == direct orphan, definitely garbage
10008             // -------------------------------------------------------
10009             // !d.offsetParent && !document.getElementById(eid)
10010             // display none elements have no offsetParent so we will
10011             // also try to look it up by it's id. However, check
10012             // offsetParent first so we don't do unneeded lookups.
10013             // This enables collection of elements that are not orphans
10014             // directly, but somewhere up the line they have an orphan
10015             // parent.
10016             // -------------------------------------------------------
10017             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10018                 delete El.cache[eid];
10019                 if(d && Roo.enableListenerCollection){
10020                     E.purgeElement(d);
10021                 }
10022             }
10023         }
10024     }
10025     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10026
10027
10028     // dom is optional
10029     El.Flyweight = function(dom){
10030         this.dom = dom;
10031     };
10032     El.Flyweight.prototype = El.prototype;
10033
10034     El._flyweights = {};
10035     /**
10036      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10037      * the dom node can be overwritten by other code.
10038      * @param {String/HTMLElement} el The dom node or id
10039      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10040      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10041      * @static
10042      * @return {Element} The shared Element object
10043      */
10044     El.fly = function(el, named){
10045         named = named || '_global';
10046         el = Roo.getDom(el);
10047         if(!el){
10048             return null;
10049         }
10050         if(!El._flyweights[named]){
10051             El._flyweights[named] = new El.Flyweight();
10052         }
10053         El._flyweights[named].dom = el;
10054         return El._flyweights[named];
10055     };
10056
10057     /**
10058      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10059      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10060      * Shorthand of {@link Roo.Element#get}
10061      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10062      * @return {Element} The Element object
10063      * @member Roo
10064      * @method get
10065      */
10066     Roo.get = El.get;
10067     /**
10068      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10069      * the dom node can be overwritten by other code.
10070      * Shorthand of {@link Roo.Element#fly}
10071      * @param {String/HTMLElement} el The dom node or id
10072      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10073      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10074      * @static
10075      * @return {Element} The shared Element object
10076      * @member Roo
10077      * @method fly
10078      */
10079     Roo.fly = El.fly;
10080
10081     // speedy lookup for elements never to box adjust
10082     var noBoxAdjust = Roo.isStrict ? {
10083         select:1
10084     } : {
10085         input:1, select:1, textarea:1
10086     };
10087     if(Roo.isIE || Roo.isGecko){
10088         noBoxAdjust['button'] = 1;
10089     }
10090
10091
10092     Roo.EventManager.on(window, 'unload', function(){
10093         delete El.cache;
10094         delete El._flyweights;
10095     });
10096 })();
10097
10098
10099
10100
10101 if(Roo.DomQuery){
10102     Roo.Element.selectorFunction = Roo.DomQuery.select;
10103 }
10104
10105 Roo.Element.select = function(selector, unique, root){
10106     var els;
10107     if(typeof selector == "string"){
10108         els = Roo.Element.selectorFunction(selector, root);
10109     }else if(selector.length !== undefined){
10110         els = selector;
10111     }else{
10112         throw "Invalid selector";
10113     }
10114     if(unique === true){
10115         return new Roo.CompositeElement(els);
10116     }else{
10117         return new Roo.CompositeElementLite(els);
10118     }
10119 };
10120 /**
10121  * Selects elements based on the passed CSS selector to enable working on them as 1.
10122  * @param {String/Array} selector The CSS selector or an array of elements
10123  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10124  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10125  * @return {CompositeElementLite/CompositeElement}
10126  * @member Roo
10127  * @method select
10128  */
10129 Roo.select = Roo.Element.select;
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141
10142
10143
10144 /*
10145  * Based on:
10146  * Ext JS Library 1.1.1
10147  * Copyright(c) 2006-2007, Ext JS, LLC.
10148  *
10149  * Originally Released Under LGPL - original licence link has changed is not relivant.
10150  *
10151  * Fork - LGPL
10152  * <script type="text/javascript">
10153  */
10154
10155
10156
10157 //Notifies Element that fx methods are available
10158 Roo.enableFx = true;
10159
10160 /**
10161  * @class Roo.Fx
10162  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10163  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10164  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10165  * Element effects to work.</p><br/>
10166  *
10167  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10168  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10169  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10170  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10171  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10172  * expected results and should be done with care.</p><br/>
10173  *
10174  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10175  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10176 <pre>
10177 Value  Description
10178 -----  -----------------------------
10179 tl     The top left corner
10180 t      The center of the top edge
10181 tr     The top right corner
10182 l      The center of the left edge
10183 r      The center of the right edge
10184 bl     The bottom left corner
10185 b      The center of the bottom edge
10186 br     The bottom right corner
10187 </pre>
10188  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10189  * below are common options that can be passed to any Fx method.</b>
10190  * @cfg {Function} callback A function called when the effect is finished
10191  * @cfg {Object} scope The scope of the effect function
10192  * @cfg {String} easing A valid Easing value for the effect
10193  * @cfg {String} afterCls A css class to apply after the effect
10194  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10195  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10196  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10197  * effects that end with the element being visually hidden, ignored otherwise)
10198  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10199  * a function which returns such a specification that will be applied to the Element after the effect finishes
10200  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10201  * @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
10202  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10203  */
10204 Roo.Fx = {
10205         /**
10206          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10207          * origin for the slide effect.  This function automatically handles wrapping the element with
10208          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10209          * Usage:
10210          *<pre><code>
10211 // default: slide the element in from the top
10212 el.slideIn();
10213
10214 // custom: slide the element in from the right with a 2-second duration
10215 el.slideIn('r', { duration: 2 });
10216
10217 // common config options shown with default values
10218 el.slideIn('t', {
10219     easing: 'easeOut',
10220     duration: .5
10221 });
10222 </code></pre>
10223          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10224          * @param {Object} options (optional) Object literal with any of the Fx config options
10225          * @return {Roo.Element} The Element
10226          */
10227     slideIn : function(anchor, o){
10228         var el = this.getFxEl();
10229         o = o || {};
10230
10231         el.queueFx(o, function(){
10232
10233             anchor = anchor || "t";
10234
10235             // fix display to visibility
10236             this.fixDisplay();
10237
10238             // restore values after effect
10239             var r = this.getFxRestore();
10240             var b = this.getBox();
10241             // fixed size for slide
10242             this.setSize(b);
10243
10244             // wrap if needed
10245             var wrap = this.fxWrap(r.pos, o, "hidden");
10246
10247             var st = this.dom.style;
10248             st.visibility = "visible";
10249             st.position = "absolute";
10250
10251             // clear out temp styles after slide and unwrap
10252             var after = function(){
10253                 el.fxUnwrap(wrap, r.pos, o);
10254                 st.width = r.width;
10255                 st.height = r.height;
10256                 el.afterFx(o);
10257             };
10258             // time to calc the positions
10259             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10260
10261             switch(anchor.toLowerCase()){
10262                 case "t":
10263                     wrap.setSize(b.width, 0);
10264                     st.left = st.bottom = "0";
10265                     a = {height: bh};
10266                 break;
10267                 case "l":
10268                     wrap.setSize(0, b.height);
10269                     st.right = st.top = "0";
10270                     a = {width: bw};
10271                 break;
10272                 case "r":
10273                     wrap.setSize(0, b.height);
10274                     wrap.setX(b.right);
10275                     st.left = st.top = "0";
10276                     a = {width: bw, points: pt};
10277                 break;
10278                 case "b":
10279                     wrap.setSize(b.width, 0);
10280                     wrap.setY(b.bottom);
10281                     st.left = st.top = "0";
10282                     a = {height: bh, points: pt};
10283                 break;
10284                 case "tl":
10285                     wrap.setSize(0, 0);
10286                     st.right = st.bottom = "0";
10287                     a = {width: bw, height: bh};
10288                 break;
10289                 case "bl":
10290                     wrap.setSize(0, 0);
10291                     wrap.setY(b.y+b.height);
10292                     st.right = st.top = "0";
10293                     a = {width: bw, height: bh, points: pt};
10294                 break;
10295                 case "br":
10296                     wrap.setSize(0, 0);
10297                     wrap.setXY([b.right, b.bottom]);
10298                     st.left = st.top = "0";
10299                     a = {width: bw, height: bh, points: pt};
10300                 break;
10301                 case "tr":
10302                     wrap.setSize(0, 0);
10303                     wrap.setX(b.x+b.width);
10304                     st.left = st.bottom = "0";
10305                     a = {width: bw, height: bh, points: pt};
10306                 break;
10307             }
10308             this.dom.style.visibility = "visible";
10309             wrap.show();
10310
10311             arguments.callee.anim = wrap.fxanim(a,
10312                 o,
10313                 'motion',
10314                 .5,
10315                 'easeOut', after);
10316         });
10317         return this;
10318     },
10319     
10320         /**
10321          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10322          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10323          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10324          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10325          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10326          * Usage:
10327          *<pre><code>
10328 // default: slide the element out to the top
10329 el.slideOut();
10330
10331 // custom: slide the element out to the right with a 2-second duration
10332 el.slideOut('r', { duration: 2 });
10333
10334 // common config options shown with default values
10335 el.slideOut('t', {
10336     easing: 'easeOut',
10337     duration: .5,
10338     remove: false,
10339     useDisplay: false
10340 });
10341 </code></pre>
10342          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10343          * @param {Object} options (optional) Object literal with any of the Fx config options
10344          * @return {Roo.Element} The Element
10345          */
10346     slideOut : function(anchor, o){
10347         var el = this.getFxEl();
10348         o = o || {};
10349
10350         el.queueFx(o, function(){
10351
10352             anchor = anchor || "t";
10353
10354             // restore values after effect
10355             var r = this.getFxRestore();
10356             
10357             var b = this.getBox();
10358             // fixed size for slide
10359             this.setSize(b);
10360
10361             // wrap if needed
10362             var wrap = this.fxWrap(r.pos, o, "visible");
10363
10364             var st = this.dom.style;
10365             st.visibility = "visible";
10366             st.position = "absolute";
10367
10368             wrap.setSize(b);
10369
10370             var after = function(){
10371                 if(o.useDisplay){
10372                     el.setDisplayed(false);
10373                 }else{
10374                     el.hide();
10375                 }
10376
10377                 el.fxUnwrap(wrap, r.pos, o);
10378
10379                 st.width = r.width;
10380                 st.height = r.height;
10381
10382                 el.afterFx(o);
10383             };
10384
10385             var a, zero = {to: 0};
10386             switch(anchor.toLowerCase()){
10387                 case "t":
10388                     st.left = st.bottom = "0";
10389                     a = {height: zero};
10390                 break;
10391                 case "l":
10392                     st.right = st.top = "0";
10393                     a = {width: zero};
10394                 break;
10395                 case "r":
10396                     st.left = st.top = "0";
10397                     a = {width: zero, points: {to:[b.right, b.y]}};
10398                 break;
10399                 case "b":
10400                     st.left = st.top = "0";
10401                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10402                 break;
10403                 case "tl":
10404                     st.right = st.bottom = "0";
10405                     a = {width: zero, height: zero};
10406                 break;
10407                 case "bl":
10408                     st.right = st.top = "0";
10409                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10410                 break;
10411                 case "br":
10412                     st.left = st.top = "0";
10413                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10414                 break;
10415                 case "tr":
10416                     st.left = st.bottom = "0";
10417                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10418                 break;
10419             }
10420
10421             arguments.callee.anim = wrap.fxanim(a,
10422                 o,
10423                 'motion',
10424                 .5,
10425                 "easeOut", after);
10426         });
10427         return this;
10428     },
10429
10430         /**
10431          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10432          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10433          * The element must be removed from the DOM using the 'remove' config option if desired.
10434          * Usage:
10435          *<pre><code>
10436 // default
10437 el.puff();
10438
10439 // common config options shown with default values
10440 el.puff({
10441     easing: 'easeOut',
10442     duration: .5,
10443     remove: false,
10444     useDisplay: false
10445 });
10446 </code></pre>
10447          * @param {Object} options (optional) Object literal with any of the Fx config options
10448          * @return {Roo.Element} The Element
10449          */
10450     puff : function(o){
10451         var el = this.getFxEl();
10452         o = o || {};
10453
10454         el.queueFx(o, function(){
10455             this.clearOpacity();
10456             this.show();
10457
10458             // restore values after effect
10459             var r = this.getFxRestore();
10460             var st = this.dom.style;
10461
10462             var after = function(){
10463                 if(o.useDisplay){
10464                     el.setDisplayed(false);
10465                 }else{
10466                     el.hide();
10467                 }
10468
10469                 el.clearOpacity();
10470
10471                 el.setPositioning(r.pos);
10472                 st.width = r.width;
10473                 st.height = r.height;
10474                 st.fontSize = '';
10475                 el.afterFx(o);
10476             };
10477
10478             var width = this.getWidth();
10479             var height = this.getHeight();
10480
10481             arguments.callee.anim = this.fxanim({
10482                     width : {to: this.adjustWidth(width * 2)},
10483                     height : {to: this.adjustHeight(height * 2)},
10484                     points : {by: [-(width * .5), -(height * .5)]},
10485                     opacity : {to: 0},
10486                     fontSize: {to:200, unit: "%"}
10487                 },
10488                 o,
10489                 'motion',
10490                 .5,
10491                 "easeOut", after);
10492         });
10493         return this;
10494     },
10495
10496         /**
10497          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10498          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10499          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10500          * Usage:
10501          *<pre><code>
10502 // default
10503 el.switchOff();
10504
10505 // all config options shown with default values
10506 el.switchOff({
10507     easing: 'easeIn',
10508     duration: .3,
10509     remove: false,
10510     useDisplay: false
10511 });
10512 </code></pre>
10513          * @param {Object} options (optional) Object literal with any of the Fx config options
10514          * @return {Roo.Element} The Element
10515          */
10516     switchOff : function(o){
10517         var el = this.getFxEl();
10518         o = o || {};
10519
10520         el.queueFx(o, function(){
10521             this.clearOpacity();
10522             this.clip();
10523
10524             // restore values after effect
10525             var r = this.getFxRestore();
10526             var st = this.dom.style;
10527
10528             var after = function(){
10529                 if(o.useDisplay){
10530                     el.setDisplayed(false);
10531                 }else{
10532                     el.hide();
10533                 }
10534
10535                 el.clearOpacity();
10536                 el.setPositioning(r.pos);
10537                 st.width = r.width;
10538                 st.height = r.height;
10539
10540                 el.afterFx(o);
10541             };
10542
10543             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10544                 this.clearOpacity();
10545                 (function(){
10546                     this.fxanim({
10547                         height:{to:1},
10548                         points:{by:[0, this.getHeight() * .5]}
10549                     }, o, 'motion', 0.3, 'easeIn', after);
10550                 }).defer(100, this);
10551             });
10552         });
10553         return this;
10554     },
10555
10556     /**
10557      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10558      * changed using the "attr" config option) and then fading back to the original color. If no original
10559      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10560      * Usage:
10561 <pre><code>
10562 // default: highlight background to yellow
10563 el.highlight();
10564
10565 // custom: highlight foreground text to blue for 2 seconds
10566 el.highlight("0000ff", { attr: 'color', duration: 2 });
10567
10568 // common config options shown with default values
10569 el.highlight("ffff9c", {
10570     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10571     endColor: (current color) or "ffffff",
10572     easing: 'easeIn',
10573     duration: 1
10574 });
10575 </code></pre>
10576      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10577      * @param {Object} options (optional) Object literal with any of the Fx config options
10578      * @return {Roo.Element} The Element
10579      */ 
10580     highlight : function(color, o){
10581         var el = this.getFxEl();
10582         o = o || {};
10583
10584         el.queueFx(o, function(){
10585             color = color || "ffff9c";
10586             attr = o.attr || "backgroundColor";
10587
10588             this.clearOpacity();
10589             this.show();
10590
10591             var origColor = this.getColor(attr);
10592             var restoreColor = this.dom.style[attr];
10593             endColor = (o.endColor || origColor) || "ffffff";
10594
10595             var after = function(){
10596                 el.dom.style[attr] = restoreColor;
10597                 el.afterFx(o);
10598             };
10599
10600             var a = {};
10601             a[attr] = {from: color, to: endColor};
10602             arguments.callee.anim = this.fxanim(a,
10603                 o,
10604                 'color',
10605                 1,
10606                 'easeIn', after);
10607         });
10608         return this;
10609     },
10610
10611    /**
10612     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10613     * Usage:
10614 <pre><code>
10615 // default: a single light blue ripple
10616 el.frame();
10617
10618 // custom: 3 red ripples lasting 3 seconds total
10619 el.frame("ff0000", 3, { duration: 3 });
10620
10621 // common config options shown with default values
10622 el.frame("C3DAF9", 1, {
10623     duration: 1 //duration of entire animation (not each individual ripple)
10624     // Note: Easing is not configurable and will be ignored if included
10625 });
10626 </code></pre>
10627     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10628     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10629     * @param {Object} options (optional) Object literal with any of the Fx config options
10630     * @return {Roo.Element} The Element
10631     */
10632     frame : function(color, count, o){
10633         var el = this.getFxEl();
10634         o = o || {};
10635
10636         el.queueFx(o, function(){
10637             color = color || "#C3DAF9";
10638             if(color.length == 6){
10639                 color = "#" + color;
10640             }
10641             count = count || 1;
10642             duration = o.duration || 1;
10643             this.show();
10644
10645             var b = this.getBox();
10646             var animFn = function(){
10647                 var proxy = this.createProxy({
10648
10649                      style:{
10650                         visbility:"hidden",
10651                         position:"absolute",
10652                         "z-index":"35000", // yee haw
10653                         border:"0px solid " + color
10654                      }
10655                   });
10656                 var scale = Roo.isBorderBox ? 2 : 1;
10657                 proxy.animate({
10658                     top:{from:b.y, to:b.y - 20},
10659                     left:{from:b.x, to:b.x - 20},
10660                     borderWidth:{from:0, to:10},
10661                     opacity:{from:1, to:0},
10662                     height:{from:b.height, to:(b.height + (20*scale))},
10663                     width:{from:b.width, to:(b.width + (20*scale))}
10664                 }, duration, function(){
10665                     proxy.remove();
10666                 });
10667                 if(--count > 0){
10668                      animFn.defer((duration/2)*1000, this);
10669                 }else{
10670                     el.afterFx(o);
10671                 }
10672             };
10673             animFn.call(this);
10674         });
10675         return this;
10676     },
10677
10678    /**
10679     * Creates a pause before any subsequent queued effects begin.  If there are
10680     * no effects queued after the pause it will have no effect.
10681     * Usage:
10682 <pre><code>
10683 el.pause(1);
10684 </code></pre>
10685     * @param {Number} seconds The length of time to pause (in seconds)
10686     * @return {Roo.Element} The Element
10687     */
10688     pause : function(seconds){
10689         var el = this.getFxEl();
10690         var o = {};
10691
10692         el.queueFx(o, function(){
10693             setTimeout(function(){
10694                 el.afterFx(o);
10695             }, seconds * 1000);
10696         });
10697         return this;
10698     },
10699
10700    /**
10701     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10702     * using the "endOpacity" config option.
10703     * Usage:
10704 <pre><code>
10705 // default: fade in from opacity 0 to 100%
10706 el.fadeIn();
10707
10708 // custom: fade in from opacity 0 to 75% over 2 seconds
10709 el.fadeIn({ endOpacity: .75, duration: 2});
10710
10711 // common config options shown with default values
10712 el.fadeIn({
10713     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10714     easing: 'easeOut',
10715     duration: .5
10716 });
10717 </code></pre>
10718     * @param {Object} options (optional) Object literal with any of the Fx config options
10719     * @return {Roo.Element} The Element
10720     */
10721     fadeIn : function(o){
10722         var el = this.getFxEl();
10723         o = o || {};
10724         el.queueFx(o, function(){
10725             this.setOpacity(0);
10726             this.fixDisplay();
10727             this.dom.style.visibility = 'visible';
10728             var to = o.endOpacity || 1;
10729             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10730                 o, null, .5, "easeOut", function(){
10731                 if(to == 1){
10732                     this.clearOpacity();
10733                 }
10734                 el.afterFx(o);
10735             });
10736         });
10737         return this;
10738     },
10739
10740    /**
10741     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10742     * using the "endOpacity" config option.
10743     * Usage:
10744 <pre><code>
10745 // default: fade out from the element's current opacity to 0
10746 el.fadeOut();
10747
10748 // custom: fade out from the element's current opacity to 25% over 2 seconds
10749 el.fadeOut({ endOpacity: .25, duration: 2});
10750
10751 // common config options shown with default values
10752 el.fadeOut({
10753     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10754     easing: 'easeOut',
10755     duration: .5
10756     remove: false,
10757     useDisplay: false
10758 });
10759 </code></pre>
10760     * @param {Object} options (optional) Object literal with any of the Fx config options
10761     * @return {Roo.Element} The Element
10762     */
10763     fadeOut : function(o){
10764         var el = this.getFxEl();
10765         o = o || {};
10766         el.queueFx(o, function(){
10767             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10768                 o, null, .5, "easeOut", function(){
10769                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10770                      this.dom.style.display = "none";
10771                 }else{
10772                      this.dom.style.visibility = "hidden";
10773                 }
10774                 this.clearOpacity();
10775                 el.afterFx(o);
10776             });
10777         });
10778         return this;
10779     },
10780
10781    /**
10782     * Animates the transition of an element's dimensions from a starting height/width
10783     * to an ending height/width.
10784     * Usage:
10785 <pre><code>
10786 // change height and width to 100x100 pixels
10787 el.scale(100, 100);
10788
10789 // common config options shown with default values.  The height and width will default to
10790 // the element's existing values if passed as null.
10791 el.scale(
10792     [element's width],
10793     [element's height], {
10794     easing: 'easeOut',
10795     duration: .35
10796 });
10797 </code></pre>
10798     * @param {Number} width  The new width (pass undefined to keep the original width)
10799     * @param {Number} height  The new height (pass undefined to keep the original height)
10800     * @param {Object} options (optional) Object literal with any of the Fx config options
10801     * @return {Roo.Element} The Element
10802     */
10803     scale : function(w, h, o){
10804         this.shift(Roo.apply({}, o, {
10805             width: w,
10806             height: h
10807         }));
10808         return this;
10809     },
10810
10811    /**
10812     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10813     * Any of these properties not specified in the config object will not be changed.  This effect 
10814     * requires that at least one new dimension, position or opacity setting must be passed in on
10815     * the config object in order for the function to have any effect.
10816     * Usage:
10817 <pre><code>
10818 // slide the element horizontally to x position 200 while changing the height and opacity
10819 el.shift({ x: 200, height: 50, opacity: .8 });
10820
10821 // common config options shown with default values.
10822 el.shift({
10823     width: [element's width],
10824     height: [element's height],
10825     x: [element's x position],
10826     y: [element's y position],
10827     opacity: [element's opacity],
10828     easing: 'easeOut',
10829     duration: .35
10830 });
10831 </code></pre>
10832     * @param {Object} options  Object literal with any of the Fx config options
10833     * @return {Roo.Element} The Element
10834     */
10835     shift : function(o){
10836         var el = this.getFxEl();
10837         o = o || {};
10838         el.queueFx(o, function(){
10839             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10840             if(w !== undefined){
10841                 a.width = {to: this.adjustWidth(w)};
10842             }
10843             if(h !== undefined){
10844                 a.height = {to: this.adjustHeight(h)};
10845             }
10846             if(x !== undefined || y !== undefined){
10847                 a.points = {to: [
10848                     x !== undefined ? x : this.getX(),
10849                     y !== undefined ? y : this.getY()
10850                 ]};
10851             }
10852             if(op !== undefined){
10853                 a.opacity = {to: op};
10854             }
10855             if(o.xy !== undefined){
10856                 a.points = {to: o.xy};
10857             }
10858             arguments.callee.anim = this.fxanim(a,
10859                 o, 'motion', .35, "easeOut", function(){
10860                 el.afterFx(o);
10861             });
10862         });
10863         return this;
10864     },
10865
10866         /**
10867          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10868          * ending point of the effect.
10869          * Usage:
10870          *<pre><code>
10871 // default: slide the element downward while fading out
10872 el.ghost();
10873
10874 // custom: slide the element out to the right with a 2-second duration
10875 el.ghost('r', { duration: 2 });
10876
10877 // common config options shown with default values
10878 el.ghost('b', {
10879     easing: 'easeOut',
10880     duration: .5
10881     remove: false,
10882     useDisplay: false
10883 });
10884 </code></pre>
10885          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10886          * @param {Object} options (optional) Object literal with any of the Fx config options
10887          * @return {Roo.Element} The Element
10888          */
10889     ghost : function(anchor, o){
10890         var el = this.getFxEl();
10891         o = o || {};
10892
10893         el.queueFx(o, function(){
10894             anchor = anchor || "b";
10895
10896             // restore values after effect
10897             var r = this.getFxRestore();
10898             var w = this.getWidth(),
10899                 h = this.getHeight();
10900
10901             var st = this.dom.style;
10902
10903             var after = function(){
10904                 if(o.useDisplay){
10905                     el.setDisplayed(false);
10906                 }else{
10907                     el.hide();
10908                 }
10909
10910                 el.clearOpacity();
10911                 el.setPositioning(r.pos);
10912                 st.width = r.width;
10913                 st.height = r.height;
10914
10915                 el.afterFx(o);
10916             };
10917
10918             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10919             switch(anchor.toLowerCase()){
10920                 case "t":
10921                     pt.by = [0, -h];
10922                 break;
10923                 case "l":
10924                     pt.by = [-w, 0];
10925                 break;
10926                 case "r":
10927                     pt.by = [w, 0];
10928                 break;
10929                 case "b":
10930                     pt.by = [0, h];
10931                 break;
10932                 case "tl":
10933                     pt.by = [-w, -h];
10934                 break;
10935                 case "bl":
10936                     pt.by = [-w, h];
10937                 break;
10938                 case "br":
10939                     pt.by = [w, h];
10940                 break;
10941                 case "tr":
10942                     pt.by = [w, -h];
10943                 break;
10944             }
10945
10946             arguments.callee.anim = this.fxanim(a,
10947                 o,
10948                 'motion',
10949                 .5,
10950                 "easeOut", after);
10951         });
10952         return this;
10953     },
10954
10955         /**
10956          * Ensures that all effects queued after syncFx is called on the element are
10957          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10958          * @return {Roo.Element} The Element
10959          */
10960     syncFx : function(){
10961         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10962             block : false,
10963             concurrent : true,
10964             stopFx : false
10965         });
10966         return this;
10967     },
10968
10969         /**
10970          * Ensures that all effects queued after sequenceFx is called on the element are
10971          * run in sequence.  This is the opposite of {@link #syncFx}.
10972          * @return {Roo.Element} The Element
10973          */
10974     sequenceFx : function(){
10975         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10976             block : false,
10977             concurrent : false,
10978             stopFx : false
10979         });
10980         return this;
10981     },
10982
10983         /* @private */
10984     nextFx : function(){
10985         var ef = this.fxQueue[0];
10986         if(ef){
10987             ef.call(this);
10988         }
10989     },
10990
10991         /**
10992          * Returns true if the element has any effects actively running or queued, else returns false.
10993          * @return {Boolean} True if element has active effects, else false
10994          */
10995     hasActiveFx : function(){
10996         return this.fxQueue && this.fxQueue[0];
10997     },
10998
10999         /**
11000          * Stops any running effects and clears the element's internal effects queue if it contains
11001          * any additional effects that haven't started yet.
11002          * @return {Roo.Element} The Element
11003          */
11004     stopFx : function(){
11005         if(this.hasActiveFx()){
11006             var cur = this.fxQueue[0];
11007             if(cur && cur.anim && cur.anim.isAnimated()){
11008                 this.fxQueue = [cur]; // clear out others
11009                 cur.anim.stop(true);
11010             }
11011         }
11012         return this;
11013     },
11014
11015         /* @private */
11016     beforeFx : function(o){
11017         if(this.hasActiveFx() && !o.concurrent){
11018            if(o.stopFx){
11019                this.stopFx();
11020                return true;
11021            }
11022            return false;
11023         }
11024         return true;
11025     },
11026
11027         /**
11028          * Returns true if the element is currently blocking so that no other effect can be queued
11029          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11030          * used to ensure that an effect initiated by a user action runs to completion prior to the
11031          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11032          * @return {Boolean} True if blocking, else false
11033          */
11034     hasFxBlock : function(){
11035         var q = this.fxQueue;
11036         return q && q[0] && q[0].block;
11037     },
11038
11039         /* @private */
11040     queueFx : function(o, fn){
11041         if(!this.fxQueue){
11042             this.fxQueue = [];
11043         }
11044         if(!this.hasFxBlock()){
11045             Roo.applyIf(o, this.fxDefaults);
11046             if(!o.concurrent){
11047                 var run = this.beforeFx(o);
11048                 fn.block = o.block;
11049                 this.fxQueue.push(fn);
11050                 if(run){
11051                     this.nextFx();
11052                 }
11053             }else{
11054                 fn.call(this);
11055             }
11056         }
11057         return this;
11058     },
11059
11060         /* @private */
11061     fxWrap : function(pos, o, vis){
11062         var wrap;
11063         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11064             var wrapXY;
11065             if(o.fixPosition){
11066                 wrapXY = this.getXY();
11067             }
11068             var div = document.createElement("div");
11069             div.style.visibility = vis;
11070             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11071             wrap.setPositioning(pos);
11072             if(wrap.getStyle("position") == "static"){
11073                 wrap.position("relative");
11074             }
11075             this.clearPositioning('auto');
11076             wrap.clip();
11077             wrap.dom.appendChild(this.dom);
11078             if(wrapXY){
11079                 wrap.setXY(wrapXY);
11080             }
11081         }
11082         return wrap;
11083     },
11084
11085         /* @private */
11086     fxUnwrap : function(wrap, pos, o){
11087         this.clearPositioning();
11088         this.setPositioning(pos);
11089         if(!o.wrap){
11090             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11091             wrap.remove();
11092         }
11093     },
11094
11095         /* @private */
11096     getFxRestore : function(){
11097         var st = this.dom.style;
11098         return {pos: this.getPositioning(), width: st.width, height : st.height};
11099     },
11100
11101         /* @private */
11102     afterFx : function(o){
11103         if(o.afterStyle){
11104             this.applyStyles(o.afterStyle);
11105         }
11106         if(o.afterCls){
11107             this.addClass(o.afterCls);
11108         }
11109         if(o.remove === true){
11110             this.remove();
11111         }
11112         Roo.callback(o.callback, o.scope, [this]);
11113         if(!o.concurrent){
11114             this.fxQueue.shift();
11115             this.nextFx();
11116         }
11117     },
11118
11119         /* @private */
11120     getFxEl : function(){ // support for composite element fx
11121         return Roo.get(this.dom);
11122     },
11123
11124         /* @private */
11125     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11126         animType = animType || 'run';
11127         opt = opt || {};
11128         var anim = Roo.lib.Anim[animType](
11129             this.dom, args,
11130             (opt.duration || defaultDur) || .35,
11131             (opt.easing || defaultEase) || 'easeOut',
11132             function(){
11133                 Roo.callback(cb, this);
11134             },
11135             this
11136         );
11137         opt.anim = anim;
11138         return anim;
11139     }
11140 };
11141
11142 // backwords compat
11143 Roo.Fx.resize = Roo.Fx.scale;
11144
11145 //When included, Roo.Fx is automatically applied to Element so that all basic
11146 //effects are available directly via the Element API
11147 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11148  * Based on:
11149  * Ext JS Library 1.1.1
11150  * Copyright(c) 2006-2007, Ext JS, LLC.
11151  *
11152  * Originally Released Under LGPL - original licence link has changed is not relivant.
11153  *
11154  * Fork - LGPL
11155  * <script type="text/javascript">
11156  */
11157
11158
11159 /**
11160  * @class Roo.CompositeElement
11161  * Standard composite class. Creates a Roo.Element for every element in the collection.
11162  * <br><br>
11163  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11164  * actions will be performed on all the elements in this collection.</b>
11165  * <br><br>
11166  * All methods return <i>this</i> and can be chained.
11167  <pre><code>
11168  var els = Roo.select("#some-el div.some-class", true);
11169  // or select directly from an existing element
11170  var el = Roo.get('some-el');
11171  el.select('div.some-class', true);
11172
11173  els.setWidth(100); // all elements become 100 width
11174  els.hide(true); // all elements fade out and hide
11175  // or
11176  els.setWidth(100).hide(true);
11177  </code></pre>
11178  */
11179 Roo.CompositeElement = function(els){
11180     this.elements = [];
11181     this.addElements(els);
11182 };
11183 Roo.CompositeElement.prototype = {
11184     isComposite: true,
11185     addElements : function(els){
11186         if(!els) {
11187             return this;
11188         }
11189         if(typeof els == "string"){
11190             els = Roo.Element.selectorFunction(els);
11191         }
11192         var yels = this.elements;
11193         var index = yels.length-1;
11194         for(var i = 0, len = els.length; i < len; i++) {
11195                 yels[++index] = Roo.get(els[i]);
11196         }
11197         return this;
11198     },
11199
11200     /**
11201     * Clears this composite and adds the elements returned by the passed selector.
11202     * @param {String/Array} els A string CSS selector, an array of elements or an element
11203     * @return {CompositeElement} this
11204     */
11205     fill : function(els){
11206         this.elements = [];
11207         this.add(els);
11208         return this;
11209     },
11210
11211     /**
11212     * Filters this composite to only elements that match the passed selector.
11213     * @param {String} selector A string CSS selector
11214     * @param {Boolean} inverse return inverse filter (not matches)
11215     * @return {CompositeElement} this
11216     */
11217     filter : function(selector, inverse){
11218         var els = [];
11219         inverse = inverse || false;
11220         this.each(function(el){
11221             var match = inverse ? !el.is(selector) : el.is(selector);
11222             if(match){
11223                 els[els.length] = el.dom;
11224             }
11225         });
11226         this.fill(els);
11227         return this;
11228     },
11229
11230     invoke : function(fn, args){
11231         var els = this.elements;
11232         for(var i = 0, len = els.length; i < len; i++) {
11233                 Roo.Element.prototype[fn].apply(els[i], args);
11234         }
11235         return this;
11236     },
11237     /**
11238     * Adds elements to this composite.
11239     * @param {String/Array} els A string CSS selector, an array of elements or an element
11240     * @return {CompositeElement} this
11241     */
11242     add : function(els){
11243         if(typeof els == "string"){
11244             this.addElements(Roo.Element.selectorFunction(els));
11245         }else if(els.length !== undefined){
11246             this.addElements(els);
11247         }else{
11248             this.addElements([els]);
11249         }
11250         return this;
11251     },
11252     /**
11253     * Calls the passed function passing (el, this, index) for each element in this composite.
11254     * @param {Function} fn The function to call
11255     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11256     * @return {CompositeElement} this
11257     */
11258     each : function(fn, scope){
11259         var els = this.elements;
11260         for(var i = 0, len = els.length; i < len; i++){
11261             if(fn.call(scope || els[i], els[i], this, i) === false) {
11262                 break;
11263             }
11264         }
11265         return this;
11266     },
11267
11268     /**
11269      * Returns the Element object at the specified index
11270      * @param {Number} index
11271      * @return {Roo.Element}
11272      */
11273     item : function(index){
11274         return this.elements[index] || null;
11275     },
11276
11277     /**
11278      * Returns the first Element
11279      * @return {Roo.Element}
11280      */
11281     first : function(){
11282         return this.item(0);
11283     },
11284
11285     /**
11286      * Returns the last Element
11287      * @return {Roo.Element}
11288      */
11289     last : function(){
11290         return this.item(this.elements.length-1);
11291     },
11292
11293     /**
11294      * Returns the number of elements in this composite
11295      * @return Number
11296      */
11297     getCount : function(){
11298         return this.elements.length;
11299     },
11300
11301     /**
11302      * Returns true if this composite contains the passed element
11303      * @return Boolean
11304      */
11305     contains : function(el){
11306         return this.indexOf(el) !== -1;
11307     },
11308
11309     /**
11310      * Returns true if this composite contains the passed element
11311      * @return Boolean
11312      */
11313     indexOf : function(el){
11314         return this.elements.indexOf(Roo.get(el));
11315     },
11316
11317
11318     /**
11319     * Removes the specified element(s).
11320     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11321     * or an array of any of those.
11322     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11323     * @return {CompositeElement} this
11324     */
11325     removeElement : function(el, removeDom){
11326         if(el instanceof Array){
11327             for(var i = 0, len = el.length; i < len; i++){
11328                 this.removeElement(el[i]);
11329             }
11330             return this;
11331         }
11332         var index = typeof el == 'number' ? el : this.indexOf(el);
11333         if(index !== -1){
11334             if(removeDom){
11335                 var d = this.elements[index];
11336                 if(d.dom){
11337                     d.remove();
11338                 }else{
11339                     d.parentNode.removeChild(d);
11340                 }
11341             }
11342             this.elements.splice(index, 1);
11343         }
11344         return this;
11345     },
11346
11347     /**
11348     * Replaces the specified element with the passed element.
11349     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11350     * to replace.
11351     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11352     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11353     * @return {CompositeElement} this
11354     */
11355     replaceElement : function(el, replacement, domReplace){
11356         var index = typeof el == 'number' ? el : this.indexOf(el);
11357         if(index !== -1){
11358             if(domReplace){
11359                 this.elements[index].replaceWith(replacement);
11360             }else{
11361                 this.elements.splice(index, 1, Roo.get(replacement))
11362             }
11363         }
11364         return this;
11365     },
11366
11367     /**
11368      * Removes all elements.
11369      */
11370     clear : function(){
11371         this.elements = [];
11372     }
11373 };
11374 (function(){
11375     Roo.CompositeElement.createCall = function(proto, fnName){
11376         if(!proto[fnName]){
11377             proto[fnName] = function(){
11378                 return this.invoke(fnName, arguments);
11379             };
11380         }
11381     };
11382     for(var fnName in Roo.Element.prototype){
11383         if(typeof Roo.Element.prototype[fnName] == "function"){
11384             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11385         }
11386     };
11387 })();
11388 /*
11389  * Based on:
11390  * Ext JS Library 1.1.1
11391  * Copyright(c) 2006-2007, Ext JS, LLC.
11392  *
11393  * Originally Released Under LGPL - original licence link has changed is not relivant.
11394  *
11395  * Fork - LGPL
11396  * <script type="text/javascript">
11397  */
11398
11399 /**
11400  * @class Roo.CompositeElementLite
11401  * @extends Roo.CompositeElement
11402  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11403  <pre><code>
11404  var els = Roo.select("#some-el div.some-class");
11405  // or select directly from an existing element
11406  var el = Roo.get('some-el');
11407  el.select('div.some-class');
11408
11409  els.setWidth(100); // all elements become 100 width
11410  els.hide(true); // all elements fade out and hide
11411  // or
11412  els.setWidth(100).hide(true);
11413  </code></pre><br><br>
11414  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11415  * actions will be performed on all the elements in this collection.</b>
11416  */
11417 Roo.CompositeElementLite = function(els){
11418     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11419     this.el = new Roo.Element.Flyweight();
11420 };
11421 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11422     addElements : function(els){
11423         if(els){
11424             if(els instanceof Array){
11425                 this.elements = this.elements.concat(els);
11426             }else{
11427                 var yels = this.elements;
11428                 var index = yels.length-1;
11429                 for(var i = 0, len = els.length; i < len; i++) {
11430                     yels[++index] = els[i];
11431                 }
11432             }
11433         }
11434         return this;
11435     },
11436     invoke : function(fn, args){
11437         var els = this.elements;
11438         var el = this.el;
11439         for(var i = 0, len = els.length; i < len; i++) {
11440             el.dom = els[i];
11441                 Roo.Element.prototype[fn].apply(el, args);
11442         }
11443         return this;
11444     },
11445     /**
11446      * Returns a flyweight Element of the dom element object at the specified index
11447      * @param {Number} index
11448      * @return {Roo.Element}
11449      */
11450     item : function(index){
11451         if(!this.elements[index]){
11452             return null;
11453         }
11454         this.el.dom = this.elements[index];
11455         return this.el;
11456     },
11457
11458     // fixes scope with flyweight
11459     addListener : function(eventName, handler, scope, opt){
11460         var els = this.elements;
11461         for(var i = 0, len = els.length; i < len; i++) {
11462             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11463         }
11464         return this;
11465     },
11466
11467     /**
11468     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11469     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11470     * a reference to the dom node, use el.dom.</b>
11471     * @param {Function} fn The function to call
11472     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11473     * @return {CompositeElement} this
11474     */
11475     each : function(fn, scope){
11476         var els = this.elements;
11477         var el = this.el;
11478         for(var i = 0, len = els.length; i < len; i++){
11479             el.dom = els[i];
11480                 if(fn.call(scope || el, el, this, i) === false){
11481                 break;
11482             }
11483         }
11484         return this;
11485     },
11486
11487     indexOf : function(el){
11488         return this.elements.indexOf(Roo.getDom(el));
11489     },
11490
11491     replaceElement : function(el, replacement, domReplace){
11492         var index = typeof el == 'number' ? el : this.indexOf(el);
11493         if(index !== -1){
11494             replacement = Roo.getDom(replacement);
11495             if(domReplace){
11496                 var d = this.elements[index];
11497                 d.parentNode.insertBefore(replacement, d);
11498                 d.parentNode.removeChild(d);
11499             }
11500             this.elements.splice(index, 1, replacement);
11501         }
11502         return this;
11503     }
11504 });
11505 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11506
11507 /*
11508  * Based on:
11509  * Ext JS Library 1.1.1
11510  * Copyright(c) 2006-2007, Ext JS, LLC.
11511  *
11512  * Originally Released Under LGPL - original licence link has changed is not relivant.
11513  *
11514  * Fork - LGPL
11515  * <script type="text/javascript">
11516  */
11517
11518  
11519
11520 /**
11521  * @class Roo.data.Connection
11522  * @extends Roo.util.Observable
11523  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11524  * either to a configured URL, or to a URL specified at request time. 
11525  * 
11526  * Requests made by this class are asynchronous, and will return immediately. No data from
11527  * the server will be available to the statement immediately following the {@link #request} call.
11528  * To process returned data, use a callback in the request options object, or an event listener.
11529  * 
11530  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11531  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11532  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11533  * property and, if present, the IFRAME's XML document as the responseXML property.
11534  * 
11535  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11536  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11537  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11538  * standard DOM methods.
11539  * @constructor
11540  * @param {Object} config a configuration object.
11541  */
11542 Roo.data.Connection = function(config){
11543     Roo.apply(this, config);
11544     this.addEvents({
11545         /**
11546          * @event beforerequest
11547          * Fires before a network request is made to retrieve a data object.
11548          * @param {Connection} conn This Connection object.
11549          * @param {Object} options The options config object passed to the {@link #request} method.
11550          */
11551         "beforerequest" : true,
11552         /**
11553          * @event requestcomplete
11554          * Fires if the request was successfully completed.
11555          * @param {Connection} conn This Connection object.
11556          * @param {Object} response The XHR object containing the response data.
11557          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11558          * @param {Object} options The options config object passed to the {@link #request} method.
11559          */
11560         "requestcomplete" : true,
11561         /**
11562          * @event requestexception
11563          * Fires if an error HTTP status was returned from the server.
11564          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11565          * @param {Connection} conn This Connection object.
11566          * @param {Object} response The XHR object containing the response data.
11567          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11568          * @param {Object} options The options config object passed to the {@link #request} method.
11569          */
11570         "requestexception" : true
11571     });
11572     Roo.data.Connection.superclass.constructor.call(this);
11573 };
11574
11575 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11576     /**
11577      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11578      */
11579     /**
11580      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11581      * extra parameters to each request made by this object. (defaults to undefined)
11582      */
11583     /**
11584      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11585      *  to each request made by this object. (defaults to undefined)
11586      */
11587     /**
11588      * @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)
11589      */
11590     /**
11591      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11592      */
11593     timeout : 30000,
11594     /**
11595      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11596      * @type Boolean
11597      */
11598     autoAbort:false,
11599
11600     /**
11601      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11602      * @type Boolean
11603      */
11604     disableCaching: true,
11605
11606     /**
11607      * Sends an HTTP request to a remote server.
11608      * @param {Object} options An object which may contain the following properties:<ul>
11609      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11610      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11611      * request, a url encoded string or a function to call to get either.</li>
11612      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11613      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11614      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11615      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11616      * <li>options {Object} The parameter to the request call.</li>
11617      * <li>success {Boolean} True if the request succeeded.</li>
11618      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11619      * </ul></li>
11620      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11621      * The callback is passed the following parameters:<ul>
11622      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11623      * <li>options {Object} The parameter to the request call.</li>
11624      * </ul></li>
11625      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11626      * The callback is passed the following parameters:<ul>
11627      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11628      * <li>options {Object} The parameter to the request call.</li>
11629      * </ul></li>
11630      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11631      * for the callback function. Defaults to the browser window.</li>
11632      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11633      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11634      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11635      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11636      * params for the post data. Any params will be appended to the URL.</li>
11637      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11638      * </ul>
11639      * @return {Number} transactionId
11640      */
11641     request : function(o){
11642         if(this.fireEvent("beforerequest", this, o) !== false){
11643             var p = o.params;
11644
11645             if(typeof p == "function"){
11646                 p = p.call(o.scope||window, o);
11647             }
11648             if(typeof p == "object"){
11649                 p = Roo.urlEncode(o.params);
11650             }
11651             if(this.extraParams){
11652                 var extras = Roo.urlEncode(this.extraParams);
11653                 p = p ? (p + '&' + extras) : extras;
11654             }
11655
11656             var url = o.url || this.url;
11657             if(typeof url == 'function'){
11658                 url = url.call(o.scope||window, o);
11659             }
11660
11661             if(o.form){
11662                 var form = Roo.getDom(o.form);
11663                 url = url || form.action;
11664
11665                 var enctype = form.getAttribute("enctype");
11666                 
11667                 if (o.formData) {
11668                     return this.doFormDataUpload(o, url);
11669                 }
11670                 
11671                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11672                     return this.doFormUpload(o, p, url);
11673                 }
11674                 var f = Roo.lib.Ajax.serializeForm(form);
11675                 p = p ? (p + '&' + f) : f;
11676             }
11677             
11678             if (!o.form && o.formData) {
11679                 o.formData = o.formData === true ? new FormData() : o.formData;
11680                 for (var k in o.params) {
11681                     o.formData.append(k,o.params[k]);
11682                 }
11683                     
11684                 return this.doFormDataUpload(o, url);
11685             }
11686             
11687
11688             var hs = o.headers;
11689             if(this.defaultHeaders){
11690                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11691                 if(!o.headers){
11692                     o.headers = hs;
11693                 }
11694             }
11695
11696             var cb = {
11697                 success: this.handleResponse,
11698                 failure: this.handleFailure,
11699                 scope: this,
11700                 argument: {options: o},
11701                 timeout : o.timeout || this.timeout
11702             };
11703
11704             var method = o.method||this.method||(p ? "POST" : "GET");
11705
11706             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11707                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11708             }
11709
11710             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11711                 if(o.autoAbort){
11712                     this.abort();
11713                 }
11714             }else if(this.autoAbort !== false){
11715                 this.abort();
11716             }
11717
11718             if((method == 'GET' && p) || o.xmlData){
11719                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11720                 p = '';
11721             }
11722             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11723             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11724             Roo.lib.Ajax.useDefaultHeader == true;
11725             return this.transId;
11726         }else{
11727             Roo.callback(o.callback, o.scope, [o, null, null]);
11728             return null;
11729         }
11730     },
11731
11732     /**
11733      * Determine whether this object has a request outstanding.
11734      * @param {Number} transactionId (Optional) defaults to the last transaction
11735      * @return {Boolean} True if there is an outstanding request.
11736      */
11737     isLoading : function(transId){
11738         if(transId){
11739             return Roo.lib.Ajax.isCallInProgress(transId);
11740         }else{
11741             return this.transId ? true : false;
11742         }
11743     },
11744
11745     /**
11746      * Aborts any outstanding request.
11747      * @param {Number} transactionId (Optional) defaults to the last transaction
11748      */
11749     abort : function(transId){
11750         if(transId || this.isLoading()){
11751             Roo.lib.Ajax.abort(transId || this.transId);
11752         }
11753     },
11754
11755     // private
11756     handleResponse : function(response){
11757         this.transId = false;
11758         var options = response.argument.options;
11759         response.argument = options ? options.argument : null;
11760         this.fireEvent("requestcomplete", this, response, options);
11761         Roo.callback(options.success, options.scope, [response, options]);
11762         Roo.callback(options.callback, options.scope, [options, true, response]);
11763     },
11764
11765     // private
11766     handleFailure : function(response, e){
11767         this.transId = false;
11768         var options = response.argument.options;
11769         response.argument = options ? options.argument : null;
11770         this.fireEvent("requestexception", this, response, options, e);
11771         Roo.callback(options.failure, options.scope, [response, options]);
11772         Roo.callback(options.callback, options.scope, [options, false, response]);
11773     },
11774
11775     // private
11776     doFormUpload : function(o, ps, url){
11777         var id = Roo.id();
11778         var frame = document.createElement('iframe');
11779         frame.id = id;
11780         frame.name = id;
11781         frame.className = 'x-hidden';
11782         if(Roo.isIE){
11783             frame.src = Roo.SSL_SECURE_URL;
11784         }
11785         document.body.appendChild(frame);
11786
11787         if(Roo.isIE){
11788            document.frames[id].name = id;
11789         }
11790
11791         var form = Roo.getDom(o.form);
11792         form.target = id;
11793         form.method = 'POST';
11794         form.enctype = form.encoding = 'multipart/form-data';
11795         if(url){
11796             form.action = url;
11797         }
11798
11799         var hiddens, hd;
11800         if(ps){ // add dynamic params
11801             hiddens = [];
11802             ps = Roo.urlDecode(ps, false);
11803             for(var k in ps){
11804                 if(ps.hasOwnProperty(k)){
11805                     hd = document.createElement('input');
11806                     hd.type = 'hidden';
11807                     hd.name = k;
11808                     hd.value = ps[k];
11809                     form.appendChild(hd);
11810                     hiddens.push(hd);
11811                 }
11812             }
11813         }
11814
11815         function cb(){
11816             var r = {  // bogus response object
11817                 responseText : '',
11818                 responseXML : null
11819             };
11820
11821             r.argument = o ? o.argument : null;
11822
11823             try { //
11824                 var doc;
11825                 if(Roo.isIE){
11826                     doc = frame.contentWindow.document;
11827                 }else {
11828                     doc = (frame.contentDocument || window.frames[id].document);
11829                 }
11830                 if(doc && doc.body){
11831                     r.responseText = doc.body.innerHTML;
11832                 }
11833                 if(doc && doc.XMLDocument){
11834                     r.responseXML = doc.XMLDocument;
11835                 }else {
11836                     r.responseXML = doc;
11837                 }
11838             }
11839             catch(e) {
11840                 // ignore
11841             }
11842
11843             Roo.EventManager.removeListener(frame, 'load', cb, this);
11844
11845             this.fireEvent("requestcomplete", this, r, o);
11846             Roo.callback(o.success, o.scope, [r, o]);
11847             Roo.callback(o.callback, o.scope, [o, true, r]);
11848
11849             setTimeout(function(){document.body.removeChild(frame);}, 100);
11850         }
11851
11852         Roo.EventManager.on(frame, 'load', cb, this);
11853         form.submit();
11854
11855         if(hiddens){ // remove dynamic params
11856             for(var i = 0, len = hiddens.length; i < len; i++){
11857                 form.removeChild(hiddens[i]);
11858             }
11859         }
11860     },
11861     // this is a 'formdata version???'
11862     
11863     
11864     doFormDataUpload : function(o,  url)
11865     {
11866         var formData;
11867         if (o.form) {
11868             var form =  Roo.getDom(o.form);
11869             form.enctype = form.encoding = 'multipart/form-data';
11870             formData = o.formData === true ? new FormData(form) : o.formData;
11871         } else {
11872             formData = o.formData === true ? new FormData() : o.formData;
11873         }
11874         
11875       
11876         var cb = {
11877             success: this.handleResponse,
11878             failure: this.handleFailure,
11879             scope: this,
11880             argument: {options: o},
11881             timeout : o.timeout || this.timeout
11882         };
11883  
11884         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11885             if(o.autoAbort){
11886                 this.abort();
11887             }
11888         }else if(this.autoAbort !== false){
11889             this.abort();
11890         }
11891
11892         //Roo.lib.Ajax.defaultPostHeader = null;
11893         Roo.lib.Ajax.useDefaultHeader = false;
11894         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11895         Roo.lib.Ajax.useDefaultHeader = true;
11896  
11897          
11898     }
11899     
11900 });
11901 /*
11902  * Based on:
11903  * Ext JS Library 1.1.1
11904  * Copyright(c) 2006-2007, Ext JS, LLC.
11905  *
11906  * Originally Released Under LGPL - original licence link has changed is not relivant.
11907  *
11908  * Fork - LGPL
11909  * <script type="text/javascript">
11910  */
11911  
11912 /**
11913  * Global Ajax request class.
11914  * 
11915  * @class Roo.Ajax
11916  * @extends Roo.data.Connection
11917  * @static
11918  * 
11919  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11920  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11921  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11922  * @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)
11923  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11924  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11925  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11926  */
11927 Roo.Ajax = new Roo.data.Connection({
11928     // fix up the docs
11929     /**
11930      * @scope Roo.Ajax
11931      * @type {Boolear} 
11932      */
11933     autoAbort : false,
11934
11935     /**
11936      * Serialize the passed form into a url encoded string
11937      * @scope Roo.Ajax
11938      * @param {String/HTMLElement} form
11939      * @return {String}
11940      */
11941     serializeForm : function(form){
11942         return Roo.lib.Ajax.serializeForm(form);
11943     }
11944 });/*
11945  * Based on:
11946  * Ext JS Library 1.1.1
11947  * Copyright(c) 2006-2007, Ext JS, LLC.
11948  *
11949  * Originally Released Under LGPL - original licence link has changed is not relivant.
11950  *
11951  * Fork - LGPL
11952  * <script type="text/javascript">
11953  */
11954
11955  
11956 /**
11957  * @class Roo.UpdateManager
11958  * @extends Roo.util.Observable
11959  * Provides AJAX-style update for Element object.<br><br>
11960  * Usage:<br>
11961  * <pre><code>
11962  * // Get it from a Roo.Element object
11963  * var el = Roo.get("foo");
11964  * var mgr = el.getUpdateManager();
11965  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11966  * ...
11967  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11968  * <br>
11969  * // or directly (returns the same UpdateManager instance)
11970  * var mgr = new Roo.UpdateManager("myElementId");
11971  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11972  * mgr.on("update", myFcnNeedsToKnow);
11973  * <br>
11974    // short handed call directly from the element object
11975    Roo.get("foo").load({
11976         url: "bar.php",
11977         scripts:true,
11978         params: "for=bar",
11979         text: "Loading Foo..."
11980    });
11981  * </code></pre>
11982  * @constructor
11983  * Create new UpdateManager directly.
11984  * @param {String/HTMLElement/Roo.Element} el The element to update
11985  * @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).
11986  */
11987 Roo.UpdateManager = function(el, forceNew){
11988     el = Roo.get(el);
11989     if(!forceNew && el.updateManager){
11990         return el.updateManager;
11991     }
11992     /**
11993      * The Element object
11994      * @type Roo.Element
11995      */
11996     this.el = el;
11997     /**
11998      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11999      * @type String
12000      */
12001     this.defaultUrl = null;
12002
12003     this.addEvents({
12004         /**
12005          * @event beforeupdate
12006          * Fired before an update is made, return false from your handler and the update is cancelled.
12007          * @param {Roo.Element} el
12008          * @param {String/Object/Function} url
12009          * @param {String/Object} params
12010          */
12011         "beforeupdate": true,
12012         /**
12013          * @event update
12014          * Fired after successful update is made.
12015          * @param {Roo.Element} el
12016          * @param {Object} oResponseObject The response Object
12017          */
12018         "update": true,
12019         /**
12020          * @event failure
12021          * Fired on update failure.
12022          * @param {Roo.Element} el
12023          * @param {Object} oResponseObject The response Object
12024          */
12025         "failure": true
12026     });
12027     var d = Roo.UpdateManager.defaults;
12028     /**
12029      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12030      * @type String
12031      */
12032     this.sslBlankUrl = d.sslBlankUrl;
12033     /**
12034      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12035      * @type Boolean
12036      */
12037     this.disableCaching = d.disableCaching;
12038     /**
12039      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12040      * @type String
12041      */
12042     this.indicatorText = d.indicatorText;
12043     /**
12044      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12045      * @type String
12046      */
12047     this.showLoadIndicator = d.showLoadIndicator;
12048     /**
12049      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12050      * @type Number
12051      */
12052     this.timeout = d.timeout;
12053
12054     /**
12055      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12056      * @type Boolean
12057      */
12058     this.loadScripts = d.loadScripts;
12059
12060     /**
12061      * Transaction object of current executing transaction
12062      */
12063     this.transaction = null;
12064
12065     /**
12066      * @private
12067      */
12068     this.autoRefreshProcId = null;
12069     /**
12070      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12071      * @type Function
12072      */
12073     this.refreshDelegate = this.refresh.createDelegate(this);
12074     /**
12075      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12076      * @type Function
12077      */
12078     this.updateDelegate = this.update.createDelegate(this);
12079     /**
12080      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12081      * @type Function
12082      */
12083     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12084     /**
12085      * @private
12086      */
12087     this.successDelegate = this.processSuccess.createDelegate(this);
12088     /**
12089      * @private
12090      */
12091     this.failureDelegate = this.processFailure.createDelegate(this);
12092
12093     if(!this.renderer){
12094      /**
12095       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12096       */
12097     this.renderer = new Roo.UpdateManager.BasicRenderer();
12098     }
12099     
12100     Roo.UpdateManager.superclass.constructor.call(this);
12101 };
12102
12103 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12104     /**
12105      * Get the Element this UpdateManager is bound to
12106      * @return {Roo.Element} The element
12107      */
12108     getEl : function(){
12109         return this.el;
12110     },
12111     /**
12112      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12113      * @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:
12114 <pre><code>
12115 um.update({<br/>
12116     url: "your-url.php",<br/>
12117     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12118     callback: yourFunction,<br/>
12119     scope: yourObject, //(optional scope)  <br/>
12120     discardUrl: false, <br/>
12121     nocache: false,<br/>
12122     text: "Loading...",<br/>
12123     timeout: 30,<br/>
12124     scripts: false<br/>
12125 });
12126 </code></pre>
12127      * The only required property is url. The optional properties nocache, text and scripts
12128      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12129      * @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}
12130      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12131      * @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.
12132      */
12133     update : function(url, params, callback, discardUrl){
12134         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12135             var method = this.method,
12136                 cfg;
12137             if(typeof url == "object"){ // must be config object
12138                 cfg = url;
12139                 url = cfg.url;
12140                 params = params || cfg.params;
12141                 callback = callback || cfg.callback;
12142                 discardUrl = discardUrl || cfg.discardUrl;
12143                 if(callback && cfg.scope){
12144                     callback = callback.createDelegate(cfg.scope);
12145                 }
12146                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12147                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12148                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12149                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12150                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12151             }
12152             this.showLoading();
12153             if(!discardUrl){
12154                 this.defaultUrl = url;
12155             }
12156             if(typeof url == "function"){
12157                 url = url.call(this);
12158             }
12159
12160             method = method || (params ? "POST" : "GET");
12161             if(method == "GET"){
12162                 url = this.prepareUrl(url);
12163             }
12164
12165             var o = Roo.apply(cfg ||{}, {
12166                 url : url,
12167                 params: params,
12168                 success: this.successDelegate,
12169                 failure: this.failureDelegate,
12170                 callback: undefined,
12171                 timeout: (this.timeout*1000),
12172                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12173             });
12174             Roo.log("updated manager called with timeout of " + o.timeout);
12175             this.transaction = Roo.Ajax.request(o);
12176         }
12177     },
12178
12179     /**
12180      * 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.
12181      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12182      * @param {String/HTMLElement} form The form Id or form element
12183      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12184      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12185      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12186      */
12187     formUpdate : function(form, url, reset, callback){
12188         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12189             if(typeof url == "function"){
12190                 url = url.call(this);
12191             }
12192             form = Roo.getDom(form);
12193             this.transaction = Roo.Ajax.request({
12194                 form: form,
12195                 url:url,
12196                 success: this.successDelegate,
12197                 failure: this.failureDelegate,
12198                 timeout: (this.timeout*1000),
12199                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12200             });
12201             this.showLoading.defer(1, this);
12202         }
12203     },
12204
12205     /**
12206      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12207      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12208      */
12209     refresh : function(callback){
12210         if(this.defaultUrl == null){
12211             return;
12212         }
12213         this.update(this.defaultUrl, null, callback, true);
12214     },
12215
12216     /**
12217      * Set this element to auto refresh.
12218      * @param {Number} interval How often to update (in seconds).
12219      * @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)
12220      * @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}
12221      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12222      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12223      */
12224     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12225         if(refreshNow){
12226             this.update(url || this.defaultUrl, params, callback, true);
12227         }
12228         if(this.autoRefreshProcId){
12229             clearInterval(this.autoRefreshProcId);
12230         }
12231         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12232     },
12233
12234     /**
12235      * Stop auto refresh on this element.
12236      */
12237      stopAutoRefresh : function(){
12238         if(this.autoRefreshProcId){
12239             clearInterval(this.autoRefreshProcId);
12240             delete this.autoRefreshProcId;
12241         }
12242     },
12243
12244     isAutoRefreshing : function(){
12245        return this.autoRefreshProcId ? true : false;
12246     },
12247     /**
12248      * Called to update the element to "Loading" state. Override to perform custom action.
12249      */
12250     showLoading : function(){
12251         if(this.showLoadIndicator){
12252             this.el.update(this.indicatorText);
12253         }
12254     },
12255
12256     /**
12257      * Adds unique parameter to query string if disableCaching = true
12258      * @private
12259      */
12260     prepareUrl : function(url){
12261         if(this.disableCaching){
12262             var append = "_dc=" + (new Date().getTime());
12263             if(url.indexOf("?") !== -1){
12264                 url += "&" + append;
12265             }else{
12266                 url += "?" + append;
12267             }
12268         }
12269         return url;
12270     },
12271
12272     /**
12273      * @private
12274      */
12275     processSuccess : function(response){
12276         this.transaction = null;
12277         if(response.argument.form && response.argument.reset){
12278             try{ // put in try/catch since some older FF releases had problems with this
12279                 response.argument.form.reset();
12280             }catch(e){}
12281         }
12282         if(this.loadScripts){
12283             this.renderer.render(this.el, response, this,
12284                 this.updateComplete.createDelegate(this, [response]));
12285         }else{
12286             this.renderer.render(this.el, response, this);
12287             this.updateComplete(response);
12288         }
12289     },
12290
12291     updateComplete : function(response){
12292         this.fireEvent("update", this.el, response);
12293         if(typeof response.argument.callback == "function"){
12294             response.argument.callback(this.el, true, response);
12295         }
12296     },
12297
12298     /**
12299      * @private
12300      */
12301     processFailure : function(response){
12302         this.transaction = null;
12303         this.fireEvent("failure", this.el, response);
12304         if(typeof response.argument.callback == "function"){
12305             response.argument.callback(this.el, false, response);
12306         }
12307     },
12308
12309     /**
12310      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12311      * @param {Object} renderer The object implementing the render() method
12312      */
12313     setRenderer : function(renderer){
12314         this.renderer = renderer;
12315     },
12316
12317     getRenderer : function(){
12318        return this.renderer;
12319     },
12320
12321     /**
12322      * Set the defaultUrl used for updates
12323      * @param {String/Function} defaultUrl The url or a function to call to get the url
12324      */
12325     setDefaultUrl : function(defaultUrl){
12326         this.defaultUrl = defaultUrl;
12327     },
12328
12329     /**
12330      * Aborts the executing transaction
12331      */
12332     abort : function(){
12333         if(this.transaction){
12334             Roo.Ajax.abort(this.transaction);
12335         }
12336     },
12337
12338     /**
12339      * Returns true if an update is in progress
12340      * @return {Boolean}
12341      */
12342     isUpdating : function(){
12343         if(this.transaction){
12344             return Roo.Ajax.isLoading(this.transaction);
12345         }
12346         return false;
12347     }
12348 });
12349
12350 /**
12351  * @class Roo.UpdateManager.defaults
12352  * @static (not really - but it helps the doc tool)
12353  * The defaults collection enables customizing the default properties of UpdateManager
12354  */
12355    Roo.UpdateManager.defaults = {
12356        /**
12357          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12358          * @type Number
12359          */
12360          timeout : 30,
12361
12362          /**
12363          * True to process scripts by default (Defaults to false).
12364          * @type Boolean
12365          */
12366         loadScripts : false,
12367
12368         /**
12369         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12370         * @type String
12371         */
12372         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12373         /**
12374          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12375          * @type Boolean
12376          */
12377         disableCaching : false,
12378         /**
12379          * Whether to show indicatorText when loading (Defaults to true).
12380          * @type Boolean
12381          */
12382         showLoadIndicator : true,
12383         /**
12384          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12385          * @type String
12386          */
12387         indicatorText : '<div class="loading-indicator">Loading...</div>'
12388    };
12389
12390 /**
12391  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12392  *Usage:
12393  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12394  * @param {String/HTMLElement/Roo.Element} el The element to update
12395  * @param {String} url The url
12396  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12397  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12398  * @static
12399  * @deprecated
12400  * @member Roo.UpdateManager
12401  */
12402 Roo.UpdateManager.updateElement = function(el, url, params, options){
12403     var um = Roo.get(el, true).getUpdateManager();
12404     Roo.apply(um, options);
12405     um.update(url, params, options ? options.callback : null);
12406 };
12407 // alias for backwards compat
12408 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12409 /**
12410  * @class Roo.UpdateManager.BasicRenderer
12411  * Default Content renderer. Updates the elements innerHTML with the responseText.
12412  */
12413 Roo.UpdateManager.BasicRenderer = function(){};
12414
12415 Roo.UpdateManager.BasicRenderer.prototype = {
12416     /**
12417      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12418      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12419      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12420      * @param {Roo.Element} el The element being rendered
12421      * @param {Object} response The YUI Connect response object
12422      * @param {UpdateManager} updateManager The calling update manager
12423      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12424      */
12425      render : function(el, response, updateManager, callback){
12426         el.update(response.responseText, updateManager.loadScripts, callback);
12427     }
12428 };
12429 /*
12430  * Based on:
12431  * Roo JS
12432  * (c)) Alan Knowles
12433  * Licence : LGPL
12434  */
12435
12436
12437 /**
12438  * @class Roo.DomTemplate
12439  * @extends Roo.Template
12440  * An effort at a dom based template engine..
12441  *
12442  * Similar to XTemplate, except it uses dom parsing to create the template..
12443  *
12444  * Supported features:
12445  *
12446  *  Tags:
12447
12448 <pre><code>
12449       {a_variable} - output encoded.
12450       {a_variable.format:("Y-m-d")} - call a method on the variable
12451       {a_variable:raw} - unencoded output
12452       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12453       {a_variable:this.method_on_template(...)} - call a method on the template object.
12454  
12455 </code></pre>
12456  *  The tpl tag:
12457 <pre><code>
12458         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12459         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12460         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12461         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12462   
12463 </code></pre>
12464  *      
12465  */
12466 Roo.DomTemplate = function()
12467 {
12468      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12469      if (this.html) {
12470         this.compile();
12471      }
12472 };
12473
12474
12475 Roo.extend(Roo.DomTemplate, Roo.Template, {
12476     /**
12477      * id counter for sub templates.
12478      */
12479     id : 0,
12480     /**
12481      * flag to indicate if dom parser is inside a pre,
12482      * it will strip whitespace if not.
12483      */
12484     inPre : false,
12485     
12486     /**
12487      * The various sub templates
12488      */
12489     tpls : false,
12490     
12491     
12492     
12493     /**
12494      *
12495      * basic tag replacing syntax
12496      * WORD:WORD()
12497      *
12498      * // you can fake an object call by doing this
12499      *  x.t:(test,tesT) 
12500      * 
12501      */
12502     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12503     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12504     
12505     iterChild : function (node, method) {
12506         
12507         var oldPre = this.inPre;
12508         if (node.tagName == 'PRE') {
12509             this.inPre = true;
12510         }
12511         for( var i = 0; i < node.childNodes.length; i++) {
12512             method.call(this, node.childNodes[i]);
12513         }
12514         this.inPre = oldPre;
12515     },
12516     
12517     
12518     
12519     /**
12520      * compile the template
12521      *
12522      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12523      *
12524      */
12525     compile: function()
12526     {
12527         var s = this.html;
12528         
12529         // covert the html into DOM...
12530         var doc = false;
12531         var div =false;
12532         try {
12533             doc = document.implementation.createHTMLDocument("");
12534             doc.documentElement.innerHTML =   this.html  ;
12535             div = doc.documentElement;
12536         } catch (e) {
12537             // old IE... - nasty -- it causes all sorts of issues.. with
12538             // images getting pulled from server..
12539             div = document.createElement('div');
12540             div.innerHTML = this.html;
12541         }
12542         //doc.documentElement.innerHTML = htmlBody
12543          
12544         
12545         
12546         this.tpls = [];
12547         var _t = this;
12548         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12549         
12550         var tpls = this.tpls;
12551         
12552         // create a top level template from the snippet..
12553         
12554         //Roo.log(div.innerHTML);
12555         
12556         var tpl = {
12557             uid : 'master',
12558             id : this.id++,
12559             attr : false,
12560             value : false,
12561             body : div.innerHTML,
12562             
12563             forCall : false,
12564             execCall : false,
12565             dom : div,
12566             isTop : true
12567             
12568         };
12569         tpls.unshift(tpl);
12570         
12571         
12572         // compile them...
12573         this.tpls = [];
12574         Roo.each(tpls, function(tp){
12575             this.compileTpl(tp);
12576             this.tpls[tp.id] = tp;
12577         }, this);
12578         
12579         this.master = tpls[0];
12580         return this;
12581         
12582         
12583     },
12584     
12585     compileNode : function(node, istop) {
12586         // test for
12587         //Roo.log(node);
12588         
12589         
12590         // skip anything not a tag..
12591         if (node.nodeType != 1) {
12592             if (node.nodeType == 3 && !this.inPre) {
12593                 // reduce white space..
12594                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12595                 
12596             }
12597             return;
12598         }
12599         
12600         var tpl = {
12601             uid : false,
12602             id : false,
12603             attr : false,
12604             value : false,
12605             body : '',
12606             
12607             forCall : false,
12608             execCall : false,
12609             dom : false,
12610             isTop : istop
12611             
12612             
12613         };
12614         
12615         
12616         switch(true) {
12617             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12618             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12619             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12620             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12621             // no default..
12622         }
12623         
12624         
12625         if (!tpl.attr) {
12626             // just itterate children..
12627             this.iterChild(node,this.compileNode);
12628             return;
12629         }
12630         tpl.uid = this.id++;
12631         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12632         node.removeAttribute('roo-'+ tpl.attr);
12633         if (tpl.attr != 'name') {
12634             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12635             node.parentNode.replaceChild(placeholder,  node);
12636         } else {
12637             
12638             var placeholder =  document.createElement('span');
12639             placeholder.className = 'roo-tpl-' + tpl.value;
12640             node.parentNode.replaceChild(placeholder,  node);
12641         }
12642         
12643         // parent now sees '{domtplXXXX}
12644         this.iterChild(node,this.compileNode);
12645         
12646         // we should now have node body...
12647         var div = document.createElement('div');
12648         div.appendChild(node);
12649         tpl.dom = node;
12650         // this has the unfortunate side effect of converting tagged attributes
12651         // eg. href="{...}" into %7C...%7D
12652         // this has been fixed by searching for those combo's although it's a bit hacky..
12653         
12654         
12655         tpl.body = div.innerHTML;
12656         
12657         
12658          
12659         tpl.id = tpl.uid;
12660         switch(tpl.attr) {
12661             case 'for' :
12662                 switch (tpl.value) {
12663                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12664                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12665                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12666                 }
12667                 break;
12668             
12669             case 'exec':
12670                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12671                 break;
12672             
12673             case 'if':     
12674                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12675                 break;
12676             
12677             case 'name':
12678                 tpl.id  = tpl.value; // replace non characters???
12679                 break;
12680             
12681         }
12682         
12683         
12684         this.tpls.push(tpl);
12685         
12686         
12687         
12688     },
12689     
12690     
12691     
12692     
12693     /**
12694      * Compile a segment of the template into a 'sub-template'
12695      *
12696      * 
12697      * 
12698      *
12699      */
12700     compileTpl : function(tpl)
12701     {
12702         var fm = Roo.util.Format;
12703         var useF = this.disableFormats !== true;
12704         
12705         var sep = Roo.isGecko ? "+\n" : ",\n";
12706         
12707         var undef = function(str) {
12708             Roo.debug && Roo.log("Property not found :"  + str);
12709             return '';
12710         };
12711           
12712         //Roo.log(tpl.body);
12713         
12714         
12715         
12716         var fn = function(m, lbrace, name, format, args)
12717         {
12718             //Roo.log("ARGS");
12719             //Roo.log(arguments);
12720             args = args ? args.replace(/\\'/g,"'") : args;
12721             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12722             if (typeof(format) == 'undefined') {
12723                 format =  'htmlEncode'; 
12724             }
12725             if (format == 'raw' ) {
12726                 format = false;
12727             }
12728             
12729             if(name.substr(0, 6) == 'domtpl'){
12730                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12731             }
12732             
12733             // build an array of options to determine if value is undefined..
12734             
12735             // basically get 'xxxx.yyyy' then do
12736             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12737             //    (function () { Roo.log("Property not found"); return ''; })() :
12738             //    ......
12739             
12740             var udef_ar = [];
12741             var lookfor = '';
12742             Roo.each(name.split('.'), function(st) {
12743                 lookfor += (lookfor.length ? '.': '') + st;
12744                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12745             });
12746             
12747             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12748             
12749             
12750             if(format && useF){
12751                 
12752                 args = args ? ',' + args : "";
12753                  
12754                 if(format.substr(0, 5) != "this."){
12755                     format = "fm." + format + '(';
12756                 }else{
12757                     format = 'this.call("'+ format.substr(5) + '", ';
12758                     args = ", values";
12759                 }
12760                 
12761                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12762             }
12763              
12764             if (args && args.length) {
12765                 // called with xxyx.yuu:(test,test)
12766                 // change to ()
12767                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12768             }
12769             // raw.. - :raw modifier..
12770             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12771             
12772         };
12773         var body;
12774         // branched to use + in gecko and [].join() in others
12775         if(Roo.isGecko){
12776             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12777                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12778                     "';};};";
12779         }else{
12780             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12781             body.push(tpl.body.replace(/(\r\n|\n)/g,
12782                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12783             body.push("'].join('');};};");
12784             body = body.join('');
12785         }
12786         
12787         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12788        
12789         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12790         eval(body);
12791         
12792         return this;
12793     },
12794      
12795     /**
12796      * same as applyTemplate, except it's done to one of the subTemplates
12797      * when using named templates, you can do:
12798      *
12799      * var str = pl.applySubTemplate('your-name', values);
12800      *
12801      * 
12802      * @param {Number} id of the template
12803      * @param {Object} values to apply to template
12804      * @param {Object} parent (normaly the instance of this object)
12805      */
12806     applySubTemplate : function(id, values, parent)
12807     {
12808         
12809         
12810         var t = this.tpls[id];
12811         
12812         
12813         try { 
12814             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12815                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12816                 return '';
12817             }
12818         } catch(e) {
12819             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12820             Roo.log(values);
12821           
12822             return '';
12823         }
12824         try { 
12825             
12826             if(t.execCall && t.execCall.call(this, values, parent)){
12827                 return '';
12828             }
12829         } catch(e) {
12830             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12831             Roo.log(values);
12832             return '';
12833         }
12834         
12835         try {
12836             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12837             parent = t.target ? values : parent;
12838             if(t.forCall && vs instanceof Array){
12839                 var buf = [];
12840                 for(var i = 0, len = vs.length; i < len; i++){
12841                     try {
12842                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12843                     } catch (e) {
12844                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12845                         Roo.log(e.body);
12846                         //Roo.log(t.compiled);
12847                         Roo.log(vs[i]);
12848                     }   
12849                 }
12850                 return buf.join('');
12851             }
12852         } catch (e) {
12853             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12854             Roo.log(values);
12855             return '';
12856         }
12857         try {
12858             return t.compiled.call(this, vs, parent);
12859         } catch (e) {
12860             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12861             Roo.log(e.body);
12862             //Roo.log(t.compiled);
12863             Roo.log(values);
12864             return '';
12865         }
12866     },
12867
12868    
12869
12870     applyTemplate : function(values){
12871         return this.master.compiled.call(this, values, {});
12872         //var s = this.subs;
12873     },
12874
12875     apply : function(){
12876         return this.applyTemplate.apply(this, arguments);
12877     }
12878
12879  });
12880
12881 Roo.DomTemplate.from = function(el){
12882     el = Roo.getDom(el);
12883     return new Roo.Domtemplate(el.value || el.innerHTML);
12884 };/*
12885  * Based on:
12886  * Ext JS Library 1.1.1
12887  * Copyright(c) 2006-2007, Ext JS, LLC.
12888  *
12889  * Originally Released Under LGPL - original licence link has changed is not relivant.
12890  *
12891  * Fork - LGPL
12892  * <script type="text/javascript">
12893  */
12894
12895 /**
12896  * @class Roo.util.DelayedTask
12897  * Provides a convenient method of performing setTimeout where a new
12898  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12899  * You can use this class to buffer
12900  * the keypress events for a certain number of milliseconds, and perform only if they stop
12901  * for that amount of time.
12902  * @constructor The parameters to this constructor serve as defaults and are not required.
12903  * @param {Function} fn (optional) The default function to timeout
12904  * @param {Object} scope (optional) The default scope of that timeout
12905  * @param {Array} args (optional) The default Array of arguments
12906  */
12907 Roo.util.DelayedTask = function(fn, scope, args){
12908     var id = null, d, t;
12909
12910     var call = function(){
12911         var now = new Date().getTime();
12912         if(now - t >= d){
12913             clearInterval(id);
12914             id = null;
12915             fn.apply(scope, args || []);
12916         }
12917     };
12918     /**
12919      * Cancels any pending timeout and queues a new one
12920      * @param {Number} delay The milliseconds to delay
12921      * @param {Function} newFn (optional) Overrides function passed to constructor
12922      * @param {Object} newScope (optional) Overrides scope passed to constructor
12923      * @param {Array} newArgs (optional) Overrides args passed to constructor
12924      */
12925     this.delay = function(delay, newFn, newScope, newArgs){
12926         if(id && delay != d){
12927             this.cancel();
12928         }
12929         d = delay;
12930         t = new Date().getTime();
12931         fn = newFn || fn;
12932         scope = newScope || scope;
12933         args = newArgs || args;
12934         if(!id){
12935             id = setInterval(call, d);
12936         }
12937     };
12938
12939     /**
12940      * Cancel the last queued timeout
12941      */
12942     this.cancel = function(){
12943         if(id){
12944             clearInterval(id);
12945             id = null;
12946         }
12947     };
12948 };/*
12949  * Based on:
12950  * Ext JS Library 1.1.1
12951  * Copyright(c) 2006-2007, Ext JS, LLC.
12952  *
12953  * Originally Released Under LGPL - original licence link has changed is not relivant.
12954  *
12955  * Fork - LGPL
12956  * <script type="text/javascript">
12957  */
12958  
12959  
12960 Roo.util.TaskRunner = function(interval){
12961     interval = interval || 10;
12962     var tasks = [], removeQueue = [];
12963     var id = 0;
12964     var running = false;
12965
12966     var stopThread = function(){
12967         running = false;
12968         clearInterval(id);
12969         id = 0;
12970     };
12971
12972     var startThread = function(){
12973         if(!running){
12974             running = true;
12975             id = setInterval(runTasks, interval);
12976         }
12977     };
12978
12979     var removeTask = function(task){
12980         removeQueue.push(task);
12981         if(task.onStop){
12982             task.onStop();
12983         }
12984     };
12985
12986     var runTasks = function(){
12987         if(removeQueue.length > 0){
12988             for(var i = 0, len = removeQueue.length; i < len; i++){
12989                 tasks.remove(removeQueue[i]);
12990             }
12991             removeQueue = [];
12992             if(tasks.length < 1){
12993                 stopThread();
12994                 return;
12995             }
12996         }
12997         var now = new Date().getTime();
12998         for(var i = 0, len = tasks.length; i < len; ++i){
12999             var t = tasks[i];
13000             var itime = now - t.taskRunTime;
13001             if(t.interval <= itime){
13002                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13003                 t.taskRunTime = now;
13004                 if(rt === false || t.taskRunCount === t.repeat){
13005                     removeTask(t);
13006                     return;
13007                 }
13008             }
13009             if(t.duration && t.duration <= (now - t.taskStartTime)){
13010                 removeTask(t);
13011             }
13012         }
13013     };
13014
13015     /**
13016      * Queues a new task.
13017      * @param {Object} task
13018      */
13019     this.start = function(task){
13020         tasks.push(task);
13021         task.taskStartTime = new Date().getTime();
13022         task.taskRunTime = 0;
13023         task.taskRunCount = 0;
13024         startThread();
13025         return task;
13026     };
13027
13028     this.stop = function(task){
13029         removeTask(task);
13030         return task;
13031     };
13032
13033     this.stopAll = function(){
13034         stopThread();
13035         for(var i = 0, len = tasks.length; i < len; i++){
13036             if(tasks[i].onStop){
13037                 tasks[i].onStop();
13038             }
13039         }
13040         tasks = [];
13041         removeQueue = [];
13042     };
13043 };
13044
13045 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13046  * Based on:
13047  * Ext JS Library 1.1.1
13048  * Copyright(c) 2006-2007, Ext JS, LLC.
13049  *
13050  * Originally Released Under LGPL - original licence link has changed is not relivant.
13051  *
13052  * Fork - LGPL
13053  * <script type="text/javascript">
13054  */
13055
13056  
13057 /**
13058  * @class Roo.util.MixedCollection
13059  * @extends Roo.util.Observable
13060  * A Collection class that maintains both numeric indexes and keys and exposes events.
13061  * @constructor
13062  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13063  * collection (defaults to false)
13064  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13065  * and return the key value for that item.  This is used when available to look up the key on items that
13066  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13067  * equivalent to providing an implementation for the {@link #getKey} method.
13068  */
13069 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13070     this.items = [];
13071     this.map = {};
13072     this.keys = [];
13073     this.length = 0;
13074     this.addEvents({
13075         /**
13076          * @event clear
13077          * Fires when the collection is cleared.
13078          */
13079         "clear" : true,
13080         /**
13081          * @event add
13082          * Fires when an item is added to the collection.
13083          * @param {Number} index The index at which the item was added.
13084          * @param {Object} o The item added.
13085          * @param {String} key The key associated with the added item.
13086          */
13087         "add" : true,
13088         /**
13089          * @event replace
13090          * Fires when an item is replaced in the collection.
13091          * @param {String} key he key associated with the new added.
13092          * @param {Object} old The item being replaced.
13093          * @param {Object} new The new item.
13094          */
13095         "replace" : true,
13096         /**
13097          * @event remove
13098          * Fires when an item is removed from the collection.
13099          * @param {Object} o The item being removed.
13100          * @param {String} key (optional) The key associated with the removed item.
13101          */
13102         "remove" : true,
13103         "sort" : true
13104     });
13105     this.allowFunctions = allowFunctions === true;
13106     if(keyFn){
13107         this.getKey = keyFn;
13108     }
13109     Roo.util.MixedCollection.superclass.constructor.call(this);
13110 };
13111
13112 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13113     allowFunctions : false,
13114     
13115 /**
13116  * Adds an item to the collection.
13117  * @param {String} key The key to associate with the item
13118  * @param {Object} o The item to add.
13119  * @return {Object} The item added.
13120  */
13121     add : function(key, o){
13122         if(arguments.length == 1){
13123             o = arguments[0];
13124             key = this.getKey(o);
13125         }
13126         if(typeof key == "undefined" || key === null){
13127             this.length++;
13128             this.items.push(o);
13129             this.keys.push(null);
13130         }else{
13131             var old = this.map[key];
13132             if(old){
13133                 return this.replace(key, o);
13134             }
13135             this.length++;
13136             this.items.push(o);
13137             this.map[key] = o;
13138             this.keys.push(key);
13139         }
13140         this.fireEvent("add", this.length-1, o, key);
13141         return o;
13142     },
13143        
13144 /**
13145   * MixedCollection has a generic way to fetch keys if you implement getKey.
13146 <pre><code>
13147 // normal way
13148 var mc = new Roo.util.MixedCollection();
13149 mc.add(someEl.dom.id, someEl);
13150 mc.add(otherEl.dom.id, otherEl);
13151 //and so on
13152
13153 // using getKey
13154 var mc = new Roo.util.MixedCollection();
13155 mc.getKey = function(el){
13156    return el.dom.id;
13157 };
13158 mc.add(someEl);
13159 mc.add(otherEl);
13160
13161 // or via the constructor
13162 var mc = new Roo.util.MixedCollection(false, function(el){
13163    return el.dom.id;
13164 });
13165 mc.add(someEl);
13166 mc.add(otherEl);
13167 </code></pre>
13168  * @param o {Object} The item for which to find the key.
13169  * @return {Object} The key for the passed item.
13170  */
13171     getKey : function(o){
13172          return o.id; 
13173     },
13174    
13175 /**
13176  * Replaces an item in the collection.
13177  * @param {String} key The key associated with the item to replace, or the item to replace.
13178  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13179  * @return {Object}  The new item.
13180  */
13181     replace : function(key, o){
13182         if(arguments.length == 1){
13183             o = arguments[0];
13184             key = this.getKey(o);
13185         }
13186         var old = this.item(key);
13187         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13188              return this.add(key, o);
13189         }
13190         var index = this.indexOfKey(key);
13191         this.items[index] = o;
13192         this.map[key] = o;
13193         this.fireEvent("replace", key, old, o);
13194         return o;
13195     },
13196    
13197 /**
13198  * Adds all elements of an Array or an Object to the collection.
13199  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13200  * an Array of values, each of which are added to the collection.
13201  */
13202     addAll : function(objs){
13203         if(arguments.length > 1 || objs instanceof Array){
13204             var args = arguments.length > 1 ? arguments : objs;
13205             for(var i = 0, len = args.length; i < len; i++){
13206                 this.add(args[i]);
13207             }
13208         }else{
13209             for(var key in objs){
13210                 if(this.allowFunctions || typeof objs[key] != "function"){
13211                     this.add(key, objs[key]);
13212                 }
13213             }
13214         }
13215     },
13216    
13217 /**
13218  * Executes the specified function once for every item in the collection, passing each
13219  * item as the first and only parameter. returning false from the function will stop the iteration.
13220  * @param {Function} fn The function to execute for each item.
13221  * @param {Object} scope (optional) The scope in which to execute the function.
13222  */
13223     each : function(fn, scope){
13224         var items = [].concat(this.items); // each safe for removal
13225         for(var i = 0, len = items.length; i < len; i++){
13226             if(fn.call(scope || items[i], items[i], i, len) === false){
13227                 break;
13228             }
13229         }
13230     },
13231    
13232 /**
13233  * Executes the specified function once for every key in the collection, passing each
13234  * key, and its associated item as the first two parameters.
13235  * @param {Function} fn The function to execute for each item.
13236  * @param {Object} scope (optional) The scope in which to execute the function.
13237  */
13238     eachKey : function(fn, scope){
13239         for(var i = 0, len = this.keys.length; i < len; i++){
13240             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13241         }
13242     },
13243    
13244 /**
13245  * Returns the first item in the collection which elicits a true return value from the
13246  * passed selection function.
13247  * @param {Function} fn The selection function to execute for each item.
13248  * @param {Object} scope (optional) The scope in which to execute the function.
13249  * @return {Object} The first item in the collection which returned true from the selection function.
13250  */
13251     find : function(fn, scope){
13252         for(var i = 0, len = this.items.length; i < len; i++){
13253             if(fn.call(scope || window, this.items[i], this.keys[i])){
13254                 return this.items[i];
13255             }
13256         }
13257         return null;
13258     },
13259    
13260 /**
13261  * Inserts an item at the specified index in the collection.
13262  * @param {Number} index The index to insert the item at.
13263  * @param {String} key The key to associate with the new item, or the item itself.
13264  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13265  * @return {Object} The item inserted.
13266  */
13267     insert : function(index, key, o){
13268         if(arguments.length == 2){
13269             o = arguments[1];
13270             key = this.getKey(o);
13271         }
13272         if(index >= this.length){
13273             return this.add(key, o);
13274         }
13275         this.length++;
13276         this.items.splice(index, 0, o);
13277         if(typeof key != "undefined" && key != null){
13278             this.map[key] = o;
13279         }
13280         this.keys.splice(index, 0, key);
13281         this.fireEvent("add", index, o, key);
13282         return o;
13283     },
13284    
13285 /**
13286  * Removed an item from the collection.
13287  * @param {Object} o The item to remove.
13288  * @return {Object} The item removed.
13289  */
13290     remove : function(o){
13291         return this.removeAt(this.indexOf(o));
13292     },
13293    
13294 /**
13295  * Remove an item from a specified index in the collection.
13296  * @param {Number} index The index within the collection of the item to remove.
13297  */
13298     removeAt : function(index){
13299         if(index < this.length && index >= 0){
13300             this.length--;
13301             var o = this.items[index];
13302             this.items.splice(index, 1);
13303             var key = this.keys[index];
13304             if(typeof key != "undefined"){
13305                 delete this.map[key];
13306             }
13307             this.keys.splice(index, 1);
13308             this.fireEvent("remove", o, key);
13309         }
13310     },
13311    
13312 /**
13313  * Removed an item associated with the passed key fom the collection.
13314  * @param {String} key The key of the item to remove.
13315  */
13316     removeKey : function(key){
13317         return this.removeAt(this.indexOfKey(key));
13318     },
13319    
13320 /**
13321  * Returns the number of items in the collection.
13322  * @return {Number} the number of items in the collection.
13323  */
13324     getCount : function(){
13325         return this.length; 
13326     },
13327    
13328 /**
13329  * Returns index within the collection of the passed Object.
13330  * @param {Object} o The item to find the index of.
13331  * @return {Number} index of the item.
13332  */
13333     indexOf : function(o){
13334         if(!this.items.indexOf){
13335             for(var i = 0, len = this.items.length; i < len; i++){
13336                 if(this.items[i] == o) {
13337                     return i;
13338                 }
13339             }
13340             return -1;
13341         }else{
13342             return this.items.indexOf(o);
13343         }
13344     },
13345    
13346 /**
13347  * Returns index within the collection of the passed key.
13348  * @param {String} key The key to find the index of.
13349  * @return {Number} index of the key.
13350  */
13351     indexOfKey : function(key){
13352         if(!this.keys.indexOf){
13353             for(var i = 0, len = this.keys.length; i < len; i++){
13354                 if(this.keys[i] == key) {
13355                     return i;
13356                 }
13357             }
13358             return -1;
13359         }else{
13360             return this.keys.indexOf(key);
13361         }
13362     },
13363    
13364 /**
13365  * Returns the item associated with the passed key OR index. Key has priority over index.
13366  * @param {String/Number} key The key or index of the item.
13367  * @return {Object} The item associated with the passed key.
13368  */
13369     item : function(key){
13370         if (key === 'length') {
13371             return null;
13372         }
13373         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13374         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13375     },
13376     
13377 /**
13378  * Returns the item at the specified index.
13379  * @param {Number} index The index of the item.
13380  * @return {Object}
13381  */
13382     itemAt : function(index){
13383         return this.items[index];
13384     },
13385     
13386 /**
13387  * Returns the item associated with the passed key.
13388  * @param {String/Number} key The key of the item.
13389  * @return {Object} The item associated with the passed key.
13390  */
13391     key : function(key){
13392         return this.map[key];
13393     },
13394    
13395 /**
13396  * Returns true if the collection contains the passed Object as an item.
13397  * @param {Object} o  The Object to look for in the collection.
13398  * @return {Boolean} True if the collection contains the Object as an item.
13399  */
13400     contains : function(o){
13401         return this.indexOf(o) != -1;
13402     },
13403    
13404 /**
13405  * Returns true if the collection contains the passed Object as a key.
13406  * @param {String} key The key to look for in the collection.
13407  * @return {Boolean} True if the collection contains the Object as a key.
13408  */
13409     containsKey : function(key){
13410         return typeof this.map[key] != "undefined";
13411     },
13412    
13413 /**
13414  * Removes all items from the collection.
13415  */
13416     clear : function(){
13417         this.length = 0;
13418         this.items = [];
13419         this.keys = [];
13420         this.map = {};
13421         this.fireEvent("clear");
13422     },
13423    
13424 /**
13425  * Returns the first item in the collection.
13426  * @return {Object} the first item in the collection..
13427  */
13428     first : function(){
13429         return this.items[0]; 
13430     },
13431    
13432 /**
13433  * Returns the last item in the collection.
13434  * @return {Object} the last item in the collection..
13435  */
13436     last : function(){
13437         return this.items[this.length-1];   
13438     },
13439     
13440     _sort : function(property, dir, fn){
13441         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13442         fn = fn || function(a, b){
13443             return a-b;
13444         };
13445         var c = [], k = this.keys, items = this.items;
13446         for(var i = 0, len = items.length; i < len; i++){
13447             c[c.length] = {key: k[i], value: items[i], index: i};
13448         }
13449         c.sort(function(a, b){
13450             var v = fn(a[property], b[property]) * dsc;
13451             if(v == 0){
13452                 v = (a.index < b.index ? -1 : 1);
13453             }
13454             return v;
13455         });
13456         for(var i = 0, len = c.length; i < len; i++){
13457             items[i] = c[i].value;
13458             k[i] = c[i].key;
13459         }
13460         this.fireEvent("sort", this);
13461     },
13462     
13463     /**
13464      * Sorts this collection with the passed comparison function
13465      * @param {String} direction (optional) "ASC" or "DESC"
13466      * @param {Function} fn (optional) comparison function
13467      */
13468     sort : function(dir, fn){
13469         this._sort("value", dir, fn);
13470     },
13471     
13472     /**
13473      * Sorts this collection by keys
13474      * @param {String} direction (optional) "ASC" or "DESC"
13475      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13476      */
13477     keySort : function(dir, fn){
13478         this._sort("key", dir, fn || function(a, b){
13479             return String(a).toUpperCase()-String(b).toUpperCase();
13480         });
13481     },
13482     
13483     /**
13484      * Returns a range of items in this collection
13485      * @param {Number} startIndex (optional) defaults to 0
13486      * @param {Number} endIndex (optional) default to the last item
13487      * @return {Array} An array of items
13488      */
13489     getRange : function(start, end){
13490         var items = this.items;
13491         if(items.length < 1){
13492             return [];
13493         }
13494         start = start || 0;
13495         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13496         var r = [];
13497         if(start <= end){
13498             for(var i = start; i <= end; i++) {
13499                     r[r.length] = items[i];
13500             }
13501         }else{
13502             for(var i = start; i >= end; i--) {
13503                     r[r.length] = items[i];
13504             }
13505         }
13506         return r;
13507     },
13508         
13509     /**
13510      * Filter the <i>objects</i> in this collection by a specific property. 
13511      * Returns a new collection that has been filtered.
13512      * @param {String} property A property on your objects
13513      * @param {String/RegExp} value Either string that the property values 
13514      * should start with or a RegExp to test against the property
13515      * @return {MixedCollection} The new filtered collection
13516      */
13517     filter : function(property, value){
13518         if(!value.exec){ // not a regex
13519             value = String(value);
13520             if(value.length == 0){
13521                 return this.clone();
13522             }
13523             value = new RegExp("^" + Roo.escapeRe(value), "i");
13524         }
13525         return this.filterBy(function(o){
13526             return o && value.test(o[property]);
13527         });
13528         },
13529     
13530     /**
13531      * Filter by a function. * Returns a new collection that has been filtered.
13532      * The passed function will be called with each 
13533      * object in the collection. If the function returns true, the value is included 
13534      * otherwise it is filtered.
13535      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13536      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13537      * @return {MixedCollection} The new filtered collection
13538      */
13539     filterBy : function(fn, scope){
13540         var r = new Roo.util.MixedCollection();
13541         r.getKey = this.getKey;
13542         var k = this.keys, it = this.items;
13543         for(var i = 0, len = it.length; i < len; i++){
13544             if(fn.call(scope||this, it[i], k[i])){
13545                                 r.add(k[i], it[i]);
13546                         }
13547         }
13548         return r;
13549     },
13550     
13551     /**
13552      * Creates a duplicate of this collection
13553      * @return {MixedCollection}
13554      */
13555     clone : function(){
13556         var r = new Roo.util.MixedCollection();
13557         var k = this.keys, it = this.items;
13558         for(var i = 0, len = it.length; i < len; i++){
13559             r.add(k[i], it[i]);
13560         }
13561         r.getKey = this.getKey;
13562         return r;
13563     }
13564 });
13565 /**
13566  * Returns the item associated with the passed key or index.
13567  * @method
13568  * @param {String/Number} key The key or index of the item.
13569  * @return {Object} The item associated with the passed key.
13570  */
13571 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13572  * Based on:
13573  * Ext JS Library 1.1.1
13574  * Copyright(c) 2006-2007, Ext JS, LLC.
13575  *
13576  * Originally Released Under LGPL - original licence link has changed is not relivant.
13577  *
13578  * Fork - LGPL
13579  * <script type="text/javascript">
13580  */
13581 /**
13582  * @class Roo.util.JSON
13583  * Modified version of Douglas Crockford"s json.js that doesn"t
13584  * mess with the Object prototype 
13585  * http://www.json.org/js.html
13586  * @singleton
13587  */
13588 Roo.util.JSON = new (function(){
13589     var useHasOwn = {}.hasOwnProperty ? true : false;
13590     
13591     // crashes Safari in some instances
13592     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13593     
13594     var pad = function(n) {
13595         return n < 10 ? "0" + n : n;
13596     };
13597     
13598     var m = {
13599         "\b": '\\b',
13600         "\t": '\\t',
13601         "\n": '\\n',
13602         "\f": '\\f',
13603         "\r": '\\r',
13604         '"' : '\\"',
13605         "\\": '\\\\'
13606     };
13607
13608     var encodeString = function(s){
13609         if (/["\\\x00-\x1f]/.test(s)) {
13610             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13611                 var c = m[b];
13612                 if(c){
13613                     return c;
13614                 }
13615                 c = b.charCodeAt();
13616                 return "\\u00" +
13617                     Math.floor(c / 16).toString(16) +
13618                     (c % 16).toString(16);
13619             }) + '"';
13620         }
13621         return '"' + s + '"';
13622     };
13623     
13624     var encodeArray = function(o){
13625         var a = ["["], b, i, l = o.length, v;
13626             for (i = 0; i < l; i += 1) {
13627                 v = o[i];
13628                 switch (typeof v) {
13629                     case "undefined":
13630                     case "function":
13631                     case "unknown":
13632                         break;
13633                     default:
13634                         if (b) {
13635                             a.push(',');
13636                         }
13637                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13638                         b = true;
13639                 }
13640             }
13641             a.push("]");
13642             return a.join("");
13643     };
13644     
13645     var encodeDate = function(o){
13646         return '"' + o.getFullYear() + "-" +
13647                 pad(o.getMonth() + 1) + "-" +
13648                 pad(o.getDate()) + "T" +
13649                 pad(o.getHours()) + ":" +
13650                 pad(o.getMinutes()) + ":" +
13651                 pad(o.getSeconds()) + '"';
13652     };
13653     
13654     /**
13655      * Encodes an Object, Array or other value
13656      * @param {Mixed} o The variable to encode
13657      * @return {String} The JSON string
13658      */
13659     this.encode = function(o)
13660     {
13661         // should this be extended to fully wrap stringify..
13662         
13663         if(typeof o == "undefined" || o === null){
13664             return "null";
13665         }else if(o instanceof Array){
13666             return encodeArray(o);
13667         }else if(o instanceof Date){
13668             return encodeDate(o);
13669         }else if(typeof o == "string"){
13670             return encodeString(o);
13671         }else if(typeof o == "number"){
13672             return isFinite(o) ? String(o) : "null";
13673         }else if(typeof o == "boolean"){
13674             return String(o);
13675         }else {
13676             var a = ["{"], b, i, v;
13677             for (i in o) {
13678                 if(!useHasOwn || o.hasOwnProperty(i)) {
13679                     v = o[i];
13680                     switch (typeof v) {
13681                     case "undefined":
13682                     case "function":
13683                     case "unknown":
13684                         break;
13685                     default:
13686                         if(b){
13687                             a.push(',');
13688                         }
13689                         a.push(this.encode(i), ":",
13690                                 v === null ? "null" : this.encode(v));
13691                         b = true;
13692                     }
13693                 }
13694             }
13695             a.push("}");
13696             return a.join("");
13697         }
13698     };
13699     
13700     /**
13701      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13702      * @param {String} json The JSON string
13703      * @return {Object} The resulting object
13704      */
13705     this.decode = function(json){
13706         
13707         return  /** eval:var:json */ eval("(" + json + ')');
13708     };
13709 })();
13710 /** 
13711  * Shorthand for {@link Roo.util.JSON#encode}
13712  * @member Roo encode 
13713  * @method */
13714 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13715 /** 
13716  * Shorthand for {@link Roo.util.JSON#decode}
13717  * @member Roo decode 
13718  * @method */
13719 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13720 /*
13721  * Based on:
13722  * Ext JS Library 1.1.1
13723  * Copyright(c) 2006-2007, Ext JS, LLC.
13724  *
13725  * Originally Released Under LGPL - original licence link has changed is not relivant.
13726  *
13727  * Fork - LGPL
13728  * <script type="text/javascript">
13729  */
13730  
13731 /**
13732  * @class Roo.util.Format
13733  * Reusable data formatting functions
13734  * @singleton
13735  */
13736 Roo.util.Format = function(){
13737     var trimRe = /^\s+|\s+$/g;
13738     return {
13739         /**
13740          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13741          * @param {String} value The string to truncate
13742          * @param {Number} length The maximum length to allow before truncating
13743          * @return {String} The converted text
13744          */
13745         ellipsis : function(value, len){
13746             if(value && value.length > len){
13747                 return value.substr(0, len-3)+"...";
13748             }
13749             return value;
13750         },
13751
13752         /**
13753          * Checks a reference and converts it to empty string if it is undefined
13754          * @param {Mixed} value Reference to check
13755          * @return {Mixed} Empty string if converted, otherwise the original value
13756          */
13757         undef : function(value){
13758             return typeof value != "undefined" ? value : "";
13759         },
13760
13761         /**
13762          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13763          * @param {String} value The string to encode
13764          * @return {String} The encoded text
13765          */
13766         htmlEncode : function(value){
13767             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13768         },
13769
13770         /**
13771          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13772          * @param {String} value The string to decode
13773          * @return {String} The decoded text
13774          */
13775         htmlDecode : function(value){
13776             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13777         },
13778
13779         /**
13780          * Trims any whitespace from either side of a string
13781          * @param {String} value The text to trim
13782          * @return {String} The trimmed text
13783          */
13784         trim : function(value){
13785             return String(value).replace(trimRe, "");
13786         },
13787
13788         /**
13789          * Returns a substring from within an original string
13790          * @param {String} value The original text
13791          * @param {Number} start The start index of the substring
13792          * @param {Number} length The length of the substring
13793          * @return {String} The substring
13794          */
13795         substr : function(value, start, length){
13796             return String(value).substr(start, length);
13797         },
13798
13799         /**
13800          * Converts a string to all lower case letters
13801          * @param {String} value The text to convert
13802          * @return {String} The converted text
13803          */
13804         lowercase : function(value){
13805             return String(value).toLowerCase();
13806         },
13807
13808         /**
13809          * Converts a string to all upper case letters
13810          * @param {String} value The text to convert
13811          * @return {String} The converted text
13812          */
13813         uppercase : function(value){
13814             return String(value).toUpperCase();
13815         },
13816
13817         /**
13818          * Converts the first character only of a string to upper case
13819          * @param {String} value The text to convert
13820          * @return {String} The converted text
13821          */
13822         capitalize : function(value){
13823             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13824         },
13825
13826         // private
13827         call : function(value, fn){
13828             if(arguments.length > 2){
13829                 var args = Array.prototype.slice.call(arguments, 2);
13830                 args.unshift(value);
13831                  
13832                 return /** eval:var:value */  eval(fn).apply(window, args);
13833             }else{
13834                 /** eval:var:value */
13835                 return /** eval:var:value */ eval(fn).call(window, value);
13836             }
13837         },
13838
13839        
13840         /**
13841          * safer version of Math.toFixed..??/
13842          * @param {Number/String} value The numeric value to format
13843          * @param {Number/String} value Decimal places 
13844          * @return {String} The formatted currency string
13845          */
13846         toFixed : function(v, n)
13847         {
13848             // why not use to fixed - precision is buggered???
13849             if (!n) {
13850                 return Math.round(v-0);
13851             }
13852             var fact = Math.pow(10,n+1);
13853             v = (Math.round((v-0)*fact))/fact;
13854             var z = (''+fact).substring(2);
13855             if (v == Math.floor(v)) {
13856                 return Math.floor(v) + '.' + z;
13857             }
13858             
13859             // now just padd decimals..
13860             var ps = String(v).split('.');
13861             var fd = (ps[1] + z);
13862             var r = fd.substring(0,n); 
13863             var rm = fd.substring(n); 
13864             if (rm < 5) {
13865                 return ps[0] + '.' + r;
13866             }
13867             r*=1; // turn it into a number;
13868             r++;
13869             if (String(r).length != n) {
13870                 ps[0]*=1;
13871                 ps[0]++;
13872                 r = String(r).substring(1); // chop the end off.
13873             }
13874             
13875             return ps[0] + '.' + r;
13876              
13877         },
13878         
13879         /**
13880          * Format a number as US currency
13881          * @param {Number/String} value The numeric value to format
13882          * @return {String} The formatted currency string
13883          */
13884         usMoney : function(v){
13885             return '$' + Roo.util.Format.number(v);
13886         },
13887         
13888         /**
13889          * Format a number
13890          * eventually this should probably emulate php's number_format
13891          * @param {Number/String} value The numeric value to format
13892          * @param {Number} decimals number of decimal places
13893          * @param {String} delimiter for thousands (default comma)
13894          * @return {String} The formatted currency string
13895          */
13896         number : function(v, decimals, thousandsDelimiter)
13897         {
13898             // multiply and round.
13899             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13900             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13901             
13902             var mul = Math.pow(10, decimals);
13903             var zero = String(mul).substring(1);
13904             v = (Math.round((v-0)*mul))/mul;
13905             
13906             // if it's '0' number.. then
13907             
13908             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13909             v = String(v);
13910             var ps = v.split('.');
13911             var whole = ps[0];
13912             
13913             var r = /(\d+)(\d{3})/;
13914             // add comma's
13915             
13916             if(thousandsDelimiter.length != 0) {
13917                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13918             } 
13919             
13920             var sub = ps[1] ?
13921                     // has decimals..
13922                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13923                     // does not have decimals
13924                     (decimals ? ('.' + zero) : '');
13925             
13926             
13927             return whole + sub ;
13928         },
13929         
13930         /**
13931          * Parse a value into a formatted date using the specified format pattern.
13932          * @param {Mixed} value The value to format
13933          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13934          * @return {String} The formatted date string
13935          */
13936         date : function(v, format){
13937             if(!v){
13938                 return "";
13939             }
13940             if(!(v instanceof Date)){
13941                 v = new Date(Date.parse(v));
13942             }
13943             return v.dateFormat(format || Roo.util.Format.defaults.date);
13944         },
13945
13946         /**
13947          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13948          * @param {String} format Any valid date format string
13949          * @return {Function} The date formatting function
13950          */
13951         dateRenderer : function(format){
13952             return function(v){
13953                 return Roo.util.Format.date(v, format);  
13954             };
13955         },
13956
13957         // private
13958         stripTagsRE : /<\/?[^>]+>/gi,
13959         
13960         /**
13961          * Strips all HTML tags
13962          * @param {Mixed} value The text from which to strip tags
13963          * @return {String} The stripped text
13964          */
13965         stripTags : function(v){
13966             return !v ? v : String(v).replace(this.stripTagsRE, "");
13967         }
13968     };
13969 }();
13970 Roo.util.Format.defaults = {
13971     date : 'd/M/Y'
13972 };/*
13973  * Based on:
13974  * Ext JS Library 1.1.1
13975  * Copyright(c) 2006-2007, Ext JS, LLC.
13976  *
13977  * Originally Released Under LGPL - original licence link has changed is not relivant.
13978  *
13979  * Fork - LGPL
13980  * <script type="text/javascript">
13981  */
13982
13983
13984  
13985
13986 /**
13987  * @class Roo.MasterTemplate
13988  * @extends Roo.Template
13989  * Provides a template that can have child templates. The syntax is:
13990 <pre><code>
13991 var t = new Roo.MasterTemplate(
13992         '&lt;select name="{name}"&gt;',
13993                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13994         '&lt;/select&gt;'
13995 );
13996 t.add('options', {value: 'foo', text: 'bar'});
13997 // or you can add multiple child elements in one shot
13998 t.addAll('options', [
13999     {value: 'foo', text: 'bar'},
14000     {value: 'foo2', text: 'bar2'},
14001     {value: 'foo3', text: 'bar3'}
14002 ]);
14003 // then append, applying the master template values
14004 t.append('my-form', {name: 'my-select'});
14005 </code></pre>
14006 * A name attribute for the child template is not required if you have only one child
14007 * template or you want to refer to them by index.
14008  */
14009 Roo.MasterTemplate = function(){
14010     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14011     this.originalHtml = this.html;
14012     var st = {};
14013     var m, re = this.subTemplateRe;
14014     re.lastIndex = 0;
14015     var subIndex = 0;
14016     while(m = re.exec(this.html)){
14017         var name = m[1], content = m[2];
14018         st[subIndex] = {
14019             name: name,
14020             index: subIndex,
14021             buffer: [],
14022             tpl : new Roo.Template(content)
14023         };
14024         if(name){
14025             st[name] = st[subIndex];
14026         }
14027         st[subIndex].tpl.compile();
14028         st[subIndex].tpl.call = this.call.createDelegate(this);
14029         subIndex++;
14030     }
14031     this.subCount = subIndex;
14032     this.subs = st;
14033 };
14034 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14035     /**
14036     * The regular expression used to match sub templates
14037     * @type RegExp
14038     * @property
14039     */
14040     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14041
14042     /**
14043      * Applies the passed values to a child template.
14044      * @param {String/Number} name (optional) The name or index of the child template
14045      * @param {Array/Object} values The values to be applied to the template
14046      * @return {MasterTemplate} this
14047      */
14048      add : function(name, values){
14049         if(arguments.length == 1){
14050             values = arguments[0];
14051             name = 0;
14052         }
14053         var s = this.subs[name];
14054         s.buffer[s.buffer.length] = s.tpl.apply(values);
14055         return this;
14056     },
14057
14058     /**
14059      * Applies all the passed values to a child template.
14060      * @param {String/Number} name (optional) The name or index of the child template
14061      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14062      * @param {Boolean} reset (optional) True to reset the template first
14063      * @return {MasterTemplate} this
14064      */
14065     fill : function(name, values, reset){
14066         var a = arguments;
14067         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14068             values = a[0];
14069             name = 0;
14070             reset = a[1];
14071         }
14072         if(reset){
14073             this.reset();
14074         }
14075         for(var i = 0, len = values.length; i < len; i++){
14076             this.add(name, values[i]);
14077         }
14078         return this;
14079     },
14080
14081     /**
14082      * Resets the template for reuse
14083      * @return {MasterTemplate} this
14084      */
14085      reset : function(){
14086         var s = this.subs;
14087         for(var i = 0; i < this.subCount; i++){
14088             s[i].buffer = [];
14089         }
14090         return this;
14091     },
14092
14093     applyTemplate : function(values){
14094         var s = this.subs;
14095         var replaceIndex = -1;
14096         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14097             return s[++replaceIndex].buffer.join("");
14098         });
14099         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14100     },
14101
14102     apply : function(){
14103         return this.applyTemplate.apply(this, arguments);
14104     },
14105
14106     compile : function(){return this;}
14107 });
14108
14109 /**
14110  * Alias for fill().
14111  * @method
14112  */
14113 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14114  /**
14115  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14116  * var tpl = Roo.MasterTemplate.from('element-id');
14117  * @param {String/HTMLElement} el
14118  * @param {Object} config
14119  * @static
14120  */
14121 Roo.MasterTemplate.from = function(el, config){
14122     el = Roo.getDom(el);
14123     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14124 };/*
14125  * Based on:
14126  * Ext JS Library 1.1.1
14127  * Copyright(c) 2006-2007, Ext JS, LLC.
14128  *
14129  * Originally Released Under LGPL - original licence link has changed is not relivant.
14130  *
14131  * Fork - LGPL
14132  * <script type="text/javascript">
14133  */
14134
14135  
14136 /**
14137  * @class Roo.util.CSS
14138  * Utility class for manipulating CSS rules
14139  * @singleton
14140  */
14141 Roo.util.CSS = function(){
14142         var rules = null;
14143         var doc = document;
14144
14145     var camelRe = /(-[a-z])/gi;
14146     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14147
14148    return {
14149    /**
14150     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14151     * tag and appended to the HEAD of the document.
14152     * @param {String|Object} cssText The text containing the css rules
14153     * @param {String} id An id to add to the stylesheet for later removal
14154     * @return {StyleSheet}
14155     */
14156     createStyleSheet : function(cssText, id){
14157         var ss;
14158         var head = doc.getElementsByTagName("head")[0];
14159         var nrules = doc.createElement("style");
14160         nrules.setAttribute("type", "text/css");
14161         if(id){
14162             nrules.setAttribute("id", id);
14163         }
14164         if (typeof(cssText) != 'string') {
14165             // support object maps..
14166             // not sure if this a good idea.. 
14167             // perhaps it should be merged with the general css handling
14168             // and handle js style props.
14169             var cssTextNew = [];
14170             for(var n in cssText) {
14171                 var citems = [];
14172                 for(var k in cssText[n]) {
14173                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14174                 }
14175                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14176                 
14177             }
14178             cssText = cssTextNew.join("\n");
14179             
14180         }
14181        
14182        
14183        if(Roo.isIE){
14184            head.appendChild(nrules);
14185            ss = nrules.styleSheet;
14186            ss.cssText = cssText;
14187        }else{
14188            try{
14189                 nrules.appendChild(doc.createTextNode(cssText));
14190            }catch(e){
14191                nrules.cssText = cssText; 
14192            }
14193            head.appendChild(nrules);
14194            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14195        }
14196        this.cacheStyleSheet(ss);
14197        return ss;
14198    },
14199
14200    /**
14201     * Removes a style or link tag by id
14202     * @param {String} id The id of the tag
14203     */
14204    removeStyleSheet : function(id){
14205        var existing = doc.getElementById(id);
14206        if(existing){
14207            existing.parentNode.removeChild(existing);
14208        }
14209    },
14210
14211    /**
14212     * Dynamically swaps an existing stylesheet reference for a new one
14213     * @param {String} id The id of an existing link tag to remove
14214     * @param {String} url The href of the new stylesheet to include
14215     */
14216    swapStyleSheet : function(id, url){
14217        this.removeStyleSheet(id);
14218        var ss = doc.createElement("link");
14219        ss.setAttribute("rel", "stylesheet");
14220        ss.setAttribute("type", "text/css");
14221        ss.setAttribute("id", id);
14222        ss.setAttribute("href", url);
14223        doc.getElementsByTagName("head")[0].appendChild(ss);
14224    },
14225    
14226    /**
14227     * Refresh the rule cache if you have dynamically added stylesheets
14228     * @return {Object} An object (hash) of rules indexed by selector
14229     */
14230    refreshCache : function(){
14231        return this.getRules(true);
14232    },
14233
14234    // private
14235    cacheStyleSheet : function(stylesheet){
14236        if(!rules){
14237            rules = {};
14238        }
14239        try{// try catch for cross domain access issue
14240            var ssRules = stylesheet.cssRules || stylesheet.rules;
14241            for(var j = ssRules.length-1; j >= 0; --j){
14242                rules[ssRules[j].selectorText] = ssRules[j];
14243            }
14244        }catch(e){}
14245    },
14246    
14247    /**
14248     * Gets all css rules for the document
14249     * @param {Boolean} refreshCache true to refresh the internal cache
14250     * @return {Object} An object (hash) of rules indexed by selector
14251     */
14252    getRules : function(refreshCache){
14253                 if(rules == null || refreshCache){
14254                         rules = {};
14255                         var ds = doc.styleSheets;
14256                         for(var i =0, len = ds.length; i < len; i++){
14257                             try{
14258                         this.cacheStyleSheet(ds[i]);
14259                     }catch(e){} 
14260                 }
14261                 }
14262                 return rules;
14263         },
14264         
14265         /**
14266     * Gets an an individual CSS rule by selector(s)
14267     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14268     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14269     * @return {CSSRule} The CSS rule or null if one is not found
14270     */
14271    getRule : function(selector, refreshCache){
14272                 var rs = this.getRules(refreshCache);
14273                 if(!(selector instanceof Array)){
14274                     return rs[selector];
14275                 }
14276                 for(var i = 0; i < selector.length; i++){
14277                         if(rs[selector[i]]){
14278                                 return rs[selector[i]];
14279                         }
14280                 }
14281                 return null;
14282         },
14283         
14284         
14285         /**
14286     * Updates a rule property
14287     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14288     * @param {String} property The css property
14289     * @param {String} value The new value for the property
14290     * @return {Boolean} true If a rule was found and updated
14291     */
14292    updateRule : function(selector, property, value){
14293                 if(!(selector instanceof Array)){
14294                         var rule = this.getRule(selector);
14295                         if(rule){
14296                                 rule.style[property.replace(camelRe, camelFn)] = value;
14297                                 return true;
14298                         }
14299                 }else{
14300                         for(var i = 0; i < selector.length; i++){
14301                                 if(this.updateRule(selector[i], property, value)){
14302                                         return true;
14303                                 }
14304                         }
14305                 }
14306                 return false;
14307         }
14308    };   
14309 }();/*
14310  * Based on:
14311  * Ext JS Library 1.1.1
14312  * Copyright(c) 2006-2007, Ext JS, LLC.
14313  *
14314  * Originally Released Under LGPL - original licence link has changed is not relivant.
14315  *
14316  * Fork - LGPL
14317  * <script type="text/javascript">
14318  */
14319
14320  
14321
14322 /**
14323  * @class Roo.util.ClickRepeater
14324  * @extends Roo.util.Observable
14325  * 
14326  * A wrapper class which can be applied to any element. Fires a "click" event while the
14327  * mouse is pressed. The interval between firings may be specified in the config but
14328  * defaults to 10 milliseconds.
14329  * 
14330  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14331  * 
14332  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14333  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14334  * Similar to an autorepeat key delay.
14335  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14336  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14337  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14338  *           "interval" and "delay" are ignored. "immediate" is honored.
14339  * @cfg {Boolean} preventDefault True to prevent the default click event
14340  * @cfg {Boolean} stopDefault True to stop the default click event
14341  * 
14342  * @history
14343  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14344  *     2007-02-02 jvs Renamed to ClickRepeater
14345  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14346  *
14347  *  @constructor
14348  * @param {String/HTMLElement/Element} el The element to listen on
14349  * @param {Object} config
14350  **/
14351 Roo.util.ClickRepeater = function(el, config)
14352 {
14353     this.el = Roo.get(el);
14354     this.el.unselectable();
14355
14356     Roo.apply(this, config);
14357
14358     this.addEvents({
14359     /**
14360      * @event mousedown
14361      * Fires when the mouse button is depressed.
14362      * @param {Roo.util.ClickRepeater} this
14363      */
14364         "mousedown" : true,
14365     /**
14366      * @event click
14367      * Fires on a specified interval during the time the element is pressed.
14368      * @param {Roo.util.ClickRepeater} this
14369      */
14370         "click" : true,
14371     /**
14372      * @event mouseup
14373      * Fires when the mouse key is released.
14374      * @param {Roo.util.ClickRepeater} this
14375      */
14376         "mouseup" : true
14377     });
14378
14379     this.el.on("mousedown", this.handleMouseDown, this);
14380     if(this.preventDefault || this.stopDefault){
14381         this.el.on("click", function(e){
14382             if(this.preventDefault){
14383                 e.preventDefault();
14384             }
14385             if(this.stopDefault){
14386                 e.stopEvent();
14387             }
14388         }, this);
14389     }
14390
14391     // allow inline handler
14392     if(this.handler){
14393         this.on("click", this.handler,  this.scope || this);
14394     }
14395
14396     Roo.util.ClickRepeater.superclass.constructor.call(this);
14397 };
14398
14399 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14400     interval : 20,
14401     delay: 250,
14402     preventDefault : true,
14403     stopDefault : false,
14404     timer : 0,
14405
14406     // private
14407     handleMouseDown : function(){
14408         clearTimeout(this.timer);
14409         this.el.blur();
14410         if(this.pressClass){
14411             this.el.addClass(this.pressClass);
14412         }
14413         this.mousedownTime = new Date();
14414
14415         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14416         this.el.on("mouseout", this.handleMouseOut, this);
14417
14418         this.fireEvent("mousedown", this);
14419         this.fireEvent("click", this);
14420         
14421         this.timer = this.click.defer(this.delay || this.interval, this);
14422     },
14423
14424     // private
14425     click : function(){
14426         this.fireEvent("click", this);
14427         this.timer = this.click.defer(this.getInterval(), this);
14428     },
14429
14430     // private
14431     getInterval: function(){
14432         if(!this.accelerate){
14433             return this.interval;
14434         }
14435         var pressTime = this.mousedownTime.getElapsed();
14436         if(pressTime < 500){
14437             return 400;
14438         }else if(pressTime < 1700){
14439             return 320;
14440         }else if(pressTime < 2600){
14441             return 250;
14442         }else if(pressTime < 3500){
14443             return 180;
14444         }else if(pressTime < 4400){
14445             return 140;
14446         }else if(pressTime < 5300){
14447             return 80;
14448         }else if(pressTime < 6200){
14449             return 50;
14450         }else{
14451             return 10;
14452         }
14453     },
14454
14455     // private
14456     handleMouseOut : function(){
14457         clearTimeout(this.timer);
14458         if(this.pressClass){
14459             this.el.removeClass(this.pressClass);
14460         }
14461         this.el.on("mouseover", this.handleMouseReturn, this);
14462     },
14463
14464     // private
14465     handleMouseReturn : function(){
14466         this.el.un("mouseover", this.handleMouseReturn);
14467         if(this.pressClass){
14468             this.el.addClass(this.pressClass);
14469         }
14470         this.click();
14471     },
14472
14473     // private
14474     handleMouseUp : function(){
14475         clearTimeout(this.timer);
14476         this.el.un("mouseover", this.handleMouseReturn);
14477         this.el.un("mouseout", this.handleMouseOut);
14478         Roo.get(document).un("mouseup", this.handleMouseUp);
14479         this.el.removeClass(this.pressClass);
14480         this.fireEvent("mouseup", this);
14481     }
14482 });/*
14483  * Based on:
14484  * Ext JS Library 1.1.1
14485  * Copyright(c) 2006-2007, Ext JS, LLC.
14486  *
14487  * Originally Released Under LGPL - original licence link has changed is not relivant.
14488  *
14489  * Fork - LGPL
14490  * <script type="text/javascript">
14491  */
14492
14493  
14494 /**
14495  * @class Roo.KeyNav
14496  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14497  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14498  * way to implement custom navigation schemes for any UI component.</p>
14499  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14500  * pageUp, pageDown, del, home, end.  Usage:</p>
14501  <pre><code>
14502 var nav = new Roo.KeyNav("my-element", {
14503     "left" : function(e){
14504         this.moveLeft(e.ctrlKey);
14505     },
14506     "right" : function(e){
14507         this.moveRight(e.ctrlKey);
14508     },
14509     "enter" : function(e){
14510         this.save();
14511     },
14512     scope : this
14513 });
14514 </code></pre>
14515  * @constructor
14516  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14517  * @param {Object} config The config
14518  */
14519 Roo.KeyNav = function(el, config){
14520     this.el = Roo.get(el);
14521     Roo.apply(this, config);
14522     if(!this.disabled){
14523         this.disabled = true;
14524         this.enable();
14525     }
14526 };
14527
14528 Roo.KeyNav.prototype = {
14529     /**
14530      * @cfg {Boolean} disabled
14531      * True to disable this KeyNav instance (defaults to false)
14532      */
14533     disabled : false,
14534     /**
14535      * @cfg {String} defaultEventAction
14536      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14537      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14538      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14539      */
14540     defaultEventAction: "stopEvent",
14541     /**
14542      * @cfg {Boolean} forceKeyDown
14543      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14544      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14545      * handle keydown instead of keypress.
14546      */
14547     forceKeyDown : false,
14548
14549     // private
14550     prepareEvent : function(e){
14551         var k = e.getKey();
14552         var h = this.keyToHandler[k];
14553         //if(h && this[h]){
14554         //    e.stopPropagation();
14555         //}
14556         if(Roo.isSafari && h && k >= 37 && k <= 40){
14557             e.stopEvent();
14558         }
14559     },
14560
14561     // private
14562     relay : function(e){
14563         var k = e.getKey();
14564         var h = this.keyToHandler[k];
14565         if(h && this[h]){
14566             if(this.doRelay(e, this[h], h) !== true){
14567                 e[this.defaultEventAction]();
14568             }
14569         }
14570     },
14571
14572     // private
14573     doRelay : function(e, h, hname){
14574         return h.call(this.scope || this, e);
14575     },
14576
14577     // possible handlers
14578     enter : false,
14579     left : false,
14580     right : false,
14581     up : false,
14582     down : false,
14583     tab : false,
14584     esc : false,
14585     pageUp : false,
14586     pageDown : false,
14587     del : false,
14588     home : false,
14589     end : false,
14590
14591     // quick lookup hash
14592     keyToHandler : {
14593         37 : "left",
14594         39 : "right",
14595         38 : "up",
14596         40 : "down",
14597         33 : "pageUp",
14598         34 : "pageDown",
14599         46 : "del",
14600         36 : "home",
14601         35 : "end",
14602         13 : "enter",
14603         27 : "esc",
14604         9  : "tab"
14605     },
14606
14607         /**
14608          * Enable this KeyNav
14609          */
14610         enable: function(){
14611                 if(this.disabled){
14612             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14613             // the EventObject will normalize Safari automatically
14614             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14615                 this.el.on("keydown", this.relay,  this);
14616             }else{
14617                 this.el.on("keydown", this.prepareEvent,  this);
14618                 this.el.on("keypress", this.relay,  this);
14619             }
14620                     this.disabled = false;
14621                 }
14622         },
14623
14624         /**
14625          * Disable this KeyNav
14626          */
14627         disable: function(){
14628                 if(!this.disabled){
14629                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14630                 this.el.un("keydown", this.relay);
14631             }else{
14632                 this.el.un("keydown", this.prepareEvent);
14633                 this.el.un("keypress", this.relay);
14634             }
14635                     this.disabled = true;
14636                 }
14637         }
14638 };/*
14639  * Based on:
14640  * Ext JS Library 1.1.1
14641  * Copyright(c) 2006-2007, Ext JS, LLC.
14642  *
14643  * Originally Released Under LGPL - original licence link has changed is not relivant.
14644  *
14645  * Fork - LGPL
14646  * <script type="text/javascript">
14647  */
14648
14649  
14650 /**
14651  * @class Roo.KeyMap
14652  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14653  * The constructor accepts the same config object as defined by {@link #addBinding}.
14654  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14655  * combination it will call the function with this signature (if the match is a multi-key
14656  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14657  * A KeyMap can also handle a string representation of keys.<br />
14658  * Usage:
14659  <pre><code>
14660 // map one key by key code
14661 var map = new Roo.KeyMap("my-element", {
14662     key: 13, // or Roo.EventObject.ENTER
14663     fn: myHandler,
14664     scope: myObject
14665 });
14666
14667 // map multiple keys to one action by string
14668 var map = new Roo.KeyMap("my-element", {
14669     key: "a\r\n\t",
14670     fn: myHandler,
14671     scope: myObject
14672 });
14673
14674 // map multiple keys to multiple actions by strings and array of codes
14675 var map = new Roo.KeyMap("my-element", [
14676     {
14677         key: [10,13],
14678         fn: function(){ alert("Return was pressed"); }
14679     }, {
14680         key: "abc",
14681         fn: function(){ alert('a, b or c was pressed'); }
14682     }, {
14683         key: "\t",
14684         ctrl:true,
14685         shift:true,
14686         fn: function(){ alert('Control + shift + tab was pressed.'); }
14687     }
14688 ]);
14689 </code></pre>
14690  * <b>Note: A KeyMap starts enabled</b>
14691  * @constructor
14692  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14693  * @param {Object} config The config (see {@link #addBinding})
14694  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14695  */
14696 Roo.KeyMap = function(el, config, eventName){
14697     this.el  = Roo.get(el);
14698     this.eventName = eventName || "keydown";
14699     this.bindings = [];
14700     if(config){
14701         this.addBinding(config);
14702     }
14703     this.enable();
14704 };
14705
14706 Roo.KeyMap.prototype = {
14707     /**
14708      * True to stop the event from bubbling and prevent the default browser action if the
14709      * key was handled by the KeyMap (defaults to false)
14710      * @type Boolean
14711      */
14712     stopEvent : false,
14713
14714     /**
14715      * Add a new binding to this KeyMap. The following config object properties are supported:
14716      * <pre>
14717 Property    Type             Description
14718 ----------  ---------------  ----------------------------------------------------------------------
14719 key         String/Array     A single keycode or an array of keycodes to handle
14720 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14721 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14722 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14723 fn          Function         The function to call when KeyMap finds the expected key combination
14724 scope       Object           The scope of the callback function
14725 </pre>
14726      *
14727      * Usage:
14728      * <pre><code>
14729 // Create a KeyMap
14730 var map = new Roo.KeyMap(document, {
14731     key: Roo.EventObject.ENTER,
14732     fn: handleKey,
14733     scope: this
14734 });
14735
14736 //Add a new binding to the existing KeyMap later
14737 map.addBinding({
14738     key: 'abc',
14739     shift: true,
14740     fn: handleKey,
14741     scope: this
14742 });
14743 </code></pre>
14744      * @param {Object/Array} config A single KeyMap config or an array of configs
14745      */
14746         addBinding : function(config){
14747         if(config instanceof Array){
14748             for(var i = 0, len = config.length; i < len; i++){
14749                 this.addBinding(config[i]);
14750             }
14751             return;
14752         }
14753         var keyCode = config.key,
14754             shift = config.shift, 
14755             ctrl = config.ctrl, 
14756             alt = config.alt,
14757             fn = config.fn,
14758             scope = config.scope;
14759         if(typeof keyCode == "string"){
14760             var ks = [];
14761             var keyString = keyCode.toUpperCase();
14762             for(var j = 0, len = keyString.length; j < len; j++){
14763                 ks.push(keyString.charCodeAt(j));
14764             }
14765             keyCode = ks;
14766         }
14767         var keyArray = keyCode instanceof Array;
14768         var handler = function(e){
14769             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14770                 var k = e.getKey();
14771                 if(keyArray){
14772                     for(var i = 0, len = keyCode.length; i < len; i++){
14773                         if(keyCode[i] == k){
14774                           if(this.stopEvent){
14775                               e.stopEvent();
14776                           }
14777                           fn.call(scope || window, k, e);
14778                           return;
14779                         }
14780                     }
14781                 }else{
14782                     if(k == keyCode){
14783                         if(this.stopEvent){
14784                            e.stopEvent();
14785                         }
14786                         fn.call(scope || window, k, e);
14787                     }
14788                 }
14789             }
14790         };
14791         this.bindings.push(handler);  
14792         },
14793
14794     /**
14795      * Shorthand for adding a single key listener
14796      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14797      * following options:
14798      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14799      * @param {Function} fn The function to call
14800      * @param {Object} scope (optional) The scope of the function
14801      */
14802     on : function(key, fn, scope){
14803         var keyCode, shift, ctrl, alt;
14804         if(typeof key == "object" && !(key instanceof Array)){
14805             keyCode = key.key;
14806             shift = key.shift;
14807             ctrl = key.ctrl;
14808             alt = key.alt;
14809         }else{
14810             keyCode = key;
14811         }
14812         this.addBinding({
14813             key: keyCode,
14814             shift: shift,
14815             ctrl: ctrl,
14816             alt: alt,
14817             fn: fn,
14818             scope: scope
14819         })
14820     },
14821
14822     // private
14823     handleKeyDown : function(e){
14824             if(this.enabled){ //just in case
14825             var b = this.bindings;
14826             for(var i = 0, len = b.length; i < len; i++){
14827                 b[i].call(this, e);
14828             }
14829             }
14830         },
14831         
14832         /**
14833          * Returns true if this KeyMap is enabled
14834          * @return {Boolean} 
14835          */
14836         isEnabled : function(){
14837             return this.enabled;  
14838         },
14839         
14840         /**
14841          * Enables this KeyMap
14842          */
14843         enable: function(){
14844                 if(!this.enabled){
14845                     this.el.on(this.eventName, this.handleKeyDown, this);
14846                     this.enabled = true;
14847                 }
14848         },
14849
14850         /**
14851          * Disable this KeyMap
14852          */
14853         disable: function(){
14854                 if(this.enabled){
14855                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14856                     this.enabled = false;
14857                 }
14858         }
14859 };/*
14860  * Based on:
14861  * Ext JS Library 1.1.1
14862  * Copyright(c) 2006-2007, Ext JS, LLC.
14863  *
14864  * Originally Released Under LGPL - original licence link has changed is not relivant.
14865  *
14866  * Fork - LGPL
14867  * <script type="text/javascript">
14868  */
14869
14870  
14871 /**
14872  * @class Roo.util.TextMetrics
14873  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14874  * wide, in pixels, a given block of text will be.
14875  * @singleton
14876  */
14877 Roo.util.TextMetrics = function(){
14878     var shared;
14879     return {
14880         /**
14881          * Measures the size of the specified text
14882          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14883          * that can affect the size of the rendered text
14884          * @param {String} text The text to measure
14885          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14886          * in order to accurately measure the text height
14887          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14888          */
14889         measure : function(el, text, fixedWidth){
14890             if(!shared){
14891                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14892             }
14893             shared.bind(el);
14894             shared.setFixedWidth(fixedWidth || 'auto');
14895             return shared.getSize(text);
14896         },
14897
14898         /**
14899          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14900          * the overhead of multiple calls to initialize the style properties on each measurement.
14901          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14902          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14903          * in order to accurately measure the text height
14904          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14905          */
14906         createInstance : function(el, fixedWidth){
14907             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14908         }
14909     };
14910 }();
14911
14912  
14913
14914 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14915     var ml = new Roo.Element(document.createElement('div'));
14916     document.body.appendChild(ml.dom);
14917     ml.position('absolute');
14918     ml.setLeftTop(-1000, -1000);
14919     ml.hide();
14920
14921     if(fixedWidth){
14922         ml.setWidth(fixedWidth);
14923     }
14924      
14925     var instance = {
14926         /**
14927          * Returns the size of the specified text based on the internal element's style and width properties
14928          * @memberOf Roo.util.TextMetrics.Instance#
14929          * @param {String} text The text to measure
14930          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14931          */
14932         getSize : function(text){
14933             ml.update(text);
14934             var s = ml.getSize();
14935             ml.update('');
14936             return s;
14937         },
14938
14939         /**
14940          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14941          * that can affect the size of the rendered text
14942          * @memberOf Roo.util.TextMetrics.Instance#
14943          * @param {String/HTMLElement} el The element, dom node or id
14944          */
14945         bind : function(el){
14946             ml.setStyle(
14947                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14948             );
14949         },
14950
14951         /**
14952          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14953          * to set a fixed width in order to accurately measure the text height.
14954          * @memberOf Roo.util.TextMetrics.Instance#
14955          * @param {Number} width The width to set on the element
14956          */
14957         setFixedWidth : function(width){
14958             ml.setWidth(width);
14959         },
14960
14961         /**
14962          * Returns the measured width of the specified text
14963          * @memberOf Roo.util.TextMetrics.Instance#
14964          * @param {String} text The text to measure
14965          * @return {Number} width The width in pixels
14966          */
14967         getWidth : function(text){
14968             ml.dom.style.width = 'auto';
14969             return this.getSize(text).width;
14970         },
14971
14972         /**
14973          * Returns the measured height of the specified text.  For multiline text, be sure to call
14974          * {@link #setFixedWidth} if necessary.
14975          * @memberOf Roo.util.TextMetrics.Instance#
14976          * @param {String} text The text to measure
14977          * @return {Number} height The height in pixels
14978          */
14979         getHeight : function(text){
14980             return this.getSize(text).height;
14981         }
14982     };
14983
14984     instance.bind(bindTo);
14985
14986     return instance;
14987 };
14988
14989 // backwards compat
14990 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14991  * Based on:
14992  * Ext JS Library 1.1.1
14993  * Copyright(c) 2006-2007, Ext JS, LLC.
14994  *
14995  * Originally Released Under LGPL - original licence link has changed is not relivant.
14996  *
14997  * Fork - LGPL
14998  * <script type="text/javascript">
14999  */
15000
15001 /**
15002  * @class Roo.state.Provider
15003  * Abstract base class for state provider implementations. This class provides methods
15004  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15005  * Provider interface.
15006  */
15007 Roo.state.Provider = function(){
15008     /**
15009      * @event statechange
15010      * Fires when a state change occurs.
15011      * @param {Provider} this This state provider
15012      * @param {String} key The state key which was changed
15013      * @param {String} value The encoded value for the state
15014      */
15015     this.addEvents({
15016         "statechange": true
15017     });
15018     this.state = {};
15019     Roo.state.Provider.superclass.constructor.call(this);
15020 };
15021 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15022     /**
15023      * Returns the current value for a key
15024      * @param {String} name The key name
15025      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15026      * @return {Mixed} The state data
15027      */
15028     get : function(name, defaultValue){
15029         return typeof this.state[name] == "undefined" ?
15030             defaultValue : this.state[name];
15031     },
15032     
15033     /**
15034      * Clears a value from the state
15035      * @param {String} name The key name
15036      */
15037     clear : function(name){
15038         delete this.state[name];
15039         this.fireEvent("statechange", this, name, null);
15040     },
15041     
15042     /**
15043      * Sets the value for a key
15044      * @param {String} name The key name
15045      * @param {Mixed} value The value to set
15046      */
15047     set : function(name, value){
15048         this.state[name] = value;
15049         this.fireEvent("statechange", this, name, value);
15050     },
15051     
15052     /**
15053      * Decodes a string previously encoded with {@link #encodeValue}.
15054      * @param {String} value The value to decode
15055      * @return {Mixed} The decoded value
15056      */
15057     decodeValue : function(cookie){
15058         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15059         var matches = re.exec(unescape(cookie));
15060         if(!matches || !matches[1]) {
15061             return; // non state cookie
15062         }
15063         var type = matches[1];
15064         var v = matches[2];
15065         switch(type){
15066             case "n":
15067                 return parseFloat(v);
15068             case "d":
15069                 return new Date(Date.parse(v));
15070             case "b":
15071                 return (v == "1");
15072             case "a":
15073                 var all = [];
15074                 var values = v.split("^");
15075                 for(var i = 0, len = values.length; i < len; i++){
15076                     all.push(this.decodeValue(values[i]));
15077                 }
15078                 return all;
15079            case "o":
15080                 var all = {};
15081                 var values = v.split("^");
15082                 for(var i = 0, len = values.length; i < len; i++){
15083                     var kv = values[i].split("=");
15084                     all[kv[0]] = this.decodeValue(kv[1]);
15085                 }
15086                 return all;
15087            default:
15088                 return v;
15089         }
15090     },
15091     
15092     /**
15093      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15094      * @param {Mixed} value The value to encode
15095      * @return {String} The encoded value
15096      */
15097     encodeValue : function(v){
15098         var enc;
15099         if(typeof v == "number"){
15100             enc = "n:" + v;
15101         }else if(typeof v == "boolean"){
15102             enc = "b:" + (v ? "1" : "0");
15103         }else if(v instanceof Date){
15104             enc = "d:" + v.toGMTString();
15105         }else if(v instanceof Array){
15106             var flat = "";
15107             for(var i = 0, len = v.length; i < len; i++){
15108                 flat += this.encodeValue(v[i]);
15109                 if(i != len-1) {
15110                     flat += "^";
15111                 }
15112             }
15113             enc = "a:" + flat;
15114         }else if(typeof v == "object"){
15115             var flat = "";
15116             for(var key in v){
15117                 if(typeof v[key] != "function"){
15118                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15119                 }
15120             }
15121             enc = "o:" + flat.substring(0, flat.length-1);
15122         }else{
15123             enc = "s:" + v;
15124         }
15125         return escape(enc);        
15126     }
15127 });
15128
15129 /*
15130  * Based on:
15131  * Ext JS Library 1.1.1
15132  * Copyright(c) 2006-2007, Ext JS, LLC.
15133  *
15134  * Originally Released Under LGPL - original licence link has changed is not relivant.
15135  *
15136  * Fork - LGPL
15137  * <script type="text/javascript">
15138  */
15139 /**
15140  * @class Roo.state.Manager
15141  * This is the global state manager. By default all components that are "state aware" check this class
15142  * for state information if you don't pass them a custom state provider. In order for this class
15143  * to be useful, it must be initialized with a provider when your application initializes.
15144  <pre><code>
15145 // in your initialization function
15146 init : function(){
15147    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15148    ...
15149    // supposed you have a {@link Roo.BorderLayout}
15150    var layout = new Roo.BorderLayout(...);
15151    layout.restoreState();
15152    // or a {Roo.BasicDialog}
15153    var dialog = new Roo.BasicDialog(...);
15154    dialog.restoreState();
15155  </code></pre>
15156  * @singleton
15157  */
15158 Roo.state.Manager = function(){
15159     var provider = new Roo.state.Provider();
15160     
15161     return {
15162         /**
15163          * Configures the default state provider for your application
15164          * @param {Provider} stateProvider The state provider to set
15165          */
15166         setProvider : function(stateProvider){
15167             provider = stateProvider;
15168         },
15169         
15170         /**
15171          * Returns the current value for a key
15172          * @param {String} name The key name
15173          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15174          * @return {Mixed} The state data
15175          */
15176         get : function(key, defaultValue){
15177             return provider.get(key, defaultValue);
15178         },
15179         
15180         /**
15181          * Sets the value for a key
15182          * @param {String} name The key name
15183          * @param {Mixed} value The state data
15184          */
15185          set : function(key, value){
15186             provider.set(key, value);
15187         },
15188         
15189         /**
15190          * Clears a value from the state
15191          * @param {String} name The key name
15192          */
15193         clear : function(key){
15194             provider.clear(key);
15195         },
15196         
15197         /**
15198          * Gets the currently configured state provider
15199          * @return {Provider} The state provider
15200          */
15201         getProvider : function(){
15202             return provider;
15203         }
15204     };
15205 }();
15206 /*
15207  * Based on:
15208  * Ext JS Library 1.1.1
15209  * Copyright(c) 2006-2007, Ext JS, LLC.
15210  *
15211  * Originally Released Under LGPL - original licence link has changed is not relivant.
15212  *
15213  * Fork - LGPL
15214  * <script type="text/javascript">
15215  */
15216 /**
15217  * @class Roo.state.CookieProvider
15218  * @extends Roo.state.Provider
15219  * The default Provider implementation which saves state via cookies.
15220  * <br />Usage:
15221  <pre><code>
15222    var cp = new Roo.state.CookieProvider({
15223        path: "/cgi-bin/",
15224        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15225        domain: "roojs.com"
15226    })
15227    Roo.state.Manager.setProvider(cp);
15228  </code></pre>
15229  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15230  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15231  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15232  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15233  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15234  * domain the page is running on including the 'www' like 'www.roojs.com')
15235  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15236  * @constructor
15237  * Create a new CookieProvider
15238  * @param {Object} config The configuration object
15239  */
15240 Roo.state.CookieProvider = function(config){
15241     Roo.state.CookieProvider.superclass.constructor.call(this);
15242     this.path = "/";
15243     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15244     this.domain = null;
15245     this.secure = false;
15246     Roo.apply(this, config);
15247     this.state = this.readCookies();
15248 };
15249
15250 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15251     // private
15252     set : function(name, value){
15253         if(typeof value == "undefined" || value === null){
15254             this.clear(name);
15255             return;
15256         }
15257         this.setCookie(name, value);
15258         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15259     },
15260
15261     // private
15262     clear : function(name){
15263         this.clearCookie(name);
15264         Roo.state.CookieProvider.superclass.clear.call(this, name);
15265     },
15266
15267     // private
15268     readCookies : function(){
15269         var cookies = {};
15270         var c = document.cookie + ";";
15271         var re = /\s?(.*?)=(.*?);/g;
15272         var matches;
15273         while((matches = re.exec(c)) != null){
15274             var name = matches[1];
15275             var value = matches[2];
15276             if(name && name.substring(0,3) == "ys-"){
15277                 cookies[name.substr(3)] = this.decodeValue(value);
15278             }
15279         }
15280         return cookies;
15281     },
15282
15283     // private
15284     setCookie : function(name, value){
15285         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15286            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15287            ((this.path == null) ? "" : ("; path=" + this.path)) +
15288            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15289            ((this.secure == true) ? "; secure" : "");
15290     },
15291
15292     // private
15293     clearCookie : function(name){
15294         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15295            ((this.path == null) ? "" : ("; path=" + this.path)) +
15296            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15297            ((this.secure == true) ? "; secure" : "");
15298     }
15299 });/*
15300  * Based on:
15301  * Ext JS Library 1.1.1
15302  * Copyright(c) 2006-2007, Ext JS, LLC.
15303  *
15304  * Originally Released Under LGPL - original licence link has changed is not relivant.
15305  *
15306  * Fork - LGPL
15307  * <script type="text/javascript">
15308  */
15309  
15310
15311 /**
15312  * @class Roo.ComponentMgr
15313  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15314  * @singleton
15315  */
15316 Roo.ComponentMgr = function(){
15317     var all = new Roo.util.MixedCollection();
15318
15319     return {
15320         /**
15321          * Registers a component.
15322          * @param {Roo.Component} c The component
15323          */
15324         register : function(c){
15325             all.add(c);
15326         },
15327
15328         /**
15329          * Unregisters a component.
15330          * @param {Roo.Component} c The component
15331          */
15332         unregister : function(c){
15333             all.remove(c);
15334         },
15335
15336         /**
15337          * Returns a component by id
15338          * @param {String} id The component id
15339          */
15340         get : function(id){
15341             return all.get(id);
15342         },
15343
15344         /**
15345          * Registers a function that will be called when a specified component is added to ComponentMgr
15346          * @param {String} id The component id
15347          * @param {Funtction} fn The callback function
15348          * @param {Object} scope The scope of the callback
15349          */
15350         onAvailable : function(id, fn, scope){
15351             all.on("add", function(index, o){
15352                 if(o.id == id){
15353                     fn.call(scope || o, o);
15354                     all.un("add", fn, scope);
15355                 }
15356             });
15357         }
15358     };
15359 }();/*
15360  * Based on:
15361  * Ext JS Library 1.1.1
15362  * Copyright(c) 2006-2007, Ext JS, LLC.
15363  *
15364  * Originally Released Under LGPL - original licence link has changed is not relivant.
15365  *
15366  * Fork - LGPL
15367  * <script type="text/javascript">
15368  */
15369  
15370 /**
15371  * @class Roo.Component
15372  * @extends Roo.util.Observable
15373  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15374  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15375  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15376  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15377  * All visual components (widgets) that require rendering into a layout should subclass Component.
15378  * @constructor
15379  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15380  * 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
15381  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15382  */
15383 Roo.Component = function(config){
15384     config = config || {};
15385     if(config.tagName || config.dom || typeof config == "string"){ // element object
15386         config = {el: config, id: config.id || config};
15387     }
15388     this.initialConfig = config;
15389
15390     Roo.apply(this, config);
15391     this.addEvents({
15392         /**
15393          * @event disable
15394          * Fires after the component is disabled.
15395              * @param {Roo.Component} this
15396              */
15397         disable : true,
15398         /**
15399          * @event enable
15400          * Fires after the component is enabled.
15401              * @param {Roo.Component} this
15402              */
15403         enable : true,
15404         /**
15405          * @event beforeshow
15406          * Fires before the component is shown.  Return false to stop the show.
15407              * @param {Roo.Component} this
15408              */
15409         beforeshow : true,
15410         /**
15411          * @event show
15412          * Fires after the component is shown.
15413              * @param {Roo.Component} this
15414              */
15415         show : true,
15416         /**
15417          * @event beforehide
15418          * Fires before the component is hidden. Return false to stop the hide.
15419              * @param {Roo.Component} this
15420              */
15421         beforehide : true,
15422         /**
15423          * @event hide
15424          * Fires after the component is hidden.
15425              * @param {Roo.Component} this
15426              */
15427         hide : true,
15428         /**
15429          * @event beforerender
15430          * Fires before the component is rendered. Return false to stop the render.
15431              * @param {Roo.Component} this
15432              */
15433         beforerender : true,
15434         /**
15435          * @event render
15436          * Fires after the component is rendered.
15437              * @param {Roo.Component} this
15438              */
15439         render : true,
15440         /**
15441          * @event beforedestroy
15442          * Fires before the component is destroyed. Return false to stop the destroy.
15443              * @param {Roo.Component} this
15444              */
15445         beforedestroy : true,
15446         /**
15447          * @event destroy
15448          * Fires after the component is destroyed.
15449              * @param {Roo.Component} this
15450              */
15451         destroy : true
15452     });
15453     if(!this.id){
15454         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15455     }
15456     Roo.ComponentMgr.register(this);
15457     Roo.Component.superclass.constructor.call(this);
15458     this.initComponent();
15459     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15460         this.render(this.renderTo);
15461         delete this.renderTo;
15462     }
15463 };
15464
15465 /** @private */
15466 Roo.Component.AUTO_ID = 1000;
15467
15468 Roo.extend(Roo.Component, Roo.util.Observable, {
15469     /**
15470      * @scope Roo.Component.prototype
15471      * @type {Boolean}
15472      * true if this component is hidden. Read-only.
15473      */
15474     hidden : false,
15475     /**
15476      * @type {Boolean}
15477      * true if this component is disabled. Read-only.
15478      */
15479     disabled : false,
15480     /**
15481      * @type {Boolean}
15482      * true if this component has been rendered. Read-only.
15483      */
15484     rendered : false,
15485     
15486     /** @cfg {String} disableClass
15487      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15488      */
15489     disabledClass : "x-item-disabled",
15490         /** @cfg {Boolean} allowDomMove
15491          * Whether the component can move the Dom node when rendering (defaults to true).
15492          */
15493     allowDomMove : true,
15494     /** @cfg {String} hideMode (display|visibility)
15495      * How this component should hidden. Supported values are
15496      * "visibility" (css visibility), "offsets" (negative offset position) and
15497      * "display" (css display) - defaults to "display".
15498      */
15499     hideMode: 'display',
15500
15501     /** @private */
15502     ctype : "Roo.Component",
15503
15504     /**
15505      * @cfg {String} actionMode 
15506      * which property holds the element that used for  hide() / show() / disable() / enable()
15507      * default is 'el' for forms you probably want to set this to fieldEl 
15508      */
15509     actionMode : "el",
15510
15511     /** @private */
15512     getActionEl : function(){
15513         return this[this.actionMode];
15514     },
15515
15516     initComponent : Roo.emptyFn,
15517     /**
15518      * If this is a lazy rendering component, render it to its container element.
15519      * @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.
15520      */
15521     render : function(container, position){
15522         
15523         if(this.rendered){
15524             return this;
15525         }
15526         
15527         if(this.fireEvent("beforerender", this) === false){
15528             return false;
15529         }
15530         
15531         if(!container && this.el){
15532             this.el = Roo.get(this.el);
15533             container = this.el.dom.parentNode;
15534             this.allowDomMove = false;
15535         }
15536         this.container = Roo.get(container);
15537         this.rendered = true;
15538         if(position !== undefined){
15539             if(typeof position == 'number'){
15540                 position = this.container.dom.childNodes[position];
15541             }else{
15542                 position = Roo.getDom(position);
15543             }
15544         }
15545         this.onRender(this.container, position || null);
15546         if(this.cls){
15547             this.el.addClass(this.cls);
15548             delete this.cls;
15549         }
15550         if(this.style){
15551             this.el.applyStyles(this.style);
15552             delete this.style;
15553         }
15554         this.fireEvent("render", this);
15555         this.afterRender(this.container);
15556         if(this.hidden){
15557             this.hide();
15558         }
15559         if(this.disabled){
15560             this.disable();
15561         }
15562
15563         return this;
15564         
15565     },
15566
15567     /** @private */
15568     // default function is not really useful
15569     onRender : function(ct, position){
15570         if(this.el){
15571             this.el = Roo.get(this.el);
15572             if(this.allowDomMove !== false){
15573                 ct.dom.insertBefore(this.el.dom, position);
15574             }
15575         }
15576     },
15577
15578     /** @private */
15579     getAutoCreate : function(){
15580         var cfg = typeof this.autoCreate == "object" ?
15581                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15582         if(this.id && !cfg.id){
15583             cfg.id = this.id;
15584         }
15585         return cfg;
15586     },
15587
15588     /** @private */
15589     afterRender : Roo.emptyFn,
15590
15591     /**
15592      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15593      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15594      */
15595     destroy : function(){
15596         if(this.fireEvent("beforedestroy", this) !== false){
15597             this.purgeListeners();
15598             this.beforeDestroy();
15599             if(this.rendered){
15600                 this.el.removeAllListeners();
15601                 this.el.remove();
15602                 if(this.actionMode == "container"){
15603                     this.container.remove();
15604                 }
15605             }
15606             this.onDestroy();
15607             Roo.ComponentMgr.unregister(this);
15608             this.fireEvent("destroy", this);
15609         }
15610     },
15611
15612         /** @private */
15613     beforeDestroy : function(){
15614
15615     },
15616
15617         /** @private */
15618         onDestroy : function(){
15619
15620     },
15621
15622     /**
15623      * Returns the underlying {@link Roo.Element}.
15624      * @return {Roo.Element} The element
15625      */
15626     getEl : function(){
15627         return this.el;
15628     },
15629
15630     /**
15631      * Returns the id of this component.
15632      * @return {String}
15633      */
15634     getId : function(){
15635         return this.id;
15636     },
15637
15638     /**
15639      * Try to focus this component.
15640      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15641      * @return {Roo.Component} this
15642      */
15643     focus : function(selectText){
15644         if(this.rendered){
15645             this.el.focus();
15646             if(selectText === true){
15647                 this.el.dom.select();
15648             }
15649         }
15650         return this;
15651     },
15652
15653     /** @private */
15654     blur : function(){
15655         if(this.rendered){
15656             this.el.blur();
15657         }
15658         return this;
15659     },
15660
15661     /**
15662      * Disable this component.
15663      * @return {Roo.Component} this
15664      */
15665     disable : function(){
15666         if(this.rendered){
15667             this.onDisable();
15668         }
15669         this.disabled = true;
15670         this.fireEvent("disable", this);
15671         return this;
15672     },
15673
15674         // private
15675     onDisable : function(){
15676         this.getActionEl().addClass(this.disabledClass);
15677         this.el.dom.disabled = true;
15678     },
15679
15680     /**
15681      * Enable this component.
15682      * @return {Roo.Component} this
15683      */
15684     enable : function(){
15685         if(this.rendered){
15686             this.onEnable();
15687         }
15688         this.disabled = false;
15689         this.fireEvent("enable", this);
15690         return this;
15691     },
15692
15693         // private
15694     onEnable : function(){
15695         this.getActionEl().removeClass(this.disabledClass);
15696         this.el.dom.disabled = false;
15697     },
15698
15699     /**
15700      * Convenience function for setting disabled/enabled by boolean.
15701      * @param {Boolean} disabled
15702      */
15703     setDisabled : function(disabled){
15704         this[disabled ? "disable" : "enable"]();
15705     },
15706
15707     /**
15708      * Show this component.
15709      * @return {Roo.Component} this
15710      */
15711     show: function(){
15712         if(this.fireEvent("beforeshow", this) !== false){
15713             this.hidden = false;
15714             if(this.rendered){
15715                 this.onShow();
15716             }
15717             this.fireEvent("show", this);
15718         }
15719         return this;
15720     },
15721
15722     // private
15723     onShow : function(){
15724         var ae = this.getActionEl();
15725         if(this.hideMode == 'visibility'){
15726             ae.dom.style.visibility = "visible";
15727         }else if(this.hideMode == 'offsets'){
15728             ae.removeClass('x-hidden');
15729         }else{
15730             ae.dom.style.display = "";
15731         }
15732     },
15733
15734     /**
15735      * Hide this component.
15736      * @return {Roo.Component} this
15737      */
15738     hide: function(){
15739         if(this.fireEvent("beforehide", this) !== false){
15740             this.hidden = true;
15741             if(this.rendered){
15742                 this.onHide();
15743             }
15744             this.fireEvent("hide", this);
15745         }
15746         return this;
15747     },
15748
15749     // private
15750     onHide : function(){
15751         var ae = this.getActionEl();
15752         if(this.hideMode == 'visibility'){
15753             ae.dom.style.visibility = "hidden";
15754         }else if(this.hideMode == 'offsets'){
15755             ae.addClass('x-hidden');
15756         }else{
15757             ae.dom.style.display = "none";
15758         }
15759     },
15760
15761     /**
15762      * Convenience function to hide or show this component by boolean.
15763      * @param {Boolean} visible True to show, false to hide
15764      * @return {Roo.Component} this
15765      */
15766     setVisible: function(visible){
15767         if(visible) {
15768             this.show();
15769         }else{
15770             this.hide();
15771         }
15772         return this;
15773     },
15774
15775     /**
15776      * Returns true if this component is visible.
15777      */
15778     isVisible : function(){
15779         return this.getActionEl().isVisible();
15780     },
15781
15782     cloneConfig : function(overrides){
15783         overrides = overrides || {};
15784         var id = overrides.id || Roo.id();
15785         var cfg = Roo.applyIf(overrides, this.initialConfig);
15786         cfg.id = id; // prevent dup id
15787         return new this.constructor(cfg);
15788     }
15789 });/*
15790  * Based on:
15791  * Ext JS Library 1.1.1
15792  * Copyright(c) 2006-2007, Ext JS, LLC.
15793  *
15794  * Originally Released Under LGPL - original licence link has changed is not relivant.
15795  *
15796  * Fork - LGPL
15797  * <script type="text/javascript">
15798  */
15799
15800 /**
15801  * @class Roo.BoxComponent
15802  * @extends Roo.Component
15803  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15804  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15805  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15806  * layout containers.
15807  * @constructor
15808  * @param {Roo.Element/String/Object} config The configuration options.
15809  */
15810 Roo.BoxComponent = function(config){
15811     Roo.Component.call(this, config);
15812     this.addEvents({
15813         /**
15814          * @event resize
15815          * Fires after the component is resized.
15816              * @param {Roo.Component} this
15817              * @param {Number} adjWidth The box-adjusted width that was set
15818              * @param {Number} adjHeight The box-adjusted height that was set
15819              * @param {Number} rawWidth The width that was originally specified
15820              * @param {Number} rawHeight The height that was originally specified
15821              */
15822         resize : true,
15823         /**
15824          * @event move
15825          * Fires after the component is moved.
15826              * @param {Roo.Component} this
15827              * @param {Number} x The new x position
15828              * @param {Number} y The new y position
15829              */
15830         move : true
15831     });
15832 };
15833
15834 Roo.extend(Roo.BoxComponent, Roo.Component, {
15835     // private, set in afterRender to signify that the component has been rendered
15836     boxReady : false,
15837     // private, used to defer height settings to subclasses
15838     deferHeight: false,
15839     /** @cfg {Number} width
15840      * width (optional) size of component
15841      */
15842      /** @cfg {Number} height
15843      * height (optional) size of component
15844      */
15845      
15846     /**
15847      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15848      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15849      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15850      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15851      * @return {Roo.BoxComponent} this
15852      */
15853     setSize : function(w, h){
15854         // support for standard size objects
15855         if(typeof w == 'object'){
15856             h = w.height;
15857             w = w.width;
15858         }
15859         // not rendered
15860         if(!this.boxReady){
15861             this.width = w;
15862             this.height = h;
15863             return this;
15864         }
15865
15866         // prevent recalcs when not needed
15867         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15868             return this;
15869         }
15870         this.lastSize = {width: w, height: h};
15871
15872         var adj = this.adjustSize(w, h);
15873         var aw = adj.width, ah = adj.height;
15874         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15875             var rz = this.getResizeEl();
15876             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15877                 rz.setSize(aw, ah);
15878             }else if(!this.deferHeight && ah !== undefined){
15879                 rz.setHeight(ah);
15880             }else if(aw !== undefined){
15881                 rz.setWidth(aw);
15882             }
15883             this.onResize(aw, ah, w, h);
15884             this.fireEvent('resize', this, aw, ah, w, h);
15885         }
15886         return this;
15887     },
15888
15889     /**
15890      * Gets the current size of the component's underlying element.
15891      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15892      */
15893     getSize : function(){
15894         return this.el.getSize();
15895     },
15896
15897     /**
15898      * Gets the current XY position of the component's underlying element.
15899      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15900      * @return {Array} The XY position of the element (e.g., [100, 200])
15901      */
15902     getPosition : function(local){
15903         if(local === true){
15904             return [this.el.getLeft(true), this.el.getTop(true)];
15905         }
15906         return this.xy || this.el.getXY();
15907     },
15908
15909     /**
15910      * Gets the current box measurements of the component's underlying element.
15911      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15912      * @returns {Object} box An object in the format {x, y, width, height}
15913      */
15914     getBox : function(local){
15915         var s = this.el.getSize();
15916         if(local){
15917             s.x = this.el.getLeft(true);
15918             s.y = this.el.getTop(true);
15919         }else{
15920             var xy = this.xy || this.el.getXY();
15921             s.x = xy[0];
15922             s.y = xy[1];
15923         }
15924         return s;
15925     },
15926
15927     /**
15928      * Sets the current box measurements of the component's underlying element.
15929      * @param {Object} box An object in the format {x, y, width, height}
15930      * @returns {Roo.BoxComponent} this
15931      */
15932     updateBox : function(box){
15933         this.setSize(box.width, box.height);
15934         this.setPagePosition(box.x, box.y);
15935         return this;
15936     },
15937
15938     // protected
15939     getResizeEl : function(){
15940         return this.resizeEl || this.el;
15941     },
15942
15943     // protected
15944     getPositionEl : function(){
15945         return this.positionEl || this.el;
15946     },
15947
15948     /**
15949      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15950      * This method fires the move event.
15951      * @param {Number} left The new left
15952      * @param {Number} top The new top
15953      * @returns {Roo.BoxComponent} this
15954      */
15955     setPosition : function(x, y){
15956         this.x = x;
15957         this.y = y;
15958         if(!this.boxReady){
15959             return this;
15960         }
15961         var adj = this.adjustPosition(x, y);
15962         var ax = adj.x, ay = adj.y;
15963
15964         var el = this.getPositionEl();
15965         if(ax !== undefined || ay !== undefined){
15966             if(ax !== undefined && ay !== undefined){
15967                 el.setLeftTop(ax, ay);
15968             }else if(ax !== undefined){
15969                 el.setLeft(ax);
15970             }else if(ay !== undefined){
15971                 el.setTop(ay);
15972             }
15973             this.onPosition(ax, ay);
15974             this.fireEvent('move', this, ax, ay);
15975         }
15976         return this;
15977     },
15978
15979     /**
15980      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15981      * This method fires the move event.
15982      * @param {Number} x The new x position
15983      * @param {Number} y The new y position
15984      * @returns {Roo.BoxComponent} this
15985      */
15986     setPagePosition : function(x, y){
15987         this.pageX = x;
15988         this.pageY = y;
15989         if(!this.boxReady){
15990             return;
15991         }
15992         if(x === undefined || y === undefined){ // cannot translate undefined points
15993             return;
15994         }
15995         var p = this.el.translatePoints(x, y);
15996         this.setPosition(p.left, p.top);
15997         return this;
15998     },
15999
16000     // private
16001     onRender : function(ct, position){
16002         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16003         if(this.resizeEl){
16004             this.resizeEl = Roo.get(this.resizeEl);
16005         }
16006         if(this.positionEl){
16007             this.positionEl = Roo.get(this.positionEl);
16008         }
16009     },
16010
16011     // private
16012     afterRender : function(){
16013         Roo.BoxComponent.superclass.afterRender.call(this);
16014         this.boxReady = true;
16015         this.setSize(this.width, this.height);
16016         if(this.x || this.y){
16017             this.setPosition(this.x, this.y);
16018         }
16019         if(this.pageX || this.pageY){
16020             this.setPagePosition(this.pageX, this.pageY);
16021         }
16022     },
16023
16024     /**
16025      * Force the component's size to recalculate based on the underlying element's current height and width.
16026      * @returns {Roo.BoxComponent} this
16027      */
16028     syncSize : function(){
16029         delete this.lastSize;
16030         this.setSize(this.el.getWidth(), this.el.getHeight());
16031         return this;
16032     },
16033
16034     /**
16035      * Called after the component is resized, this method is empty by default but can be implemented by any
16036      * subclass that needs to perform custom logic after a resize occurs.
16037      * @param {Number} adjWidth The box-adjusted width that was set
16038      * @param {Number} adjHeight The box-adjusted height that was set
16039      * @param {Number} rawWidth The width that was originally specified
16040      * @param {Number} rawHeight The height that was originally specified
16041      */
16042     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16043
16044     },
16045
16046     /**
16047      * Called after the component is moved, this method is empty by default but can be implemented by any
16048      * subclass that needs to perform custom logic after a move occurs.
16049      * @param {Number} x The new x position
16050      * @param {Number} y The new y position
16051      */
16052     onPosition : function(x, y){
16053
16054     },
16055
16056     // private
16057     adjustSize : function(w, h){
16058         if(this.autoWidth){
16059             w = 'auto';
16060         }
16061         if(this.autoHeight){
16062             h = 'auto';
16063         }
16064         return {width : w, height: h};
16065     },
16066
16067     // private
16068     adjustPosition : function(x, y){
16069         return {x : x, y: y};
16070     }
16071 });/*
16072  * Based on:
16073  * Ext JS Library 1.1.1
16074  * Copyright(c) 2006-2007, Ext JS, LLC.
16075  *
16076  * Originally Released Under LGPL - original licence link has changed is not relivant.
16077  *
16078  * Fork - LGPL
16079  * <script type="text/javascript">
16080  */
16081  (function(){ 
16082 /**
16083  * @class Roo.Layer
16084  * @extends Roo.Element
16085  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16086  * automatic maintaining of shadow/shim positions.
16087  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16088  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16089  * you can pass a string with a CSS class name. False turns off the shadow.
16090  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16091  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16092  * @cfg {String} cls CSS class to add to the element
16093  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16094  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16095  * @constructor
16096  * @param {Object} config An object with config options.
16097  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16098  */
16099
16100 Roo.Layer = function(config, existingEl){
16101     config = config || {};
16102     var dh = Roo.DomHelper;
16103     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16104     if(existingEl){
16105         this.dom = Roo.getDom(existingEl);
16106     }
16107     if(!this.dom){
16108         var o = config.dh || {tag: "div", cls: "x-layer"};
16109         this.dom = dh.append(pel, o);
16110     }
16111     if(config.cls){
16112         this.addClass(config.cls);
16113     }
16114     this.constrain = config.constrain !== false;
16115     this.visibilityMode = Roo.Element.VISIBILITY;
16116     if(config.id){
16117         this.id = this.dom.id = config.id;
16118     }else{
16119         this.id = Roo.id(this.dom);
16120     }
16121     this.zindex = config.zindex || this.getZIndex();
16122     this.position("absolute", this.zindex);
16123     if(config.shadow){
16124         this.shadowOffset = config.shadowOffset || 4;
16125         this.shadow = new Roo.Shadow({
16126             offset : this.shadowOffset,
16127             mode : config.shadow
16128         });
16129     }else{
16130         this.shadowOffset = 0;
16131     }
16132     this.useShim = config.shim !== false && Roo.useShims;
16133     this.useDisplay = config.useDisplay;
16134     this.hide();
16135 };
16136
16137 var supr = Roo.Element.prototype;
16138
16139 // shims are shared among layer to keep from having 100 iframes
16140 var shims = [];
16141
16142 Roo.extend(Roo.Layer, Roo.Element, {
16143
16144     getZIndex : function(){
16145         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16146     },
16147
16148     getShim : function(){
16149         if(!this.useShim){
16150             return null;
16151         }
16152         if(this.shim){
16153             return this.shim;
16154         }
16155         var shim = shims.shift();
16156         if(!shim){
16157             shim = this.createShim();
16158             shim.enableDisplayMode('block');
16159             shim.dom.style.display = 'none';
16160             shim.dom.style.visibility = 'visible';
16161         }
16162         var pn = this.dom.parentNode;
16163         if(shim.dom.parentNode != pn){
16164             pn.insertBefore(shim.dom, this.dom);
16165         }
16166         shim.setStyle('z-index', this.getZIndex()-2);
16167         this.shim = shim;
16168         return shim;
16169     },
16170
16171     hideShim : function(){
16172         if(this.shim){
16173             this.shim.setDisplayed(false);
16174             shims.push(this.shim);
16175             delete this.shim;
16176         }
16177     },
16178
16179     disableShadow : function(){
16180         if(this.shadow){
16181             this.shadowDisabled = true;
16182             this.shadow.hide();
16183             this.lastShadowOffset = this.shadowOffset;
16184             this.shadowOffset = 0;
16185         }
16186     },
16187
16188     enableShadow : function(show){
16189         if(this.shadow){
16190             this.shadowDisabled = false;
16191             this.shadowOffset = this.lastShadowOffset;
16192             delete this.lastShadowOffset;
16193             if(show){
16194                 this.sync(true);
16195             }
16196         }
16197     },
16198
16199     // private
16200     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16201     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16202     sync : function(doShow){
16203         var sw = this.shadow;
16204         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16205             var sh = this.getShim();
16206
16207             var w = this.getWidth(),
16208                 h = this.getHeight();
16209
16210             var l = this.getLeft(true),
16211                 t = this.getTop(true);
16212
16213             if(sw && !this.shadowDisabled){
16214                 if(doShow && !sw.isVisible()){
16215                     sw.show(this);
16216                 }else{
16217                     sw.realign(l, t, w, h);
16218                 }
16219                 if(sh){
16220                     if(doShow){
16221                        sh.show();
16222                     }
16223                     // fit the shim behind the shadow, so it is shimmed too
16224                     var a = sw.adjusts, s = sh.dom.style;
16225                     s.left = (Math.min(l, l+a.l))+"px";
16226                     s.top = (Math.min(t, t+a.t))+"px";
16227                     s.width = (w+a.w)+"px";
16228                     s.height = (h+a.h)+"px";
16229                 }
16230             }else if(sh){
16231                 if(doShow){
16232                    sh.show();
16233                 }
16234                 sh.setSize(w, h);
16235                 sh.setLeftTop(l, t);
16236             }
16237             
16238         }
16239     },
16240
16241     // private
16242     destroy : function(){
16243         this.hideShim();
16244         if(this.shadow){
16245             this.shadow.hide();
16246         }
16247         this.removeAllListeners();
16248         var pn = this.dom.parentNode;
16249         if(pn){
16250             pn.removeChild(this.dom);
16251         }
16252         Roo.Element.uncache(this.id);
16253     },
16254
16255     remove : function(){
16256         this.destroy();
16257     },
16258
16259     // private
16260     beginUpdate : function(){
16261         this.updating = true;
16262     },
16263
16264     // private
16265     endUpdate : function(){
16266         this.updating = false;
16267         this.sync(true);
16268     },
16269
16270     // private
16271     hideUnders : function(negOffset){
16272         if(this.shadow){
16273             this.shadow.hide();
16274         }
16275         this.hideShim();
16276     },
16277
16278     // private
16279     constrainXY : function(){
16280         if(this.constrain){
16281             var vw = Roo.lib.Dom.getViewWidth(),
16282                 vh = Roo.lib.Dom.getViewHeight();
16283             var s = Roo.get(document).getScroll();
16284
16285             var xy = this.getXY();
16286             var x = xy[0], y = xy[1];   
16287             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16288             // only move it if it needs it
16289             var moved = false;
16290             // first validate right/bottom
16291             if((x + w) > vw+s.left){
16292                 x = vw - w - this.shadowOffset;
16293                 moved = true;
16294             }
16295             if((y + h) > vh+s.top){
16296                 y = vh - h - this.shadowOffset;
16297                 moved = true;
16298             }
16299             // then make sure top/left isn't negative
16300             if(x < s.left){
16301                 x = s.left;
16302                 moved = true;
16303             }
16304             if(y < s.top){
16305                 y = s.top;
16306                 moved = true;
16307             }
16308             if(moved){
16309                 if(this.avoidY){
16310                     var ay = this.avoidY;
16311                     if(y <= ay && (y+h) >= ay){
16312                         y = ay-h-5;   
16313                     }
16314                 }
16315                 xy = [x, y];
16316                 this.storeXY(xy);
16317                 supr.setXY.call(this, xy);
16318                 this.sync();
16319             }
16320         }
16321     },
16322
16323     isVisible : function(){
16324         return this.visible;    
16325     },
16326
16327     // private
16328     showAction : function(){
16329         this.visible = true; // track visibility to prevent getStyle calls
16330         if(this.useDisplay === true){
16331             this.setDisplayed("");
16332         }else if(this.lastXY){
16333             supr.setXY.call(this, this.lastXY);
16334         }else if(this.lastLT){
16335             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16336         }
16337     },
16338
16339     // private
16340     hideAction : function(){
16341         this.visible = false;
16342         if(this.useDisplay === true){
16343             this.setDisplayed(false);
16344         }else{
16345             this.setLeftTop(-10000,-10000);
16346         }
16347     },
16348
16349     // overridden Element method
16350     setVisible : function(v, a, d, c, e){
16351         if(v){
16352             this.showAction();
16353         }
16354         if(a && v){
16355             var cb = function(){
16356                 this.sync(true);
16357                 if(c){
16358                     c();
16359                 }
16360             }.createDelegate(this);
16361             supr.setVisible.call(this, true, true, d, cb, e);
16362         }else{
16363             if(!v){
16364                 this.hideUnders(true);
16365             }
16366             var cb = c;
16367             if(a){
16368                 cb = function(){
16369                     this.hideAction();
16370                     if(c){
16371                         c();
16372                     }
16373                 }.createDelegate(this);
16374             }
16375             supr.setVisible.call(this, v, a, d, cb, e);
16376             if(v){
16377                 this.sync(true);
16378             }else if(!a){
16379                 this.hideAction();
16380             }
16381         }
16382     },
16383
16384     storeXY : function(xy){
16385         delete this.lastLT;
16386         this.lastXY = xy;
16387     },
16388
16389     storeLeftTop : function(left, top){
16390         delete this.lastXY;
16391         this.lastLT = [left, top];
16392     },
16393
16394     // private
16395     beforeFx : function(){
16396         this.beforeAction();
16397         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16398     },
16399
16400     // private
16401     afterFx : function(){
16402         Roo.Layer.superclass.afterFx.apply(this, arguments);
16403         this.sync(this.isVisible());
16404     },
16405
16406     // private
16407     beforeAction : function(){
16408         if(!this.updating && this.shadow){
16409             this.shadow.hide();
16410         }
16411     },
16412
16413     // overridden Element method
16414     setLeft : function(left){
16415         this.storeLeftTop(left, this.getTop(true));
16416         supr.setLeft.apply(this, arguments);
16417         this.sync();
16418     },
16419
16420     setTop : function(top){
16421         this.storeLeftTop(this.getLeft(true), top);
16422         supr.setTop.apply(this, arguments);
16423         this.sync();
16424     },
16425
16426     setLeftTop : function(left, top){
16427         this.storeLeftTop(left, top);
16428         supr.setLeftTop.apply(this, arguments);
16429         this.sync();
16430     },
16431
16432     setXY : function(xy, a, d, c, e){
16433         this.fixDisplay();
16434         this.beforeAction();
16435         this.storeXY(xy);
16436         var cb = this.createCB(c);
16437         supr.setXY.call(this, xy, a, d, cb, e);
16438         if(!a){
16439             cb();
16440         }
16441     },
16442
16443     // private
16444     createCB : function(c){
16445         var el = this;
16446         return function(){
16447             el.constrainXY();
16448             el.sync(true);
16449             if(c){
16450                 c();
16451             }
16452         };
16453     },
16454
16455     // overridden Element method
16456     setX : function(x, a, d, c, e){
16457         this.setXY([x, this.getY()], a, d, c, e);
16458     },
16459
16460     // overridden Element method
16461     setY : function(y, a, d, c, e){
16462         this.setXY([this.getX(), y], a, d, c, e);
16463     },
16464
16465     // overridden Element method
16466     setSize : function(w, h, a, d, c, e){
16467         this.beforeAction();
16468         var cb = this.createCB(c);
16469         supr.setSize.call(this, w, h, a, d, cb, e);
16470         if(!a){
16471             cb();
16472         }
16473     },
16474
16475     // overridden Element method
16476     setWidth : function(w, a, d, c, e){
16477         this.beforeAction();
16478         var cb = this.createCB(c);
16479         supr.setWidth.call(this, w, a, d, cb, e);
16480         if(!a){
16481             cb();
16482         }
16483     },
16484
16485     // overridden Element method
16486     setHeight : function(h, a, d, c, e){
16487         this.beforeAction();
16488         var cb = this.createCB(c);
16489         supr.setHeight.call(this, h, a, d, cb, e);
16490         if(!a){
16491             cb();
16492         }
16493     },
16494
16495     // overridden Element method
16496     setBounds : function(x, y, w, h, a, d, c, e){
16497         this.beforeAction();
16498         var cb = this.createCB(c);
16499         if(!a){
16500             this.storeXY([x, y]);
16501             supr.setXY.call(this, [x, y]);
16502             supr.setSize.call(this, w, h, a, d, cb, e);
16503             cb();
16504         }else{
16505             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16506         }
16507         return this;
16508     },
16509     
16510     /**
16511      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16512      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16513      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16514      * @param {Number} zindex The new z-index to set
16515      * @return {this} The Layer
16516      */
16517     setZIndex : function(zindex){
16518         this.zindex = zindex;
16519         this.setStyle("z-index", zindex + 2);
16520         if(this.shadow){
16521             this.shadow.setZIndex(zindex + 1);
16522         }
16523         if(this.shim){
16524             this.shim.setStyle("z-index", zindex);
16525         }
16526     }
16527 });
16528 })();/*
16529  * Original code for Roojs - LGPL
16530  * <script type="text/javascript">
16531  */
16532  
16533 /**
16534  * @class Roo.XComponent
16535  * A delayed Element creator...
16536  * Or a way to group chunks of interface together.
16537  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16538  *  used in conjunction with XComponent.build() it will create an instance of each element,
16539  *  then call addxtype() to build the User interface.
16540  * 
16541  * Mypart.xyx = new Roo.XComponent({
16542
16543     parent : 'Mypart.xyz', // empty == document.element.!!
16544     order : '001',
16545     name : 'xxxx'
16546     region : 'xxxx'
16547     disabled : function() {} 
16548      
16549     tree : function() { // return an tree of xtype declared components
16550         var MODULE = this;
16551         return 
16552         {
16553             xtype : 'NestedLayoutPanel',
16554             // technicall
16555         }
16556      ]
16557  *})
16558  *
16559  *
16560  * It can be used to build a big heiracy, with parent etc.
16561  * or you can just use this to render a single compoent to a dom element
16562  * MYPART.render(Roo.Element | String(id) | dom_element )
16563  *
16564  *
16565  * Usage patterns.
16566  *
16567  * Classic Roo
16568  *
16569  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16570  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16571  *
16572  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16573  *
16574  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16575  * - if mulitple topModules exist, the last one is defined as the top module.
16576  *
16577  * Embeded Roo
16578  * 
16579  * When the top level or multiple modules are to embedded into a existing HTML page,
16580  * the parent element can container '#id' of the element where the module will be drawn.
16581  *
16582  * Bootstrap Roo
16583  *
16584  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16585  * it relies more on a include mechanism, where sub modules are included into an outer page.
16586  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16587  * 
16588  * Bootstrap Roo Included elements
16589  *
16590  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16591  * hence confusing the component builder as it thinks there are multiple top level elements. 
16592  *
16593  * String Over-ride & Translations
16594  *
16595  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16596  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16597  * are needed. @see Roo.XComponent.overlayString  
16598  * 
16599  * 
16600  * 
16601  * @extends Roo.util.Observable
16602  * @constructor
16603  * @param cfg {Object} configuration of component
16604  * 
16605  */
16606 Roo.XComponent = function(cfg) {
16607     Roo.apply(this, cfg);
16608     this.addEvents({ 
16609         /**
16610              * @event built
16611              * Fires when this the componnt is built
16612              * @param {Roo.XComponent} c the component
16613              */
16614         'built' : true
16615         
16616     });
16617     this.region = this.region || 'center'; // default..
16618     Roo.XComponent.register(this);
16619     this.modules = false;
16620     this.el = false; // where the layout goes..
16621     
16622     
16623 }
16624 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16625     /**
16626      * @property el
16627      * The created element (with Roo.factory())
16628      * @type {Roo.Layout}
16629      */
16630     el  : false,
16631     
16632     /**
16633      * @property el
16634      * for BC  - use el in new code
16635      * @type {Roo.Layout}
16636      */
16637     panel : false,
16638     
16639     /**
16640      * @property layout
16641      * for BC  - use el in new code
16642      * @type {Roo.Layout}
16643      */
16644     layout : false,
16645     
16646      /**
16647      * @cfg {Function|boolean} disabled
16648      * If this module is disabled by some rule, return true from the funtion
16649      */
16650     disabled : false,
16651     
16652     /**
16653      * @cfg {String} parent 
16654      * Name of parent element which it get xtype added to..
16655      */
16656     parent: false,
16657     
16658     /**
16659      * @cfg {String} order
16660      * Used to set the order in which elements are created (usefull for multiple tabs)
16661      */
16662     
16663     order : false,
16664     /**
16665      * @cfg {String} name
16666      * String to display while loading.
16667      */
16668     name : false,
16669     /**
16670      * @cfg {String} region
16671      * Region to render component to (defaults to center)
16672      */
16673     region : 'center',
16674     
16675     /**
16676      * @cfg {Array} items
16677      * A single item array - the first element is the root of the tree..
16678      * It's done this way to stay compatible with the Xtype system...
16679      */
16680     items : false,
16681     
16682     /**
16683      * @property _tree
16684      * The method that retuns the tree of parts that make up this compoennt 
16685      * @type {function}
16686      */
16687     _tree  : false,
16688     
16689      /**
16690      * render
16691      * render element to dom or tree
16692      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16693      */
16694     
16695     render : function(el)
16696     {
16697         
16698         el = el || false;
16699         var hp = this.parent ? 1 : 0;
16700         Roo.debug &&  Roo.log(this);
16701         
16702         var tree = this._tree ? this._tree() : this.tree();
16703
16704         
16705         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16706             // if parent is a '#.....' string, then let's use that..
16707             var ename = this.parent.substr(1);
16708             this.parent = false;
16709             Roo.debug && Roo.log(ename);
16710             switch (ename) {
16711                 case 'bootstrap-body':
16712                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16713                         // this is the BorderLayout standard?
16714                        this.parent = { el : true };
16715                        break;
16716                     }
16717                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16718                         // need to insert stuff...
16719                         this.parent =  {
16720                              el : new Roo.bootstrap.layout.Border({
16721                                  el : document.body, 
16722                      
16723                                  center: {
16724                                     titlebar: false,
16725                                     autoScroll:false,
16726                                     closeOnTab: true,
16727                                     tabPosition: 'top',
16728                                       //resizeTabs: true,
16729                                     alwaysShowTabs: true,
16730                                     hideTabs: false
16731                                      //minTabWidth: 140
16732                                  }
16733                              })
16734                         
16735                          };
16736                          break;
16737                     }
16738                          
16739                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16740                         this.parent = { el :  new  Roo.bootstrap.Body() };
16741                         Roo.debug && Roo.log("setting el to doc body");
16742                          
16743                     } else {
16744                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16745                     }
16746                     break;
16747                 case 'bootstrap':
16748                     this.parent = { el : true};
16749                     // fall through
16750                 default:
16751                     el = Roo.get(ename);
16752                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16753                         this.parent = { el : true};
16754                     }
16755                     
16756                     break;
16757             }
16758                 
16759             
16760             if (!el && !this.parent) {
16761                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16762                 return;
16763             }
16764         }
16765         
16766         Roo.debug && Roo.log("EL:");
16767         Roo.debug && Roo.log(el);
16768         Roo.debug && Roo.log("this.parent.el:");
16769         Roo.debug && Roo.log(this.parent.el);
16770         
16771
16772         // altertive root elements ??? - we need a better way to indicate these.
16773         var is_alt = Roo.XComponent.is_alt ||
16774                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16775                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16776                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16777         
16778         
16779         
16780         if (!this.parent && is_alt) {
16781             //el = Roo.get(document.body);
16782             this.parent = { el : true };
16783         }
16784             
16785             
16786         
16787         if (!this.parent) {
16788             
16789             Roo.debug && Roo.log("no parent - creating one");
16790             
16791             el = el ? Roo.get(el) : false;      
16792             
16793             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16794                 
16795                 this.parent =  {
16796                     el : new Roo.bootstrap.layout.Border({
16797                         el: el || document.body,
16798                     
16799                         center: {
16800                             titlebar: false,
16801                             autoScroll:false,
16802                             closeOnTab: true,
16803                             tabPosition: 'top',
16804                              //resizeTabs: true,
16805                             alwaysShowTabs: false,
16806                             hideTabs: true,
16807                             minTabWidth: 140,
16808                             overflow: 'visible'
16809                          }
16810                      })
16811                 };
16812             } else {
16813             
16814                 // it's a top level one..
16815                 this.parent =  {
16816                     el : new Roo.BorderLayout(el || document.body, {
16817                         center: {
16818                             titlebar: false,
16819                             autoScroll:false,
16820                             closeOnTab: true,
16821                             tabPosition: 'top',
16822                              //resizeTabs: true,
16823                             alwaysShowTabs: el && hp? false :  true,
16824                             hideTabs: el || !hp ? true :  false,
16825                             minTabWidth: 140
16826                          }
16827                     })
16828                 };
16829             }
16830         }
16831         
16832         if (!this.parent.el) {
16833                 // probably an old style ctor, which has been disabled.
16834                 return;
16835
16836         }
16837                 // The 'tree' method is  '_tree now' 
16838             
16839         tree.region = tree.region || this.region;
16840         var is_body = false;
16841         if (this.parent.el === true) {
16842             // bootstrap... - body..
16843             if (el) {
16844                 tree.el = el;
16845             }
16846             this.parent.el = Roo.factory(tree);
16847             is_body = true;
16848         }
16849         
16850         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16851         this.fireEvent('built', this);
16852         
16853         this.panel = this.el;
16854         this.layout = this.panel.layout;
16855         this.parentLayout = this.parent.layout  || false;  
16856          
16857     }
16858     
16859 });
16860
16861 Roo.apply(Roo.XComponent, {
16862     /**
16863      * @property  hideProgress
16864      * true to disable the building progress bar.. usefull on single page renders.
16865      * @type Boolean
16866      */
16867     hideProgress : false,
16868     /**
16869      * @property  buildCompleted
16870      * True when the builder has completed building the interface.
16871      * @type Boolean
16872      */
16873     buildCompleted : false,
16874      
16875     /**
16876      * @property  topModule
16877      * the upper most module - uses document.element as it's constructor.
16878      * @type Object
16879      */
16880      
16881     topModule  : false,
16882       
16883     /**
16884      * @property  modules
16885      * array of modules to be created by registration system.
16886      * @type {Array} of Roo.XComponent
16887      */
16888     
16889     modules : [],
16890     /**
16891      * @property  elmodules
16892      * array of modules to be created by which use #ID 
16893      * @type {Array} of Roo.XComponent
16894      */
16895      
16896     elmodules : [],
16897
16898      /**
16899      * @property  is_alt
16900      * Is an alternative Root - normally used by bootstrap or other systems,
16901      *    where the top element in the tree can wrap 'body' 
16902      * @type {boolean}  (default false)
16903      */
16904      
16905     is_alt : false,
16906     /**
16907      * @property  build_from_html
16908      * Build elements from html - used by bootstrap HTML stuff 
16909      *    - this is cleared after build is completed
16910      * @type {boolean}    (default false)
16911      */
16912      
16913     build_from_html : false,
16914     /**
16915      * Register components to be built later.
16916      *
16917      * This solves the following issues
16918      * - Building is not done on page load, but after an authentication process has occured.
16919      * - Interface elements are registered on page load
16920      * - Parent Interface elements may not be loaded before child, so this handles that..
16921      * 
16922      *
16923      * example:
16924      * 
16925      * MyApp.register({
16926           order : '000001',
16927           module : 'Pman.Tab.projectMgr',
16928           region : 'center',
16929           parent : 'Pman.layout',
16930           disabled : false,  // or use a function..
16931         })
16932      
16933      * * @param {Object} details about module
16934      */
16935     register : function(obj) {
16936                 
16937         Roo.XComponent.event.fireEvent('register', obj);
16938         switch(typeof(obj.disabled) ) {
16939                 
16940             case 'undefined':
16941                 break;
16942             
16943             case 'function':
16944                 if ( obj.disabled() ) {
16945                         return;
16946                 }
16947                 break;
16948             
16949             default:
16950                 if (obj.disabled || obj.region == '#disabled') {
16951                         return;
16952                 }
16953                 break;
16954         }
16955                 
16956         this.modules.push(obj);
16957          
16958     },
16959     /**
16960      * convert a string to an object..
16961      * eg. 'AAA.BBB' -> finds AAA.BBB
16962
16963      */
16964     
16965     toObject : function(str)
16966     {
16967         if (!str || typeof(str) == 'object') {
16968             return str;
16969         }
16970         if (str.substring(0,1) == '#') {
16971             return str;
16972         }
16973
16974         var ar = str.split('.');
16975         var rt, o;
16976         rt = ar.shift();
16977             /** eval:var:o */
16978         try {
16979             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16980         } catch (e) {
16981             throw "Module not found : " + str;
16982         }
16983         
16984         if (o === false) {
16985             throw "Module not found : " + str;
16986         }
16987         Roo.each(ar, function(e) {
16988             if (typeof(o[e]) == 'undefined') {
16989                 throw "Module not found : " + str;
16990             }
16991             o = o[e];
16992         });
16993         
16994         return o;
16995         
16996     },
16997     
16998     
16999     /**
17000      * move modules into their correct place in the tree..
17001      * 
17002      */
17003     preBuild : function ()
17004     {
17005         var _t = this;
17006         Roo.each(this.modules , function (obj)
17007         {
17008             Roo.XComponent.event.fireEvent('beforebuild', obj);
17009             
17010             var opar = obj.parent;
17011             try { 
17012                 obj.parent = this.toObject(opar);
17013             } catch(e) {
17014                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17015                 return;
17016             }
17017             
17018             if (!obj.parent) {
17019                 Roo.debug && Roo.log("GOT top level module");
17020                 Roo.debug && Roo.log(obj);
17021                 obj.modules = new Roo.util.MixedCollection(false, 
17022                     function(o) { return o.order + '' }
17023                 );
17024                 this.topModule = obj;
17025                 return;
17026             }
17027                         // parent is a string (usually a dom element name..)
17028             if (typeof(obj.parent) == 'string') {
17029                 this.elmodules.push(obj);
17030                 return;
17031             }
17032             if (obj.parent.constructor != Roo.XComponent) {
17033                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17034             }
17035             if (!obj.parent.modules) {
17036                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17037                     function(o) { return o.order + '' }
17038                 );
17039             }
17040             if (obj.parent.disabled) {
17041                 obj.disabled = true;
17042             }
17043             obj.parent.modules.add(obj);
17044         }, this);
17045     },
17046     
17047      /**
17048      * make a list of modules to build.
17049      * @return {Array} list of modules. 
17050      */ 
17051     
17052     buildOrder : function()
17053     {
17054         var _this = this;
17055         var cmp = function(a,b) {   
17056             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17057         };
17058         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17059             throw "No top level modules to build";
17060         }
17061         
17062         // make a flat list in order of modules to build.
17063         var mods = this.topModule ? [ this.topModule ] : [];
17064                 
17065         
17066         // elmodules (is a list of DOM based modules )
17067         Roo.each(this.elmodules, function(e) {
17068             mods.push(e);
17069             if (!this.topModule &&
17070                 typeof(e.parent) == 'string' &&
17071                 e.parent.substring(0,1) == '#' &&
17072                 Roo.get(e.parent.substr(1))
17073                ) {
17074                 
17075                 _this.topModule = e;
17076             }
17077             
17078         });
17079
17080         
17081         // add modules to their parents..
17082         var addMod = function(m) {
17083             Roo.debug && Roo.log("build Order: add: " + m.name);
17084                 
17085             mods.push(m);
17086             if (m.modules && !m.disabled) {
17087                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17088                 m.modules.keySort('ASC',  cmp );
17089                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17090     
17091                 m.modules.each(addMod);
17092             } else {
17093                 Roo.debug && Roo.log("build Order: no child modules");
17094             }
17095             // not sure if this is used any more..
17096             if (m.finalize) {
17097                 m.finalize.name = m.name + " (clean up) ";
17098                 mods.push(m.finalize);
17099             }
17100             
17101         }
17102         if (this.topModule && this.topModule.modules) { 
17103             this.topModule.modules.keySort('ASC',  cmp );
17104             this.topModule.modules.each(addMod);
17105         } 
17106         return mods;
17107     },
17108     
17109      /**
17110      * Build the registered modules.
17111      * @param {Object} parent element.
17112      * @param {Function} optional method to call after module has been added.
17113      * 
17114      */ 
17115    
17116     build : function(opts) 
17117     {
17118         
17119         if (typeof(opts) != 'undefined') {
17120             Roo.apply(this,opts);
17121         }
17122         
17123         this.preBuild();
17124         var mods = this.buildOrder();
17125       
17126         //this.allmods = mods;
17127         //Roo.debug && Roo.log(mods);
17128         //return;
17129         if (!mods.length) { // should not happen
17130             throw "NO modules!!!";
17131         }
17132         
17133         
17134         var msg = "Building Interface...";
17135         // flash it up as modal - so we store the mask!?
17136         if (!this.hideProgress && Roo.MessageBox) {
17137             Roo.MessageBox.show({ title: 'loading' });
17138             Roo.MessageBox.show({
17139                title: "Please wait...",
17140                msg: msg,
17141                width:450,
17142                progress:true,
17143                buttons : false,
17144                closable:false,
17145                modal: false
17146               
17147             });
17148         }
17149         var total = mods.length;
17150         
17151         var _this = this;
17152         var progressRun = function() {
17153             if (!mods.length) {
17154                 Roo.debug && Roo.log('hide?');
17155                 if (!this.hideProgress && Roo.MessageBox) {
17156                     Roo.MessageBox.hide();
17157                 }
17158                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17159                 
17160                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17161                 
17162                 // THE END...
17163                 return false;   
17164             }
17165             
17166             var m = mods.shift();
17167             
17168             
17169             Roo.debug && Roo.log(m);
17170             // not sure if this is supported any more.. - modules that are are just function
17171             if (typeof(m) == 'function') { 
17172                 m.call(this);
17173                 return progressRun.defer(10, _this);
17174             } 
17175             
17176             
17177             msg = "Building Interface " + (total  - mods.length) + 
17178                     " of " + total + 
17179                     (m.name ? (' - ' + m.name) : '');
17180                         Roo.debug && Roo.log(msg);
17181             if (!_this.hideProgress &&  Roo.MessageBox) { 
17182                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17183             }
17184             
17185          
17186             // is the module disabled?
17187             var disabled = (typeof(m.disabled) == 'function') ?
17188                 m.disabled.call(m.module.disabled) : m.disabled;    
17189             
17190             
17191             if (disabled) {
17192                 return progressRun(); // we do not update the display!
17193             }
17194             
17195             // now build 
17196             
17197                         
17198                         
17199             m.render();
17200             // it's 10 on top level, and 1 on others??? why...
17201             return progressRun.defer(10, _this);
17202              
17203         }
17204         progressRun.defer(1, _this);
17205      
17206         
17207         
17208     },
17209     /**
17210      * Overlay a set of modified strings onto a component
17211      * This is dependant on our builder exporting the strings and 'named strings' elements.
17212      * 
17213      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17214      * @param {Object} associative array of 'named' string and it's new value.
17215      * 
17216      */
17217         overlayStrings : function( component, strings )
17218     {
17219         if (typeof(component['_named_strings']) == 'undefined') {
17220             throw "ERROR: component does not have _named_strings";
17221         }
17222         for ( var k in strings ) {
17223             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17224             if (md !== false) {
17225                 component['_strings'][md] = strings[k];
17226             } else {
17227                 Roo.log('could not find named string: ' + k + ' in');
17228                 Roo.log(component);
17229             }
17230             
17231         }
17232         
17233     },
17234     
17235         
17236         /**
17237          * Event Object.
17238          *
17239          *
17240          */
17241         event: false, 
17242     /**
17243          * wrapper for event.on - aliased later..  
17244          * Typically use to register a event handler for register:
17245          *
17246          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17247          *
17248          */
17249     on : false
17250    
17251     
17252     
17253 });
17254
17255 Roo.XComponent.event = new Roo.util.Observable({
17256                 events : { 
17257                         /**
17258                          * @event register
17259                          * Fires when an Component is registered,
17260                          * set the disable property on the Component to stop registration.
17261                          * @param {Roo.XComponent} c the component being registerd.
17262                          * 
17263                          */
17264                         'register' : true,
17265             /**
17266                          * @event beforebuild
17267                          * Fires before each Component is built
17268                          * can be used to apply permissions.
17269                          * @param {Roo.XComponent} c the component being registerd.
17270                          * 
17271                          */
17272                         'beforebuild' : true,
17273                         /**
17274                          * @event buildcomplete
17275                          * Fires on the top level element when all elements have been built
17276                          * @param {Roo.XComponent} the top level component.
17277                          */
17278                         'buildcomplete' : true
17279                         
17280                 }
17281 });
17282
17283 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17284  //
17285  /**
17286  * marked - a markdown parser
17287  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17288  * https://github.com/chjj/marked
17289  */
17290
17291
17292 /**
17293  *
17294  * Roo.Markdown - is a very crude wrapper around marked..
17295  *
17296  * usage:
17297  * 
17298  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17299  * 
17300  * Note: move the sample code to the bottom of this
17301  * file before uncommenting it.
17302  *
17303  */
17304
17305 Roo.Markdown = {};
17306 Roo.Markdown.toHtml = function(text) {
17307     
17308     var c = new Roo.Markdown.marked.setOptions({
17309             renderer: new Roo.Markdown.marked.Renderer(),
17310             gfm: true,
17311             tables: true,
17312             breaks: false,
17313             pedantic: false,
17314             sanitize: false,
17315             smartLists: true,
17316             smartypants: false
17317           });
17318     // A FEW HACKS!!?
17319     
17320     text = text.replace(/\\\n/g,' ');
17321     return Roo.Markdown.marked(text);
17322 };
17323 //
17324 // converter
17325 //
17326 // Wraps all "globals" so that the only thing
17327 // exposed is makeHtml().
17328 //
17329 (function() {
17330     
17331      /**
17332          * eval:var:escape
17333          * eval:var:unescape
17334          * eval:var:replace
17335          */
17336       
17337     /**
17338      * Helpers
17339      */
17340     
17341     var escape = function (html, encode) {
17342       return html
17343         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17344         .replace(/</g, '&lt;')
17345         .replace(/>/g, '&gt;')
17346         .replace(/"/g, '&quot;')
17347         .replace(/'/g, '&#39;');
17348     }
17349     
17350     var unescape = function (html) {
17351         // explicitly match decimal, hex, and named HTML entities 
17352       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17353         n = n.toLowerCase();
17354         if (n === 'colon') { return ':'; }
17355         if (n.charAt(0) === '#') {
17356           return n.charAt(1) === 'x'
17357             ? String.fromCharCode(parseInt(n.substring(2), 16))
17358             : String.fromCharCode(+n.substring(1));
17359         }
17360         return '';
17361       });
17362     }
17363     
17364     var replace = function (regex, opt) {
17365       regex = regex.source;
17366       opt = opt || '';
17367       return function self(name, val) {
17368         if (!name) { return new RegExp(regex, opt); }
17369         val = val.source || val;
17370         val = val.replace(/(^|[^\[])\^/g, '$1');
17371         regex = regex.replace(name, val);
17372         return self;
17373       };
17374     }
17375
17376
17377          /**
17378          * eval:var:noop
17379     */
17380     var noop = function () {}
17381     noop.exec = noop;
17382     
17383          /**
17384          * eval:var:merge
17385     */
17386     var merge = function (obj) {
17387       var i = 1
17388         , target
17389         , key;
17390     
17391       for (; i < arguments.length; i++) {
17392         target = arguments[i];
17393         for (key in target) {
17394           if (Object.prototype.hasOwnProperty.call(target, key)) {
17395             obj[key] = target[key];
17396           }
17397         }
17398       }
17399     
17400       return obj;
17401     }
17402     
17403     
17404     /**
17405      * Block-Level Grammar
17406      */
17407     
17408     
17409     
17410     
17411     var block = {
17412       newline: /^\n+/,
17413       code: /^( {4}[^\n]+\n*)+/,
17414       fences: noop,
17415       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17416       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17417       nptable: noop,
17418       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17419       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17420       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17421       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17422       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17423       table: noop,
17424       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17425       text: /^[^\n]+/
17426     };
17427     
17428     block.bullet = /(?:[*+-]|\d+\.)/;
17429     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17430     block.item = replace(block.item, 'gm')
17431       (/bull/g, block.bullet)
17432       ();
17433     
17434     block.list = replace(block.list)
17435       (/bull/g, block.bullet)
17436       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17437       ('def', '\\n+(?=' + block.def.source + ')')
17438       ();
17439     
17440     block.blockquote = replace(block.blockquote)
17441       ('def', block.def)
17442       ();
17443     
17444     block._tag = '(?!(?:'
17445       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17446       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17447       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17448     
17449     block.html = replace(block.html)
17450       ('comment', /<!--[\s\S]*?-->/)
17451       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17452       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17453       (/tag/g, block._tag)
17454       ();
17455     
17456     block.paragraph = replace(block.paragraph)
17457       ('hr', block.hr)
17458       ('heading', block.heading)
17459       ('lheading', block.lheading)
17460       ('blockquote', block.blockquote)
17461       ('tag', '<' + block._tag)
17462       ('def', block.def)
17463       ();
17464     
17465     /**
17466      * Normal Block Grammar
17467      */
17468     
17469     block.normal = merge({}, block);
17470     
17471     /**
17472      * GFM Block Grammar
17473      */
17474     
17475     block.gfm = merge({}, block.normal, {
17476       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17477       paragraph: /^/,
17478       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17479     });
17480     
17481     block.gfm.paragraph = replace(block.paragraph)
17482       ('(?!', '(?!'
17483         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17484         + block.list.source.replace('\\1', '\\3') + '|')
17485       ();
17486     
17487     /**
17488      * GFM + Tables Block Grammar
17489      */
17490     
17491     block.tables = merge({}, block.gfm, {
17492       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17493       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17494     });
17495     
17496     /**
17497      * Block Lexer
17498      */
17499     
17500     var Lexer = function (options) {
17501       this.tokens = [];
17502       this.tokens.links = {};
17503       this.options = options || marked.defaults;
17504       this.rules = block.normal;
17505     
17506       if (this.options.gfm) {
17507         if (this.options.tables) {
17508           this.rules = block.tables;
17509         } else {
17510           this.rules = block.gfm;
17511         }
17512       }
17513     }
17514     
17515     /**
17516      * Expose Block Rules
17517      */
17518     
17519     Lexer.rules = block;
17520     
17521     /**
17522      * Static Lex Method
17523      */
17524     
17525     Lexer.lex = function(src, options) {
17526       var lexer = new Lexer(options);
17527       return lexer.lex(src);
17528     };
17529     
17530     /**
17531      * Preprocessing
17532      */
17533     
17534     Lexer.prototype.lex = function(src) {
17535       src = src
17536         .replace(/\r\n|\r/g, '\n')
17537         .replace(/\t/g, '    ')
17538         .replace(/\u00a0/g, ' ')
17539         .replace(/\u2424/g, '\n');
17540     
17541       return this.token(src, true);
17542     };
17543     
17544     /**
17545      * Lexing
17546      */
17547     
17548     Lexer.prototype.token = function(src, top, bq) {
17549       var src = src.replace(/^ +$/gm, '')
17550         , next
17551         , loose
17552         , cap
17553         , bull
17554         , b
17555         , item
17556         , space
17557         , i
17558         , l;
17559     
17560       while (src) {
17561         // newline
17562         if (cap = this.rules.newline.exec(src)) {
17563           src = src.substring(cap[0].length);
17564           if (cap[0].length > 1) {
17565             this.tokens.push({
17566               type: 'space'
17567             });
17568           }
17569         }
17570     
17571         // code
17572         if (cap = this.rules.code.exec(src)) {
17573           src = src.substring(cap[0].length);
17574           cap = cap[0].replace(/^ {4}/gm, '');
17575           this.tokens.push({
17576             type: 'code',
17577             text: !this.options.pedantic
17578               ? cap.replace(/\n+$/, '')
17579               : cap
17580           });
17581           continue;
17582         }
17583     
17584         // fences (gfm)
17585         if (cap = this.rules.fences.exec(src)) {
17586           src = src.substring(cap[0].length);
17587           this.tokens.push({
17588             type: 'code',
17589             lang: cap[2],
17590             text: cap[3] || ''
17591           });
17592           continue;
17593         }
17594     
17595         // heading
17596         if (cap = this.rules.heading.exec(src)) {
17597           src = src.substring(cap[0].length);
17598           this.tokens.push({
17599             type: 'heading',
17600             depth: cap[1].length,
17601             text: cap[2]
17602           });
17603           continue;
17604         }
17605     
17606         // table no leading pipe (gfm)
17607         if (top && (cap = this.rules.nptable.exec(src))) {
17608           src = src.substring(cap[0].length);
17609     
17610           item = {
17611             type: 'table',
17612             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17613             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17614             cells: cap[3].replace(/\n$/, '').split('\n')
17615           };
17616     
17617           for (i = 0; i < item.align.length; i++) {
17618             if (/^ *-+: *$/.test(item.align[i])) {
17619               item.align[i] = 'right';
17620             } else if (/^ *:-+: *$/.test(item.align[i])) {
17621               item.align[i] = 'center';
17622             } else if (/^ *:-+ *$/.test(item.align[i])) {
17623               item.align[i] = 'left';
17624             } else {
17625               item.align[i] = null;
17626             }
17627           }
17628     
17629           for (i = 0; i < item.cells.length; i++) {
17630             item.cells[i] = item.cells[i].split(/ *\| */);
17631           }
17632     
17633           this.tokens.push(item);
17634     
17635           continue;
17636         }
17637     
17638         // lheading
17639         if (cap = this.rules.lheading.exec(src)) {
17640           src = src.substring(cap[0].length);
17641           this.tokens.push({
17642             type: 'heading',
17643             depth: cap[2] === '=' ? 1 : 2,
17644             text: cap[1]
17645           });
17646           continue;
17647         }
17648     
17649         // hr
17650         if (cap = this.rules.hr.exec(src)) {
17651           src = src.substring(cap[0].length);
17652           this.tokens.push({
17653             type: 'hr'
17654           });
17655           continue;
17656         }
17657     
17658         // blockquote
17659         if (cap = this.rules.blockquote.exec(src)) {
17660           src = src.substring(cap[0].length);
17661     
17662           this.tokens.push({
17663             type: 'blockquote_start'
17664           });
17665     
17666           cap = cap[0].replace(/^ *> ?/gm, '');
17667     
17668           // Pass `top` to keep the current
17669           // "toplevel" state. This is exactly
17670           // how markdown.pl works.
17671           this.token(cap, top, true);
17672     
17673           this.tokens.push({
17674             type: 'blockquote_end'
17675           });
17676     
17677           continue;
17678         }
17679     
17680         // list
17681         if (cap = this.rules.list.exec(src)) {
17682           src = src.substring(cap[0].length);
17683           bull = cap[2];
17684     
17685           this.tokens.push({
17686             type: 'list_start',
17687             ordered: bull.length > 1
17688           });
17689     
17690           // Get each top-level item.
17691           cap = cap[0].match(this.rules.item);
17692     
17693           next = false;
17694           l = cap.length;
17695           i = 0;
17696     
17697           for (; i < l; i++) {
17698             item = cap[i];
17699     
17700             // Remove the list item's bullet
17701             // so it is seen as the next token.
17702             space = item.length;
17703             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17704     
17705             // Outdent whatever the
17706             // list item contains. Hacky.
17707             if (~item.indexOf('\n ')) {
17708               space -= item.length;
17709               item = !this.options.pedantic
17710                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17711                 : item.replace(/^ {1,4}/gm, '');
17712             }
17713     
17714             // Determine whether the next list item belongs here.
17715             // Backpedal if it does not belong in this list.
17716             if (this.options.smartLists && i !== l - 1) {
17717               b = block.bullet.exec(cap[i + 1])[0];
17718               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17719                 src = cap.slice(i + 1).join('\n') + src;
17720                 i = l - 1;
17721               }
17722             }
17723     
17724             // Determine whether item is loose or not.
17725             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17726             // for discount behavior.
17727             loose = next || /\n\n(?!\s*$)/.test(item);
17728             if (i !== l - 1) {
17729               next = item.charAt(item.length - 1) === '\n';
17730               if (!loose) { loose = next; }
17731             }
17732     
17733             this.tokens.push({
17734               type: loose
17735                 ? 'loose_item_start'
17736                 : 'list_item_start'
17737             });
17738     
17739             // Recurse.
17740             this.token(item, false, bq);
17741     
17742             this.tokens.push({
17743               type: 'list_item_end'
17744             });
17745           }
17746     
17747           this.tokens.push({
17748             type: 'list_end'
17749           });
17750     
17751           continue;
17752         }
17753     
17754         // html
17755         if (cap = this.rules.html.exec(src)) {
17756           src = src.substring(cap[0].length);
17757           this.tokens.push({
17758             type: this.options.sanitize
17759               ? 'paragraph'
17760               : 'html',
17761             pre: !this.options.sanitizer
17762               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17763             text: cap[0]
17764           });
17765           continue;
17766         }
17767     
17768         // def
17769         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17770           src = src.substring(cap[0].length);
17771           this.tokens.links[cap[1].toLowerCase()] = {
17772             href: cap[2],
17773             title: cap[3]
17774           };
17775           continue;
17776         }
17777     
17778         // table (gfm)
17779         if (top && (cap = this.rules.table.exec(src))) {
17780           src = src.substring(cap[0].length);
17781     
17782           item = {
17783             type: 'table',
17784             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17785             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17786             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17787           };
17788     
17789           for (i = 0; i < item.align.length; i++) {
17790             if (/^ *-+: *$/.test(item.align[i])) {
17791               item.align[i] = 'right';
17792             } else if (/^ *:-+: *$/.test(item.align[i])) {
17793               item.align[i] = 'center';
17794             } else if (/^ *:-+ *$/.test(item.align[i])) {
17795               item.align[i] = 'left';
17796             } else {
17797               item.align[i] = null;
17798             }
17799           }
17800     
17801           for (i = 0; i < item.cells.length; i++) {
17802             item.cells[i] = item.cells[i]
17803               .replace(/^ *\| *| *\| *$/g, '')
17804               .split(/ *\| */);
17805           }
17806     
17807           this.tokens.push(item);
17808     
17809           continue;
17810         }
17811     
17812         // top-level paragraph
17813         if (top && (cap = this.rules.paragraph.exec(src))) {
17814           src = src.substring(cap[0].length);
17815           this.tokens.push({
17816             type: 'paragraph',
17817             text: cap[1].charAt(cap[1].length - 1) === '\n'
17818               ? cap[1].slice(0, -1)
17819               : cap[1]
17820           });
17821           continue;
17822         }
17823     
17824         // text
17825         if (cap = this.rules.text.exec(src)) {
17826           // Top-level should never reach here.
17827           src = src.substring(cap[0].length);
17828           this.tokens.push({
17829             type: 'text',
17830             text: cap[0]
17831           });
17832           continue;
17833         }
17834     
17835         if (src) {
17836           throw new
17837             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17838         }
17839       }
17840     
17841       return this.tokens;
17842     };
17843     
17844     /**
17845      * Inline-Level Grammar
17846      */
17847     
17848     var inline = {
17849       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17850       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17851       url: noop,
17852       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17853       link: /^!?\[(inside)\]\(href\)/,
17854       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17855       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17856       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17857       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17858       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17859       br: /^ {2,}\n(?!\s*$)/,
17860       del: noop,
17861       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17862     };
17863     
17864     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17865     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17866     
17867     inline.link = replace(inline.link)
17868       ('inside', inline._inside)
17869       ('href', inline._href)
17870       ();
17871     
17872     inline.reflink = replace(inline.reflink)
17873       ('inside', inline._inside)
17874       ();
17875     
17876     /**
17877      * Normal Inline Grammar
17878      */
17879     
17880     inline.normal = merge({}, inline);
17881     
17882     /**
17883      * Pedantic Inline Grammar
17884      */
17885     
17886     inline.pedantic = merge({}, inline.normal, {
17887       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17888       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17889     });
17890     
17891     /**
17892      * GFM Inline Grammar
17893      */
17894     
17895     inline.gfm = merge({}, inline.normal, {
17896       escape: replace(inline.escape)('])', '~|])')(),
17897       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17898       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17899       text: replace(inline.text)
17900         (']|', '~]|')
17901         ('|', '|https?://|')
17902         ()
17903     });
17904     
17905     /**
17906      * GFM + Line Breaks Inline Grammar
17907      */
17908     
17909     inline.breaks = merge({}, inline.gfm, {
17910       br: replace(inline.br)('{2,}', '*')(),
17911       text: replace(inline.gfm.text)('{2,}', '*')()
17912     });
17913     
17914     /**
17915      * Inline Lexer & Compiler
17916      */
17917     
17918     var InlineLexer  = function (links, options) {
17919       this.options = options || marked.defaults;
17920       this.links = links;
17921       this.rules = inline.normal;
17922       this.renderer = this.options.renderer || new Renderer;
17923       this.renderer.options = this.options;
17924     
17925       if (!this.links) {
17926         throw new
17927           Error('Tokens array requires a `links` property.');
17928       }
17929     
17930       if (this.options.gfm) {
17931         if (this.options.breaks) {
17932           this.rules = inline.breaks;
17933         } else {
17934           this.rules = inline.gfm;
17935         }
17936       } else if (this.options.pedantic) {
17937         this.rules = inline.pedantic;
17938       }
17939     }
17940     
17941     /**
17942      * Expose Inline Rules
17943      */
17944     
17945     InlineLexer.rules = inline;
17946     
17947     /**
17948      * Static Lexing/Compiling Method
17949      */
17950     
17951     InlineLexer.output = function(src, links, options) {
17952       var inline = new InlineLexer(links, options);
17953       return inline.output(src);
17954     };
17955     
17956     /**
17957      * Lexing/Compiling
17958      */
17959     
17960     InlineLexer.prototype.output = function(src) {
17961       var out = ''
17962         , link
17963         , text
17964         , href
17965         , cap;
17966     
17967       while (src) {
17968         // escape
17969         if (cap = this.rules.escape.exec(src)) {
17970           src = src.substring(cap[0].length);
17971           out += cap[1];
17972           continue;
17973         }
17974     
17975         // autolink
17976         if (cap = this.rules.autolink.exec(src)) {
17977           src = src.substring(cap[0].length);
17978           if (cap[2] === '@') {
17979             text = cap[1].charAt(6) === ':'
17980               ? this.mangle(cap[1].substring(7))
17981               : this.mangle(cap[1]);
17982             href = this.mangle('mailto:') + text;
17983           } else {
17984             text = escape(cap[1]);
17985             href = text;
17986           }
17987           out += this.renderer.link(href, null, text);
17988           continue;
17989         }
17990     
17991         // url (gfm)
17992         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17993           src = src.substring(cap[0].length);
17994           text = escape(cap[1]);
17995           href = text;
17996           out += this.renderer.link(href, null, text);
17997           continue;
17998         }
17999     
18000         // tag
18001         if (cap = this.rules.tag.exec(src)) {
18002           if (!this.inLink && /^<a /i.test(cap[0])) {
18003             this.inLink = true;
18004           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18005             this.inLink = false;
18006           }
18007           src = src.substring(cap[0].length);
18008           out += this.options.sanitize
18009             ? this.options.sanitizer
18010               ? this.options.sanitizer(cap[0])
18011               : escape(cap[0])
18012             : cap[0];
18013           continue;
18014         }
18015     
18016         // link
18017         if (cap = this.rules.link.exec(src)) {
18018           src = src.substring(cap[0].length);
18019           this.inLink = true;
18020           out += this.outputLink(cap, {
18021             href: cap[2],
18022             title: cap[3]
18023           });
18024           this.inLink = false;
18025           continue;
18026         }
18027     
18028         // reflink, nolink
18029         if ((cap = this.rules.reflink.exec(src))
18030             || (cap = this.rules.nolink.exec(src))) {
18031           src = src.substring(cap[0].length);
18032           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18033           link = this.links[link.toLowerCase()];
18034           if (!link || !link.href) {
18035             out += cap[0].charAt(0);
18036             src = cap[0].substring(1) + src;
18037             continue;
18038           }
18039           this.inLink = true;
18040           out += this.outputLink(cap, link);
18041           this.inLink = false;
18042           continue;
18043         }
18044     
18045         // strong
18046         if (cap = this.rules.strong.exec(src)) {
18047           src = src.substring(cap[0].length);
18048           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18049           continue;
18050         }
18051     
18052         // em
18053         if (cap = this.rules.em.exec(src)) {
18054           src = src.substring(cap[0].length);
18055           out += this.renderer.em(this.output(cap[2] || cap[1]));
18056           continue;
18057         }
18058     
18059         // code
18060         if (cap = this.rules.code.exec(src)) {
18061           src = src.substring(cap[0].length);
18062           out += this.renderer.codespan(escape(cap[2], true));
18063           continue;
18064         }
18065     
18066         // br
18067         if (cap = this.rules.br.exec(src)) {
18068           src = src.substring(cap[0].length);
18069           out += this.renderer.br();
18070           continue;
18071         }
18072     
18073         // del (gfm)
18074         if (cap = this.rules.del.exec(src)) {
18075           src = src.substring(cap[0].length);
18076           out += this.renderer.del(this.output(cap[1]));
18077           continue;
18078         }
18079     
18080         // text
18081         if (cap = this.rules.text.exec(src)) {
18082           src = src.substring(cap[0].length);
18083           out += this.renderer.text(escape(this.smartypants(cap[0])));
18084           continue;
18085         }
18086     
18087         if (src) {
18088           throw new
18089             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18090         }
18091       }
18092     
18093       return out;
18094     };
18095     
18096     /**
18097      * Compile Link
18098      */
18099     
18100     InlineLexer.prototype.outputLink = function(cap, link) {
18101       var href = escape(link.href)
18102         , title = link.title ? escape(link.title) : null;
18103     
18104       return cap[0].charAt(0) !== '!'
18105         ? this.renderer.link(href, title, this.output(cap[1]))
18106         : this.renderer.image(href, title, escape(cap[1]));
18107     };
18108     
18109     /**
18110      * Smartypants Transformations
18111      */
18112     
18113     InlineLexer.prototype.smartypants = function(text) {
18114       if (!this.options.smartypants)  { return text; }
18115       return text
18116         // em-dashes
18117         .replace(/---/g, '\u2014')
18118         // en-dashes
18119         .replace(/--/g, '\u2013')
18120         // opening singles
18121         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18122         // closing singles & apostrophes
18123         .replace(/'/g, '\u2019')
18124         // opening doubles
18125         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18126         // closing doubles
18127         .replace(/"/g, '\u201d')
18128         // ellipses
18129         .replace(/\.{3}/g, '\u2026');
18130     };
18131     
18132     /**
18133      * Mangle Links
18134      */
18135     
18136     InlineLexer.prototype.mangle = function(text) {
18137       if (!this.options.mangle) { return text; }
18138       var out = ''
18139         , l = text.length
18140         , i = 0
18141         , ch;
18142     
18143       for (; i < l; i++) {
18144         ch = text.charCodeAt(i);
18145         if (Math.random() > 0.5) {
18146           ch = 'x' + ch.toString(16);
18147         }
18148         out += '&#' + ch + ';';
18149       }
18150     
18151       return out;
18152     };
18153     
18154     /**
18155      * Renderer
18156      */
18157     
18158      /**
18159          * eval:var:Renderer
18160     */
18161     
18162     var Renderer   = function (options) {
18163       this.options = options || {};
18164     }
18165     
18166     Renderer.prototype.code = function(code, lang, escaped) {
18167       if (this.options.highlight) {
18168         var out = this.options.highlight(code, lang);
18169         if (out != null && out !== code) {
18170           escaped = true;
18171           code = out;
18172         }
18173       } else {
18174             // hack!!! - it's already escapeD?
18175             escaped = true;
18176       }
18177     
18178       if (!lang) {
18179         return '<pre><code>'
18180           + (escaped ? code : escape(code, true))
18181           + '\n</code></pre>';
18182       }
18183     
18184       return '<pre><code class="'
18185         + this.options.langPrefix
18186         + escape(lang, true)
18187         + '">'
18188         + (escaped ? code : escape(code, true))
18189         + '\n</code></pre>\n';
18190     };
18191     
18192     Renderer.prototype.blockquote = function(quote) {
18193       return '<blockquote>\n' + quote + '</blockquote>\n';
18194     };
18195     
18196     Renderer.prototype.html = function(html) {
18197       return html;
18198     };
18199     
18200     Renderer.prototype.heading = function(text, level, raw) {
18201       return '<h'
18202         + level
18203         + ' id="'
18204         + this.options.headerPrefix
18205         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18206         + '">'
18207         + text
18208         + '</h'
18209         + level
18210         + '>\n';
18211     };
18212     
18213     Renderer.prototype.hr = function() {
18214       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18215     };
18216     
18217     Renderer.prototype.list = function(body, ordered) {
18218       var type = ordered ? 'ol' : 'ul';
18219       return '<' + type + '>\n' + body + '</' + type + '>\n';
18220     };
18221     
18222     Renderer.prototype.listitem = function(text) {
18223       return '<li>' + text + '</li>\n';
18224     };
18225     
18226     Renderer.prototype.paragraph = function(text) {
18227       return '<p>' + text + '</p>\n';
18228     };
18229     
18230     Renderer.prototype.table = function(header, body) {
18231       return '<table class="table table-striped">\n'
18232         + '<thead>\n'
18233         + header
18234         + '</thead>\n'
18235         + '<tbody>\n'
18236         + body
18237         + '</tbody>\n'
18238         + '</table>\n';
18239     };
18240     
18241     Renderer.prototype.tablerow = function(content) {
18242       return '<tr>\n' + content + '</tr>\n';
18243     };
18244     
18245     Renderer.prototype.tablecell = function(content, flags) {
18246       var type = flags.header ? 'th' : 'td';
18247       var tag = flags.align
18248         ? '<' + type + ' style="text-align:' + flags.align + '">'
18249         : '<' + type + '>';
18250       return tag + content + '</' + type + '>\n';
18251     };
18252     
18253     // span level renderer
18254     Renderer.prototype.strong = function(text) {
18255       return '<strong>' + text + '</strong>';
18256     };
18257     
18258     Renderer.prototype.em = function(text) {
18259       return '<em>' + text + '</em>';
18260     };
18261     
18262     Renderer.prototype.codespan = function(text) {
18263       return '<code>' + text + '</code>';
18264     };
18265     
18266     Renderer.prototype.br = function() {
18267       return this.options.xhtml ? '<br/>' : '<br>';
18268     };
18269     
18270     Renderer.prototype.del = function(text) {
18271       return '<del>' + text + '</del>';
18272     };
18273     
18274     Renderer.prototype.link = function(href, title, text) {
18275       if (this.options.sanitize) {
18276         try {
18277           var prot = decodeURIComponent(unescape(href))
18278             .replace(/[^\w:]/g, '')
18279             .toLowerCase();
18280         } catch (e) {
18281           return '';
18282         }
18283         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18284           return '';
18285         }
18286       }
18287       var out = '<a href="' + href + '"';
18288       if (title) {
18289         out += ' title="' + title + '"';
18290       }
18291       out += '>' + text + '</a>';
18292       return out;
18293     };
18294     
18295     Renderer.prototype.image = function(href, title, text) {
18296       var out = '<img src="' + href + '" alt="' + text + '"';
18297       if (title) {
18298         out += ' title="' + title + '"';
18299       }
18300       out += this.options.xhtml ? '/>' : '>';
18301       return out;
18302     };
18303     
18304     Renderer.prototype.text = function(text) {
18305       return text;
18306     };
18307     
18308     /**
18309      * Parsing & Compiling
18310      */
18311          /**
18312          * eval:var:Parser
18313     */
18314     
18315     var Parser= function (options) {
18316       this.tokens = [];
18317       this.token = null;
18318       this.options = options || marked.defaults;
18319       this.options.renderer = this.options.renderer || new Renderer;
18320       this.renderer = this.options.renderer;
18321       this.renderer.options = this.options;
18322     }
18323     
18324     /**
18325      * Static Parse Method
18326      */
18327     
18328     Parser.parse = function(src, options, renderer) {
18329       var parser = new Parser(options, renderer);
18330       return parser.parse(src);
18331     };
18332     
18333     /**
18334      * Parse Loop
18335      */
18336     
18337     Parser.prototype.parse = function(src) {
18338       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18339       this.tokens = src.reverse();
18340     
18341       var out = '';
18342       while (this.next()) {
18343         out += this.tok();
18344       }
18345     
18346       return out;
18347     };
18348     
18349     /**
18350      * Next Token
18351      */
18352     
18353     Parser.prototype.next = function() {
18354       return this.token = this.tokens.pop();
18355     };
18356     
18357     /**
18358      * Preview Next Token
18359      */
18360     
18361     Parser.prototype.peek = function() {
18362       return this.tokens[this.tokens.length - 1] || 0;
18363     };
18364     
18365     /**
18366      * Parse Text Tokens
18367      */
18368     
18369     Parser.prototype.parseText = function() {
18370       var body = this.token.text;
18371     
18372       while (this.peek().type === 'text') {
18373         body += '\n' + this.next().text;
18374       }
18375     
18376       return this.inline.output(body);
18377     };
18378     
18379     /**
18380      * Parse Current Token
18381      */
18382     
18383     Parser.prototype.tok = function() {
18384       switch (this.token.type) {
18385         case 'space': {
18386           return '';
18387         }
18388         case 'hr': {
18389           return this.renderer.hr();
18390         }
18391         case 'heading': {
18392           return this.renderer.heading(
18393             this.inline.output(this.token.text),
18394             this.token.depth,
18395             this.token.text);
18396         }
18397         case 'code': {
18398           return this.renderer.code(this.token.text,
18399             this.token.lang,
18400             this.token.escaped);
18401         }
18402         case 'table': {
18403           var header = ''
18404             , body = ''
18405             , i
18406             , row
18407             , cell
18408             , flags
18409             , j;
18410     
18411           // header
18412           cell = '';
18413           for (i = 0; i < this.token.header.length; i++) {
18414             flags = { header: true, align: this.token.align[i] };
18415             cell += this.renderer.tablecell(
18416               this.inline.output(this.token.header[i]),
18417               { header: true, align: this.token.align[i] }
18418             );
18419           }
18420           header += this.renderer.tablerow(cell);
18421     
18422           for (i = 0; i < this.token.cells.length; i++) {
18423             row = this.token.cells[i];
18424     
18425             cell = '';
18426             for (j = 0; j < row.length; j++) {
18427               cell += this.renderer.tablecell(
18428                 this.inline.output(row[j]),
18429                 { header: false, align: this.token.align[j] }
18430               );
18431             }
18432     
18433             body += this.renderer.tablerow(cell);
18434           }
18435           return this.renderer.table(header, body);
18436         }
18437         case 'blockquote_start': {
18438           var body = '';
18439     
18440           while (this.next().type !== 'blockquote_end') {
18441             body += this.tok();
18442           }
18443     
18444           return this.renderer.blockquote(body);
18445         }
18446         case 'list_start': {
18447           var body = ''
18448             , ordered = this.token.ordered;
18449     
18450           while (this.next().type !== 'list_end') {
18451             body += this.tok();
18452           }
18453     
18454           return this.renderer.list(body, ordered);
18455         }
18456         case 'list_item_start': {
18457           var body = '';
18458     
18459           while (this.next().type !== 'list_item_end') {
18460             body += this.token.type === 'text'
18461               ? this.parseText()
18462               : this.tok();
18463           }
18464     
18465           return this.renderer.listitem(body);
18466         }
18467         case 'loose_item_start': {
18468           var body = '';
18469     
18470           while (this.next().type !== 'list_item_end') {
18471             body += this.tok();
18472           }
18473     
18474           return this.renderer.listitem(body);
18475         }
18476         case 'html': {
18477           var html = !this.token.pre && !this.options.pedantic
18478             ? this.inline.output(this.token.text)
18479             : this.token.text;
18480           return this.renderer.html(html);
18481         }
18482         case 'paragraph': {
18483           return this.renderer.paragraph(this.inline.output(this.token.text));
18484         }
18485         case 'text': {
18486           return this.renderer.paragraph(this.parseText());
18487         }
18488       }
18489     };
18490   
18491     
18492     /**
18493      * Marked
18494      */
18495          /**
18496          * eval:var:marked
18497     */
18498     var marked = function (src, opt, callback) {
18499       if (callback || typeof opt === 'function') {
18500         if (!callback) {
18501           callback = opt;
18502           opt = null;
18503         }
18504     
18505         opt = merge({}, marked.defaults, opt || {});
18506     
18507         var highlight = opt.highlight
18508           , tokens
18509           , pending
18510           , i = 0;
18511     
18512         try {
18513           tokens = Lexer.lex(src, opt)
18514         } catch (e) {
18515           return callback(e);
18516         }
18517     
18518         pending = tokens.length;
18519          /**
18520          * eval:var:done
18521     */
18522         var done = function(err) {
18523           if (err) {
18524             opt.highlight = highlight;
18525             return callback(err);
18526           }
18527     
18528           var out;
18529     
18530           try {
18531             out = Parser.parse(tokens, opt);
18532           } catch (e) {
18533             err = e;
18534           }
18535     
18536           opt.highlight = highlight;
18537     
18538           return err
18539             ? callback(err)
18540             : callback(null, out);
18541         };
18542     
18543         if (!highlight || highlight.length < 3) {
18544           return done();
18545         }
18546     
18547         delete opt.highlight;
18548     
18549         if (!pending) { return done(); }
18550     
18551         for (; i < tokens.length; i++) {
18552           (function(token) {
18553             if (token.type !== 'code') {
18554               return --pending || done();
18555             }
18556             return highlight(token.text, token.lang, function(err, code) {
18557               if (err) { return done(err); }
18558               if (code == null || code === token.text) {
18559                 return --pending || done();
18560               }
18561               token.text = code;
18562               token.escaped = true;
18563               --pending || done();
18564             });
18565           })(tokens[i]);
18566         }
18567     
18568         return;
18569       }
18570       try {
18571         if (opt) { opt = merge({}, marked.defaults, opt); }
18572         return Parser.parse(Lexer.lex(src, opt), opt);
18573       } catch (e) {
18574         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18575         if ((opt || marked.defaults).silent) {
18576           return '<p>An error occured:</p><pre>'
18577             + escape(e.message + '', true)
18578             + '</pre>';
18579         }
18580         throw e;
18581       }
18582     }
18583     
18584     /**
18585      * Options
18586      */
18587     
18588     marked.options =
18589     marked.setOptions = function(opt) {
18590       merge(marked.defaults, opt);
18591       return marked;
18592     };
18593     
18594     marked.defaults = {
18595       gfm: true,
18596       tables: true,
18597       breaks: false,
18598       pedantic: false,
18599       sanitize: false,
18600       sanitizer: null,
18601       mangle: true,
18602       smartLists: false,
18603       silent: false,
18604       highlight: null,
18605       langPrefix: 'lang-',
18606       smartypants: false,
18607       headerPrefix: '',
18608       renderer: new Renderer,
18609       xhtml: false
18610     };
18611     
18612     /**
18613      * Expose
18614      */
18615     
18616     marked.Parser = Parser;
18617     marked.parser = Parser.parse;
18618     
18619     marked.Renderer = Renderer;
18620     
18621     marked.Lexer = Lexer;
18622     marked.lexer = Lexer.lex;
18623     
18624     marked.InlineLexer = InlineLexer;
18625     marked.inlineLexer = InlineLexer.output;
18626     
18627     marked.parse = marked;
18628     
18629     Roo.Markdown.marked = marked;
18630
18631 })();/*
18632  * Based on:
18633  * Ext JS Library 1.1.1
18634  * Copyright(c) 2006-2007, Ext JS, LLC.
18635  *
18636  * Originally Released Under LGPL - original licence link has changed is not relivant.
18637  *
18638  * Fork - LGPL
18639  * <script type="text/javascript">
18640  */
18641
18642
18643
18644 /*
18645  * These classes are derivatives of the similarly named classes in the YUI Library.
18646  * The original license:
18647  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18648  * Code licensed under the BSD License:
18649  * http://developer.yahoo.net/yui/license.txt
18650  */
18651
18652 (function() {
18653
18654 var Event=Roo.EventManager;
18655 var Dom=Roo.lib.Dom;
18656
18657 /**
18658  * @class Roo.dd.DragDrop
18659  * @extends Roo.util.Observable
18660  * Defines the interface and base operation of items that that can be
18661  * dragged or can be drop targets.  It was designed to be extended, overriding
18662  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18663  * Up to three html elements can be associated with a DragDrop instance:
18664  * <ul>
18665  * <li>linked element: the element that is passed into the constructor.
18666  * This is the element which defines the boundaries for interaction with
18667  * other DragDrop objects.</li>
18668  * <li>handle element(s): The drag operation only occurs if the element that
18669  * was clicked matches a handle element.  By default this is the linked
18670  * element, but there are times that you will want only a portion of the
18671  * linked element to initiate the drag operation, and the setHandleElId()
18672  * method provides a way to define this.</li>
18673  * <li>drag element: this represents the element that would be moved along
18674  * with the cursor during a drag operation.  By default, this is the linked
18675  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18676  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18677  * </li>
18678  * </ul>
18679  * This class should not be instantiated until the onload event to ensure that
18680  * the associated elements are available.
18681  * The following would define a DragDrop obj that would interact with any
18682  * other DragDrop obj in the "group1" group:
18683  * <pre>
18684  *  dd = new Roo.dd.DragDrop("div1", "group1");
18685  * </pre>
18686  * Since none of the event handlers have been implemented, nothing would
18687  * actually happen if you were to run the code above.  Normally you would
18688  * override this class or one of the default implementations, but you can
18689  * also override the methods you want on an instance of the class...
18690  * <pre>
18691  *  dd.onDragDrop = function(e, id) {
18692  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18693  *  }
18694  * </pre>
18695  * @constructor
18696  * @param {String} id of the element that is linked to this instance
18697  * @param {String} sGroup the group of related DragDrop objects
18698  * @param {object} config an object containing configurable attributes
18699  *                Valid properties for DragDrop:
18700  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18701  */
18702 Roo.dd.DragDrop = function(id, sGroup, config) {
18703     if (id) {
18704         this.init(id, sGroup, config);
18705     }
18706     
18707 };
18708
18709 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18710
18711     /**
18712      * The id of the element associated with this object.  This is what we
18713      * refer to as the "linked element" because the size and position of
18714      * this element is used to determine when the drag and drop objects have
18715      * interacted.
18716      * @property id
18717      * @type String
18718      */
18719     id: null,
18720
18721     /**
18722      * Configuration attributes passed into the constructor
18723      * @property config
18724      * @type object
18725      */
18726     config: null,
18727
18728     /**
18729      * The id of the element that will be dragged.  By default this is same
18730      * as the linked element , but could be changed to another element. Ex:
18731      * Roo.dd.DDProxy
18732      * @property dragElId
18733      * @type String
18734      * @private
18735      */
18736     dragElId: null,
18737
18738     /**
18739      * the id of the element that initiates the drag operation.  By default
18740      * this is the linked element, but could be changed to be a child of this
18741      * element.  This lets us do things like only starting the drag when the
18742      * header element within the linked html element is clicked.
18743      * @property handleElId
18744      * @type String
18745      * @private
18746      */
18747     handleElId: null,
18748
18749     /**
18750      * An associative array of HTML tags that will be ignored if clicked.
18751      * @property invalidHandleTypes
18752      * @type {string: string}
18753      */
18754     invalidHandleTypes: null,
18755
18756     /**
18757      * An associative array of ids for elements that will be ignored if clicked
18758      * @property invalidHandleIds
18759      * @type {string: string}
18760      */
18761     invalidHandleIds: null,
18762
18763     /**
18764      * An indexted array of css class names for elements that will be ignored
18765      * if clicked.
18766      * @property invalidHandleClasses
18767      * @type string[]
18768      */
18769     invalidHandleClasses: null,
18770
18771     /**
18772      * The linked element's absolute X position at the time the drag was
18773      * started
18774      * @property startPageX
18775      * @type int
18776      * @private
18777      */
18778     startPageX: 0,
18779
18780     /**
18781      * The linked element's absolute X position at the time the drag was
18782      * started
18783      * @property startPageY
18784      * @type int
18785      * @private
18786      */
18787     startPageY: 0,
18788
18789     /**
18790      * The group defines a logical collection of DragDrop objects that are
18791      * related.  Instances only get events when interacting with other
18792      * DragDrop object in the same group.  This lets us define multiple
18793      * groups using a single DragDrop subclass if we want.
18794      * @property groups
18795      * @type {string: string}
18796      */
18797     groups: null,
18798
18799     /**
18800      * Individual drag/drop instances can be locked.  This will prevent
18801      * onmousedown start drag.
18802      * @property locked
18803      * @type boolean
18804      * @private
18805      */
18806     locked: false,
18807
18808     /**
18809      * Lock this instance
18810      * @method lock
18811      */
18812     lock: function() { this.locked = true; },
18813
18814     /**
18815      * Unlock this instace
18816      * @method unlock
18817      */
18818     unlock: function() { this.locked = false; },
18819
18820     /**
18821      * By default, all insances can be a drop target.  This can be disabled by
18822      * setting isTarget to false.
18823      * @method isTarget
18824      * @type boolean
18825      */
18826     isTarget: true,
18827
18828     /**
18829      * The padding configured for this drag and drop object for calculating
18830      * the drop zone intersection with this object.
18831      * @method padding
18832      * @type int[]
18833      */
18834     padding: null,
18835
18836     /**
18837      * Cached reference to the linked element
18838      * @property _domRef
18839      * @private
18840      */
18841     _domRef: null,
18842
18843     /**
18844      * Internal typeof flag
18845      * @property __ygDragDrop
18846      * @private
18847      */
18848     __ygDragDrop: true,
18849
18850     /**
18851      * Set to true when horizontal contraints are applied
18852      * @property constrainX
18853      * @type boolean
18854      * @private
18855      */
18856     constrainX: false,
18857
18858     /**
18859      * Set to true when vertical contraints are applied
18860      * @property constrainY
18861      * @type boolean
18862      * @private
18863      */
18864     constrainY: false,
18865
18866     /**
18867      * The left constraint
18868      * @property minX
18869      * @type int
18870      * @private
18871      */
18872     minX: 0,
18873
18874     /**
18875      * The right constraint
18876      * @property maxX
18877      * @type int
18878      * @private
18879      */
18880     maxX: 0,
18881
18882     /**
18883      * The up constraint
18884      * @property minY
18885      * @type int
18886      * @type int
18887      * @private
18888      */
18889     minY: 0,
18890
18891     /**
18892      * The down constraint
18893      * @property maxY
18894      * @type int
18895      * @private
18896      */
18897     maxY: 0,
18898
18899     /**
18900      * Maintain offsets when we resetconstraints.  Set to true when you want
18901      * the position of the element relative to its parent to stay the same
18902      * when the page changes
18903      *
18904      * @property maintainOffset
18905      * @type boolean
18906      */
18907     maintainOffset: false,
18908
18909     /**
18910      * Array of pixel locations the element will snap to if we specified a
18911      * horizontal graduation/interval.  This array is generated automatically
18912      * when you define a tick interval.
18913      * @property xTicks
18914      * @type int[]
18915      */
18916     xTicks: null,
18917
18918     /**
18919      * Array of pixel locations the element will snap to if we specified a
18920      * vertical graduation/interval.  This array is generated automatically
18921      * when you define a tick interval.
18922      * @property yTicks
18923      * @type int[]
18924      */
18925     yTicks: null,
18926
18927     /**
18928      * By default the drag and drop instance will only respond to the primary
18929      * button click (left button for a right-handed mouse).  Set to true to
18930      * allow drag and drop to start with any mouse click that is propogated
18931      * by the browser
18932      * @property primaryButtonOnly
18933      * @type boolean
18934      */
18935     primaryButtonOnly: true,
18936
18937     /**
18938      * The availabe property is false until the linked dom element is accessible.
18939      * @property available
18940      * @type boolean
18941      */
18942     available: false,
18943
18944     /**
18945      * By default, drags can only be initiated if the mousedown occurs in the
18946      * region the linked element is.  This is done in part to work around a
18947      * bug in some browsers that mis-report the mousedown if the previous
18948      * mouseup happened outside of the window.  This property is set to true
18949      * if outer handles are defined.
18950      *
18951      * @property hasOuterHandles
18952      * @type boolean
18953      * @default false
18954      */
18955     hasOuterHandles: false,
18956
18957     /**
18958      * Code that executes immediately before the startDrag event
18959      * @method b4StartDrag
18960      * @private
18961      */
18962     b4StartDrag: function(x, y) { },
18963
18964     /**
18965      * Abstract method called after a drag/drop object is clicked
18966      * and the drag or mousedown time thresholds have beeen met.
18967      * @method startDrag
18968      * @param {int} X click location
18969      * @param {int} Y click location
18970      */
18971     startDrag: function(x, y) { /* override this */ },
18972
18973     /**
18974      * Code that executes immediately before the onDrag event
18975      * @method b4Drag
18976      * @private
18977      */
18978     b4Drag: function(e) { },
18979
18980     /**
18981      * Abstract method called during the onMouseMove event while dragging an
18982      * object.
18983      * @method onDrag
18984      * @param {Event} e the mousemove event
18985      */
18986     onDrag: function(e) { /* override this */ },
18987
18988     /**
18989      * Abstract method called when this element fist begins hovering over
18990      * another DragDrop obj
18991      * @method onDragEnter
18992      * @param {Event} e the mousemove event
18993      * @param {String|DragDrop[]} id In POINT mode, the element
18994      * id this is hovering over.  In INTERSECT mode, an array of one or more
18995      * dragdrop items being hovered over.
18996      */
18997     onDragEnter: function(e, id) { /* override this */ },
18998
18999     /**
19000      * Code that executes immediately before the onDragOver event
19001      * @method b4DragOver
19002      * @private
19003      */
19004     b4DragOver: function(e) { },
19005
19006     /**
19007      * Abstract method called when this element is hovering over another
19008      * DragDrop obj
19009      * @method onDragOver
19010      * @param {Event} e the mousemove event
19011      * @param {String|DragDrop[]} id In POINT mode, the element
19012      * id this is hovering over.  In INTERSECT mode, an array of dd items
19013      * being hovered over.
19014      */
19015     onDragOver: function(e, id) { /* override this */ },
19016
19017     /**
19018      * Code that executes immediately before the onDragOut event
19019      * @method b4DragOut
19020      * @private
19021      */
19022     b4DragOut: function(e) { },
19023
19024     /**
19025      * Abstract method called when we are no longer hovering over an element
19026      * @method onDragOut
19027      * @param {Event} e the mousemove event
19028      * @param {String|DragDrop[]} id In POINT mode, the element
19029      * id this was hovering over.  In INTERSECT mode, an array of dd items
19030      * that the mouse is no longer over.
19031      */
19032     onDragOut: function(e, id) { /* override this */ },
19033
19034     /**
19035      * Code that executes immediately before the onDragDrop event
19036      * @method b4DragDrop
19037      * @private
19038      */
19039     b4DragDrop: function(e) { },
19040
19041     /**
19042      * Abstract method called when this item is dropped on another DragDrop
19043      * obj
19044      * @method onDragDrop
19045      * @param {Event} e the mouseup event
19046      * @param {String|DragDrop[]} id In POINT mode, the element
19047      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19048      * was dropped on.
19049      */
19050     onDragDrop: function(e, id) { /* override this */ },
19051
19052     /**
19053      * Abstract method called when this item is dropped on an area with no
19054      * drop target
19055      * @method onInvalidDrop
19056      * @param {Event} e the mouseup event
19057      */
19058     onInvalidDrop: function(e) { /* override this */ },
19059
19060     /**
19061      * Code that executes immediately before the endDrag event
19062      * @method b4EndDrag
19063      * @private
19064      */
19065     b4EndDrag: function(e) { },
19066
19067     /**
19068      * Fired when we are done dragging the object
19069      * @method endDrag
19070      * @param {Event} e the mouseup event
19071      */
19072     endDrag: function(e) { /* override this */ },
19073
19074     /**
19075      * Code executed immediately before the onMouseDown event
19076      * @method b4MouseDown
19077      * @param {Event} e the mousedown event
19078      * @private
19079      */
19080     b4MouseDown: function(e) {  },
19081
19082     /**
19083      * Event handler that fires when a drag/drop obj gets a mousedown
19084      * @method onMouseDown
19085      * @param {Event} e the mousedown event
19086      */
19087     onMouseDown: function(e) { /* override this */ },
19088
19089     /**
19090      * Event handler that fires when a drag/drop obj gets a mouseup
19091      * @method onMouseUp
19092      * @param {Event} e the mouseup event
19093      */
19094     onMouseUp: function(e) { /* override this */ },
19095
19096     /**
19097      * Override the onAvailable method to do what is needed after the initial
19098      * position was determined.
19099      * @method onAvailable
19100      */
19101     onAvailable: function () {
19102     },
19103
19104     /*
19105      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19106      * @type Object
19107      */
19108     defaultPadding : {left:0, right:0, top:0, bottom:0},
19109
19110     /*
19111      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19112  *
19113  * Usage:
19114  <pre><code>
19115  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19116                 { dragElId: "existingProxyDiv" });
19117  dd.startDrag = function(){
19118      this.constrainTo("parent-id");
19119  };
19120  </code></pre>
19121  * Or you can initalize it using the {@link Roo.Element} object:
19122  <pre><code>
19123  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19124      startDrag : function(){
19125          this.constrainTo("parent-id");
19126      }
19127  });
19128  </code></pre>
19129      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19130      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19131      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19132      * an object containing the sides to pad. For example: {right:10, bottom:10}
19133      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19134      */
19135     constrainTo : function(constrainTo, pad, inContent){
19136         if(typeof pad == "number"){
19137             pad = {left: pad, right:pad, top:pad, bottom:pad};
19138         }
19139         pad = pad || this.defaultPadding;
19140         var b = Roo.get(this.getEl()).getBox();
19141         var ce = Roo.get(constrainTo);
19142         var s = ce.getScroll();
19143         var c, cd = ce.dom;
19144         if(cd == document.body){
19145             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19146         }else{
19147             xy = ce.getXY();
19148             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19149         }
19150
19151
19152         var topSpace = b.y - c.y;
19153         var leftSpace = b.x - c.x;
19154
19155         this.resetConstraints();
19156         this.setXConstraint(leftSpace - (pad.left||0), // left
19157                 c.width - leftSpace - b.width - (pad.right||0) //right
19158         );
19159         this.setYConstraint(topSpace - (pad.top||0), //top
19160                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19161         );
19162     },
19163
19164     /**
19165      * Returns a reference to the linked element
19166      * @method getEl
19167      * @return {HTMLElement} the html element
19168      */
19169     getEl: function() {
19170         if (!this._domRef) {
19171             this._domRef = Roo.getDom(this.id);
19172         }
19173
19174         return this._domRef;
19175     },
19176
19177     /**
19178      * Returns a reference to the actual element to drag.  By default this is
19179      * the same as the html element, but it can be assigned to another
19180      * element. An example of this can be found in Roo.dd.DDProxy
19181      * @method getDragEl
19182      * @return {HTMLElement} the html element
19183      */
19184     getDragEl: function() {
19185         return Roo.getDom(this.dragElId);
19186     },
19187
19188     /**
19189      * Sets up the DragDrop object.  Must be called in the constructor of any
19190      * Roo.dd.DragDrop subclass
19191      * @method init
19192      * @param id the id of the linked element
19193      * @param {String} sGroup the group of related items
19194      * @param {object} config configuration attributes
19195      */
19196     init: function(id, sGroup, config) {
19197         this.initTarget(id, sGroup, config);
19198         if (!Roo.isTouch) {
19199             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19200         }
19201         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19202         // Event.on(this.id, "selectstart", Event.preventDefault);
19203     },
19204
19205     /**
19206      * Initializes Targeting functionality only... the object does not
19207      * get a mousedown handler.
19208      * @method initTarget
19209      * @param id the id of the linked element
19210      * @param {String} sGroup the group of related items
19211      * @param {object} config configuration attributes
19212      */
19213     initTarget: function(id, sGroup, config) {
19214
19215         // configuration attributes
19216         this.config = config || {};
19217
19218         // create a local reference to the drag and drop manager
19219         this.DDM = Roo.dd.DDM;
19220         // initialize the groups array
19221         this.groups = {};
19222
19223         // assume that we have an element reference instead of an id if the
19224         // parameter is not a string
19225         if (typeof id !== "string") {
19226             id = Roo.id(id);
19227         }
19228
19229         // set the id
19230         this.id = id;
19231
19232         // add to an interaction group
19233         this.addToGroup((sGroup) ? sGroup : "default");
19234
19235         // We don't want to register this as the handle with the manager
19236         // so we just set the id rather than calling the setter.
19237         this.handleElId = id;
19238
19239         // the linked element is the element that gets dragged by default
19240         this.setDragElId(id);
19241
19242         // by default, clicked anchors will not start drag operations.
19243         this.invalidHandleTypes = { A: "A" };
19244         this.invalidHandleIds = {};
19245         this.invalidHandleClasses = [];
19246
19247         this.applyConfig();
19248
19249         this.handleOnAvailable();
19250     },
19251
19252     /**
19253      * Applies the configuration parameters that were passed into the constructor.
19254      * This is supposed to happen at each level through the inheritance chain.  So
19255      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19256      * DragDrop in order to get all of the parameters that are available in
19257      * each object.
19258      * @method applyConfig
19259      */
19260     applyConfig: function() {
19261
19262         // configurable properties:
19263         //    padding, isTarget, maintainOffset, primaryButtonOnly
19264         this.padding           = this.config.padding || [0, 0, 0, 0];
19265         this.isTarget          = (this.config.isTarget !== false);
19266         this.maintainOffset    = (this.config.maintainOffset);
19267         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19268
19269     },
19270
19271     /**
19272      * Executed when the linked element is available
19273      * @method handleOnAvailable
19274      * @private
19275      */
19276     handleOnAvailable: function() {
19277         this.available = true;
19278         this.resetConstraints();
19279         this.onAvailable();
19280     },
19281
19282      /**
19283      * Configures the padding for the target zone in px.  Effectively expands
19284      * (or reduces) the virtual object size for targeting calculations.
19285      * Supports css-style shorthand; if only one parameter is passed, all sides
19286      * will have that padding, and if only two are passed, the top and bottom
19287      * will have the first param, the left and right the second.
19288      * @method setPadding
19289      * @param {int} iTop    Top pad
19290      * @param {int} iRight  Right pad
19291      * @param {int} iBot    Bot pad
19292      * @param {int} iLeft   Left pad
19293      */
19294     setPadding: function(iTop, iRight, iBot, iLeft) {
19295         // this.padding = [iLeft, iRight, iTop, iBot];
19296         if (!iRight && 0 !== iRight) {
19297             this.padding = [iTop, iTop, iTop, iTop];
19298         } else if (!iBot && 0 !== iBot) {
19299             this.padding = [iTop, iRight, iTop, iRight];
19300         } else {
19301             this.padding = [iTop, iRight, iBot, iLeft];
19302         }
19303     },
19304
19305     /**
19306      * Stores the initial placement of the linked element.
19307      * @method setInitialPosition
19308      * @param {int} diffX   the X offset, default 0
19309      * @param {int} diffY   the Y offset, default 0
19310      */
19311     setInitPosition: function(diffX, diffY) {
19312         var el = this.getEl();
19313
19314         if (!this.DDM.verifyEl(el)) {
19315             return;
19316         }
19317
19318         var dx = diffX || 0;
19319         var dy = diffY || 0;
19320
19321         var p = Dom.getXY( el );
19322
19323         this.initPageX = p[0] - dx;
19324         this.initPageY = p[1] - dy;
19325
19326         this.lastPageX = p[0];
19327         this.lastPageY = p[1];
19328
19329
19330         this.setStartPosition(p);
19331     },
19332
19333     /**
19334      * Sets the start position of the element.  This is set when the obj
19335      * is initialized, the reset when a drag is started.
19336      * @method setStartPosition
19337      * @param pos current position (from previous lookup)
19338      * @private
19339      */
19340     setStartPosition: function(pos) {
19341         var p = pos || Dom.getXY( this.getEl() );
19342         this.deltaSetXY = null;
19343
19344         this.startPageX = p[0];
19345         this.startPageY = p[1];
19346     },
19347
19348     /**
19349      * Add this instance to a group of related drag/drop objects.  All
19350      * instances belong to at least one group, and can belong to as many
19351      * groups as needed.
19352      * @method addToGroup
19353      * @param sGroup {string} the name of the group
19354      */
19355     addToGroup: function(sGroup) {
19356         this.groups[sGroup] = true;
19357         this.DDM.regDragDrop(this, sGroup);
19358     },
19359
19360     /**
19361      * Remove's this instance from the supplied interaction group
19362      * @method removeFromGroup
19363      * @param {string}  sGroup  The group to drop
19364      */
19365     removeFromGroup: function(sGroup) {
19366         if (this.groups[sGroup]) {
19367             delete this.groups[sGroup];
19368         }
19369
19370         this.DDM.removeDDFromGroup(this, sGroup);
19371     },
19372
19373     /**
19374      * Allows you to specify that an element other than the linked element
19375      * will be moved with the cursor during a drag
19376      * @method setDragElId
19377      * @param id {string} the id of the element that will be used to initiate the drag
19378      */
19379     setDragElId: function(id) {
19380         this.dragElId = id;
19381     },
19382
19383     /**
19384      * Allows you to specify a child of the linked element that should be
19385      * used to initiate the drag operation.  An example of this would be if
19386      * you have a content div with text and links.  Clicking anywhere in the
19387      * content area would normally start the drag operation.  Use this method
19388      * to specify that an element inside of the content div is the element
19389      * that starts the drag operation.
19390      * @method setHandleElId
19391      * @param id {string} the id of the element that will be used to
19392      * initiate the drag.
19393      */
19394     setHandleElId: function(id) {
19395         if (typeof id !== "string") {
19396             id = Roo.id(id);
19397         }
19398         this.handleElId = id;
19399         this.DDM.regHandle(this.id, id);
19400     },
19401
19402     /**
19403      * Allows you to set an element outside of the linked element as a drag
19404      * handle
19405      * @method setOuterHandleElId
19406      * @param id the id of the element that will be used to initiate the drag
19407      */
19408     setOuterHandleElId: function(id) {
19409         if (typeof id !== "string") {
19410             id = Roo.id(id);
19411         }
19412         Event.on(id, "mousedown",
19413                 this.handleMouseDown, this);
19414         this.setHandleElId(id);
19415
19416         this.hasOuterHandles = true;
19417     },
19418
19419     /**
19420      * Remove all drag and drop hooks for this element
19421      * @method unreg
19422      */
19423     unreg: function() {
19424         Event.un(this.id, "mousedown",
19425                 this.handleMouseDown);
19426         Event.un(this.id, "touchstart",
19427                 this.handleMouseDown);
19428         this._domRef = null;
19429         this.DDM._remove(this);
19430     },
19431
19432     destroy : function(){
19433         this.unreg();
19434     },
19435
19436     /**
19437      * Returns true if this instance is locked, or the drag drop mgr is locked
19438      * (meaning that all drag/drop is disabled on the page.)
19439      * @method isLocked
19440      * @return {boolean} true if this obj or all drag/drop is locked, else
19441      * false
19442      */
19443     isLocked: function() {
19444         return (this.DDM.isLocked() || this.locked);
19445     },
19446
19447     /**
19448      * Fired when this object is clicked
19449      * @method handleMouseDown
19450      * @param {Event} e
19451      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19452      * @private
19453      */
19454     handleMouseDown: function(e, oDD){
19455      
19456         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19457             //Roo.log('not touch/ button !=0');
19458             return;
19459         }
19460         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19461             return; // double touch..
19462         }
19463         
19464
19465         if (this.isLocked()) {
19466             //Roo.log('locked');
19467             return;
19468         }
19469
19470         this.DDM.refreshCache(this.groups);
19471 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19472         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19473         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19474             //Roo.log('no outer handes or not over target');
19475                 // do nothing.
19476         } else {
19477 //            Roo.log('check validator');
19478             if (this.clickValidator(e)) {
19479 //                Roo.log('validate success');
19480                 // set the initial element position
19481                 this.setStartPosition();
19482
19483
19484                 this.b4MouseDown(e);
19485                 this.onMouseDown(e);
19486
19487                 this.DDM.handleMouseDown(e, this);
19488
19489                 this.DDM.stopEvent(e);
19490             } else {
19491
19492
19493             }
19494         }
19495     },
19496
19497     clickValidator: function(e) {
19498         var target = e.getTarget();
19499         return ( this.isValidHandleChild(target) &&
19500                     (this.id == this.handleElId ||
19501                         this.DDM.handleWasClicked(target, this.id)) );
19502     },
19503
19504     /**
19505      * Allows you to specify a tag name that should not start a drag operation
19506      * when clicked.  This is designed to facilitate embedding links within a
19507      * drag handle that do something other than start the drag.
19508      * @method addInvalidHandleType
19509      * @param {string} tagName the type of element to exclude
19510      */
19511     addInvalidHandleType: function(tagName) {
19512         var type = tagName.toUpperCase();
19513         this.invalidHandleTypes[type] = type;
19514     },
19515
19516     /**
19517      * Lets you to specify an element id for a child of a drag handle
19518      * that should not initiate a drag
19519      * @method addInvalidHandleId
19520      * @param {string} id the element id of the element you wish to ignore
19521      */
19522     addInvalidHandleId: function(id) {
19523         if (typeof id !== "string") {
19524             id = Roo.id(id);
19525         }
19526         this.invalidHandleIds[id] = id;
19527     },
19528
19529     /**
19530      * Lets you specify a css class of elements that will not initiate a drag
19531      * @method addInvalidHandleClass
19532      * @param {string} cssClass the class of the elements you wish to ignore
19533      */
19534     addInvalidHandleClass: function(cssClass) {
19535         this.invalidHandleClasses.push(cssClass);
19536     },
19537
19538     /**
19539      * Unsets an excluded tag name set by addInvalidHandleType
19540      * @method removeInvalidHandleType
19541      * @param {string} tagName the type of element to unexclude
19542      */
19543     removeInvalidHandleType: function(tagName) {
19544         var type = tagName.toUpperCase();
19545         // this.invalidHandleTypes[type] = null;
19546         delete this.invalidHandleTypes[type];
19547     },
19548
19549     /**
19550      * Unsets an invalid handle id
19551      * @method removeInvalidHandleId
19552      * @param {string} id the id of the element to re-enable
19553      */
19554     removeInvalidHandleId: function(id) {
19555         if (typeof id !== "string") {
19556             id = Roo.id(id);
19557         }
19558         delete this.invalidHandleIds[id];
19559     },
19560
19561     /**
19562      * Unsets an invalid css class
19563      * @method removeInvalidHandleClass
19564      * @param {string} cssClass the class of the element(s) you wish to
19565      * re-enable
19566      */
19567     removeInvalidHandleClass: function(cssClass) {
19568         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19569             if (this.invalidHandleClasses[i] == cssClass) {
19570                 delete this.invalidHandleClasses[i];
19571             }
19572         }
19573     },
19574
19575     /**
19576      * Checks the tag exclusion list to see if this click should be ignored
19577      * @method isValidHandleChild
19578      * @param {HTMLElement} node the HTMLElement to evaluate
19579      * @return {boolean} true if this is a valid tag type, false if not
19580      */
19581     isValidHandleChild: function(node) {
19582
19583         var valid = true;
19584         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19585         var nodeName;
19586         try {
19587             nodeName = node.nodeName.toUpperCase();
19588         } catch(e) {
19589             nodeName = node.nodeName;
19590         }
19591         valid = valid && !this.invalidHandleTypes[nodeName];
19592         valid = valid && !this.invalidHandleIds[node.id];
19593
19594         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19595             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19596         }
19597
19598
19599         return valid;
19600
19601     },
19602
19603     /**
19604      * Create the array of horizontal tick marks if an interval was specified
19605      * in setXConstraint().
19606      * @method setXTicks
19607      * @private
19608      */
19609     setXTicks: function(iStartX, iTickSize) {
19610         this.xTicks = [];
19611         this.xTickSize = iTickSize;
19612
19613         var tickMap = {};
19614
19615         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19616             if (!tickMap[i]) {
19617                 this.xTicks[this.xTicks.length] = i;
19618                 tickMap[i] = true;
19619             }
19620         }
19621
19622         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19623             if (!tickMap[i]) {
19624                 this.xTicks[this.xTicks.length] = i;
19625                 tickMap[i] = true;
19626             }
19627         }
19628
19629         this.xTicks.sort(this.DDM.numericSort) ;
19630     },
19631
19632     /**
19633      * Create the array of vertical tick marks if an interval was specified in
19634      * setYConstraint().
19635      * @method setYTicks
19636      * @private
19637      */
19638     setYTicks: function(iStartY, iTickSize) {
19639         this.yTicks = [];
19640         this.yTickSize = iTickSize;
19641
19642         var tickMap = {};
19643
19644         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19645             if (!tickMap[i]) {
19646                 this.yTicks[this.yTicks.length] = i;
19647                 tickMap[i] = true;
19648             }
19649         }
19650
19651         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19652             if (!tickMap[i]) {
19653                 this.yTicks[this.yTicks.length] = i;
19654                 tickMap[i] = true;
19655             }
19656         }
19657
19658         this.yTicks.sort(this.DDM.numericSort) ;
19659     },
19660
19661     /**
19662      * By default, the element can be dragged any place on the screen.  Use
19663      * this method to limit the horizontal travel of the element.  Pass in
19664      * 0,0 for the parameters if you want to lock the drag to the y axis.
19665      * @method setXConstraint
19666      * @param {int} iLeft the number of pixels the element can move to the left
19667      * @param {int} iRight the number of pixels the element can move to the
19668      * right
19669      * @param {int} iTickSize optional parameter for specifying that the
19670      * element
19671      * should move iTickSize pixels at a time.
19672      */
19673     setXConstraint: function(iLeft, iRight, iTickSize) {
19674         this.leftConstraint = iLeft;
19675         this.rightConstraint = iRight;
19676
19677         this.minX = this.initPageX - iLeft;
19678         this.maxX = this.initPageX + iRight;
19679         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19680
19681         this.constrainX = true;
19682     },
19683
19684     /**
19685      * Clears any constraints applied to this instance.  Also clears ticks
19686      * since they can't exist independent of a constraint at this time.
19687      * @method clearConstraints
19688      */
19689     clearConstraints: function() {
19690         this.constrainX = false;
19691         this.constrainY = false;
19692         this.clearTicks();
19693     },
19694
19695     /**
19696      * Clears any tick interval defined for this instance
19697      * @method clearTicks
19698      */
19699     clearTicks: function() {
19700         this.xTicks = null;
19701         this.yTicks = null;
19702         this.xTickSize = 0;
19703         this.yTickSize = 0;
19704     },
19705
19706     /**
19707      * By default, the element can be dragged any place on the screen.  Set
19708      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19709      * parameters if you want to lock the drag to the x axis.
19710      * @method setYConstraint
19711      * @param {int} iUp the number of pixels the element can move up
19712      * @param {int} iDown the number of pixels the element can move down
19713      * @param {int} iTickSize optional parameter for specifying that the
19714      * element should move iTickSize pixels at a time.
19715      */
19716     setYConstraint: function(iUp, iDown, iTickSize) {
19717         this.topConstraint = iUp;
19718         this.bottomConstraint = iDown;
19719
19720         this.minY = this.initPageY - iUp;
19721         this.maxY = this.initPageY + iDown;
19722         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19723
19724         this.constrainY = true;
19725
19726     },
19727
19728     /**
19729      * resetConstraints must be called if you manually reposition a dd element.
19730      * @method resetConstraints
19731      * @param {boolean} maintainOffset
19732      */
19733     resetConstraints: function() {
19734
19735
19736         // Maintain offsets if necessary
19737         if (this.initPageX || this.initPageX === 0) {
19738             // figure out how much this thing has moved
19739             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19740             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19741
19742             this.setInitPosition(dx, dy);
19743
19744         // This is the first time we have detected the element's position
19745         } else {
19746             this.setInitPosition();
19747         }
19748
19749         if (this.constrainX) {
19750             this.setXConstraint( this.leftConstraint,
19751                                  this.rightConstraint,
19752                                  this.xTickSize        );
19753         }
19754
19755         if (this.constrainY) {
19756             this.setYConstraint( this.topConstraint,
19757                                  this.bottomConstraint,
19758                                  this.yTickSize         );
19759         }
19760     },
19761
19762     /**
19763      * Normally the drag element is moved pixel by pixel, but we can specify
19764      * that it move a number of pixels at a time.  This method resolves the
19765      * location when we have it set up like this.
19766      * @method getTick
19767      * @param {int} val where we want to place the object
19768      * @param {int[]} tickArray sorted array of valid points
19769      * @return {int} the closest tick
19770      * @private
19771      */
19772     getTick: function(val, tickArray) {
19773
19774         if (!tickArray) {
19775             // If tick interval is not defined, it is effectively 1 pixel,
19776             // so we return the value passed to us.
19777             return val;
19778         } else if (tickArray[0] >= val) {
19779             // The value is lower than the first tick, so we return the first
19780             // tick.
19781             return tickArray[0];
19782         } else {
19783             for (var i=0, len=tickArray.length; i<len; ++i) {
19784                 var next = i + 1;
19785                 if (tickArray[next] && tickArray[next] >= val) {
19786                     var diff1 = val - tickArray[i];
19787                     var diff2 = tickArray[next] - val;
19788                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19789                 }
19790             }
19791
19792             // The value is larger than the last tick, so we return the last
19793             // tick.
19794             return tickArray[tickArray.length - 1];
19795         }
19796     },
19797
19798     /**
19799      * toString method
19800      * @method toString
19801      * @return {string} string representation of the dd obj
19802      */
19803     toString: function() {
19804         return ("DragDrop " + this.id);
19805     }
19806
19807 });
19808
19809 })();
19810 /*
19811  * Based on:
19812  * Ext JS Library 1.1.1
19813  * Copyright(c) 2006-2007, Ext JS, LLC.
19814  *
19815  * Originally Released Under LGPL - original licence link has changed is not relivant.
19816  *
19817  * Fork - LGPL
19818  * <script type="text/javascript">
19819  */
19820
19821
19822 /**
19823  * The drag and drop utility provides a framework for building drag and drop
19824  * applications.  In addition to enabling drag and drop for specific elements,
19825  * the drag and drop elements are tracked by the manager class, and the
19826  * interactions between the various elements are tracked during the drag and
19827  * the implementing code is notified about these important moments.
19828  */
19829
19830 // Only load the library once.  Rewriting the manager class would orphan
19831 // existing drag and drop instances.
19832 if (!Roo.dd.DragDropMgr) {
19833
19834 /**
19835  * @class Roo.dd.DragDropMgr
19836  * DragDropMgr is a singleton that tracks the element interaction for
19837  * all DragDrop items in the window.  Generally, you will not call
19838  * this class directly, but it does have helper methods that could
19839  * be useful in your DragDrop implementations.
19840  * @singleton
19841  */
19842 Roo.dd.DragDropMgr = function() {
19843
19844     var Event = Roo.EventManager;
19845
19846     return {
19847
19848         /**
19849          * Two dimensional Array of registered DragDrop objects.  The first
19850          * dimension is the DragDrop item group, the second the DragDrop
19851          * object.
19852          * @property ids
19853          * @type {string: string}
19854          * @private
19855          * @static
19856          */
19857         ids: {},
19858
19859         /**
19860          * Array of element ids defined as drag handles.  Used to determine
19861          * if the element that generated the mousedown event is actually the
19862          * handle and not the html element itself.
19863          * @property handleIds
19864          * @type {string: string}
19865          * @private
19866          * @static
19867          */
19868         handleIds: {},
19869
19870         /**
19871          * the DragDrop object that is currently being dragged
19872          * @property dragCurrent
19873          * @type DragDrop
19874          * @private
19875          * @static
19876          **/
19877         dragCurrent: null,
19878
19879         /**
19880          * the DragDrop object(s) that are being hovered over
19881          * @property dragOvers
19882          * @type Array
19883          * @private
19884          * @static
19885          */
19886         dragOvers: {},
19887
19888         /**
19889          * the X distance between the cursor and the object being dragged
19890          * @property deltaX
19891          * @type int
19892          * @private
19893          * @static
19894          */
19895         deltaX: 0,
19896
19897         /**
19898          * the Y distance between the cursor and the object being dragged
19899          * @property deltaY
19900          * @type int
19901          * @private
19902          * @static
19903          */
19904         deltaY: 0,
19905
19906         /**
19907          * Flag to determine if we should prevent the default behavior of the
19908          * events we define. By default this is true, but this can be set to
19909          * false if you need the default behavior (not recommended)
19910          * @property preventDefault
19911          * @type boolean
19912          * @static
19913          */
19914         preventDefault: true,
19915
19916         /**
19917          * Flag to determine if we should stop the propagation of the events
19918          * we generate. This is true by default but you may want to set it to
19919          * false if the html element contains other features that require the
19920          * mouse click.
19921          * @property stopPropagation
19922          * @type boolean
19923          * @static
19924          */
19925         stopPropagation: true,
19926
19927         /**
19928          * Internal flag that is set to true when drag and drop has been
19929          * intialized
19930          * @property initialized
19931          * @private
19932          * @static
19933          */
19934         initalized: false,
19935
19936         /**
19937          * All drag and drop can be disabled.
19938          * @property locked
19939          * @private
19940          * @static
19941          */
19942         locked: false,
19943
19944         /**
19945          * Called the first time an element is registered.
19946          * @method init
19947          * @private
19948          * @static
19949          */
19950         init: function() {
19951             this.initialized = true;
19952         },
19953
19954         /**
19955          * In point mode, drag and drop interaction is defined by the
19956          * location of the cursor during the drag/drop
19957          * @property POINT
19958          * @type int
19959          * @static
19960          */
19961         POINT: 0,
19962
19963         /**
19964          * In intersect mode, drag and drop interactio nis defined by the
19965          * overlap of two or more drag and drop objects.
19966          * @property INTERSECT
19967          * @type int
19968          * @static
19969          */
19970         INTERSECT: 1,
19971
19972         /**
19973          * The current drag and drop mode.  Default: POINT
19974          * @property mode
19975          * @type int
19976          * @static
19977          */
19978         mode: 0,
19979
19980         /**
19981          * Runs method on all drag and drop objects
19982          * @method _execOnAll
19983          * @private
19984          * @static
19985          */
19986         _execOnAll: function(sMethod, args) {
19987             for (var i in this.ids) {
19988                 for (var j in this.ids[i]) {
19989                     var oDD = this.ids[i][j];
19990                     if (! this.isTypeOfDD(oDD)) {
19991                         continue;
19992                     }
19993                     oDD[sMethod].apply(oDD, args);
19994                 }
19995             }
19996         },
19997
19998         /**
19999          * Drag and drop initialization.  Sets up the global event handlers
20000          * @method _onLoad
20001          * @private
20002          * @static
20003          */
20004         _onLoad: function() {
20005
20006             this.init();
20007
20008             if (!Roo.isTouch) {
20009                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20010                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20011             }
20012             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20013             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20014             
20015             Event.on(window,   "unload",    this._onUnload, this, true);
20016             Event.on(window,   "resize",    this._onResize, this, true);
20017             // Event.on(window,   "mouseout",    this._test);
20018
20019         },
20020
20021         /**
20022          * Reset constraints on all drag and drop objs
20023          * @method _onResize
20024          * @private
20025          * @static
20026          */
20027         _onResize: function(e) {
20028             this._execOnAll("resetConstraints", []);
20029         },
20030
20031         /**
20032          * Lock all drag and drop functionality
20033          * @method lock
20034          * @static
20035          */
20036         lock: function() { this.locked = true; },
20037
20038         /**
20039          * Unlock all drag and drop functionality
20040          * @method unlock
20041          * @static
20042          */
20043         unlock: function() { this.locked = false; },
20044
20045         /**
20046          * Is drag and drop locked?
20047          * @method isLocked
20048          * @return {boolean} True if drag and drop is locked, false otherwise.
20049          * @static
20050          */
20051         isLocked: function() { return this.locked; },
20052
20053         /**
20054          * Location cache that is set for all drag drop objects when a drag is
20055          * initiated, cleared when the drag is finished.
20056          * @property locationCache
20057          * @private
20058          * @static
20059          */
20060         locationCache: {},
20061
20062         /**
20063          * Set useCache to false if you want to force object the lookup of each
20064          * drag and drop linked element constantly during a drag.
20065          * @property useCache
20066          * @type boolean
20067          * @static
20068          */
20069         useCache: true,
20070
20071         /**
20072          * The number of pixels that the mouse needs to move after the
20073          * mousedown before the drag is initiated.  Default=3;
20074          * @property clickPixelThresh
20075          * @type int
20076          * @static
20077          */
20078         clickPixelThresh: 3,
20079
20080         /**
20081          * The number of milliseconds after the mousedown event to initiate the
20082          * drag if we don't get a mouseup event. Default=1000
20083          * @property clickTimeThresh
20084          * @type int
20085          * @static
20086          */
20087         clickTimeThresh: 350,
20088
20089         /**
20090          * Flag that indicates that either the drag pixel threshold or the
20091          * mousdown time threshold has been met
20092          * @property dragThreshMet
20093          * @type boolean
20094          * @private
20095          * @static
20096          */
20097         dragThreshMet: false,
20098
20099         /**
20100          * Timeout used for the click time threshold
20101          * @property clickTimeout
20102          * @type Object
20103          * @private
20104          * @static
20105          */
20106         clickTimeout: null,
20107
20108         /**
20109          * The X position of the mousedown event stored for later use when a
20110          * drag threshold is met.
20111          * @property startX
20112          * @type int
20113          * @private
20114          * @static
20115          */
20116         startX: 0,
20117
20118         /**
20119          * The Y position of the mousedown event stored for later use when a
20120          * drag threshold is met.
20121          * @property startY
20122          * @type int
20123          * @private
20124          * @static
20125          */
20126         startY: 0,
20127
20128         /**
20129          * Each DragDrop instance must be registered with the DragDropMgr.
20130          * This is executed in DragDrop.init()
20131          * @method regDragDrop
20132          * @param {DragDrop} oDD the DragDrop object to register
20133          * @param {String} sGroup the name of the group this element belongs to
20134          * @static
20135          */
20136         regDragDrop: function(oDD, sGroup) {
20137             if (!this.initialized) { this.init(); }
20138
20139             if (!this.ids[sGroup]) {
20140                 this.ids[sGroup] = {};
20141             }
20142             this.ids[sGroup][oDD.id] = oDD;
20143         },
20144
20145         /**
20146          * Removes the supplied dd instance from the supplied group. Executed
20147          * by DragDrop.removeFromGroup, so don't call this function directly.
20148          * @method removeDDFromGroup
20149          * @private
20150          * @static
20151          */
20152         removeDDFromGroup: function(oDD, sGroup) {
20153             if (!this.ids[sGroup]) {
20154                 this.ids[sGroup] = {};
20155             }
20156
20157             var obj = this.ids[sGroup];
20158             if (obj && obj[oDD.id]) {
20159                 delete obj[oDD.id];
20160             }
20161         },
20162
20163         /**
20164          * Unregisters a drag and drop item.  This is executed in
20165          * DragDrop.unreg, use that method instead of calling this directly.
20166          * @method _remove
20167          * @private
20168          * @static
20169          */
20170         _remove: function(oDD) {
20171             for (var g in oDD.groups) {
20172                 if (g && this.ids[g][oDD.id]) {
20173                     delete this.ids[g][oDD.id];
20174                 }
20175             }
20176             delete this.handleIds[oDD.id];
20177         },
20178
20179         /**
20180          * Each DragDrop handle element must be registered.  This is done
20181          * automatically when executing DragDrop.setHandleElId()
20182          * @method regHandle
20183          * @param {String} sDDId the DragDrop id this element is a handle for
20184          * @param {String} sHandleId the id of the element that is the drag
20185          * handle
20186          * @static
20187          */
20188         regHandle: function(sDDId, sHandleId) {
20189             if (!this.handleIds[sDDId]) {
20190                 this.handleIds[sDDId] = {};
20191             }
20192             this.handleIds[sDDId][sHandleId] = sHandleId;
20193         },
20194
20195         /**
20196          * Utility function to determine if a given element has been
20197          * registered as a drag drop item.
20198          * @method isDragDrop
20199          * @param {String} id the element id to check
20200          * @return {boolean} true if this element is a DragDrop item,
20201          * false otherwise
20202          * @static
20203          */
20204         isDragDrop: function(id) {
20205             return ( this.getDDById(id) ) ? true : false;
20206         },
20207
20208         /**
20209          * Returns the drag and drop instances that are in all groups the
20210          * passed in instance belongs to.
20211          * @method getRelated
20212          * @param {DragDrop} p_oDD the obj to get related data for
20213          * @param {boolean} bTargetsOnly if true, only return targetable objs
20214          * @return {DragDrop[]} the related instances
20215          * @static
20216          */
20217         getRelated: function(p_oDD, bTargetsOnly) {
20218             var oDDs = [];
20219             for (var i in p_oDD.groups) {
20220                 for (j in this.ids[i]) {
20221                     var dd = this.ids[i][j];
20222                     if (! this.isTypeOfDD(dd)) {
20223                         continue;
20224                     }
20225                     if (!bTargetsOnly || dd.isTarget) {
20226                         oDDs[oDDs.length] = dd;
20227                     }
20228                 }
20229             }
20230
20231             return oDDs;
20232         },
20233
20234         /**
20235          * Returns true if the specified dd target is a legal target for
20236          * the specifice drag obj
20237          * @method isLegalTarget
20238          * @param {DragDrop} the drag obj
20239          * @param {DragDrop} the target
20240          * @return {boolean} true if the target is a legal target for the
20241          * dd obj
20242          * @static
20243          */
20244         isLegalTarget: function (oDD, oTargetDD) {
20245             var targets = this.getRelated(oDD, true);
20246             for (var i=0, len=targets.length;i<len;++i) {
20247                 if (targets[i].id == oTargetDD.id) {
20248                     return true;
20249                 }
20250             }
20251
20252             return false;
20253         },
20254
20255         /**
20256          * My goal is to be able to transparently determine if an object is
20257          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20258          * returns "object", oDD.constructor.toString() always returns
20259          * "DragDrop" and not the name of the subclass.  So for now it just
20260          * evaluates a well-known variable in DragDrop.
20261          * @method isTypeOfDD
20262          * @param {Object} the object to evaluate
20263          * @return {boolean} true if typeof oDD = DragDrop
20264          * @static
20265          */
20266         isTypeOfDD: function (oDD) {
20267             return (oDD && oDD.__ygDragDrop);
20268         },
20269
20270         /**
20271          * Utility function to determine if a given element has been
20272          * registered as a drag drop handle for the given Drag Drop object.
20273          * @method isHandle
20274          * @param {String} id the element id to check
20275          * @return {boolean} true if this element is a DragDrop handle, false
20276          * otherwise
20277          * @static
20278          */
20279         isHandle: function(sDDId, sHandleId) {
20280             return ( this.handleIds[sDDId] &&
20281                             this.handleIds[sDDId][sHandleId] );
20282         },
20283
20284         /**
20285          * Returns the DragDrop instance for a given id
20286          * @method getDDById
20287          * @param {String} id the id of the DragDrop object
20288          * @return {DragDrop} the drag drop object, null if it is not found
20289          * @static
20290          */
20291         getDDById: function(id) {
20292             for (var i in this.ids) {
20293                 if (this.ids[i][id]) {
20294                     return this.ids[i][id];
20295                 }
20296             }
20297             return null;
20298         },
20299
20300         /**
20301          * Fired after a registered DragDrop object gets the mousedown event.
20302          * Sets up the events required to track the object being dragged
20303          * @method handleMouseDown
20304          * @param {Event} e the event
20305          * @param oDD the DragDrop object being dragged
20306          * @private
20307          * @static
20308          */
20309         handleMouseDown: function(e, oDD) {
20310             if(Roo.QuickTips){
20311                 Roo.QuickTips.disable();
20312             }
20313             this.currentTarget = e.getTarget();
20314
20315             this.dragCurrent = oDD;
20316
20317             var el = oDD.getEl();
20318
20319             // track start position
20320             this.startX = e.getPageX();
20321             this.startY = e.getPageY();
20322
20323             this.deltaX = this.startX - el.offsetLeft;
20324             this.deltaY = this.startY - el.offsetTop;
20325
20326             this.dragThreshMet = false;
20327
20328             this.clickTimeout = setTimeout(
20329                     function() {
20330                         var DDM = Roo.dd.DDM;
20331                         DDM.startDrag(DDM.startX, DDM.startY);
20332                     },
20333                     this.clickTimeThresh );
20334         },
20335
20336         /**
20337          * Fired when either the drag pixel threshol or the mousedown hold
20338          * time threshold has been met.
20339          * @method startDrag
20340          * @param x {int} the X position of the original mousedown
20341          * @param y {int} the Y position of the original mousedown
20342          * @static
20343          */
20344         startDrag: function(x, y) {
20345             clearTimeout(this.clickTimeout);
20346             if (this.dragCurrent) {
20347                 this.dragCurrent.b4StartDrag(x, y);
20348                 this.dragCurrent.startDrag(x, y);
20349             }
20350             this.dragThreshMet = true;
20351         },
20352
20353         /**
20354          * Internal function to handle the mouseup event.  Will be invoked
20355          * from the context of the document.
20356          * @method handleMouseUp
20357          * @param {Event} e the event
20358          * @private
20359          * @static
20360          */
20361         handleMouseUp: function(e) {
20362
20363             if(Roo.QuickTips){
20364                 Roo.QuickTips.enable();
20365             }
20366             if (! this.dragCurrent) {
20367                 return;
20368             }
20369
20370             clearTimeout(this.clickTimeout);
20371
20372             if (this.dragThreshMet) {
20373                 this.fireEvents(e, true);
20374             } else {
20375             }
20376
20377             this.stopDrag(e);
20378
20379             this.stopEvent(e);
20380         },
20381
20382         /**
20383          * Utility to stop event propagation and event default, if these
20384          * features are turned on.
20385          * @method stopEvent
20386          * @param {Event} e the event as returned by this.getEvent()
20387          * @static
20388          */
20389         stopEvent: function(e){
20390             if(this.stopPropagation) {
20391                 e.stopPropagation();
20392             }
20393
20394             if (this.preventDefault) {
20395                 e.preventDefault();
20396             }
20397         },
20398
20399         /**
20400          * Internal function to clean up event handlers after the drag
20401          * operation is complete
20402          * @method stopDrag
20403          * @param {Event} e the event
20404          * @private
20405          * @static
20406          */
20407         stopDrag: function(e) {
20408             // Fire the drag end event for the item that was dragged
20409             if (this.dragCurrent) {
20410                 if (this.dragThreshMet) {
20411                     this.dragCurrent.b4EndDrag(e);
20412                     this.dragCurrent.endDrag(e);
20413                 }
20414
20415                 this.dragCurrent.onMouseUp(e);
20416             }
20417
20418             this.dragCurrent = null;
20419             this.dragOvers = {};
20420         },
20421
20422         /**
20423          * Internal function to handle the mousemove event.  Will be invoked
20424          * from the context of the html element.
20425          *
20426          * @TODO figure out what we can do about mouse events lost when the
20427          * user drags objects beyond the window boundary.  Currently we can
20428          * detect this in internet explorer by verifying that the mouse is
20429          * down during the mousemove event.  Firefox doesn't give us the
20430          * button state on the mousemove event.
20431          * @method handleMouseMove
20432          * @param {Event} e the event
20433          * @private
20434          * @static
20435          */
20436         handleMouseMove: function(e) {
20437             if (! this.dragCurrent) {
20438                 return true;
20439             }
20440
20441             // var button = e.which || e.button;
20442
20443             // check for IE mouseup outside of page boundary
20444             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20445                 this.stopEvent(e);
20446                 return this.handleMouseUp(e);
20447             }
20448
20449             if (!this.dragThreshMet) {
20450                 var diffX = Math.abs(this.startX - e.getPageX());
20451                 var diffY = Math.abs(this.startY - e.getPageY());
20452                 if (diffX > this.clickPixelThresh ||
20453                             diffY > this.clickPixelThresh) {
20454                     this.startDrag(this.startX, this.startY);
20455                 }
20456             }
20457
20458             if (this.dragThreshMet) {
20459                 this.dragCurrent.b4Drag(e);
20460                 this.dragCurrent.onDrag(e);
20461                 if(!this.dragCurrent.moveOnly){
20462                     this.fireEvents(e, false);
20463                 }
20464             }
20465
20466             this.stopEvent(e);
20467
20468             return true;
20469         },
20470
20471         /**
20472          * Iterates over all of the DragDrop elements to find ones we are
20473          * hovering over or dropping on
20474          * @method fireEvents
20475          * @param {Event} e the event
20476          * @param {boolean} isDrop is this a drop op or a mouseover op?
20477          * @private
20478          * @static
20479          */
20480         fireEvents: function(e, isDrop) {
20481             var dc = this.dragCurrent;
20482
20483             // If the user did the mouse up outside of the window, we could
20484             // get here even though we have ended the drag.
20485             if (!dc || dc.isLocked()) {
20486                 return;
20487             }
20488
20489             var pt = e.getPoint();
20490
20491             // cache the previous dragOver array
20492             var oldOvers = [];
20493
20494             var outEvts   = [];
20495             var overEvts  = [];
20496             var dropEvts  = [];
20497             var enterEvts = [];
20498
20499             // Check to see if the object(s) we were hovering over is no longer
20500             // being hovered over so we can fire the onDragOut event
20501             for (var i in this.dragOvers) {
20502
20503                 var ddo = this.dragOvers[i];
20504
20505                 if (! this.isTypeOfDD(ddo)) {
20506                     continue;
20507                 }
20508
20509                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20510                     outEvts.push( ddo );
20511                 }
20512
20513                 oldOvers[i] = true;
20514                 delete this.dragOvers[i];
20515             }
20516
20517             for (var sGroup in dc.groups) {
20518
20519                 if ("string" != typeof sGroup) {
20520                     continue;
20521                 }
20522
20523                 for (i in this.ids[sGroup]) {
20524                     var oDD = this.ids[sGroup][i];
20525                     if (! this.isTypeOfDD(oDD)) {
20526                         continue;
20527                     }
20528
20529                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20530                         if (this.isOverTarget(pt, oDD, this.mode)) {
20531                             // look for drop interactions
20532                             if (isDrop) {
20533                                 dropEvts.push( oDD );
20534                             // look for drag enter and drag over interactions
20535                             } else {
20536
20537                                 // initial drag over: dragEnter fires
20538                                 if (!oldOvers[oDD.id]) {
20539                                     enterEvts.push( oDD );
20540                                 // subsequent drag overs: dragOver fires
20541                                 } else {
20542                                     overEvts.push( oDD );
20543                                 }
20544
20545                                 this.dragOvers[oDD.id] = oDD;
20546                             }
20547                         }
20548                     }
20549                 }
20550             }
20551
20552             if (this.mode) {
20553                 if (outEvts.length) {
20554                     dc.b4DragOut(e, outEvts);
20555                     dc.onDragOut(e, outEvts);
20556                 }
20557
20558                 if (enterEvts.length) {
20559                     dc.onDragEnter(e, enterEvts);
20560                 }
20561
20562                 if (overEvts.length) {
20563                     dc.b4DragOver(e, overEvts);
20564                     dc.onDragOver(e, overEvts);
20565                 }
20566
20567                 if (dropEvts.length) {
20568                     dc.b4DragDrop(e, dropEvts);
20569                     dc.onDragDrop(e, dropEvts);
20570                 }
20571
20572             } else {
20573                 // fire dragout events
20574                 var len = 0;
20575                 for (i=0, len=outEvts.length; i<len; ++i) {
20576                     dc.b4DragOut(e, outEvts[i].id);
20577                     dc.onDragOut(e, outEvts[i].id);
20578                 }
20579
20580                 // fire enter events
20581                 for (i=0,len=enterEvts.length; i<len; ++i) {
20582                     // dc.b4DragEnter(e, oDD.id);
20583                     dc.onDragEnter(e, enterEvts[i].id);
20584                 }
20585
20586                 // fire over events
20587                 for (i=0,len=overEvts.length; i<len; ++i) {
20588                     dc.b4DragOver(e, overEvts[i].id);
20589                     dc.onDragOver(e, overEvts[i].id);
20590                 }
20591
20592                 // fire drop events
20593                 for (i=0, len=dropEvts.length; i<len; ++i) {
20594                     dc.b4DragDrop(e, dropEvts[i].id);
20595                     dc.onDragDrop(e, dropEvts[i].id);
20596                 }
20597
20598             }
20599
20600             // notify about a drop that did not find a target
20601             if (isDrop && !dropEvts.length) {
20602                 dc.onInvalidDrop(e);
20603             }
20604
20605         },
20606
20607         /**
20608          * Helper function for getting the best match from the list of drag
20609          * and drop objects returned by the drag and drop events when we are
20610          * in INTERSECT mode.  It returns either the first object that the
20611          * cursor is over, or the object that has the greatest overlap with
20612          * the dragged element.
20613          * @method getBestMatch
20614          * @param  {DragDrop[]} dds The array of drag and drop objects
20615          * targeted
20616          * @return {DragDrop}       The best single match
20617          * @static
20618          */
20619         getBestMatch: function(dds) {
20620             var winner = null;
20621             // Return null if the input is not what we expect
20622             //if (!dds || !dds.length || dds.length == 0) {
20623                // winner = null;
20624             // If there is only one item, it wins
20625             //} else if (dds.length == 1) {
20626
20627             var len = dds.length;
20628
20629             if (len == 1) {
20630                 winner = dds[0];
20631             } else {
20632                 // Loop through the targeted items
20633                 for (var i=0; i<len; ++i) {
20634                     var dd = dds[i];
20635                     // If the cursor is over the object, it wins.  If the
20636                     // cursor is over multiple matches, the first one we come
20637                     // to wins.
20638                     if (dd.cursorIsOver) {
20639                         winner = dd;
20640                         break;
20641                     // Otherwise the object with the most overlap wins
20642                     } else {
20643                         if (!winner ||
20644                             winner.overlap.getArea() < dd.overlap.getArea()) {
20645                             winner = dd;
20646                         }
20647                     }
20648                 }
20649             }
20650
20651             return winner;
20652         },
20653
20654         /**
20655          * Refreshes the cache of the top-left and bottom-right points of the
20656          * drag and drop objects in the specified group(s).  This is in the
20657          * format that is stored in the drag and drop instance, so typical
20658          * usage is:
20659          * <code>
20660          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20661          * </code>
20662          * Alternatively:
20663          * <code>
20664          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20665          * </code>
20666          * @TODO this really should be an indexed array.  Alternatively this
20667          * method could accept both.
20668          * @method refreshCache
20669          * @param {Object} groups an associative array of groups to refresh
20670          * @static
20671          */
20672         refreshCache: function(groups) {
20673             for (var sGroup in groups) {
20674                 if ("string" != typeof sGroup) {
20675                     continue;
20676                 }
20677                 for (var i in this.ids[sGroup]) {
20678                     var oDD = this.ids[sGroup][i];
20679
20680                     if (this.isTypeOfDD(oDD)) {
20681                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20682                         var loc = this.getLocation(oDD);
20683                         if (loc) {
20684                             this.locationCache[oDD.id] = loc;
20685                         } else {
20686                             delete this.locationCache[oDD.id];
20687                             // this will unregister the drag and drop object if
20688                             // the element is not in a usable state
20689                             // oDD.unreg();
20690                         }
20691                     }
20692                 }
20693             }
20694         },
20695
20696         /**
20697          * This checks to make sure an element exists and is in the DOM.  The
20698          * main purpose is to handle cases where innerHTML is used to remove
20699          * drag and drop objects from the DOM.  IE provides an 'unspecified
20700          * error' when trying to access the offsetParent of such an element
20701          * @method verifyEl
20702          * @param {HTMLElement} el the element to check
20703          * @return {boolean} true if the element looks usable
20704          * @static
20705          */
20706         verifyEl: function(el) {
20707             if (el) {
20708                 var parent;
20709                 if(Roo.isIE){
20710                     try{
20711                         parent = el.offsetParent;
20712                     }catch(e){}
20713                 }else{
20714                     parent = el.offsetParent;
20715                 }
20716                 if (parent) {
20717                     return true;
20718                 }
20719             }
20720
20721             return false;
20722         },
20723
20724         /**
20725          * Returns a Region object containing the drag and drop element's position
20726          * and size, including the padding configured for it
20727          * @method getLocation
20728          * @param {DragDrop} oDD the drag and drop object to get the
20729          *                       location for
20730          * @return {Roo.lib.Region} a Region object representing the total area
20731          *                             the element occupies, including any padding
20732          *                             the instance is configured for.
20733          * @static
20734          */
20735         getLocation: function(oDD) {
20736             if (! this.isTypeOfDD(oDD)) {
20737                 return null;
20738             }
20739
20740             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20741
20742             try {
20743                 pos= Roo.lib.Dom.getXY(el);
20744             } catch (e) { }
20745
20746             if (!pos) {
20747                 return null;
20748             }
20749
20750             x1 = pos[0];
20751             x2 = x1 + el.offsetWidth;
20752             y1 = pos[1];
20753             y2 = y1 + el.offsetHeight;
20754
20755             t = y1 - oDD.padding[0];
20756             r = x2 + oDD.padding[1];
20757             b = y2 + oDD.padding[2];
20758             l = x1 - oDD.padding[3];
20759
20760             return new Roo.lib.Region( t, r, b, l );
20761         },
20762
20763         /**
20764          * Checks the cursor location to see if it over the target
20765          * @method isOverTarget
20766          * @param {Roo.lib.Point} pt The point to evaluate
20767          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20768          * @return {boolean} true if the mouse is over the target
20769          * @private
20770          * @static
20771          */
20772         isOverTarget: function(pt, oTarget, intersect) {
20773             // use cache if available
20774             var loc = this.locationCache[oTarget.id];
20775             if (!loc || !this.useCache) {
20776                 loc = this.getLocation(oTarget);
20777                 this.locationCache[oTarget.id] = loc;
20778
20779             }
20780
20781             if (!loc) {
20782                 return false;
20783             }
20784
20785             oTarget.cursorIsOver = loc.contains( pt );
20786
20787             // DragDrop is using this as a sanity check for the initial mousedown
20788             // in this case we are done.  In POINT mode, if the drag obj has no
20789             // contraints, we are also done. Otherwise we need to evaluate the
20790             // location of the target as related to the actual location of the
20791             // dragged element.
20792             var dc = this.dragCurrent;
20793             if (!dc || !dc.getTargetCoord ||
20794                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20795                 return oTarget.cursorIsOver;
20796             }
20797
20798             oTarget.overlap = null;
20799
20800             // Get the current location of the drag element, this is the
20801             // location of the mouse event less the delta that represents
20802             // where the original mousedown happened on the element.  We
20803             // need to consider constraints and ticks as well.
20804             var pos = dc.getTargetCoord(pt.x, pt.y);
20805
20806             var el = dc.getDragEl();
20807             var curRegion = new Roo.lib.Region( pos.y,
20808                                                    pos.x + el.offsetWidth,
20809                                                    pos.y + el.offsetHeight,
20810                                                    pos.x );
20811
20812             var overlap = curRegion.intersect(loc);
20813
20814             if (overlap) {
20815                 oTarget.overlap = overlap;
20816                 return (intersect) ? true : oTarget.cursorIsOver;
20817             } else {
20818                 return false;
20819             }
20820         },
20821
20822         /**
20823          * unload event handler
20824          * @method _onUnload
20825          * @private
20826          * @static
20827          */
20828         _onUnload: function(e, me) {
20829             Roo.dd.DragDropMgr.unregAll();
20830         },
20831
20832         /**
20833          * Cleans up the drag and drop events and objects.
20834          * @method unregAll
20835          * @private
20836          * @static
20837          */
20838         unregAll: function() {
20839
20840             if (this.dragCurrent) {
20841                 this.stopDrag();
20842                 this.dragCurrent = null;
20843             }
20844
20845             this._execOnAll("unreg", []);
20846
20847             for (i in this.elementCache) {
20848                 delete this.elementCache[i];
20849             }
20850
20851             this.elementCache = {};
20852             this.ids = {};
20853         },
20854
20855         /**
20856          * A cache of DOM elements
20857          * @property elementCache
20858          * @private
20859          * @static
20860          */
20861         elementCache: {},
20862
20863         /**
20864          * Get the wrapper for the DOM element specified
20865          * @method getElWrapper
20866          * @param {String} id the id of the element to get
20867          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20868          * @private
20869          * @deprecated This wrapper isn't that useful
20870          * @static
20871          */
20872         getElWrapper: function(id) {
20873             var oWrapper = this.elementCache[id];
20874             if (!oWrapper || !oWrapper.el) {
20875                 oWrapper = this.elementCache[id] =
20876                     new this.ElementWrapper(Roo.getDom(id));
20877             }
20878             return oWrapper;
20879         },
20880
20881         /**
20882          * Returns the actual DOM element
20883          * @method getElement
20884          * @param {String} id the id of the elment to get
20885          * @return {Object} The element
20886          * @deprecated use Roo.getDom instead
20887          * @static
20888          */
20889         getElement: function(id) {
20890             return Roo.getDom(id);
20891         },
20892
20893         /**
20894          * Returns the style property for the DOM element (i.e.,
20895          * document.getElById(id).style)
20896          * @method getCss
20897          * @param {String} id the id of the elment to get
20898          * @return {Object} The style property of the element
20899          * @deprecated use Roo.getDom instead
20900          * @static
20901          */
20902         getCss: function(id) {
20903             var el = Roo.getDom(id);
20904             return (el) ? el.style : null;
20905         },
20906
20907         /**
20908          * Inner class for cached elements
20909          * @class DragDropMgr.ElementWrapper
20910          * @for DragDropMgr
20911          * @private
20912          * @deprecated
20913          */
20914         ElementWrapper: function(el) {
20915                 /**
20916                  * The element
20917                  * @property el
20918                  */
20919                 this.el = el || null;
20920                 /**
20921                  * The element id
20922                  * @property id
20923                  */
20924                 this.id = this.el && el.id;
20925                 /**
20926                  * A reference to the style property
20927                  * @property css
20928                  */
20929                 this.css = this.el && el.style;
20930             },
20931
20932         /**
20933          * Returns the X position of an html element
20934          * @method getPosX
20935          * @param el the element for which to get the position
20936          * @return {int} the X coordinate
20937          * @for DragDropMgr
20938          * @deprecated use Roo.lib.Dom.getX instead
20939          * @static
20940          */
20941         getPosX: function(el) {
20942             return Roo.lib.Dom.getX(el);
20943         },
20944
20945         /**
20946          * Returns the Y position of an html element
20947          * @method getPosY
20948          * @param el the element for which to get the position
20949          * @return {int} the Y coordinate
20950          * @deprecated use Roo.lib.Dom.getY instead
20951          * @static
20952          */
20953         getPosY: function(el) {
20954             return Roo.lib.Dom.getY(el);
20955         },
20956
20957         /**
20958          * Swap two nodes.  In IE, we use the native method, for others we
20959          * emulate the IE behavior
20960          * @method swapNode
20961          * @param n1 the first node to swap
20962          * @param n2 the other node to swap
20963          * @static
20964          */
20965         swapNode: function(n1, n2) {
20966             if (n1.swapNode) {
20967                 n1.swapNode(n2);
20968             } else {
20969                 var p = n2.parentNode;
20970                 var s = n2.nextSibling;
20971
20972                 if (s == n1) {
20973                     p.insertBefore(n1, n2);
20974                 } else if (n2 == n1.nextSibling) {
20975                     p.insertBefore(n2, n1);
20976                 } else {
20977                     n1.parentNode.replaceChild(n2, n1);
20978                     p.insertBefore(n1, s);
20979                 }
20980             }
20981         },
20982
20983         /**
20984          * Returns the current scroll position
20985          * @method getScroll
20986          * @private
20987          * @static
20988          */
20989         getScroll: function () {
20990             var t, l, dde=document.documentElement, db=document.body;
20991             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20992                 t = dde.scrollTop;
20993                 l = dde.scrollLeft;
20994             } else if (db) {
20995                 t = db.scrollTop;
20996                 l = db.scrollLeft;
20997             } else {
20998
20999             }
21000             return { top: t, left: l };
21001         },
21002
21003         /**
21004          * Returns the specified element style property
21005          * @method getStyle
21006          * @param {HTMLElement} el          the element
21007          * @param {string}      styleProp   the style property
21008          * @return {string} The value of the style property
21009          * @deprecated use Roo.lib.Dom.getStyle
21010          * @static
21011          */
21012         getStyle: function(el, styleProp) {
21013             return Roo.fly(el).getStyle(styleProp);
21014         },
21015
21016         /**
21017          * Gets the scrollTop
21018          * @method getScrollTop
21019          * @return {int} the document's scrollTop
21020          * @static
21021          */
21022         getScrollTop: function () { return this.getScroll().top; },
21023
21024         /**
21025          * Gets the scrollLeft
21026          * @method getScrollLeft
21027          * @return {int} the document's scrollTop
21028          * @static
21029          */
21030         getScrollLeft: function () { return this.getScroll().left; },
21031
21032         /**
21033          * Sets the x/y position of an element to the location of the
21034          * target element.
21035          * @method moveToEl
21036          * @param {HTMLElement} moveEl      The element to move
21037          * @param {HTMLElement} targetEl    The position reference element
21038          * @static
21039          */
21040         moveToEl: function (moveEl, targetEl) {
21041             var aCoord = Roo.lib.Dom.getXY(targetEl);
21042             Roo.lib.Dom.setXY(moveEl, aCoord);
21043         },
21044
21045         /**
21046          * Numeric array sort function
21047          * @method numericSort
21048          * @static
21049          */
21050         numericSort: function(a, b) { return (a - b); },
21051
21052         /**
21053          * Internal counter
21054          * @property _timeoutCount
21055          * @private
21056          * @static
21057          */
21058         _timeoutCount: 0,
21059
21060         /**
21061          * Trying to make the load order less important.  Without this we get
21062          * an error if this file is loaded before the Event Utility.
21063          * @method _addListeners
21064          * @private
21065          * @static
21066          */
21067         _addListeners: function() {
21068             var DDM = Roo.dd.DDM;
21069             if ( Roo.lib.Event && document ) {
21070                 DDM._onLoad();
21071             } else {
21072                 if (DDM._timeoutCount > 2000) {
21073                 } else {
21074                     setTimeout(DDM._addListeners, 10);
21075                     if (document && document.body) {
21076                         DDM._timeoutCount += 1;
21077                     }
21078                 }
21079             }
21080         },
21081
21082         /**
21083          * Recursively searches the immediate parent and all child nodes for
21084          * the handle element in order to determine wheter or not it was
21085          * clicked.
21086          * @method handleWasClicked
21087          * @param node the html element to inspect
21088          * @static
21089          */
21090         handleWasClicked: function(node, id) {
21091             if (this.isHandle(id, node.id)) {
21092                 return true;
21093             } else {
21094                 // check to see if this is a text node child of the one we want
21095                 var p = node.parentNode;
21096
21097                 while (p) {
21098                     if (this.isHandle(id, p.id)) {
21099                         return true;
21100                     } else {
21101                         p = p.parentNode;
21102                     }
21103                 }
21104             }
21105
21106             return false;
21107         }
21108
21109     };
21110
21111 }();
21112
21113 // shorter alias, save a few bytes
21114 Roo.dd.DDM = Roo.dd.DragDropMgr;
21115 Roo.dd.DDM._addListeners();
21116
21117 }/*
21118  * Based on:
21119  * Ext JS Library 1.1.1
21120  * Copyright(c) 2006-2007, Ext JS, LLC.
21121  *
21122  * Originally Released Under LGPL - original licence link has changed is not relivant.
21123  *
21124  * Fork - LGPL
21125  * <script type="text/javascript">
21126  */
21127
21128 /**
21129  * @class Roo.dd.DD
21130  * A DragDrop implementation where the linked element follows the
21131  * mouse cursor during a drag.
21132  * @extends Roo.dd.DragDrop
21133  * @constructor
21134  * @param {String} id the id of the linked element
21135  * @param {String} sGroup the group of related DragDrop items
21136  * @param {object} config an object containing configurable attributes
21137  *                Valid properties for DD:
21138  *                    scroll
21139  */
21140 Roo.dd.DD = function(id, sGroup, config) {
21141     if (id) {
21142         this.init(id, sGroup, config);
21143     }
21144 };
21145
21146 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21147
21148     /**
21149      * When set to true, the utility automatically tries to scroll the browser
21150      * window wehn a drag and drop element is dragged near the viewport boundary.
21151      * Defaults to true.
21152      * @property scroll
21153      * @type boolean
21154      */
21155     scroll: true,
21156
21157     /**
21158      * Sets the pointer offset to the distance between the linked element's top
21159      * left corner and the location the element was clicked
21160      * @method autoOffset
21161      * @param {int} iPageX the X coordinate of the click
21162      * @param {int} iPageY the Y coordinate of the click
21163      */
21164     autoOffset: function(iPageX, iPageY) {
21165         var x = iPageX - this.startPageX;
21166         var y = iPageY - this.startPageY;
21167         this.setDelta(x, y);
21168     },
21169
21170     /**
21171      * Sets the pointer offset.  You can call this directly to force the
21172      * offset to be in a particular location (e.g., pass in 0,0 to set it
21173      * to the center of the object)
21174      * @method setDelta
21175      * @param {int} iDeltaX the distance from the left
21176      * @param {int} iDeltaY the distance from the top
21177      */
21178     setDelta: function(iDeltaX, iDeltaY) {
21179         this.deltaX = iDeltaX;
21180         this.deltaY = iDeltaY;
21181     },
21182
21183     /**
21184      * Sets the drag element to the location of the mousedown or click event,
21185      * maintaining the cursor location relative to the location on the element
21186      * that was clicked.  Override this if you want to place the element in a
21187      * location other than where the cursor is.
21188      * @method setDragElPos
21189      * @param {int} iPageX the X coordinate of the mousedown or drag event
21190      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21191      */
21192     setDragElPos: function(iPageX, iPageY) {
21193         // the first time we do this, we are going to check to make sure
21194         // the element has css positioning
21195
21196         var el = this.getDragEl();
21197         this.alignElWithMouse(el, iPageX, iPageY);
21198     },
21199
21200     /**
21201      * Sets the element to the location of the mousedown or click event,
21202      * maintaining the cursor location relative to the location on the element
21203      * that was clicked.  Override this if you want to place the element in a
21204      * location other than where the cursor is.
21205      * @method alignElWithMouse
21206      * @param {HTMLElement} el the element to move
21207      * @param {int} iPageX the X coordinate of the mousedown or drag event
21208      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21209      */
21210     alignElWithMouse: function(el, iPageX, iPageY) {
21211         var oCoord = this.getTargetCoord(iPageX, iPageY);
21212         var fly = el.dom ? el : Roo.fly(el);
21213         if (!this.deltaSetXY) {
21214             var aCoord = [oCoord.x, oCoord.y];
21215             fly.setXY(aCoord);
21216             var newLeft = fly.getLeft(true);
21217             var newTop  = fly.getTop(true);
21218             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21219         } else {
21220             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21221         }
21222
21223         this.cachePosition(oCoord.x, oCoord.y);
21224         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21225         return oCoord;
21226     },
21227
21228     /**
21229      * Saves the most recent position so that we can reset the constraints and
21230      * tick marks on-demand.  We need to know this so that we can calculate the
21231      * number of pixels the element is offset from its original position.
21232      * @method cachePosition
21233      * @param iPageX the current x position (optional, this just makes it so we
21234      * don't have to look it up again)
21235      * @param iPageY the current y position (optional, this just makes it so we
21236      * don't have to look it up again)
21237      */
21238     cachePosition: function(iPageX, iPageY) {
21239         if (iPageX) {
21240             this.lastPageX = iPageX;
21241             this.lastPageY = iPageY;
21242         } else {
21243             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21244             this.lastPageX = aCoord[0];
21245             this.lastPageY = aCoord[1];
21246         }
21247     },
21248
21249     /**
21250      * Auto-scroll the window if the dragged object has been moved beyond the
21251      * visible window boundary.
21252      * @method autoScroll
21253      * @param {int} x the drag element's x position
21254      * @param {int} y the drag element's y position
21255      * @param {int} h the height of the drag element
21256      * @param {int} w the width of the drag element
21257      * @private
21258      */
21259     autoScroll: function(x, y, h, w) {
21260
21261         if (this.scroll) {
21262             // The client height
21263             var clientH = Roo.lib.Dom.getViewWidth();
21264
21265             // The client width
21266             var clientW = Roo.lib.Dom.getViewHeight();
21267
21268             // The amt scrolled down
21269             var st = this.DDM.getScrollTop();
21270
21271             // The amt scrolled right
21272             var sl = this.DDM.getScrollLeft();
21273
21274             // Location of the bottom of the element
21275             var bot = h + y;
21276
21277             // Location of the right of the element
21278             var right = w + x;
21279
21280             // The distance from the cursor to the bottom of the visible area,
21281             // adjusted so that we don't scroll if the cursor is beyond the
21282             // element drag constraints
21283             var toBot = (clientH + st - y - this.deltaY);
21284
21285             // The distance from the cursor to the right of the visible area
21286             var toRight = (clientW + sl - x - this.deltaX);
21287
21288
21289             // How close to the edge the cursor must be before we scroll
21290             // var thresh = (document.all) ? 100 : 40;
21291             var thresh = 40;
21292
21293             // How many pixels to scroll per autoscroll op.  This helps to reduce
21294             // clunky scrolling. IE is more sensitive about this ... it needs this
21295             // value to be higher.
21296             var scrAmt = (document.all) ? 80 : 30;
21297
21298             // Scroll down if we are near the bottom of the visible page and the
21299             // obj extends below the crease
21300             if ( bot > clientH && toBot < thresh ) {
21301                 window.scrollTo(sl, st + scrAmt);
21302             }
21303
21304             // Scroll up if the window is scrolled down and the top of the object
21305             // goes above the top border
21306             if ( y < st && st > 0 && y - st < thresh ) {
21307                 window.scrollTo(sl, st - scrAmt);
21308             }
21309
21310             // Scroll right if the obj is beyond the right border and the cursor is
21311             // near the border.
21312             if ( right > clientW && toRight < thresh ) {
21313                 window.scrollTo(sl + scrAmt, st);
21314             }
21315
21316             // Scroll left if the window has been scrolled to the right and the obj
21317             // extends past the left border
21318             if ( x < sl && sl > 0 && x - sl < thresh ) {
21319                 window.scrollTo(sl - scrAmt, st);
21320             }
21321         }
21322     },
21323
21324     /**
21325      * Finds the location the element should be placed if we want to move
21326      * it to where the mouse location less the click offset would place us.
21327      * @method getTargetCoord
21328      * @param {int} iPageX the X coordinate of the click
21329      * @param {int} iPageY the Y coordinate of the click
21330      * @return an object that contains the coordinates (Object.x and Object.y)
21331      * @private
21332      */
21333     getTargetCoord: function(iPageX, iPageY) {
21334
21335
21336         var x = iPageX - this.deltaX;
21337         var y = iPageY - this.deltaY;
21338
21339         if (this.constrainX) {
21340             if (x < this.minX) { x = this.minX; }
21341             if (x > this.maxX) { x = this.maxX; }
21342         }
21343
21344         if (this.constrainY) {
21345             if (y < this.minY) { y = this.minY; }
21346             if (y > this.maxY) { y = this.maxY; }
21347         }
21348
21349         x = this.getTick(x, this.xTicks);
21350         y = this.getTick(y, this.yTicks);
21351
21352
21353         return {x:x, y:y};
21354     },
21355
21356     /*
21357      * Sets up config options specific to this class. Overrides
21358      * Roo.dd.DragDrop, but all versions of this method through the
21359      * inheritance chain are called
21360      */
21361     applyConfig: function() {
21362         Roo.dd.DD.superclass.applyConfig.call(this);
21363         this.scroll = (this.config.scroll !== false);
21364     },
21365
21366     /*
21367      * Event that fires prior to the onMouseDown event.  Overrides
21368      * Roo.dd.DragDrop.
21369      */
21370     b4MouseDown: function(e) {
21371         // this.resetConstraints();
21372         this.autoOffset(e.getPageX(),
21373                             e.getPageY());
21374     },
21375
21376     /*
21377      * Event that fires prior to the onDrag event.  Overrides
21378      * Roo.dd.DragDrop.
21379      */
21380     b4Drag: function(e) {
21381         this.setDragElPos(e.getPageX(),
21382                             e.getPageY());
21383     },
21384
21385     toString: function() {
21386         return ("DD " + this.id);
21387     }
21388
21389     //////////////////////////////////////////////////////////////////////////
21390     // Debugging ygDragDrop events that can be overridden
21391     //////////////////////////////////////////////////////////////////////////
21392     /*
21393     startDrag: function(x, y) {
21394     },
21395
21396     onDrag: function(e) {
21397     },
21398
21399     onDragEnter: function(e, id) {
21400     },
21401
21402     onDragOver: function(e, id) {
21403     },
21404
21405     onDragOut: function(e, id) {
21406     },
21407
21408     onDragDrop: function(e, id) {
21409     },
21410
21411     endDrag: function(e) {
21412     }
21413
21414     */
21415
21416 });/*
21417  * Based on:
21418  * Ext JS Library 1.1.1
21419  * Copyright(c) 2006-2007, Ext JS, LLC.
21420  *
21421  * Originally Released Under LGPL - original licence link has changed is not relivant.
21422  *
21423  * Fork - LGPL
21424  * <script type="text/javascript">
21425  */
21426
21427 /**
21428  * @class Roo.dd.DDProxy
21429  * A DragDrop implementation that inserts an empty, bordered div into
21430  * the document that follows the cursor during drag operations.  At the time of
21431  * the click, the frame div is resized to the dimensions of the linked html
21432  * element, and moved to the exact location of the linked element.
21433  *
21434  * References to the "frame" element refer to the single proxy element that
21435  * was created to be dragged in place of all DDProxy elements on the
21436  * page.
21437  *
21438  * @extends Roo.dd.DD
21439  * @constructor
21440  * @param {String} id the id of the linked html element
21441  * @param {String} sGroup the group of related DragDrop objects
21442  * @param {object} config an object containing configurable attributes
21443  *                Valid properties for DDProxy in addition to those in DragDrop:
21444  *                   resizeFrame, centerFrame, dragElId
21445  */
21446 Roo.dd.DDProxy = function(id, sGroup, config) {
21447     if (id) {
21448         this.init(id, sGroup, config);
21449         this.initFrame();
21450     }
21451 };
21452
21453 /**
21454  * The default drag frame div id
21455  * @property Roo.dd.DDProxy.dragElId
21456  * @type String
21457  * @static
21458  */
21459 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21460
21461 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21462
21463     /**
21464      * By default we resize the drag frame to be the same size as the element
21465      * we want to drag (this is to get the frame effect).  We can turn it off
21466      * if we want a different behavior.
21467      * @property resizeFrame
21468      * @type boolean
21469      */
21470     resizeFrame: true,
21471
21472     /**
21473      * By default the frame is positioned exactly where the drag element is, so
21474      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21475      * you do not have constraints on the obj is to have the drag frame centered
21476      * around the cursor.  Set centerFrame to true for this effect.
21477      * @property centerFrame
21478      * @type boolean
21479      */
21480     centerFrame: false,
21481
21482     /**
21483      * Creates the proxy element if it does not yet exist
21484      * @method createFrame
21485      */
21486     createFrame: function() {
21487         var self = this;
21488         var body = document.body;
21489
21490         if (!body || !body.firstChild) {
21491             setTimeout( function() { self.createFrame(); }, 50 );
21492             return;
21493         }
21494
21495         var div = this.getDragEl();
21496
21497         if (!div) {
21498             div    = document.createElement("div");
21499             div.id = this.dragElId;
21500             var s  = div.style;
21501
21502             s.position   = "absolute";
21503             s.visibility = "hidden";
21504             s.cursor     = "move";
21505             s.border     = "2px solid #aaa";
21506             s.zIndex     = 999;
21507
21508             // appendChild can blow up IE if invoked prior to the window load event
21509             // while rendering a table.  It is possible there are other scenarios
21510             // that would cause this to happen as well.
21511             body.insertBefore(div, body.firstChild);
21512         }
21513     },
21514
21515     /**
21516      * Initialization for the drag frame element.  Must be called in the
21517      * constructor of all subclasses
21518      * @method initFrame
21519      */
21520     initFrame: function() {
21521         this.createFrame();
21522     },
21523
21524     applyConfig: function() {
21525         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21526
21527         this.resizeFrame = (this.config.resizeFrame !== false);
21528         this.centerFrame = (this.config.centerFrame);
21529         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21530     },
21531
21532     /**
21533      * Resizes the drag frame to the dimensions of the clicked object, positions
21534      * it over the object, and finally displays it
21535      * @method showFrame
21536      * @param {int} iPageX X click position
21537      * @param {int} iPageY Y click position
21538      * @private
21539      */
21540     showFrame: function(iPageX, iPageY) {
21541         var el = this.getEl();
21542         var dragEl = this.getDragEl();
21543         var s = dragEl.style;
21544
21545         this._resizeProxy();
21546
21547         if (this.centerFrame) {
21548             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21549                            Math.round(parseInt(s.height, 10)/2) );
21550         }
21551
21552         this.setDragElPos(iPageX, iPageY);
21553
21554         Roo.fly(dragEl).show();
21555     },
21556
21557     /**
21558      * The proxy is automatically resized to the dimensions of the linked
21559      * element when a drag is initiated, unless resizeFrame is set to false
21560      * @method _resizeProxy
21561      * @private
21562      */
21563     _resizeProxy: function() {
21564         if (this.resizeFrame) {
21565             var el = this.getEl();
21566             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21567         }
21568     },
21569
21570     // overrides Roo.dd.DragDrop
21571     b4MouseDown: function(e) {
21572         var x = e.getPageX();
21573         var y = e.getPageY();
21574         this.autoOffset(x, y);
21575         this.setDragElPos(x, y);
21576     },
21577
21578     // overrides Roo.dd.DragDrop
21579     b4StartDrag: function(x, y) {
21580         // show the drag frame
21581         this.showFrame(x, y);
21582     },
21583
21584     // overrides Roo.dd.DragDrop
21585     b4EndDrag: function(e) {
21586         Roo.fly(this.getDragEl()).hide();
21587     },
21588
21589     // overrides Roo.dd.DragDrop
21590     // By default we try to move the element to the last location of the frame.
21591     // This is so that the default behavior mirrors that of Roo.dd.DD.
21592     endDrag: function(e) {
21593
21594         var lel = this.getEl();
21595         var del = this.getDragEl();
21596
21597         // Show the drag frame briefly so we can get its position
21598         del.style.visibility = "";
21599
21600         this.beforeMove();
21601         // Hide the linked element before the move to get around a Safari
21602         // rendering bug.
21603         lel.style.visibility = "hidden";
21604         Roo.dd.DDM.moveToEl(lel, del);
21605         del.style.visibility = "hidden";
21606         lel.style.visibility = "";
21607
21608         this.afterDrag();
21609     },
21610
21611     beforeMove : function(){
21612
21613     },
21614
21615     afterDrag : function(){
21616
21617     },
21618
21619     toString: function() {
21620         return ("DDProxy " + this.id);
21621     }
21622
21623 });
21624 /*
21625  * Based on:
21626  * Ext JS Library 1.1.1
21627  * Copyright(c) 2006-2007, Ext JS, LLC.
21628  *
21629  * Originally Released Under LGPL - original licence link has changed is not relivant.
21630  *
21631  * Fork - LGPL
21632  * <script type="text/javascript">
21633  */
21634
21635  /**
21636  * @class Roo.dd.DDTarget
21637  * A DragDrop implementation that does not move, but can be a drop
21638  * target.  You would get the same result by simply omitting implementation
21639  * for the event callbacks, but this way we reduce the processing cost of the
21640  * event listener and the callbacks.
21641  * @extends Roo.dd.DragDrop
21642  * @constructor
21643  * @param {String} id the id of the element that is a drop target
21644  * @param {String} sGroup the group of related DragDrop objects
21645  * @param {object} config an object containing configurable attributes
21646  *                 Valid properties for DDTarget in addition to those in
21647  *                 DragDrop:
21648  *                    none
21649  */
21650 Roo.dd.DDTarget = function(id, sGroup, config) {
21651     if (id) {
21652         this.initTarget(id, sGroup, config);
21653     }
21654     if (config && (config.listeners || config.events)) { 
21655         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21656             listeners : config.listeners || {}, 
21657             events : config.events || {} 
21658         });    
21659     }
21660 };
21661
21662 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21663 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21664     toString: function() {
21665         return ("DDTarget " + this.id);
21666     }
21667 });
21668 /*
21669  * Based on:
21670  * Ext JS Library 1.1.1
21671  * Copyright(c) 2006-2007, Ext JS, LLC.
21672  *
21673  * Originally Released Under LGPL - original licence link has changed is not relivant.
21674  *
21675  * Fork - LGPL
21676  * <script type="text/javascript">
21677  */
21678  
21679
21680 /**
21681  * @class Roo.dd.ScrollManager
21682  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21683  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21684  * @singleton
21685  */
21686 Roo.dd.ScrollManager = function(){
21687     var ddm = Roo.dd.DragDropMgr;
21688     var els = {};
21689     var dragEl = null;
21690     var proc = {};
21691     
21692     
21693     
21694     var onStop = function(e){
21695         dragEl = null;
21696         clearProc();
21697     };
21698     
21699     var triggerRefresh = function(){
21700         if(ddm.dragCurrent){
21701              ddm.refreshCache(ddm.dragCurrent.groups);
21702         }
21703     };
21704     
21705     var doScroll = function(){
21706         if(ddm.dragCurrent){
21707             var dds = Roo.dd.ScrollManager;
21708             if(!dds.animate){
21709                 if(proc.el.scroll(proc.dir, dds.increment)){
21710                     triggerRefresh();
21711                 }
21712             }else{
21713                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21714             }
21715         }
21716     };
21717     
21718     var clearProc = function(){
21719         if(proc.id){
21720             clearInterval(proc.id);
21721         }
21722         proc.id = 0;
21723         proc.el = null;
21724         proc.dir = "";
21725     };
21726     
21727     var startProc = function(el, dir){
21728          Roo.log('scroll startproc');
21729         clearProc();
21730         proc.el = el;
21731         proc.dir = dir;
21732         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21733     };
21734     
21735     var onFire = function(e, isDrop){
21736        
21737         if(isDrop || !ddm.dragCurrent){ return; }
21738         var dds = Roo.dd.ScrollManager;
21739         if(!dragEl || dragEl != ddm.dragCurrent){
21740             dragEl = ddm.dragCurrent;
21741             // refresh regions on drag start
21742             dds.refreshCache();
21743         }
21744         
21745         var xy = Roo.lib.Event.getXY(e);
21746         var pt = new Roo.lib.Point(xy[0], xy[1]);
21747         for(var id in els){
21748             var el = els[id], r = el._region;
21749             if(r && r.contains(pt) && el.isScrollable()){
21750                 if(r.bottom - pt.y <= dds.thresh){
21751                     if(proc.el != el){
21752                         startProc(el, "down");
21753                     }
21754                     return;
21755                 }else if(r.right - pt.x <= dds.thresh){
21756                     if(proc.el != el){
21757                         startProc(el, "left");
21758                     }
21759                     return;
21760                 }else if(pt.y - r.top <= dds.thresh){
21761                     if(proc.el != el){
21762                         startProc(el, "up");
21763                     }
21764                     return;
21765                 }else if(pt.x - r.left <= dds.thresh){
21766                     if(proc.el != el){
21767                         startProc(el, "right");
21768                     }
21769                     return;
21770                 }
21771             }
21772         }
21773         clearProc();
21774     };
21775     
21776     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21777     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21778     
21779     return {
21780         /**
21781          * Registers new overflow element(s) to auto scroll
21782          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21783          */
21784         register : function(el){
21785             if(el instanceof Array){
21786                 for(var i = 0, len = el.length; i < len; i++) {
21787                         this.register(el[i]);
21788                 }
21789             }else{
21790                 el = Roo.get(el);
21791                 els[el.id] = el;
21792             }
21793             Roo.dd.ScrollManager.els = els;
21794         },
21795         
21796         /**
21797          * Unregisters overflow element(s) so they are no longer scrolled
21798          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21799          */
21800         unregister : function(el){
21801             if(el instanceof Array){
21802                 for(var i = 0, len = el.length; i < len; i++) {
21803                         this.unregister(el[i]);
21804                 }
21805             }else{
21806                 el = Roo.get(el);
21807                 delete els[el.id];
21808             }
21809         },
21810         
21811         /**
21812          * The number of pixels from the edge of a container the pointer needs to be to 
21813          * trigger scrolling (defaults to 25)
21814          * @type Number
21815          */
21816         thresh : 25,
21817         
21818         /**
21819          * The number of pixels to scroll in each scroll increment (defaults to 50)
21820          * @type Number
21821          */
21822         increment : 100,
21823         
21824         /**
21825          * The frequency of scrolls in milliseconds (defaults to 500)
21826          * @type Number
21827          */
21828         frequency : 500,
21829         
21830         /**
21831          * True to animate the scroll (defaults to true)
21832          * @type Boolean
21833          */
21834         animate: true,
21835         
21836         /**
21837          * The animation duration in seconds - 
21838          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21839          * @type Number
21840          */
21841         animDuration: .4,
21842         
21843         /**
21844          * Manually trigger a cache refresh.
21845          */
21846         refreshCache : function(){
21847             for(var id in els){
21848                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21849                     els[id]._region = els[id].getRegion();
21850                 }
21851             }
21852         }
21853     };
21854 }();/*
21855  * Based on:
21856  * Ext JS Library 1.1.1
21857  * Copyright(c) 2006-2007, Ext JS, LLC.
21858  *
21859  * Originally Released Under LGPL - original licence link has changed is not relivant.
21860  *
21861  * Fork - LGPL
21862  * <script type="text/javascript">
21863  */
21864  
21865
21866 /**
21867  * @class Roo.dd.Registry
21868  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21869  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21870  * @singleton
21871  */
21872 Roo.dd.Registry = function(){
21873     var elements = {}; 
21874     var handles = {}; 
21875     var autoIdSeed = 0;
21876
21877     var getId = function(el, autogen){
21878         if(typeof el == "string"){
21879             return el;
21880         }
21881         var id = el.id;
21882         if(!id && autogen !== false){
21883             id = "roodd-" + (++autoIdSeed);
21884             el.id = id;
21885         }
21886         return id;
21887     };
21888     
21889     return {
21890     /**
21891      * Register a drag drop element
21892      * @param {String|HTMLElement} element The id or DOM node to register
21893      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21894      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21895      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21896      * populated in the data object (if applicable):
21897      * <pre>
21898 Value      Description<br />
21899 ---------  ------------------------------------------<br />
21900 handles    Array of DOM nodes that trigger dragging<br />
21901            for the element being registered<br />
21902 isHandle   True if the element passed in triggers<br />
21903            dragging itself, else false
21904 </pre>
21905      */
21906         register : function(el, data){
21907             data = data || {};
21908             if(typeof el == "string"){
21909                 el = document.getElementById(el);
21910             }
21911             data.ddel = el;
21912             elements[getId(el)] = data;
21913             if(data.isHandle !== false){
21914                 handles[data.ddel.id] = data;
21915             }
21916             if(data.handles){
21917                 var hs = data.handles;
21918                 for(var i = 0, len = hs.length; i < len; i++){
21919                         handles[getId(hs[i])] = data;
21920                 }
21921             }
21922         },
21923
21924     /**
21925      * Unregister a drag drop element
21926      * @param {String|HTMLElement}  element The id or DOM node to unregister
21927      */
21928         unregister : function(el){
21929             var id = getId(el, false);
21930             var data = elements[id];
21931             if(data){
21932                 delete elements[id];
21933                 if(data.handles){
21934                     var hs = data.handles;
21935                     for(var i = 0, len = hs.length; i < len; i++){
21936                         delete handles[getId(hs[i], false)];
21937                     }
21938                 }
21939             }
21940         },
21941
21942     /**
21943      * Returns the handle registered for a DOM Node by id
21944      * @param {String|HTMLElement} id The DOM node or id to look up
21945      * @return {Object} handle The custom handle data
21946      */
21947         getHandle : function(id){
21948             if(typeof id != "string"){ // must be element?
21949                 id = id.id;
21950             }
21951             return handles[id];
21952         },
21953
21954     /**
21955      * Returns the handle that is registered for the DOM node that is the target of the event
21956      * @param {Event} e The event
21957      * @return {Object} handle The custom handle data
21958      */
21959         getHandleFromEvent : function(e){
21960             var t = Roo.lib.Event.getTarget(e);
21961             return t ? handles[t.id] : null;
21962         },
21963
21964     /**
21965      * Returns a custom data object that is registered for a DOM node by id
21966      * @param {String|HTMLElement} id The DOM node or id to look up
21967      * @return {Object} data The custom data
21968      */
21969         getTarget : function(id){
21970             if(typeof id != "string"){ // must be element?
21971                 id = id.id;
21972             }
21973             return elements[id];
21974         },
21975
21976     /**
21977      * Returns a custom data object that is registered for the DOM node that is the target of the event
21978      * @param {Event} e The event
21979      * @return {Object} data The custom data
21980      */
21981         getTargetFromEvent : function(e){
21982             var t = Roo.lib.Event.getTarget(e);
21983             return t ? elements[t.id] || handles[t.id] : null;
21984         }
21985     };
21986 }();/*
21987  * Based on:
21988  * Ext JS Library 1.1.1
21989  * Copyright(c) 2006-2007, Ext JS, LLC.
21990  *
21991  * Originally Released Under LGPL - original licence link has changed is not relivant.
21992  *
21993  * Fork - LGPL
21994  * <script type="text/javascript">
21995  */
21996  
21997
21998 /**
21999  * @class Roo.dd.StatusProxy
22000  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22001  * default drag proxy used by all Roo.dd components.
22002  * @constructor
22003  * @param {Object} config
22004  */
22005 Roo.dd.StatusProxy = function(config){
22006     Roo.apply(this, config);
22007     this.id = this.id || Roo.id();
22008     this.el = new Roo.Layer({
22009         dh: {
22010             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22011                 {tag: "div", cls: "x-dd-drop-icon"},
22012                 {tag: "div", cls: "x-dd-drag-ghost"}
22013             ]
22014         }, 
22015         shadow: !config || config.shadow !== false
22016     });
22017     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22018     this.dropStatus = this.dropNotAllowed;
22019 };
22020
22021 Roo.dd.StatusProxy.prototype = {
22022     /**
22023      * @cfg {String} dropAllowed
22024      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22025      */
22026     dropAllowed : "x-dd-drop-ok",
22027     /**
22028      * @cfg {String} dropNotAllowed
22029      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22030      */
22031     dropNotAllowed : "x-dd-drop-nodrop",
22032
22033     /**
22034      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22035      * over the current target element.
22036      * @param {String} cssClass The css class for the new drop status indicator image
22037      */
22038     setStatus : function(cssClass){
22039         cssClass = cssClass || this.dropNotAllowed;
22040         if(this.dropStatus != cssClass){
22041             this.el.replaceClass(this.dropStatus, cssClass);
22042             this.dropStatus = cssClass;
22043         }
22044     },
22045
22046     /**
22047      * Resets the status indicator to the default dropNotAllowed value
22048      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22049      */
22050     reset : function(clearGhost){
22051         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22052         this.dropStatus = this.dropNotAllowed;
22053         if(clearGhost){
22054             this.ghost.update("");
22055         }
22056     },
22057
22058     /**
22059      * Updates the contents of the ghost element
22060      * @param {String} html The html that will replace the current innerHTML of the ghost element
22061      */
22062     update : function(html){
22063         if(typeof html == "string"){
22064             this.ghost.update(html);
22065         }else{
22066             this.ghost.update("");
22067             html.style.margin = "0";
22068             this.ghost.dom.appendChild(html);
22069         }
22070         // ensure float = none set?? cant remember why though.
22071         var el = this.ghost.dom.firstChild;
22072                 if(el){
22073                         Roo.fly(el).setStyle('float', 'none');
22074                 }
22075     },
22076     
22077     /**
22078      * Returns the underlying proxy {@link Roo.Layer}
22079      * @return {Roo.Layer} el
22080     */
22081     getEl : function(){
22082         return this.el;
22083     },
22084
22085     /**
22086      * Returns the ghost element
22087      * @return {Roo.Element} el
22088      */
22089     getGhost : function(){
22090         return this.ghost;
22091     },
22092
22093     /**
22094      * Hides the proxy
22095      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22096      */
22097     hide : function(clear){
22098         this.el.hide();
22099         if(clear){
22100             this.reset(true);
22101         }
22102     },
22103
22104     /**
22105      * Stops the repair animation if it's currently running
22106      */
22107     stop : function(){
22108         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22109             this.anim.stop();
22110         }
22111     },
22112
22113     /**
22114      * Displays this proxy
22115      */
22116     show : function(){
22117         this.el.show();
22118     },
22119
22120     /**
22121      * Force the Layer to sync its shadow and shim positions to the element
22122      */
22123     sync : function(){
22124         this.el.sync();
22125     },
22126
22127     /**
22128      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22129      * invalid drop operation by the item being dragged.
22130      * @param {Array} xy The XY position of the element ([x, y])
22131      * @param {Function} callback The function to call after the repair is complete
22132      * @param {Object} scope The scope in which to execute the callback
22133      */
22134     repair : function(xy, callback, scope){
22135         this.callback = callback;
22136         this.scope = scope;
22137         if(xy && this.animRepair !== false){
22138             this.el.addClass("x-dd-drag-repair");
22139             this.el.hideUnders(true);
22140             this.anim = this.el.shift({
22141                 duration: this.repairDuration || .5,
22142                 easing: 'easeOut',
22143                 xy: xy,
22144                 stopFx: true,
22145                 callback: this.afterRepair,
22146                 scope: this
22147             });
22148         }else{
22149             this.afterRepair();
22150         }
22151     },
22152
22153     // private
22154     afterRepair : function(){
22155         this.hide(true);
22156         if(typeof this.callback == "function"){
22157             this.callback.call(this.scope || this);
22158         }
22159         this.callback = null;
22160         this.scope = null;
22161     }
22162 };/*
22163  * Based on:
22164  * Ext JS Library 1.1.1
22165  * Copyright(c) 2006-2007, Ext JS, LLC.
22166  *
22167  * Originally Released Under LGPL - original licence link has changed is not relivant.
22168  *
22169  * Fork - LGPL
22170  * <script type="text/javascript">
22171  */
22172
22173 /**
22174  * @class Roo.dd.DragSource
22175  * @extends Roo.dd.DDProxy
22176  * A simple class that provides the basic implementation needed to make any element draggable.
22177  * @constructor
22178  * @param {String/HTMLElement/Element} el The container element
22179  * @param {Object} config
22180  */
22181 Roo.dd.DragSource = function(el, config){
22182     this.el = Roo.get(el);
22183     this.dragData = {};
22184     
22185     Roo.apply(this, config);
22186     
22187     if(!this.proxy){
22188         this.proxy = new Roo.dd.StatusProxy();
22189     }
22190
22191     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22192           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22193     
22194     this.dragging = false;
22195 };
22196
22197 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22198     /**
22199      * @cfg {String} dropAllowed
22200      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22201      */
22202     dropAllowed : "x-dd-drop-ok",
22203     /**
22204      * @cfg {String} dropNotAllowed
22205      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22206      */
22207     dropNotAllowed : "x-dd-drop-nodrop",
22208
22209     /**
22210      * Returns the data object associated with this drag source
22211      * @return {Object} data An object containing arbitrary data
22212      */
22213     getDragData : function(e){
22214         return this.dragData;
22215     },
22216
22217     // private
22218     onDragEnter : function(e, id){
22219         var target = Roo.dd.DragDropMgr.getDDById(id);
22220         this.cachedTarget = target;
22221         if(this.beforeDragEnter(target, e, id) !== false){
22222             if(target.isNotifyTarget){
22223                 var status = target.notifyEnter(this, e, this.dragData);
22224                 this.proxy.setStatus(status);
22225             }else{
22226                 this.proxy.setStatus(this.dropAllowed);
22227             }
22228             
22229             if(this.afterDragEnter){
22230                 /**
22231                  * An empty function by default, but provided so that you can perform a custom action
22232                  * when the dragged item enters the drop target by providing an implementation.
22233                  * @param {Roo.dd.DragDrop} target The drop target
22234                  * @param {Event} e The event object
22235                  * @param {String} id The id of the dragged element
22236                  * @method afterDragEnter
22237                  */
22238                 this.afterDragEnter(target, e, id);
22239             }
22240         }
22241     },
22242
22243     /**
22244      * An empty function by default, but provided so that you can perform a custom action
22245      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22246      * @param {Roo.dd.DragDrop} target The drop target
22247      * @param {Event} e The event object
22248      * @param {String} id The id of the dragged element
22249      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22250      */
22251     beforeDragEnter : function(target, e, id){
22252         return true;
22253     },
22254
22255     // private
22256     alignElWithMouse: function() {
22257         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22258         this.proxy.sync();
22259     },
22260
22261     // private
22262     onDragOver : function(e, id){
22263         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22264         if(this.beforeDragOver(target, e, id) !== false){
22265             if(target.isNotifyTarget){
22266                 var status = target.notifyOver(this, e, this.dragData);
22267                 this.proxy.setStatus(status);
22268             }
22269
22270             if(this.afterDragOver){
22271                 /**
22272                  * An empty function by default, but provided so that you can perform a custom action
22273                  * while the dragged item is over the drop target by providing an implementation.
22274                  * @param {Roo.dd.DragDrop} target The drop target
22275                  * @param {Event} e The event object
22276                  * @param {String} id The id of the dragged element
22277                  * @method afterDragOver
22278                  */
22279                 this.afterDragOver(target, e, id);
22280             }
22281         }
22282     },
22283
22284     /**
22285      * An empty function by default, but provided so that you can perform a custom action
22286      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22287      * @param {Roo.dd.DragDrop} target The drop target
22288      * @param {Event} e The event object
22289      * @param {String} id The id of the dragged element
22290      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22291      */
22292     beforeDragOver : function(target, e, id){
22293         return true;
22294     },
22295
22296     // private
22297     onDragOut : function(e, id){
22298         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22299         if(this.beforeDragOut(target, e, id) !== false){
22300             if(target.isNotifyTarget){
22301                 target.notifyOut(this, e, this.dragData);
22302             }
22303             this.proxy.reset();
22304             if(this.afterDragOut){
22305                 /**
22306                  * An empty function by default, but provided so that you can perform a custom action
22307                  * after the dragged item is dragged out of the target without dropping.
22308                  * @param {Roo.dd.DragDrop} target The drop target
22309                  * @param {Event} e The event object
22310                  * @param {String} id The id of the dragged element
22311                  * @method afterDragOut
22312                  */
22313                 this.afterDragOut(target, e, id);
22314             }
22315         }
22316         this.cachedTarget = null;
22317     },
22318
22319     /**
22320      * An empty function by default, but provided so that you can perform a custom action before the dragged
22321      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22322      * @param {Roo.dd.DragDrop} target The drop target
22323      * @param {Event} e The event object
22324      * @param {String} id The id of the dragged element
22325      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22326      */
22327     beforeDragOut : function(target, e, id){
22328         return true;
22329     },
22330     
22331     // private
22332     onDragDrop : function(e, id){
22333         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22334         if(this.beforeDragDrop(target, e, id) !== false){
22335             if(target.isNotifyTarget){
22336                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22337                     this.onValidDrop(target, e, id);
22338                 }else{
22339                     this.onInvalidDrop(target, e, id);
22340                 }
22341             }else{
22342                 this.onValidDrop(target, e, id);
22343             }
22344             
22345             if(this.afterDragDrop){
22346                 /**
22347                  * An empty function by default, but provided so that you can perform a custom action
22348                  * after a valid drag drop has occurred by providing an implementation.
22349                  * @param {Roo.dd.DragDrop} target The drop target
22350                  * @param {Event} e The event object
22351                  * @param {String} id The id of the dropped element
22352                  * @method afterDragDrop
22353                  */
22354                 this.afterDragDrop(target, e, id);
22355             }
22356         }
22357         delete this.cachedTarget;
22358     },
22359
22360     /**
22361      * An empty function by default, but provided so that you can perform a custom action before the dragged
22362      * item is dropped onto the target and optionally cancel the onDragDrop.
22363      * @param {Roo.dd.DragDrop} target The drop target
22364      * @param {Event} e The event object
22365      * @param {String} id The id of the dragged element
22366      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22367      */
22368     beforeDragDrop : function(target, e, id){
22369         return true;
22370     },
22371
22372     // private
22373     onValidDrop : function(target, e, id){
22374         this.hideProxy();
22375         if(this.afterValidDrop){
22376             /**
22377              * An empty function by default, but provided so that you can perform a custom action
22378              * after a valid drop has occurred by providing an implementation.
22379              * @param {Object} target The target DD 
22380              * @param {Event} e The event object
22381              * @param {String} id The id of the dropped element
22382              * @method afterInvalidDrop
22383              */
22384             this.afterValidDrop(target, e, id);
22385         }
22386     },
22387
22388     // private
22389     getRepairXY : function(e, data){
22390         return this.el.getXY();  
22391     },
22392
22393     // private
22394     onInvalidDrop : function(target, e, id){
22395         this.beforeInvalidDrop(target, e, id);
22396         if(this.cachedTarget){
22397             if(this.cachedTarget.isNotifyTarget){
22398                 this.cachedTarget.notifyOut(this, e, this.dragData);
22399             }
22400             this.cacheTarget = null;
22401         }
22402         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22403
22404         if(this.afterInvalidDrop){
22405             /**
22406              * An empty function by default, but provided so that you can perform a custom action
22407              * after an invalid drop has occurred by providing an implementation.
22408              * @param {Event} e The event object
22409              * @param {String} id The id of the dropped element
22410              * @method afterInvalidDrop
22411              */
22412             this.afterInvalidDrop(e, id);
22413         }
22414     },
22415
22416     // private
22417     afterRepair : function(){
22418         if(Roo.enableFx){
22419             this.el.highlight(this.hlColor || "c3daf9");
22420         }
22421         this.dragging = false;
22422     },
22423
22424     /**
22425      * An empty function by default, but provided so that you can perform a custom action after an invalid
22426      * drop has occurred.
22427      * @param {Roo.dd.DragDrop} target The drop target
22428      * @param {Event} e The event object
22429      * @param {String} id The id of the dragged element
22430      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22431      */
22432     beforeInvalidDrop : function(target, e, id){
22433         return true;
22434     },
22435
22436     // private
22437     handleMouseDown : function(e){
22438         if(this.dragging) {
22439             return;
22440         }
22441         var data = this.getDragData(e);
22442         if(data && this.onBeforeDrag(data, e) !== false){
22443             this.dragData = data;
22444             this.proxy.stop();
22445             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22446         } 
22447     },
22448
22449     /**
22450      * An empty function by default, but provided so that you can perform a custom action before the initial
22451      * drag event begins and optionally cancel it.
22452      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22453      * @param {Event} e The event object
22454      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22455      */
22456     onBeforeDrag : function(data, e){
22457         return true;
22458     },
22459
22460     /**
22461      * An empty function by default, but provided so that you can perform a custom action once the initial
22462      * drag event has begun.  The drag cannot be canceled from this function.
22463      * @param {Number} x The x position of the click on the dragged object
22464      * @param {Number} y The y position of the click on the dragged object
22465      */
22466     onStartDrag : Roo.emptyFn,
22467
22468     // private - YUI override
22469     startDrag : function(x, y){
22470         this.proxy.reset();
22471         this.dragging = true;
22472         this.proxy.update("");
22473         this.onInitDrag(x, y);
22474         this.proxy.show();
22475     },
22476
22477     // private
22478     onInitDrag : function(x, y){
22479         var clone = this.el.dom.cloneNode(true);
22480         clone.id = Roo.id(); // prevent duplicate ids
22481         this.proxy.update(clone);
22482         this.onStartDrag(x, y);
22483         return true;
22484     },
22485
22486     /**
22487      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22488      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22489      */
22490     getProxy : function(){
22491         return this.proxy;  
22492     },
22493
22494     /**
22495      * Hides the drag source's {@link Roo.dd.StatusProxy}
22496      */
22497     hideProxy : function(){
22498         this.proxy.hide();  
22499         this.proxy.reset(true);
22500         this.dragging = false;
22501     },
22502
22503     // private
22504     triggerCacheRefresh : function(){
22505         Roo.dd.DDM.refreshCache(this.groups);
22506     },
22507
22508     // private - override to prevent hiding
22509     b4EndDrag: function(e) {
22510     },
22511
22512     // private - override to prevent moving
22513     endDrag : function(e){
22514         this.onEndDrag(this.dragData, e);
22515     },
22516
22517     // private
22518     onEndDrag : function(data, e){
22519     },
22520     
22521     // private - pin to cursor
22522     autoOffset : function(x, y) {
22523         this.setDelta(-12, -20);
22524     }    
22525 });/*
22526  * Based on:
22527  * Ext JS Library 1.1.1
22528  * Copyright(c) 2006-2007, Ext JS, LLC.
22529  *
22530  * Originally Released Under LGPL - original licence link has changed is not relivant.
22531  *
22532  * Fork - LGPL
22533  * <script type="text/javascript">
22534  */
22535
22536
22537 /**
22538  * @class Roo.dd.DropTarget
22539  * @extends Roo.dd.DDTarget
22540  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22541  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22542  * @constructor
22543  * @param {String/HTMLElement/Element} el The container element
22544  * @param {Object} config
22545  */
22546 Roo.dd.DropTarget = function(el, config){
22547     this.el = Roo.get(el);
22548     
22549     var listeners = false; ;
22550     if (config && config.listeners) {
22551         listeners= config.listeners;
22552         delete config.listeners;
22553     }
22554     Roo.apply(this, config);
22555     
22556     if(this.containerScroll){
22557         Roo.dd.ScrollManager.register(this.el);
22558     }
22559     this.addEvents( {
22560          /**
22561          * @scope Roo.dd.DropTarget
22562          */
22563          
22564          /**
22565          * @event enter
22566          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22567          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22568          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22569          * 
22570          * IMPORTANT : it should set  this.valid to true|false
22571          * 
22572          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22573          * @param {Event} e The event
22574          * @param {Object} data An object containing arbitrary data supplied by the drag source
22575          */
22576         "enter" : true,
22577         
22578          /**
22579          * @event over
22580          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22581          * This method will be called on every mouse movement while the drag source is over the drop target.
22582          * This default implementation simply returns the dropAllowed config value.
22583          * 
22584          * IMPORTANT : it should set  this.valid to true|false
22585          * 
22586          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22587          * @param {Event} e The event
22588          * @param {Object} data An object containing arbitrary data supplied by the drag source
22589          
22590          */
22591         "over" : true,
22592         /**
22593          * @event out
22594          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22595          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22596          * overClass (if any) from the drop element.
22597          * 
22598          * 
22599          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22600          * @param {Event} e The event
22601          * @param {Object} data An object containing arbitrary data supplied by the drag source
22602          */
22603          "out" : true,
22604          
22605         /**
22606          * @event drop
22607          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22608          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22609          * implementation that does something to process the drop event and returns true so that the drag source's
22610          * repair action does not run.
22611          * 
22612          * IMPORTANT : it should set this.success
22613          * 
22614          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22615          * @param {Event} e The event
22616          * @param {Object} data An object containing arbitrary data supplied by the drag source
22617         */
22618          "drop" : true
22619     });
22620             
22621      
22622     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22623         this.el.dom, 
22624         this.ddGroup || this.group,
22625         {
22626             isTarget: true,
22627             listeners : listeners || {} 
22628            
22629         
22630         }
22631     );
22632
22633 };
22634
22635 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22636     /**
22637      * @cfg {String} overClass
22638      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22639      */
22640      /**
22641      * @cfg {String} ddGroup
22642      * The drag drop group to handle drop events for
22643      */
22644      
22645     /**
22646      * @cfg {String} dropAllowed
22647      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22648      */
22649     dropAllowed : "x-dd-drop-ok",
22650     /**
22651      * @cfg {String} dropNotAllowed
22652      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22653      */
22654     dropNotAllowed : "x-dd-drop-nodrop",
22655     /**
22656      * @cfg {boolean} success
22657      * set this after drop listener.. 
22658      */
22659     success : false,
22660     /**
22661      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22662      * if the drop point is valid for over/enter..
22663      */
22664     valid : false,
22665     // private
22666     isTarget : true,
22667
22668     // private
22669     isNotifyTarget : true,
22670     
22671     /**
22672      * @hide
22673      */
22674     notifyEnter : function(dd, e, data)
22675     {
22676         this.valid = true;
22677         this.fireEvent('enter', dd, e, data);
22678         if(this.overClass){
22679             this.el.addClass(this.overClass);
22680         }
22681         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22682             this.valid ? this.dropAllowed : this.dropNotAllowed
22683         );
22684     },
22685
22686     /**
22687      * @hide
22688      */
22689     notifyOver : function(dd, e, data)
22690     {
22691         this.valid = true;
22692         this.fireEvent('over', dd, e, data);
22693         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22694             this.valid ? this.dropAllowed : this.dropNotAllowed
22695         );
22696     },
22697
22698     /**
22699      * @hide
22700      */
22701     notifyOut : function(dd, e, data)
22702     {
22703         this.fireEvent('out', dd, e, data);
22704         if(this.overClass){
22705             this.el.removeClass(this.overClass);
22706         }
22707     },
22708
22709     /**
22710      * @hide
22711      */
22712     notifyDrop : function(dd, e, data)
22713     {
22714         this.success = false;
22715         this.fireEvent('drop', dd, e, data);
22716         return this.success;
22717     }
22718 });/*
22719  * Based on:
22720  * Ext JS Library 1.1.1
22721  * Copyright(c) 2006-2007, Ext JS, LLC.
22722  *
22723  * Originally Released Under LGPL - original licence link has changed is not relivant.
22724  *
22725  * Fork - LGPL
22726  * <script type="text/javascript">
22727  */
22728
22729
22730 /**
22731  * @class Roo.dd.DragZone
22732  * @extends Roo.dd.DragSource
22733  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22734  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22735  * @constructor
22736  * @param {String/HTMLElement/Element} el The container element
22737  * @param {Object} config
22738  */
22739 Roo.dd.DragZone = function(el, config){
22740     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22741     if(this.containerScroll){
22742         Roo.dd.ScrollManager.register(this.el);
22743     }
22744 };
22745
22746 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22747     /**
22748      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22749      * for auto scrolling during drag operations.
22750      */
22751     /**
22752      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22753      * method after a failed drop (defaults to "c3daf9" - light blue)
22754      */
22755
22756     /**
22757      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22758      * for a valid target to drag based on the mouse down. Override this method
22759      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22760      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22761      * @param {EventObject} e The mouse down event
22762      * @return {Object} The dragData
22763      */
22764     getDragData : function(e){
22765         return Roo.dd.Registry.getHandleFromEvent(e);
22766     },
22767     
22768     /**
22769      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22770      * this.dragData.ddel
22771      * @param {Number} x The x position of the click on the dragged object
22772      * @param {Number} y The y position of the click on the dragged object
22773      * @return {Boolean} true to continue the drag, false to cancel
22774      */
22775     onInitDrag : function(x, y){
22776         this.proxy.update(this.dragData.ddel.cloneNode(true));
22777         this.onStartDrag(x, y);
22778         return true;
22779     },
22780     
22781     /**
22782      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22783      */
22784     afterRepair : function(){
22785         if(Roo.enableFx){
22786             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22787         }
22788         this.dragging = false;
22789     },
22790
22791     /**
22792      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22793      * the XY of this.dragData.ddel
22794      * @param {EventObject} e The mouse up event
22795      * @return {Array} The xy location (e.g. [100, 200])
22796      */
22797     getRepairXY : function(e){
22798         return Roo.Element.fly(this.dragData.ddel).getXY();  
22799     }
22800 });/*
22801  * Based on:
22802  * Ext JS Library 1.1.1
22803  * Copyright(c) 2006-2007, Ext JS, LLC.
22804  *
22805  * Originally Released Under LGPL - original licence link has changed is not relivant.
22806  *
22807  * Fork - LGPL
22808  * <script type="text/javascript">
22809  */
22810 /**
22811  * @class Roo.dd.DropZone
22812  * @extends Roo.dd.DropTarget
22813  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22814  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22815  * @constructor
22816  * @param {String/HTMLElement/Element} el The container element
22817  * @param {Object} config
22818  */
22819 Roo.dd.DropZone = function(el, config){
22820     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22821 };
22822
22823 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22824     /**
22825      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22826      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22827      * provide your own custom lookup.
22828      * @param {Event} e The event
22829      * @return {Object} data The custom data
22830      */
22831     getTargetFromEvent : function(e){
22832         return Roo.dd.Registry.getTargetFromEvent(e);
22833     },
22834
22835     /**
22836      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22837      * that it has registered.  This method has no default implementation and should be overridden to provide
22838      * node-specific processing if necessary.
22839      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22840      * {@link #getTargetFromEvent} for this node)
22841      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22842      * @param {Event} e The event
22843      * @param {Object} data An object containing arbitrary data supplied by the drag source
22844      */
22845     onNodeEnter : function(n, dd, e, data){
22846         
22847     },
22848
22849     /**
22850      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22851      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22852      * overridden to provide the proper feedback.
22853      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22854      * {@link #getTargetFromEvent} for this node)
22855      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22856      * @param {Event} e The event
22857      * @param {Object} data An object containing arbitrary data supplied by the drag source
22858      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22859      * underlying {@link Roo.dd.StatusProxy} can be updated
22860      */
22861     onNodeOver : function(n, dd, e, data){
22862         return this.dropAllowed;
22863     },
22864
22865     /**
22866      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22867      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22868      * node-specific processing if necessary.
22869      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22870      * {@link #getTargetFromEvent} for this node)
22871      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22872      * @param {Event} e The event
22873      * @param {Object} data An object containing arbitrary data supplied by the drag source
22874      */
22875     onNodeOut : function(n, dd, e, data){
22876         
22877     },
22878
22879     /**
22880      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22881      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22882      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22883      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22884      * {@link #getTargetFromEvent} for this node)
22885      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22886      * @param {Event} e The event
22887      * @param {Object} data An object containing arbitrary data supplied by the drag source
22888      * @return {Boolean} True if the drop was valid, else false
22889      */
22890     onNodeDrop : function(n, dd, e, data){
22891         return false;
22892     },
22893
22894     /**
22895      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22896      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22897      * it should be overridden to provide the proper feedback if necessary.
22898      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22899      * @param {Event} e The event
22900      * @param {Object} data An object containing arbitrary data supplied by the drag source
22901      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22902      * underlying {@link Roo.dd.StatusProxy} can be updated
22903      */
22904     onContainerOver : function(dd, e, data){
22905         return this.dropNotAllowed;
22906     },
22907
22908     /**
22909      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22910      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22911      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22912      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22913      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22914      * @param {Event} e The event
22915      * @param {Object} data An object containing arbitrary data supplied by the drag source
22916      * @return {Boolean} True if the drop was valid, else false
22917      */
22918     onContainerDrop : function(dd, e, data){
22919         return false;
22920     },
22921
22922     /**
22923      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22924      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22925      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22926      * you should override this method and provide a custom implementation.
22927      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22928      * @param {Event} e The event
22929      * @param {Object} data An object containing arbitrary data supplied by the drag source
22930      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22931      * underlying {@link Roo.dd.StatusProxy} can be updated
22932      */
22933     notifyEnter : function(dd, e, data){
22934         return this.dropNotAllowed;
22935     },
22936
22937     /**
22938      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22939      * This method will be called on every mouse movement while the drag source is over the drop zone.
22940      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22941      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22942      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22943      * registered node, it will call {@link #onContainerOver}.
22944      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22945      * @param {Event} e The event
22946      * @param {Object} data An object containing arbitrary data supplied by the drag source
22947      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22948      * underlying {@link Roo.dd.StatusProxy} can be updated
22949      */
22950     notifyOver : function(dd, e, data){
22951         var n = this.getTargetFromEvent(e);
22952         if(!n){ // not over valid drop target
22953             if(this.lastOverNode){
22954                 this.onNodeOut(this.lastOverNode, dd, e, data);
22955                 this.lastOverNode = null;
22956             }
22957             return this.onContainerOver(dd, e, data);
22958         }
22959         if(this.lastOverNode != n){
22960             if(this.lastOverNode){
22961                 this.onNodeOut(this.lastOverNode, dd, e, data);
22962             }
22963             this.onNodeEnter(n, dd, e, data);
22964             this.lastOverNode = n;
22965         }
22966         return this.onNodeOver(n, dd, e, data);
22967     },
22968
22969     /**
22970      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22971      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22972      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22973      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22974      * @param {Event} e The event
22975      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22976      */
22977     notifyOut : function(dd, e, data){
22978         if(this.lastOverNode){
22979             this.onNodeOut(this.lastOverNode, dd, e, data);
22980             this.lastOverNode = null;
22981         }
22982     },
22983
22984     /**
22985      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22986      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22987      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22988      * otherwise it will call {@link #onContainerDrop}.
22989      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22990      * @param {Event} e The event
22991      * @param {Object} data An object containing arbitrary data supplied by the drag source
22992      * @return {Boolean} True if the drop was valid, else false
22993      */
22994     notifyDrop : function(dd, e, data){
22995         if(this.lastOverNode){
22996             this.onNodeOut(this.lastOverNode, dd, e, data);
22997             this.lastOverNode = null;
22998         }
22999         var n = this.getTargetFromEvent(e);
23000         return n ?
23001             this.onNodeDrop(n, dd, e, data) :
23002             this.onContainerDrop(dd, e, data);
23003     },
23004
23005     // private
23006     triggerCacheRefresh : function(){
23007         Roo.dd.DDM.refreshCache(this.groups);
23008     }  
23009 });/*
23010  * Based on:
23011  * Ext JS Library 1.1.1
23012  * Copyright(c) 2006-2007, Ext JS, LLC.
23013  *
23014  * Originally Released Under LGPL - original licence link has changed is not relivant.
23015  *
23016  * Fork - LGPL
23017  * <script type="text/javascript">
23018  */
23019
23020
23021 /**
23022  * @class Roo.data.SortTypes
23023  * @singleton
23024  * Defines the default sorting (casting?) comparison functions used when sorting data.
23025  */
23026 Roo.data.SortTypes = {
23027     /**
23028      * Default sort that does nothing
23029      * @param {Mixed} s The value being converted
23030      * @return {Mixed} The comparison value
23031      */
23032     none : function(s){
23033         return s;
23034     },
23035     
23036     /**
23037      * The regular expression used to strip tags
23038      * @type {RegExp}
23039      * @property
23040      */
23041     stripTagsRE : /<\/?[^>]+>/gi,
23042     
23043     /**
23044      * Strips all HTML tags to sort on text only
23045      * @param {Mixed} s The value being converted
23046      * @return {String} The comparison value
23047      */
23048     asText : function(s){
23049         return String(s).replace(this.stripTagsRE, "");
23050     },
23051     
23052     /**
23053      * Strips all HTML tags to sort on text only - Case insensitive
23054      * @param {Mixed} s The value being converted
23055      * @return {String} The comparison value
23056      */
23057     asUCText : function(s){
23058         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23059     },
23060     
23061     /**
23062      * Case insensitive string
23063      * @param {Mixed} s The value being converted
23064      * @return {String} The comparison value
23065      */
23066     asUCString : function(s) {
23067         return String(s).toUpperCase();
23068     },
23069     
23070     /**
23071      * Date sorting
23072      * @param {Mixed} s The value being converted
23073      * @return {Number} The comparison value
23074      */
23075     asDate : function(s) {
23076         if(!s){
23077             return 0;
23078         }
23079         if(s instanceof Date){
23080             return s.getTime();
23081         }
23082         return Date.parse(String(s));
23083     },
23084     
23085     /**
23086      * Float sorting
23087      * @param {Mixed} s The value being converted
23088      * @return {Float} The comparison value
23089      */
23090     asFloat : function(s) {
23091         var val = parseFloat(String(s).replace(/,/g, ""));
23092         if(isNaN(val)) {
23093             val = 0;
23094         }
23095         return val;
23096     },
23097     
23098     /**
23099      * Integer sorting
23100      * @param {Mixed} s The value being converted
23101      * @return {Number} The comparison value
23102      */
23103     asInt : function(s) {
23104         var val = parseInt(String(s).replace(/,/g, ""));
23105         if(isNaN(val)) {
23106             val = 0;
23107         }
23108         return val;
23109     }
23110 };/*
23111  * Based on:
23112  * Ext JS Library 1.1.1
23113  * Copyright(c) 2006-2007, Ext JS, LLC.
23114  *
23115  * Originally Released Under LGPL - original licence link has changed is not relivant.
23116  *
23117  * Fork - LGPL
23118  * <script type="text/javascript">
23119  */
23120
23121 /**
23122 * @class Roo.data.Record
23123  * Instances of this class encapsulate both record <em>definition</em> information, and record
23124  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23125  * to access Records cached in an {@link Roo.data.Store} object.<br>
23126  * <p>
23127  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23128  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23129  * objects.<br>
23130  * <p>
23131  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23132  * @constructor
23133  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23134  * {@link #create}. The parameters are the same.
23135  * @param {Array} data An associative Array of data values keyed by the field name.
23136  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23137  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23138  * not specified an integer id is generated.
23139  */
23140 Roo.data.Record = function(data, id){
23141     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23142     this.data = data;
23143 };
23144
23145 /**
23146  * Generate a constructor for a specific record layout.
23147  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23148  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23149  * Each field definition object may contain the following properties: <ul>
23150  * <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,
23151  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23152  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23153  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23154  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23155  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23156  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23157  * this may be omitted.</p></li>
23158  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23159  * <ul><li>auto (Default, implies no conversion)</li>
23160  * <li>string</li>
23161  * <li>int</li>
23162  * <li>float</li>
23163  * <li>boolean</li>
23164  * <li>date</li></ul></p></li>
23165  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23166  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23167  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23168  * by the Reader into an object that will be stored in the Record. It is passed the
23169  * following parameters:<ul>
23170  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23171  * </ul></p></li>
23172  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23173  * </ul>
23174  * <br>usage:<br><pre><code>
23175 var TopicRecord = Roo.data.Record.create(
23176     {name: 'title', mapping: 'topic_title'},
23177     {name: 'author', mapping: 'username'},
23178     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23179     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23180     {name: 'lastPoster', mapping: 'user2'},
23181     {name: 'excerpt', mapping: 'post_text'}
23182 );
23183
23184 var myNewRecord = new TopicRecord({
23185     title: 'Do my job please',
23186     author: 'noobie',
23187     totalPosts: 1,
23188     lastPost: new Date(),
23189     lastPoster: 'Animal',
23190     excerpt: 'No way dude!'
23191 });
23192 myStore.add(myNewRecord);
23193 </code></pre>
23194  * @method create
23195  * @static
23196  */
23197 Roo.data.Record.create = function(o){
23198     var f = function(){
23199         f.superclass.constructor.apply(this, arguments);
23200     };
23201     Roo.extend(f, Roo.data.Record);
23202     var p = f.prototype;
23203     p.fields = new Roo.util.MixedCollection(false, function(field){
23204         return field.name;
23205     });
23206     for(var i = 0, len = o.length; i < len; i++){
23207         p.fields.add(new Roo.data.Field(o[i]));
23208     }
23209     f.getField = function(name){
23210         return p.fields.get(name);  
23211     };
23212     return f;
23213 };
23214
23215 Roo.data.Record.AUTO_ID = 1000;
23216 Roo.data.Record.EDIT = 'edit';
23217 Roo.data.Record.REJECT = 'reject';
23218 Roo.data.Record.COMMIT = 'commit';
23219
23220 Roo.data.Record.prototype = {
23221     /**
23222      * Readonly flag - true if this record has been modified.
23223      * @type Boolean
23224      */
23225     dirty : false,
23226     editing : false,
23227     error: null,
23228     modified: null,
23229
23230     // private
23231     join : function(store){
23232         this.store = store;
23233     },
23234
23235     /**
23236      * Set the named field to the specified value.
23237      * @param {String} name The name of the field to set.
23238      * @param {Object} value The value to set the field to.
23239      */
23240     set : function(name, value){
23241         if(this.data[name] == value){
23242             return;
23243         }
23244         this.dirty = true;
23245         if(!this.modified){
23246             this.modified = {};
23247         }
23248         if(typeof this.modified[name] == 'undefined'){
23249             this.modified[name] = this.data[name];
23250         }
23251         this.data[name] = value;
23252         if(!this.editing && this.store){
23253             this.store.afterEdit(this);
23254         }       
23255     },
23256
23257     /**
23258      * Get the value of the named field.
23259      * @param {String} name The name of the field to get the value of.
23260      * @return {Object} The value of the field.
23261      */
23262     get : function(name){
23263         return this.data[name]; 
23264     },
23265
23266     // private
23267     beginEdit : function(){
23268         this.editing = true;
23269         this.modified = {}; 
23270     },
23271
23272     // private
23273     cancelEdit : function(){
23274         this.editing = false;
23275         delete this.modified;
23276     },
23277
23278     // private
23279     endEdit : function(){
23280         this.editing = false;
23281         if(this.dirty && this.store){
23282             this.store.afterEdit(this);
23283         }
23284     },
23285
23286     /**
23287      * Usually called by the {@link Roo.data.Store} which owns the Record.
23288      * Rejects all changes made to the Record since either creation, or the last commit operation.
23289      * Modified fields are reverted to their original values.
23290      * <p>
23291      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23292      * of reject operations.
23293      */
23294     reject : function(){
23295         var m = this.modified;
23296         for(var n in m){
23297             if(typeof m[n] != "function"){
23298                 this.data[n] = m[n];
23299             }
23300         }
23301         this.dirty = false;
23302         delete this.modified;
23303         this.editing = false;
23304         if(this.store){
23305             this.store.afterReject(this);
23306         }
23307     },
23308
23309     /**
23310      * Usually called by the {@link Roo.data.Store} which owns the Record.
23311      * Commits all changes made to the Record since either creation, or the last commit operation.
23312      * <p>
23313      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23314      * of commit operations.
23315      */
23316     commit : function(){
23317         this.dirty = false;
23318         delete this.modified;
23319         this.editing = false;
23320         if(this.store){
23321             this.store.afterCommit(this);
23322         }
23323     },
23324
23325     // private
23326     hasError : function(){
23327         return this.error != null;
23328     },
23329
23330     // private
23331     clearError : function(){
23332         this.error = null;
23333     },
23334
23335     /**
23336      * Creates a copy of this record.
23337      * @param {String} id (optional) A new record id if you don't want to use this record's id
23338      * @return {Record}
23339      */
23340     copy : function(newId) {
23341         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23342     }
23343 };/*
23344  * Based on:
23345  * Ext JS Library 1.1.1
23346  * Copyright(c) 2006-2007, Ext JS, LLC.
23347  *
23348  * Originally Released Under LGPL - original licence link has changed is not relivant.
23349  *
23350  * Fork - LGPL
23351  * <script type="text/javascript">
23352  */
23353
23354
23355
23356 /**
23357  * @class Roo.data.Store
23358  * @extends Roo.util.Observable
23359  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23360  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23361  * <p>
23362  * 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
23363  * has no knowledge of the format of the data returned by the Proxy.<br>
23364  * <p>
23365  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23366  * instances from the data object. These records are cached and made available through accessor functions.
23367  * @constructor
23368  * Creates a new Store.
23369  * @param {Object} config A config object containing the objects needed for the Store to access data,
23370  * and read the data into Records.
23371  */
23372 Roo.data.Store = function(config){
23373     this.data = new Roo.util.MixedCollection(false);
23374     this.data.getKey = function(o){
23375         return o.id;
23376     };
23377     this.baseParams = {};
23378     // private
23379     this.paramNames = {
23380         "start" : "start",
23381         "limit" : "limit",
23382         "sort" : "sort",
23383         "dir" : "dir",
23384         "multisort" : "_multisort"
23385     };
23386
23387     if(config && config.data){
23388         this.inlineData = config.data;
23389         delete config.data;
23390     }
23391
23392     Roo.apply(this, config);
23393     
23394     if(this.reader){ // reader passed
23395         this.reader = Roo.factory(this.reader, Roo.data);
23396         this.reader.xmodule = this.xmodule || false;
23397         if(!this.recordType){
23398             this.recordType = this.reader.recordType;
23399         }
23400         if(this.reader.onMetaChange){
23401             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23402         }
23403     }
23404
23405     if(this.recordType){
23406         this.fields = this.recordType.prototype.fields;
23407     }
23408     this.modified = [];
23409
23410     this.addEvents({
23411         /**
23412          * @event datachanged
23413          * Fires when the data cache has changed, and a widget which is using this Store
23414          * as a Record cache should refresh its view.
23415          * @param {Store} this
23416          */
23417         datachanged : true,
23418         /**
23419          * @event metachange
23420          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23421          * @param {Store} this
23422          * @param {Object} meta The JSON metadata
23423          */
23424         metachange : true,
23425         /**
23426          * @event add
23427          * Fires when Records have been added to the Store
23428          * @param {Store} this
23429          * @param {Roo.data.Record[]} records The array of Records added
23430          * @param {Number} index The index at which the record(s) were added
23431          */
23432         add : true,
23433         /**
23434          * @event remove
23435          * Fires when a Record has been removed from the Store
23436          * @param {Store} this
23437          * @param {Roo.data.Record} record The Record that was removed
23438          * @param {Number} index The index at which the record was removed
23439          */
23440         remove : true,
23441         /**
23442          * @event update
23443          * Fires when a Record has been updated
23444          * @param {Store} this
23445          * @param {Roo.data.Record} record The Record that was updated
23446          * @param {String} operation The update operation being performed.  Value may be one of:
23447          * <pre><code>
23448  Roo.data.Record.EDIT
23449  Roo.data.Record.REJECT
23450  Roo.data.Record.COMMIT
23451          * </code></pre>
23452          */
23453         update : true,
23454         /**
23455          * @event clear
23456          * Fires when the data cache has been cleared.
23457          * @param {Store} this
23458          */
23459         clear : true,
23460         /**
23461          * @event beforeload
23462          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23463          * the load action will be canceled.
23464          * @param {Store} this
23465          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23466          */
23467         beforeload : true,
23468         /**
23469          * @event beforeloadadd
23470          * Fires after a new set of Records has been loaded.
23471          * @param {Store} this
23472          * @param {Roo.data.Record[]} records The Records that were loaded
23473          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23474          */
23475         beforeloadadd : true,
23476         /**
23477          * @event load
23478          * Fires after a new set of Records has been loaded, before they are added to the store.
23479          * @param {Store} this
23480          * @param {Roo.data.Record[]} records The Records that were loaded
23481          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23482          * @params {Object} return from reader
23483          */
23484         load : true,
23485         /**
23486          * @event loadexception
23487          * Fires if an exception occurs in the Proxy during loading.
23488          * Called with the signature of the Proxy's "loadexception" event.
23489          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23490          * 
23491          * @param {Proxy} 
23492          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23493          * @param {Object} load options 
23494          * @param {Object} jsonData from your request (normally this contains the Exception)
23495          */
23496         loadexception : true
23497     });
23498     
23499     if(this.proxy){
23500         this.proxy = Roo.factory(this.proxy, Roo.data);
23501         this.proxy.xmodule = this.xmodule || false;
23502         this.relayEvents(this.proxy,  ["loadexception"]);
23503     }
23504     this.sortToggle = {};
23505     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23506
23507     Roo.data.Store.superclass.constructor.call(this);
23508
23509     if(this.inlineData){
23510         this.loadData(this.inlineData);
23511         delete this.inlineData;
23512     }
23513 };
23514
23515 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23516      /**
23517     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23518     * without a remote query - used by combo/forms at present.
23519     */
23520     
23521     /**
23522     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23523     */
23524     /**
23525     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23526     */
23527     /**
23528     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23529     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23530     */
23531     /**
23532     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23533     * on any HTTP request
23534     */
23535     /**
23536     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23537     */
23538     /**
23539     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23540     */
23541     multiSort: false,
23542     /**
23543     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23544     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23545     */
23546     remoteSort : false,
23547
23548     /**
23549     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23550      * loaded or when a record is removed. (defaults to false).
23551     */
23552     pruneModifiedRecords : false,
23553
23554     // private
23555     lastOptions : null,
23556
23557     /**
23558      * Add Records to the Store and fires the add event.
23559      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23560      */
23561     add : function(records){
23562         records = [].concat(records);
23563         for(var i = 0, len = records.length; i < len; i++){
23564             records[i].join(this);
23565         }
23566         var index = this.data.length;
23567         this.data.addAll(records);
23568         this.fireEvent("add", this, records, index);
23569     },
23570
23571     /**
23572      * Remove a Record from the Store and fires the remove event.
23573      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23574      */
23575     remove : function(record){
23576         var index = this.data.indexOf(record);
23577         this.data.removeAt(index);
23578  
23579         if(this.pruneModifiedRecords){
23580             this.modified.remove(record);
23581         }
23582         this.fireEvent("remove", this, record, index);
23583     },
23584
23585     /**
23586      * Remove all Records from the Store and fires the clear event.
23587      */
23588     removeAll : function(){
23589         this.data.clear();
23590         if(this.pruneModifiedRecords){
23591             this.modified = [];
23592         }
23593         this.fireEvent("clear", this);
23594     },
23595
23596     /**
23597      * Inserts Records to the Store at the given index and fires the add event.
23598      * @param {Number} index The start index at which to insert the passed Records.
23599      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23600      */
23601     insert : function(index, records){
23602         records = [].concat(records);
23603         for(var i = 0, len = records.length; i < len; i++){
23604             this.data.insert(index, records[i]);
23605             records[i].join(this);
23606         }
23607         this.fireEvent("add", this, records, index);
23608     },
23609
23610     /**
23611      * Get the index within the cache of the passed Record.
23612      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23613      * @return {Number} The index of the passed Record. Returns -1 if not found.
23614      */
23615     indexOf : function(record){
23616         return this.data.indexOf(record);
23617     },
23618
23619     /**
23620      * Get the index within the cache of the Record with the passed id.
23621      * @param {String} id The id of the Record to find.
23622      * @return {Number} The index of the Record. Returns -1 if not found.
23623      */
23624     indexOfId : function(id){
23625         return this.data.indexOfKey(id);
23626     },
23627
23628     /**
23629      * Get the Record with the specified id.
23630      * @param {String} id The id of the Record to find.
23631      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23632      */
23633     getById : function(id){
23634         return this.data.key(id);
23635     },
23636
23637     /**
23638      * Get the Record at the specified index.
23639      * @param {Number} index The index of the Record to find.
23640      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23641      */
23642     getAt : function(index){
23643         return this.data.itemAt(index);
23644     },
23645
23646     /**
23647      * Returns a range of Records between specified indices.
23648      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23649      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23650      * @return {Roo.data.Record[]} An array of Records
23651      */
23652     getRange : function(start, end){
23653         return this.data.getRange(start, end);
23654     },
23655
23656     // private
23657     storeOptions : function(o){
23658         o = Roo.apply({}, o);
23659         delete o.callback;
23660         delete o.scope;
23661         this.lastOptions = o;
23662     },
23663
23664     /**
23665      * Loads the Record cache from the configured Proxy using the configured Reader.
23666      * <p>
23667      * If using remote paging, then the first load call must specify the <em>start</em>
23668      * and <em>limit</em> properties in the options.params property to establish the initial
23669      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23670      * <p>
23671      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23672      * and this call will return before the new data has been loaded. Perform any post-processing
23673      * in a callback function, or in a "load" event handler.</strong>
23674      * <p>
23675      * @param {Object} options An object containing properties which control loading options:<ul>
23676      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23677      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23678      * passed the following arguments:<ul>
23679      * <li>r : Roo.data.Record[]</li>
23680      * <li>options: Options object from the load call</li>
23681      * <li>success: Boolean success indicator</li></ul></li>
23682      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23683      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23684      * </ul>
23685      */
23686     load : function(options){
23687         options = options || {};
23688         if(this.fireEvent("beforeload", this, options) !== false){
23689             this.storeOptions(options);
23690             var p = Roo.apply(options.params || {}, this.baseParams);
23691             // if meta was not loaded from remote source.. try requesting it.
23692             if (!this.reader.metaFromRemote) {
23693                 p._requestMeta = 1;
23694             }
23695             if(this.sortInfo && this.remoteSort){
23696                 var pn = this.paramNames;
23697                 p[pn["sort"]] = this.sortInfo.field;
23698                 p[pn["dir"]] = this.sortInfo.direction;
23699             }
23700             if (this.multiSort) {
23701                 var pn = this.paramNames;
23702                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23703             }
23704             
23705             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23706         }
23707     },
23708
23709     /**
23710      * Reloads the Record cache from the configured Proxy using the configured Reader and
23711      * the options from the last load operation performed.
23712      * @param {Object} options (optional) An object containing properties which may override the options
23713      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23714      * the most recently used options are reused).
23715      */
23716     reload : function(options){
23717         this.load(Roo.applyIf(options||{}, this.lastOptions));
23718     },
23719
23720     // private
23721     // Called as a callback by the Reader during a load operation.
23722     loadRecords : function(o, options, success){
23723         if(!o || success === false){
23724             if(success !== false){
23725                 this.fireEvent("load", this, [], options, o);
23726             }
23727             if(options.callback){
23728                 options.callback.call(options.scope || this, [], options, false);
23729             }
23730             return;
23731         }
23732         // if data returned failure - throw an exception.
23733         if (o.success === false) {
23734             // show a message if no listener is registered.
23735             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23736                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23737             }
23738             // loadmask wil be hooked into this..
23739             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23740             return;
23741         }
23742         var r = o.records, t = o.totalRecords || r.length;
23743         
23744         this.fireEvent("beforeloadadd", this, r, options, o);
23745         
23746         if(!options || options.add !== true){
23747             if(this.pruneModifiedRecords){
23748                 this.modified = [];
23749             }
23750             for(var i = 0, len = r.length; i < len; i++){
23751                 r[i].join(this);
23752             }
23753             if(this.snapshot){
23754                 this.data = this.snapshot;
23755                 delete this.snapshot;
23756             }
23757             this.data.clear();
23758             this.data.addAll(r);
23759             this.totalLength = t;
23760             this.applySort();
23761             this.fireEvent("datachanged", this);
23762         }else{
23763             this.totalLength = Math.max(t, this.data.length+r.length);
23764             this.add(r);
23765         }
23766         
23767         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23768                 
23769             var e = new Roo.data.Record({});
23770
23771             e.set(this.parent.displayField, this.parent.emptyTitle);
23772             e.set(this.parent.valueField, '');
23773
23774             this.insert(0, e);
23775         }
23776             
23777         this.fireEvent("load", this, r, options, o);
23778         if(options.callback){
23779             options.callback.call(options.scope || this, r, options, true);
23780         }
23781     },
23782
23783
23784     /**
23785      * Loads data from a passed data block. A Reader which understands the format of the data
23786      * must have been configured in the constructor.
23787      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23788      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23789      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23790      */
23791     loadData : function(o, append){
23792         var r = this.reader.readRecords(o);
23793         this.loadRecords(r, {add: append}, true);
23794     },
23795     
23796      /**
23797      * using 'cn' the nested child reader read the child array into it's child stores.
23798      * @param {Object} rec The record with a 'children array
23799      */
23800     loadDataFromChildren : function(rec)
23801     {
23802         this.loadData(this.reader.toLoadData(rec));
23803     },
23804     
23805
23806     /**
23807      * Gets the number of cached records.
23808      * <p>
23809      * <em>If using paging, this may not be the total size of the dataset. If the data object
23810      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23811      * the data set size</em>
23812      */
23813     getCount : function(){
23814         return this.data.length || 0;
23815     },
23816
23817     /**
23818      * Gets the total number of records in the dataset as returned by the server.
23819      * <p>
23820      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23821      * the dataset size</em>
23822      */
23823     getTotalCount : function(){
23824         return this.totalLength || 0;
23825     },
23826
23827     /**
23828      * Returns the sort state of the Store as an object with two properties:
23829      * <pre><code>
23830  field {String} The name of the field by which the Records are sorted
23831  direction {String} The sort order, "ASC" or "DESC"
23832      * </code></pre>
23833      */
23834     getSortState : function(){
23835         return this.sortInfo;
23836     },
23837
23838     // private
23839     applySort : function(){
23840         if(this.sortInfo && !this.remoteSort){
23841             var s = this.sortInfo, f = s.field;
23842             var st = this.fields.get(f).sortType;
23843             var fn = function(r1, r2){
23844                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23845                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23846             };
23847             this.data.sort(s.direction, fn);
23848             if(this.snapshot && this.snapshot != this.data){
23849                 this.snapshot.sort(s.direction, fn);
23850             }
23851         }
23852     },
23853
23854     /**
23855      * Sets the default sort column and order to be used by the next load operation.
23856      * @param {String} fieldName The name of the field to sort by.
23857      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23858      */
23859     setDefaultSort : function(field, dir){
23860         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23861     },
23862
23863     /**
23864      * Sort the Records.
23865      * If remote sorting is used, the sort is performed on the server, and the cache is
23866      * reloaded. If local sorting is used, the cache is sorted internally.
23867      * @param {String} fieldName The name of the field to sort by.
23868      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23869      */
23870     sort : function(fieldName, dir){
23871         var f = this.fields.get(fieldName);
23872         if(!dir){
23873             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23874             
23875             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23876                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23877             }else{
23878                 dir = f.sortDir;
23879             }
23880         }
23881         this.sortToggle[f.name] = dir;
23882         this.sortInfo = {field: f.name, direction: dir};
23883         if(!this.remoteSort){
23884             this.applySort();
23885             this.fireEvent("datachanged", this);
23886         }else{
23887             this.load(this.lastOptions);
23888         }
23889     },
23890
23891     /**
23892      * Calls the specified function for each of the Records in the cache.
23893      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23894      * Returning <em>false</em> aborts and exits the iteration.
23895      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23896      */
23897     each : function(fn, scope){
23898         this.data.each(fn, scope);
23899     },
23900
23901     /**
23902      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23903      * (e.g., during paging).
23904      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23905      */
23906     getModifiedRecords : function(){
23907         return this.modified;
23908     },
23909
23910     // private
23911     createFilterFn : function(property, value, anyMatch){
23912         if(!value.exec){ // not a regex
23913             value = String(value);
23914             if(value.length == 0){
23915                 return false;
23916             }
23917             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23918         }
23919         return function(r){
23920             return value.test(r.data[property]);
23921         };
23922     },
23923
23924     /**
23925      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23926      * @param {String} property A field on your records
23927      * @param {Number} start The record index to start at (defaults to 0)
23928      * @param {Number} end The last record index to include (defaults to length - 1)
23929      * @return {Number} The sum
23930      */
23931     sum : function(property, start, end){
23932         var rs = this.data.items, v = 0;
23933         start = start || 0;
23934         end = (end || end === 0) ? end : rs.length-1;
23935
23936         for(var i = start; i <= end; i++){
23937             v += (rs[i].data[property] || 0);
23938         }
23939         return v;
23940     },
23941
23942     /**
23943      * Filter the records by a specified property.
23944      * @param {String} field A field on your records
23945      * @param {String/RegExp} value Either a string that the field
23946      * should start with or a RegExp to test against the field
23947      * @param {Boolean} anyMatch True to match any part not just the beginning
23948      */
23949     filter : function(property, value, anyMatch){
23950         var fn = this.createFilterFn(property, value, anyMatch);
23951         return fn ? this.filterBy(fn) : this.clearFilter();
23952     },
23953
23954     /**
23955      * Filter by a function. The specified function will be called with each
23956      * record in this data source. If the function returns true the record is included,
23957      * otherwise it is filtered.
23958      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23959      * @param {Object} scope (optional) The scope of the function (defaults to this)
23960      */
23961     filterBy : function(fn, scope){
23962         this.snapshot = this.snapshot || this.data;
23963         this.data = this.queryBy(fn, scope||this);
23964         this.fireEvent("datachanged", this);
23965     },
23966
23967     /**
23968      * Query the records by a specified property.
23969      * @param {String} field A field on your records
23970      * @param {String/RegExp} value Either a string that the field
23971      * should start with or a RegExp to test against the field
23972      * @param {Boolean} anyMatch True to match any part not just the beginning
23973      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23974      */
23975     query : function(property, value, anyMatch){
23976         var fn = this.createFilterFn(property, value, anyMatch);
23977         return fn ? this.queryBy(fn) : this.data.clone();
23978     },
23979
23980     /**
23981      * Query by a function. The specified function will be called with each
23982      * record in this data source. If the function returns true the record is included
23983      * in the results.
23984      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23985      * @param {Object} scope (optional) The scope of the function (defaults to this)
23986       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23987      **/
23988     queryBy : function(fn, scope){
23989         var data = this.snapshot || this.data;
23990         return data.filterBy(fn, scope||this);
23991     },
23992
23993     /**
23994      * Collects unique values for a particular dataIndex from this store.
23995      * @param {String} dataIndex The property to collect
23996      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
23997      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
23998      * @return {Array} An array of the unique values
23999      **/
24000     collect : function(dataIndex, allowNull, bypassFilter){
24001         var d = (bypassFilter === true && this.snapshot) ?
24002                 this.snapshot.items : this.data.items;
24003         var v, sv, r = [], l = {};
24004         for(var i = 0, len = d.length; i < len; i++){
24005             v = d[i].data[dataIndex];
24006             sv = String(v);
24007             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24008                 l[sv] = true;
24009                 r[r.length] = v;
24010             }
24011         }
24012         return r;
24013     },
24014
24015     /**
24016      * Revert to a view of the Record cache with no filtering applied.
24017      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24018      */
24019     clearFilter : function(suppressEvent){
24020         if(this.snapshot && this.snapshot != this.data){
24021             this.data = this.snapshot;
24022             delete this.snapshot;
24023             if(suppressEvent !== true){
24024                 this.fireEvent("datachanged", this);
24025             }
24026         }
24027     },
24028
24029     // private
24030     afterEdit : function(record){
24031         if(this.modified.indexOf(record) == -1){
24032             this.modified.push(record);
24033         }
24034         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24035     },
24036     
24037     // private
24038     afterReject : function(record){
24039         this.modified.remove(record);
24040         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24041     },
24042
24043     // private
24044     afterCommit : function(record){
24045         this.modified.remove(record);
24046         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24047     },
24048
24049     /**
24050      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24051      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24052      */
24053     commitChanges : function(){
24054         var m = this.modified.slice(0);
24055         this.modified = [];
24056         for(var i = 0, len = m.length; i < len; i++){
24057             m[i].commit();
24058         }
24059     },
24060
24061     /**
24062      * Cancel outstanding changes on all changed records.
24063      */
24064     rejectChanges : function(){
24065         var m = this.modified.slice(0);
24066         this.modified = [];
24067         for(var i = 0, len = m.length; i < len; i++){
24068             m[i].reject();
24069         }
24070     },
24071
24072     onMetaChange : function(meta, rtype, o){
24073         this.recordType = rtype;
24074         this.fields = rtype.prototype.fields;
24075         delete this.snapshot;
24076         this.sortInfo = meta.sortInfo || this.sortInfo;
24077         this.modified = [];
24078         this.fireEvent('metachange', this, this.reader.meta);
24079     },
24080     
24081     moveIndex : function(data, type)
24082     {
24083         var index = this.indexOf(data);
24084         
24085         var newIndex = index + type;
24086         
24087         this.remove(data);
24088         
24089         this.insert(newIndex, data);
24090         
24091     }
24092 });/*
24093  * Based on:
24094  * Ext JS Library 1.1.1
24095  * Copyright(c) 2006-2007, Ext JS, LLC.
24096  *
24097  * Originally Released Under LGPL - original licence link has changed is not relivant.
24098  *
24099  * Fork - LGPL
24100  * <script type="text/javascript">
24101  */
24102
24103 /**
24104  * @class Roo.data.SimpleStore
24105  * @extends Roo.data.Store
24106  * Small helper class to make creating Stores from Array data easier.
24107  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24108  * @cfg {Array} fields An array of field definition objects, or field name strings.
24109  * @cfg {Object} an existing reader (eg. copied from another store)
24110  * @cfg {Array} data The multi-dimensional array of data
24111  * @constructor
24112  * @param {Object} config
24113  */
24114 Roo.data.SimpleStore = function(config)
24115 {
24116     Roo.data.SimpleStore.superclass.constructor.call(this, {
24117         isLocal : true,
24118         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24119                 id: config.id
24120             },
24121             Roo.data.Record.create(config.fields)
24122         ),
24123         proxy : new Roo.data.MemoryProxy(config.data)
24124     });
24125     this.load();
24126 };
24127 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24128  * Based on:
24129  * Ext JS Library 1.1.1
24130  * Copyright(c) 2006-2007, Ext JS, LLC.
24131  *
24132  * Originally Released Under LGPL - original licence link has changed is not relivant.
24133  *
24134  * Fork - LGPL
24135  * <script type="text/javascript">
24136  */
24137
24138 /**
24139 /**
24140  * @extends Roo.data.Store
24141  * @class Roo.data.JsonStore
24142  * Small helper class to make creating Stores for JSON data easier. <br/>
24143 <pre><code>
24144 var store = new Roo.data.JsonStore({
24145     url: 'get-images.php',
24146     root: 'images',
24147     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24148 });
24149 </code></pre>
24150  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24151  * JsonReader and HttpProxy (unless inline data is provided).</b>
24152  * @cfg {Array} fields An array of field definition objects, or field name strings.
24153  * @constructor
24154  * @param {Object} config
24155  */
24156 Roo.data.JsonStore = function(c){
24157     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24158         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24159         reader: new Roo.data.JsonReader(c, c.fields)
24160     }));
24161 };
24162 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24163  * Based on:
24164  * Ext JS Library 1.1.1
24165  * Copyright(c) 2006-2007, Ext JS, LLC.
24166  *
24167  * Originally Released Under LGPL - original licence link has changed is not relivant.
24168  *
24169  * Fork - LGPL
24170  * <script type="text/javascript">
24171  */
24172
24173  
24174 Roo.data.Field = function(config){
24175     if(typeof config == "string"){
24176         config = {name: config};
24177     }
24178     Roo.apply(this, config);
24179     
24180     if(!this.type){
24181         this.type = "auto";
24182     }
24183     
24184     var st = Roo.data.SortTypes;
24185     // named sortTypes are supported, here we look them up
24186     if(typeof this.sortType == "string"){
24187         this.sortType = st[this.sortType];
24188     }
24189     
24190     // set default sortType for strings and dates
24191     if(!this.sortType){
24192         switch(this.type){
24193             case "string":
24194                 this.sortType = st.asUCString;
24195                 break;
24196             case "date":
24197                 this.sortType = st.asDate;
24198                 break;
24199             default:
24200                 this.sortType = st.none;
24201         }
24202     }
24203
24204     // define once
24205     var stripRe = /[\$,%]/g;
24206
24207     // prebuilt conversion function for this field, instead of
24208     // switching every time we're reading a value
24209     if(!this.convert){
24210         var cv, dateFormat = this.dateFormat;
24211         switch(this.type){
24212             case "":
24213             case "auto":
24214             case undefined:
24215                 cv = function(v){ return v; };
24216                 break;
24217             case "string":
24218                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24219                 break;
24220             case "int":
24221                 cv = function(v){
24222                     return v !== undefined && v !== null && v !== '' ?
24223                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24224                     };
24225                 break;
24226             case "float":
24227                 cv = function(v){
24228                     return v !== undefined && v !== null && v !== '' ?
24229                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24230                     };
24231                 break;
24232             case "bool":
24233             case "boolean":
24234                 cv = function(v){ return v === true || v === "true" || v == 1; };
24235                 break;
24236             case "date":
24237                 cv = function(v){
24238                     if(!v){
24239                         return '';
24240                     }
24241                     if(v instanceof Date){
24242                         return v;
24243                     }
24244                     if(dateFormat){
24245                         if(dateFormat == "timestamp"){
24246                             return new Date(v*1000);
24247                         }
24248                         return Date.parseDate(v, dateFormat);
24249                     }
24250                     var parsed = Date.parse(v);
24251                     return parsed ? new Date(parsed) : null;
24252                 };
24253              break;
24254             
24255         }
24256         this.convert = cv;
24257     }
24258 };
24259
24260 Roo.data.Field.prototype = {
24261     dateFormat: null,
24262     defaultValue: "",
24263     mapping: null,
24264     sortType : null,
24265     sortDir : "ASC"
24266 };/*
24267  * Based on:
24268  * Ext JS Library 1.1.1
24269  * Copyright(c) 2006-2007, Ext JS, LLC.
24270  *
24271  * Originally Released Under LGPL - original licence link has changed is not relivant.
24272  *
24273  * Fork - LGPL
24274  * <script type="text/javascript">
24275  */
24276  
24277 // Base class for reading structured data from a data source.  This class is intended to be
24278 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24279
24280 /**
24281  * @class Roo.data.DataReader
24282  * Base class for reading structured data from a data source.  This class is intended to be
24283  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24284  */
24285
24286 Roo.data.DataReader = function(meta, recordType){
24287     
24288     this.meta = meta;
24289     
24290     this.recordType = recordType instanceof Array ? 
24291         Roo.data.Record.create(recordType) : recordType;
24292 };
24293
24294 Roo.data.DataReader.prototype = {
24295     
24296     
24297     readerType : 'Data',
24298      /**
24299      * Create an empty record
24300      * @param {Object} data (optional) - overlay some values
24301      * @return {Roo.data.Record} record created.
24302      */
24303     newRow :  function(d) {
24304         var da =  {};
24305         this.recordType.prototype.fields.each(function(c) {
24306             switch( c.type) {
24307                 case 'int' : da[c.name] = 0; break;
24308                 case 'date' : da[c.name] = new Date(); break;
24309                 case 'float' : da[c.name] = 0.0; break;
24310                 case 'boolean' : da[c.name] = false; break;
24311                 default : da[c.name] = ""; break;
24312             }
24313             
24314         });
24315         return new this.recordType(Roo.apply(da, d));
24316     }
24317     
24318     
24319 };/*
24320  * Based on:
24321  * Ext JS Library 1.1.1
24322  * Copyright(c) 2006-2007, Ext JS, LLC.
24323  *
24324  * Originally Released Under LGPL - original licence link has changed is not relivant.
24325  *
24326  * Fork - LGPL
24327  * <script type="text/javascript">
24328  */
24329
24330 /**
24331  * @class Roo.data.DataProxy
24332  * @extends Roo.data.Observable
24333  * This class is an abstract base class for implementations which provide retrieval of
24334  * unformatted data objects.<br>
24335  * <p>
24336  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24337  * (of the appropriate type which knows how to parse the data object) to provide a block of
24338  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24339  * <p>
24340  * Custom implementations must implement the load method as described in
24341  * {@link Roo.data.HttpProxy#load}.
24342  */
24343 Roo.data.DataProxy = function(){
24344     this.addEvents({
24345         /**
24346          * @event beforeload
24347          * Fires before a network request is made to retrieve a data object.
24348          * @param {Object} This DataProxy object.
24349          * @param {Object} params The params parameter to the load function.
24350          */
24351         beforeload : true,
24352         /**
24353          * @event load
24354          * Fires before the load method's callback is called.
24355          * @param {Object} This DataProxy object.
24356          * @param {Object} o The data object.
24357          * @param {Object} arg The callback argument object passed to the load function.
24358          */
24359         load : true,
24360         /**
24361          * @event loadexception
24362          * Fires if an Exception occurs during data retrieval.
24363          * @param {Object} This DataProxy object.
24364          * @param {Object} o The data object.
24365          * @param {Object} arg The callback argument object passed to the load function.
24366          * @param {Object} e The Exception.
24367          */
24368         loadexception : true
24369     });
24370     Roo.data.DataProxy.superclass.constructor.call(this);
24371 };
24372
24373 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24374
24375     /**
24376      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24377      */
24378 /*
24379  * Based on:
24380  * Ext JS Library 1.1.1
24381  * Copyright(c) 2006-2007, Ext JS, LLC.
24382  *
24383  * Originally Released Under LGPL - original licence link has changed is not relivant.
24384  *
24385  * Fork - LGPL
24386  * <script type="text/javascript">
24387  */
24388 /**
24389  * @class Roo.data.MemoryProxy
24390  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24391  * to the Reader when its load method is called.
24392  * @constructor
24393  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24394  */
24395 Roo.data.MemoryProxy = function(data){
24396     if (data.data) {
24397         data = data.data;
24398     }
24399     Roo.data.MemoryProxy.superclass.constructor.call(this);
24400     this.data = data;
24401 };
24402
24403 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24404     
24405     /**
24406      * Load data from the requested source (in this case an in-memory
24407      * data object passed to the constructor), read the data object into
24408      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24409      * process that block using the passed callback.
24410      * @param {Object} params This parameter is not used by the MemoryProxy class.
24411      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24412      * object into a block of Roo.data.Records.
24413      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24414      * The function must be passed <ul>
24415      * <li>The Record block object</li>
24416      * <li>The "arg" argument from the load function</li>
24417      * <li>A boolean success indicator</li>
24418      * </ul>
24419      * @param {Object} scope The scope in which to call the callback
24420      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24421      */
24422     load : function(params, reader, callback, scope, arg){
24423         params = params || {};
24424         var result;
24425         try {
24426             result = reader.readRecords(params.data ? params.data :this.data);
24427         }catch(e){
24428             this.fireEvent("loadexception", this, arg, null, e);
24429             callback.call(scope, null, arg, false);
24430             return;
24431         }
24432         callback.call(scope, result, arg, true);
24433     },
24434     
24435     // private
24436     update : function(params, records){
24437         
24438     }
24439 });/*
24440  * Based on:
24441  * Ext JS Library 1.1.1
24442  * Copyright(c) 2006-2007, Ext JS, LLC.
24443  *
24444  * Originally Released Under LGPL - original licence link has changed is not relivant.
24445  *
24446  * Fork - LGPL
24447  * <script type="text/javascript">
24448  */
24449 /**
24450  * @class Roo.data.HttpProxy
24451  * @extends Roo.data.DataProxy
24452  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24453  * configured to reference a certain URL.<br><br>
24454  * <p>
24455  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24456  * from which the running page was served.<br><br>
24457  * <p>
24458  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24459  * <p>
24460  * Be aware that to enable the browser to parse an XML document, the server must set
24461  * the Content-Type header in the HTTP response to "text/xml".
24462  * @constructor
24463  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24464  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24465  * will be used to make the request.
24466  */
24467 Roo.data.HttpProxy = function(conn){
24468     Roo.data.HttpProxy.superclass.constructor.call(this);
24469     // is conn a conn config or a real conn?
24470     this.conn = conn;
24471     this.useAjax = !conn || !conn.events;
24472   
24473 };
24474
24475 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24476     // thse are take from connection...
24477     
24478     /**
24479      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24480      */
24481     /**
24482      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24483      * extra parameters to each request made by this object. (defaults to undefined)
24484      */
24485     /**
24486      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24487      *  to each request made by this object. (defaults to undefined)
24488      */
24489     /**
24490      * @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)
24491      */
24492     /**
24493      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24494      */
24495      /**
24496      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24497      * @type Boolean
24498      */
24499   
24500
24501     /**
24502      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24503      * @type Boolean
24504      */
24505     /**
24506      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24507      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24508      * a finer-grained basis than the DataProxy events.
24509      */
24510     getConnection : function(){
24511         return this.useAjax ? Roo.Ajax : this.conn;
24512     },
24513
24514     /**
24515      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24516      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24517      * process that block using the passed callback.
24518      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24519      * for the request to the remote server.
24520      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24521      * object into a block of Roo.data.Records.
24522      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24523      * The function must be passed <ul>
24524      * <li>The Record block object</li>
24525      * <li>The "arg" argument from the load function</li>
24526      * <li>A boolean success indicator</li>
24527      * </ul>
24528      * @param {Object} scope The scope in which to call the callback
24529      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24530      */
24531     load : function(params, reader, callback, scope, arg){
24532         if(this.fireEvent("beforeload", this, params) !== false){
24533             var  o = {
24534                 params : params || {},
24535                 request: {
24536                     callback : callback,
24537                     scope : scope,
24538                     arg : arg
24539                 },
24540                 reader: reader,
24541                 callback : this.loadResponse,
24542                 scope: this
24543             };
24544             if(this.useAjax){
24545                 Roo.applyIf(o, this.conn);
24546                 if(this.activeRequest){
24547                     Roo.Ajax.abort(this.activeRequest);
24548                 }
24549                 this.activeRequest = Roo.Ajax.request(o);
24550             }else{
24551                 this.conn.request(o);
24552             }
24553         }else{
24554             callback.call(scope||this, null, arg, false);
24555         }
24556     },
24557
24558     // private
24559     loadResponse : function(o, success, response){
24560         delete this.activeRequest;
24561         if(!success){
24562             this.fireEvent("loadexception", this, o, response);
24563             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24564             return;
24565         }
24566         var result;
24567         try {
24568             result = o.reader.read(response);
24569         }catch(e){
24570             this.fireEvent("loadexception", this, o, response, e);
24571             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24572             return;
24573         }
24574         
24575         this.fireEvent("load", this, o, o.request.arg);
24576         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24577     },
24578
24579     // private
24580     update : function(dataSet){
24581
24582     },
24583
24584     // private
24585     updateResponse : function(dataSet){
24586
24587     }
24588 });/*
24589  * Based on:
24590  * Ext JS Library 1.1.1
24591  * Copyright(c) 2006-2007, Ext JS, LLC.
24592  *
24593  * Originally Released Under LGPL - original licence link has changed is not relivant.
24594  *
24595  * Fork - LGPL
24596  * <script type="text/javascript">
24597  */
24598
24599 /**
24600  * @class Roo.data.ScriptTagProxy
24601  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24602  * other than the originating domain of the running page.<br><br>
24603  * <p>
24604  * <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
24605  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24606  * <p>
24607  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24608  * source code that is used as the source inside a &lt;script> tag.<br><br>
24609  * <p>
24610  * In order for the browser to process the returned data, the server must wrap the data object
24611  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24612  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24613  * depending on whether the callback name was passed:
24614  * <p>
24615  * <pre><code>
24616 boolean scriptTag = false;
24617 String cb = request.getParameter("callback");
24618 if (cb != null) {
24619     scriptTag = true;
24620     response.setContentType("text/javascript");
24621 } else {
24622     response.setContentType("application/x-json");
24623 }
24624 Writer out = response.getWriter();
24625 if (scriptTag) {
24626     out.write(cb + "(");
24627 }
24628 out.print(dataBlock.toJsonString());
24629 if (scriptTag) {
24630     out.write(");");
24631 }
24632 </pre></code>
24633  *
24634  * @constructor
24635  * @param {Object} config A configuration object.
24636  */
24637 Roo.data.ScriptTagProxy = function(config){
24638     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24639     Roo.apply(this, config);
24640     this.head = document.getElementsByTagName("head")[0];
24641 };
24642
24643 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24644
24645 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24646     /**
24647      * @cfg {String} url The URL from which to request the data object.
24648      */
24649     /**
24650      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24651      */
24652     timeout : 30000,
24653     /**
24654      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24655      * the server the name of the callback function set up by the load call to process the returned data object.
24656      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24657      * javascript output which calls this named function passing the data object as its only parameter.
24658      */
24659     callbackParam : "callback",
24660     /**
24661      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24662      * name to the request.
24663      */
24664     nocache : true,
24665
24666     /**
24667      * Load data from the configured URL, read the data object into
24668      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24669      * process that block using the passed callback.
24670      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24671      * for the request to the remote server.
24672      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24673      * object into a block of Roo.data.Records.
24674      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24675      * The function must be passed <ul>
24676      * <li>The Record block object</li>
24677      * <li>The "arg" argument from the load function</li>
24678      * <li>A boolean success indicator</li>
24679      * </ul>
24680      * @param {Object} scope The scope in which to call the callback
24681      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24682      */
24683     load : function(params, reader, callback, scope, arg){
24684         if(this.fireEvent("beforeload", this, params) !== false){
24685
24686             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24687
24688             var url = this.url;
24689             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24690             if(this.nocache){
24691                 url += "&_dc=" + (new Date().getTime());
24692             }
24693             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24694             var trans = {
24695                 id : transId,
24696                 cb : "stcCallback"+transId,
24697                 scriptId : "stcScript"+transId,
24698                 params : params,
24699                 arg : arg,
24700                 url : url,
24701                 callback : callback,
24702                 scope : scope,
24703                 reader : reader
24704             };
24705             var conn = this;
24706
24707             window[trans.cb] = function(o){
24708                 conn.handleResponse(o, trans);
24709             };
24710
24711             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24712
24713             if(this.autoAbort !== false){
24714                 this.abort();
24715             }
24716
24717             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24718
24719             var script = document.createElement("script");
24720             script.setAttribute("src", url);
24721             script.setAttribute("type", "text/javascript");
24722             script.setAttribute("id", trans.scriptId);
24723             this.head.appendChild(script);
24724
24725             this.trans = trans;
24726         }else{
24727             callback.call(scope||this, null, arg, false);
24728         }
24729     },
24730
24731     // private
24732     isLoading : function(){
24733         return this.trans ? true : false;
24734     },
24735
24736     /**
24737      * Abort the current server request.
24738      */
24739     abort : function(){
24740         if(this.isLoading()){
24741             this.destroyTrans(this.trans);
24742         }
24743     },
24744
24745     // private
24746     destroyTrans : function(trans, isLoaded){
24747         this.head.removeChild(document.getElementById(trans.scriptId));
24748         clearTimeout(trans.timeoutId);
24749         if(isLoaded){
24750             window[trans.cb] = undefined;
24751             try{
24752                 delete window[trans.cb];
24753             }catch(e){}
24754         }else{
24755             // if hasn't been loaded, wait for load to remove it to prevent script error
24756             window[trans.cb] = function(){
24757                 window[trans.cb] = undefined;
24758                 try{
24759                     delete window[trans.cb];
24760                 }catch(e){}
24761             };
24762         }
24763     },
24764
24765     // private
24766     handleResponse : function(o, trans){
24767         this.trans = false;
24768         this.destroyTrans(trans, true);
24769         var result;
24770         try {
24771             result = trans.reader.readRecords(o);
24772         }catch(e){
24773             this.fireEvent("loadexception", this, o, trans.arg, e);
24774             trans.callback.call(trans.scope||window, null, trans.arg, false);
24775             return;
24776         }
24777         this.fireEvent("load", this, o, trans.arg);
24778         trans.callback.call(trans.scope||window, result, trans.arg, true);
24779     },
24780
24781     // private
24782     handleFailure : function(trans){
24783         this.trans = false;
24784         this.destroyTrans(trans, false);
24785         this.fireEvent("loadexception", this, null, trans.arg);
24786         trans.callback.call(trans.scope||window, null, trans.arg, false);
24787     }
24788 });/*
24789  * Based on:
24790  * Ext JS Library 1.1.1
24791  * Copyright(c) 2006-2007, Ext JS, LLC.
24792  *
24793  * Originally Released Under LGPL - original licence link has changed is not relivant.
24794  *
24795  * Fork - LGPL
24796  * <script type="text/javascript">
24797  */
24798
24799 /**
24800  * @class Roo.data.JsonReader
24801  * @extends Roo.data.DataReader
24802  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24803  * based on mappings in a provided Roo.data.Record constructor.
24804  * 
24805  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24806  * in the reply previously. 
24807  * 
24808  * <p>
24809  * Example code:
24810  * <pre><code>
24811 var RecordDef = Roo.data.Record.create([
24812     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24813     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24814 ]);
24815 var myReader = new Roo.data.JsonReader({
24816     totalProperty: "results",    // The property which contains the total dataset size (optional)
24817     root: "rows",                // The property which contains an Array of row objects
24818     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24819 }, RecordDef);
24820 </code></pre>
24821  * <p>
24822  * This would consume a JSON file like this:
24823  * <pre><code>
24824 { 'results': 2, 'rows': [
24825     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24826     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24827 }
24828 </code></pre>
24829  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24830  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24831  * paged from the remote server.
24832  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24833  * @cfg {String} root name of the property which contains the Array of row objects.
24834  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24835  * @cfg {Array} fields Array of field definition objects
24836  * @constructor
24837  * Create a new JsonReader
24838  * @param {Object} meta Metadata configuration options
24839  * @param {Object} recordType Either an Array of field definition objects,
24840  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24841  */
24842 Roo.data.JsonReader = function(meta, recordType){
24843     
24844     meta = meta || {};
24845     // set some defaults:
24846     Roo.applyIf(meta, {
24847         totalProperty: 'total',
24848         successProperty : 'success',
24849         root : 'data',
24850         id : 'id'
24851     });
24852     
24853     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24854 };
24855 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24856     
24857     readerType : 'Json',
24858     
24859     /**
24860      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24861      * Used by Store query builder to append _requestMeta to params.
24862      * 
24863      */
24864     metaFromRemote : false,
24865     /**
24866      * This method is only used by a DataProxy which has retrieved data from a remote server.
24867      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24868      * @return {Object} data A data block which is used by an Roo.data.Store object as
24869      * a cache of Roo.data.Records.
24870      */
24871     read : function(response){
24872         var json = response.responseText;
24873        
24874         var o = /* eval:var:o */ eval("("+json+")");
24875         if(!o) {
24876             throw {message: "JsonReader.read: Json object not found"};
24877         }
24878         
24879         if(o.metaData){
24880             
24881             delete this.ef;
24882             this.metaFromRemote = true;
24883             this.meta = o.metaData;
24884             this.recordType = Roo.data.Record.create(o.metaData.fields);
24885             this.onMetaChange(this.meta, this.recordType, o);
24886         }
24887         return this.readRecords(o);
24888     },
24889
24890     // private function a store will implement
24891     onMetaChange : function(meta, recordType, o){
24892
24893     },
24894
24895     /**
24896          * @ignore
24897          */
24898     simpleAccess: function(obj, subsc) {
24899         return obj[subsc];
24900     },
24901
24902         /**
24903          * @ignore
24904          */
24905     getJsonAccessor: function(){
24906         var re = /[\[\.]/;
24907         return function(expr) {
24908             try {
24909                 return(re.test(expr))
24910                     ? new Function("obj", "return obj." + expr)
24911                     : function(obj){
24912                         return obj[expr];
24913                     };
24914             } catch(e){}
24915             return Roo.emptyFn;
24916         };
24917     }(),
24918
24919     /**
24920      * Create a data block containing Roo.data.Records from an XML document.
24921      * @param {Object} o An object which contains an Array of row objects in the property specified
24922      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24923      * which contains the total size of the dataset.
24924      * @return {Object} data A data block which is used by an Roo.data.Store object as
24925      * a cache of Roo.data.Records.
24926      */
24927     readRecords : function(o){
24928         /**
24929          * After any data loads, the raw JSON data is available for further custom processing.
24930          * @type Object
24931          */
24932         this.o = o;
24933         var s = this.meta, Record = this.recordType,
24934             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24935
24936 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
24937         if (!this.ef) {
24938             if(s.totalProperty) {
24939                     this.getTotal = this.getJsonAccessor(s.totalProperty);
24940                 }
24941                 if(s.successProperty) {
24942                     this.getSuccess = this.getJsonAccessor(s.successProperty);
24943                 }
24944                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
24945                 if (s.id) {
24946                         var g = this.getJsonAccessor(s.id);
24947                         this.getId = function(rec) {
24948                                 var r = g(rec);  
24949                                 return (r === undefined || r === "") ? null : r;
24950                         };
24951                 } else {
24952                         this.getId = function(){return null;};
24953                 }
24954             this.ef = [];
24955             for(var jj = 0; jj < fl; jj++){
24956                 f = fi[jj];
24957                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
24958                 this.ef[jj] = this.getJsonAccessor(map);
24959             }
24960         }
24961
24962         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
24963         if(s.totalProperty){
24964             var vt = parseInt(this.getTotal(o), 10);
24965             if(!isNaN(vt)){
24966                 totalRecords = vt;
24967             }
24968         }
24969         if(s.successProperty){
24970             var vs = this.getSuccess(o);
24971             if(vs === false || vs === 'false'){
24972                 success = false;
24973             }
24974         }
24975         var records = [];
24976         for(var i = 0; i < c; i++){
24977                 var n = root[i];
24978             var values = {};
24979             var id = this.getId(n);
24980             for(var j = 0; j < fl; j++){
24981                 f = fi[j];
24982             var v = this.ef[j](n);
24983             if (!f.convert) {
24984                 Roo.log('missing convert for ' + f.name);
24985                 Roo.log(f);
24986                 continue;
24987             }
24988             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
24989             }
24990             var record = new Record(values, id);
24991             record.json = n;
24992             records[i] = record;
24993         }
24994         return {
24995             raw : o,
24996             success : success,
24997             records : records,
24998             totalRecords : totalRecords
24999         };
25000     },
25001     // used when loading children.. @see loadDataFromChildren
25002     toLoadData: function(rec)
25003     {
25004         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25005         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25006         return { data : data, total : data.length };
25007         
25008     }
25009 });/*
25010  * Based on:
25011  * Ext JS Library 1.1.1
25012  * Copyright(c) 2006-2007, Ext JS, LLC.
25013  *
25014  * Originally Released Under LGPL - original licence link has changed is not relivant.
25015  *
25016  * Fork - LGPL
25017  * <script type="text/javascript">
25018  */
25019
25020 /**
25021  * @class Roo.data.XmlReader
25022  * @extends Roo.data.DataReader
25023  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25024  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25025  * <p>
25026  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25027  * header in the HTTP response must be set to "text/xml".</em>
25028  * <p>
25029  * Example code:
25030  * <pre><code>
25031 var RecordDef = Roo.data.Record.create([
25032    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25033    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25034 ]);
25035 var myReader = new Roo.data.XmlReader({
25036    totalRecords: "results", // The element which contains the total dataset size (optional)
25037    record: "row",           // The repeated element which contains row information
25038    id: "id"                 // The element within the row that provides an ID for the record (optional)
25039 }, RecordDef);
25040 </code></pre>
25041  * <p>
25042  * This would consume an XML file like this:
25043  * <pre><code>
25044 &lt;?xml?>
25045 &lt;dataset>
25046  &lt;results>2&lt;/results>
25047  &lt;row>
25048    &lt;id>1&lt;/id>
25049    &lt;name>Bill&lt;/name>
25050    &lt;occupation>Gardener&lt;/occupation>
25051  &lt;/row>
25052  &lt;row>
25053    &lt;id>2&lt;/id>
25054    &lt;name>Ben&lt;/name>
25055    &lt;occupation>Horticulturalist&lt;/occupation>
25056  &lt;/row>
25057 &lt;/dataset>
25058 </code></pre>
25059  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25060  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25061  * paged from the remote server.
25062  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25063  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25064  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25065  * a record identifier value.
25066  * @constructor
25067  * Create a new XmlReader
25068  * @param {Object} meta Metadata configuration options
25069  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25070  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25071  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25072  */
25073 Roo.data.XmlReader = function(meta, recordType){
25074     meta = meta || {};
25075     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25076 };
25077 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25078     
25079     readerType : 'Xml',
25080     
25081     /**
25082      * This method is only used by a DataProxy which has retrieved data from a remote server.
25083          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25084          * to contain a method called 'responseXML' that returns an XML document object.
25085      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25086      * a cache of Roo.data.Records.
25087      */
25088     read : function(response){
25089         var doc = response.responseXML;
25090         if(!doc) {
25091             throw {message: "XmlReader.read: XML Document not available"};
25092         }
25093         return this.readRecords(doc);
25094     },
25095
25096     /**
25097      * Create a data block containing Roo.data.Records from an XML document.
25098          * @param {Object} doc A parsed XML document.
25099      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25100      * a cache of Roo.data.Records.
25101      */
25102     readRecords : function(doc){
25103         /**
25104          * After any data loads/reads, the raw XML Document is available for further custom processing.
25105          * @type XMLDocument
25106          */
25107         this.xmlData = doc;
25108         var root = doc.documentElement || doc;
25109         var q = Roo.DomQuery;
25110         var recordType = this.recordType, fields = recordType.prototype.fields;
25111         var sid = this.meta.id;
25112         var totalRecords = 0, success = true;
25113         if(this.meta.totalRecords){
25114             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25115         }
25116         
25117         if(this.meta.success){
25118             var sv = q.selectValue(this.meta.success, root, true);
25119             success = sv !== false && sv !== 'false';
25120         }
25121         var records = [];
25122         var ns = q.select(this.meta.record, root);
25123         for(var i = 0, len = ns.length; i < len; i++) {
25124                 var n = ns[i];
25125                 var values = {};
25126                 var id = sid ? q.selectValue(sid, n) : undefined;
25127                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25128                     var f = fields.items[j];
25129                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25130                     v = f.convert(v);
25131                     values[f.name] = v;
25132                 }
25133                 var record = new recordType(values, id);
25134                 record.node = n;
25135                 records[records.length] = record;
25136             }
25137
25138             return {
25139                 success : success,
25140                 records : records,
25141                 totalRecords : totalRecords || records.length
25142             };
25143     }
25144 });/*
25145  * Based on:
25146  * Ext JS Library 1.1.1
25147  * Copyright(c) 2006-2007, Ext JS, LLC.
25148  *
25149  * Originally Released Under LGPL - original licence link has changed is not relivant.
25150  *
25151  * Fork - LGPL
25152  * <script type="text/javascript">
25153  */
25154
25155 /**
25156  * @class Roo.data.ArrayReader
25157  * @extends Roo.data.DataReader
25158  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25159  * Each element of that Array represents a row of data fields. The
25160  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25161  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25162  * <p>
25163  * Example code:.
25164  * <pre><code>
25165 var RecordDef = Roo.data.Record.create([
25166     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25167     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25168 ]);
25169 var myReader = new Roo.data.ArrayReader({
25170     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25171 }, RecordDef);
25172 </code></pre>
25173  * <p>
25174  * This would consume an Array like this:
25175  * <pre><code>
25176 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25177   </code></pre>
25178  
25179  * @constructor
25180  * Create a new JsonReader
25181  * @param {Object} meta Metadata configuration options.
25182  * @param {Object|Array} recordType Either an Array of field definition objects
25183  * 
25184  * @cfg {Array} fields Array of field definition objects
25185  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25186  * as specified to {@link Roo.data.Record#create},
25187  * or an {@link Roo.data.Record} object
25188  *
25189  * 
25190  * created using {@link Roo.data.Record#create}.
25191  */
25192 Roo.data.ArrayReader = function(meta, recordType)
25193 {    
25194     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25195 };
25196
25197 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25198     
25199       /**
25200      * Create a data block containing Roo.data.Records from an XML document.
25201      * @param {Object} o An Array of row objects which represents the dataset.
25202      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25203      * a cache of Roo.data.Records.
25204      */
25205     readRecords : function(o)
25206     {
25207         var sid = this.meta ? this.meta.id : null;
25208         var recordType = this.recordType, fields = recordType.prototype.fields;
25209         var records = [];
25210         var root = o;
25211         for(var i = 0; i < root.length; i++){
25212                 var n = root[i];
25213             var values = {};
25214             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25215             for(var j = 0, jlen = fields.length; j < jlen; j++){
25216                 var f = fields.items[j];
25217                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25218                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25219                 v = f.convert(v);
25220                 values[f.name] = v;
25221             }
25222             var record = new recordType(values, id);
25223             record.json = n;
25224             records[records.length] = record;
25225         }
25226         return {
25227             records : records,
25228             totalRecords : records.length
25229         };
25230     },
25231     // used when loading children.. @see loadDataFromChildren
25232     toLoadData: function(rec)
25233     {
25234         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25235         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25236         
25237     }
25238     
25239     
25240 });/*
25241  * Based on:
25242  * Ext JS Library 1.1.1
25243  * Copyright(c) 2006-2007, Ext JS, LLC.
25244  *
25245  * Originally Released Under LGPL - original licence link has changed is not relivant.
25246  *
25247  * Fork - LGPL
25248  * <script type="text/javascript">
25249  */
25250
25251
25252 /**
25253  * @class Roo.data.Tree
25254  * @extends Roo.util.Observable
25255  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25256  * in the tree have most standard DOM functionality.
25257  * @constructor
25258  * @param {Node} root (optional) The root node
25259  */
25260 Roo.data.Tree = function(root){
25261    this.nodeHash = {};
25262    /**
25263     * The root node for this tree
25264     * @type Node
25265     */
25266    this.root = null;
25267    if(root){
25268        this.setRootNode(root);
25269    }
25270    this.addEvents({
25271        /**
25272         * @event append
25273         * Fires when a new child node is appended to a node in this tree.
25274         * @param {Tree} tree The owner tree
25275         * @param {Node} parent The parent node
25276         * @param {Node} node The newly appended node
25277         * @param {Number} index The index of the newly appended node
25278         */
25279        "append" : true,
25280        /**
25281         * @event remove
25282         * Fires when a child node is removed from a node in this tree.
25283         * @param {Tree} tree The owner tree
25284         * @param {Node} parent The parent node
25285         * @param {Node} node The child node removed
25286         */
25287        "remove" : true,
25288        /**
25289         * @event move
25290         * Fires when a node is moved to a new location in the tree
25291         * @param {Tree} tree The owner tree
25292         * @param {Node} node The node moved
25293         * @param {Node} oldParent The old parent of this node
25294         * @param {Node} newParent The new parent of this node
25295         * @param {Number} index The index it was moved to
25296         */
25297        "move" : true,
25298        /**
25299         * @event insert
25300         * Fires when a new child node is inserted in a node in this tree.
25301         * @param {Tree} tree The owner tree
25302         * @param {Node} parent The parent node
25303         * @param {Node} node The child node inserted
25304         * @param {Node} refNode The child node the node was inserted before
25305         */
25306        "insert" : true,
25307        /**
25308         * @event beforeappend
25309         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25310         * @param {Tree} tree The owner tree
25311         * @param {Node} parent The parent node
25312         * @param {Node} node The child node to be appended
25313         */
25314        "beforeappend" : true,
25315        /**
25316         * @event beforeremove
25317         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25318         * @param {Tree} tree The owner tree
25319         * @param {Node} parent The parent node
25320         * @param {Node} node The child node to be removed
25321         */
25322        "beforeremove" : true,
25323        /**
25324         * @event beforemove
25325         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25326         * @param {Tree} tree The owner tree
25327         * @param {Node} node The node being moved
25328         * @param {Node} oldParent The parent of the node
25329         * @param {Node} newParent The new parent the node is moving to
25330         * @param {Number} index The index it is being moved to
25331         */
25332        "beforemove" : true,
25333        /**
25334         * @event beforeinsert
25335         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25336         * @param {Tree} tree The owner tree
25337         * @param {Node} parent The parent node
25338         * @param {Node} node The child node to be inserted
25339         * @param {Node} refNode The child node the node is being inserted before
25340         */
25341        "beforeinsert" : true
25342    });
25343
25344     Roo.data.Tree.superclass.constructor.call(this);
25345 };
25346
25347 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25348     pathSeparator: "/",
25349
25350     proxyNodeEvent : function(){
25351         return this.fireEvent.apply(this, arguments);
25352     },
25353
25354     /**
25355      * Returns the root node for this tree.
25356      * @return {Node}
25357      */
25358     getRootNode : function(){
25359         return this.root;
25360     },
25361
25362     /**
25363      * Sets the root node for this tree.
25364      * @param {Node} node
25365      * @return {Node}
25366      */
25367     setRootNode : function(node){
25368         this.root = node;
25369         node.ownerTree = this;
25370         node.isRoot = true;
25371         this.registerNode(node);
25372         return node;
25373     },
25374
25375     /**
25376      * Gets a node in this tree by its id.
25377      * @param {String} id
25378      * @return {Node}
25379      */
25380     getNodeById : function(id){
25381         return this.nodeHash[id];
25382     },
25383
25384     registerNode : function(node){
25385         this.nodeHash[node.id] = node;
25386     },
25387
25388     unregisterNode : function(node){
25389         delete this.nodeHash[node.id];
25390     },
25391
25392     toString : function(){
25393         return "[Tree"+(this.id?" "+this.id:"")+"]";
25394     }
25395 });
25396
25397 /**
25398  * @class Roo.data.Node
25399  * @extends Roo.util.Observable
25400  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25401  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25402  * @constructor
25403  * @param {Object} attributes The attributes/config for the node
25404  */
25405 Roo.data.Node = function(attributes){
25406     /**
25407      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25408      * @type {Object}
25409      */
25410     this.attributes = attributes || {};
25411     this.leaf = this.attributes.leaf;
25412     /**
25413      * The node id. @type String
25414      */
25415     this.id = this.attributes.id;
25416     if(!this.id){
25417         this.id = Roo.id(null, "ynode-");
25418         this.attributes.id = this.id;
25419     }
25420      
25421     
25422     /**
25423      * All child nodes of this node. @type Array
25424      */
25425     this.childNodes = [];
25426     if(!this.childNodes.indexOf){ // indexOf is a must
25427         this.childNodes.indexOf = function(o){
25428             for(var i = 0, len = this.length; i < len; i++){
25429                 if(this[i] == o) {
25430                     return i;
25431                 }
25432             }
25433             return -1;
25434         };
25435     }
25436     /**
25437      * The parent node for this node. @type Node
25438      */
25439     this.parentNode = null;
25440     /**
25441      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25442      */
25443     this.firstChild = null;
25444     /**
25445      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25446      */
25447     this.lastChild = null;
25448     /**
25449      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25450      */
25451     this.previousSibling = null;
25452     /**
25453      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25454      */
25455     this.nextSibling = null;
25456
25457     this.addEvents({
25458        /**
25459         * @event append
25460         * Fires when a new child node is appended
25461         * @param {Tree} tree The owner tree
25462         * @param {Node} this This node
25463         * @param {Node} node The newly appended node
25464         * @param {Number} index The index of the newly appended node
25465         */
25466        "append" : true,
25467        /**
25468         * @event remove
25469         * Fires when a child node is removed
25470         * @param {Tree} tree The owner tree
25471         * @param {Node} this This node
25472         * @param {Node} node The removed node
25473         */
25474        "remove" : true,
25475        /**
25476         * @event move
25477         * Fires when this node is moved to a new location in the tree
25478         * @param {Tree} tree The owner tree
25479         * @param {Node} this This node
25480         * @param {Node} oldParent The old parent of this node
25481         * @param {Node} newParent The new parent of this node
25482         * @param {Number} index The index it was moved to
25483         */
25484        "move" : true,
25485        /**
25486         * @event insert
25487         * Fires when a new child node is inserted.
25488         * @param {Tree} tree The owner tree
25489         * @param {Node} this This node
25490         * @param {Node} node The child node inserted
25491         * @param {Node} refNode The child node the node was inserted before
25492         */
25493        "insert" : true,
25494        /**
25495         * @event beforeappend
25496         * Fires before a new child is appended, return false to cancel the append.
25497         * @param {Tree} tree The owner tree
25498         * @param {Node} this This node
25499         * @param {Node} node The child node to be appended
25500         */
25501        "beforeappend" : true,
25502        /**
25503         * @event beforeremove
25504         * Fires before a child is removed, return false to cancel the remove.
25505         * @param {Tree} tree The owner tree
25506         * @param {Node} this This node
25507         * @param {Node} node The child node to be removed
25508         */
25509        "beforeremove" : true,
25510        /**
25511         * @event beforemove
25512         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25513         * @param {Tree} tree The owner tree
25514         * @param {Node} this This node
25515         * @param {Node} oldParent The parent of this node
25516         * @param {Node} newParent The new parent this node is moving to
25517         * @param {Number} index The index it is being moved to
25518         */
25519        "beforemove" : true,
25520        /**
25521         * @event beforeinsert
25522         * Fires before a new child is inserted, return false to cancel the insert.
25523         * @param {Tree} tree The owner tree
25524         * @param {Node} this This node
25525         * @param {Node} node The child node to be inserted
25526         * @param {Node} refNode The child node the node is being inserted before
25527         */
25528        "beforeinsert" : true
25529    });
25530     this.listeners = this.attributes.listeners;
25531     Roo.data.Node.superclass.constructor.call(this);
25532 };
25533
25534 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25535     fireEvent : function(evtName){
25536         // first do standard event for this node
25537         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25538             return false;
25539         }
25540         // then bubble it up to the tree if the event wasn't cancelled
25541         var ot = this.getOwnerTree();
25542         if(ot){
25543             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25544                 return false;
25545             }
25546         }
25547         return true;
25548     },
25549
25550     /**
25551      * Returns true if this node is a leaf
25552      * @return {Boolean}
25553      */
25554     isLeaf : function(){
25555         return this.leaf === true;
25556     },
25557
25558     // private
25559     setFirstChild : function(node){
25560         this.firstChild = node;
25561     },
25562
25563     //private
25564     setLastChild : function(node){
25565         this.lastChild = node;
25566     },
25567
25568
25569     /**
25570      * Returns true if this node is the last child of its parent
25571      * @return {Boolean}
25572      */
25573     isLast : function(){
25574        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25575     },
25576
25577     /**
25578      * Returns true if this node is the first child of its parent
25579      * @return {Boolean}
25580      */
25581     isFirst : function(){
25582        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25583     },
25584
25585     hasChildNodes : function(){
25586         return !this.isLeaf() && this.childNodes.length > 0;
25587     },
25588
25589     /**
25590      * Insert node(s) as the last child node of this node.
25591      * @param {Node/Array} node The node or Array of nodes to append
25592      * @return {Node} The appended node if single append, or null if an array was passed
25593      */
25594     appendChild : function(node){
25595         var multi = false;
25596         if(node instanceof Array){
25597             multi = node;
25598         }else if(arguments.length > 1){
25599             multi = arguments;
25600         }
25601         
25602         // if passed an array or multiple args do them one by one
25603         if(multi){
25604             for(var i = 0, len = multi.length; i < len; i++) {
25605                 this.appendChild(multi[i]);
25606             }
25607         }else{
25608             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25609                 return false;
25610             }
25611             var index = this.childNodes.length;
25612             var oldParent = node.parentNode;
25613             // it's a move, make sure we move it cleanly
25614             if(oldParent){
25615                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25616                     return false;
25617                 }
25618                 oldParent.removeChild(node);
25619             }
25620             
25621             index = this.childNodes.length;
25622             if(index == 0){
25623                 this.setFirstChild(node);
25624             }
25625             this.childNodes.push(node);
25626             node.parentNode = this;
25627             var ps = this.childNodes[index-1];
25628             if(ps){
25629                 node.previousSibling = ps;
25630                 ps.nextSibling = node;
25631             }else{
25632                 node.previousSibling = null;
25633             }
25634             node.nextSibling = null;
25635             this.setLastChild(node);
25636             node.setOwnerTree(this.getOwnerTree());
25637             this.fireEvent("append", this.ownerTree, this, node, index);
25638             if(this.ownerTree) {
25639                 this.ownerTree.fireEvent("appendnode", this, node, index);
25640             }
25641             if(oldParent){
25642                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25643             }
25644             return node;
25645         }
25646     },
25647
25648     /**
25649      * Removes a child node from this node.
25650      * @param {Node} node The node to remove
25651      * @return {Node} The removed node
25652      */
25653     removeChild : function(node){
25654         var index = this.childNodes.indexOf(node);
25655         if(index == -1){
25656             return false;
25657         }
25658         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25659             return false;
25660         }
25661
25662         // remove it from childNodes collection
25663         this.childNodes.splice(index, 1);
25664
25665         // update siblings
25666         if(node.previousSibling){
25667             node.previousSibling.nextSibling = node.nextSibling;
25668         }
25669         if(node.nextSibling){
25670             node.nextSibling.previousSibling = node.previousSibling;
25671         }
25672
25673         // update child refs
25674         if(this.firstChild == node){
25675             this.setFirstChild(node.nextSibling);
25676         }
25677         if(this.lastChild == node){
25678             this.setLastChild(node.previousSibling);
25679         }
25680
25681         node.setOwnerTree(null);
25682         // clear any references from the node
25683         node.parentNode = null;
25684         node.previousSibling = null;
25685         node.nextSibling = null;
25686         this.fireEvent("remove", this.ownerTree, this, node);
25687         return node;
25688     },
25689
25690     /**
25691      * Inserts the first node before the second node in this nodes childNodes collection.
25692      * @param {Node} node The node to insert
25693      * @param {Node} refNode The node to insert before (if null the node is appended)
25694      * @return {Node} The inserted node
25695      */
25696     insertBefore : function(node, refNode){
25697         if(!refNode){ // like standard Dom, refNode can be null for append
25698             return this.appendChild(node);
25699         }
25700         // nothing to do
25701         if(node == refNode){
25702             return false;
25703         }
25704
25705         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25706             return false;
25707         }
25708         var index = this.childNodes.indexOf(refNode);
25709         var oldParent = node.parentNode;
25710         var refIndex = index;
25711
25712         // when moving internally, indexes will change after remove
25713         if(oldParent == this && this.childNodes.indexOf(node) < index){
25714             refIndex--;
25715         }
25716
25717         // it's a move, make sure we move it cleanly
25718         if(oldParent){
25719             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25720                 return false;
25721             }
25722             oldParent.removeChild(node);
25723         }
25724         if(refIndex == 0){
25725             this.setFirstChild(node);
25726         }
25727         this.childNodes.splice(refIndex, 0, node);
25728         node.parentNode = this;
25729         var ps = this.childNodes[refIndex-1];
25730         if(ps){
25731             node.previousSibling = ps;
25732             ps.nextSibling = node;
25733         }else{
25734             node.previousSibling = null;
25735         }
25736         node.nextSibling = refNode;
25737         refNode.previousSibling = node;
25738         node.setOwnerTree(this.getOwnerTree());
25739         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25740         if(oldParent){
25741             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25742         }
25743         return node;
25744     },
25745
25746     /**
25747      * Returns the child node at the specified index.
25748      * @param {Number} index
25749      * @return {Node}
25750      */
25751     item : function(index){
25752         return this.childNodes[index];
25753     },
25754
25755     /**
25756      * Replaces one child node in this node with another.
25757      * @param {Node} newChild The replacement node
25758      * @param {Node} oldChild The node to replace
25759      * @return {Node} The replaced node
25760      */
25761     replaceChild : function(newChild, oldChild){
25762         this.insertBefore(newChild, oldChild);
25763         this.removeChild(oldChild);
25764         return oldChild;
25765     },
25766
25767     /**
25768      * Returns the index of a child node
25769      * @param {Node} node
25770      * @return {Number} The index of the node or -1 if it was not found
25771      */
25772     indexOf : function(child){
25773         return this.childNodes.indexOf(child);
25774     },
25775
25776     /**
25777      * Returns the tree this node is in.
25778      * @return {Tree}
25779      */
25780     getOwnerTree : function(){
25781         // if it doesn't have one, look for one
25782         if(!this.ownerTree){
25783             var p = this;
25784             while(p){
25785                 if(p.ownerTree){
25786                     this.ownerTree = p.ownerTree;
25787                     break;
25788                 }
25789                 p = p.parentNode;
25790             }
25791         }
25792         return this.ownerTree;
25793     },
25794
25795     /**
25796      * Returns depth of this node (the root node has a depth of 0)
25797      * @return {Number}
25798      */
25799     getDepth : function(){
25800         var depth = 0;
25801         var p = this;
25802         while(p.parentNode){
25803             ++depth;
25804             p = p.parentNode;
25805         }
25806         return depth;
25807     },
25808
25809     // private
25810     setOwnerTree : function(tree){
25811         // if it's move, we need to update everyone
25812         if(tree != this.ownerTree){
25813             if(this.ownerTree){
25814                 this.ownerTree.unregisterNode(this);
25815             }
25816             this.ownerTree = tree;
25817             var cs = this.childNodes;
25818             for(var i = 0, len = cs.length; i < len; i++) {
25819                 cs[i].setOwnerTree(tree);
25820             }
25821             if(tree){
25822                 tree.registerNode(this);
25823             }
25824         }
25825     },
25826
25827     /**
25828      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25829      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25830      * @return {String} The path
25831      */
25832     getPath : function(attr){
25833         attr = attr || "id";
25834         var p = this.parentNode;
25835         var b = [this.attributes[attr]];
25836         while(p){
25837             b.unshift(p.attributes[attr]);
25838             p = p.parentNode;
25839         }
25840         var sep = this.getOwnerTree().pathSeparator;
25841         return sep + b.join(sep);
25842     },
25843
25844     /**
25845      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25846      * function call will be the scope provided or the current node. The arguments to the function
25847      * will be the args provided or the current node. If the function returns false at any point,
25848      * the bubble is stopped.
25849      * @param {Function} fn The function to call
25850      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25851      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25852      */
25853     bubble : function(fn, scope, args){
25854         var p = this;
25855         while(p){
25856             if(fn.call(scope || p, args || p) === false){
25857                 break;
25858             }
25859             p = p.parentNode;
25860         }
25861     },
25862
25863     /**
25864      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25865      * function call will be the scope provided or the current node. The arguments to the function
25866      * will be the args provided or the current node. If the function returns false at any point,
25867      * the cascade is stopped on that branch.
25868      * @param {Function} fn The function to call
25869      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25870      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25871      */
25872     cascade : function(fn, scope, args){
25873         if(fn.call(scope || this, args || this) !== false){
25874             var cs = this.childNodes;
25875             for(var i = 0, len = cs.length; i < len; i++) {
25876                 cs[i].cascade(fn, scope, args);
25877             }
25878         }
25879     },
25880
25881     /**
25882      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25883      * function call will be the scope provided or the current node. The arguments to the function
25884      * will be the args provided or the current node. If the function returns false at any point,
25885      * the iteration stops.
25886      * @param {Function} fn The function to call
25887      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25888      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25889      */
25890     eachChild : function(fn, scope, args){
25891         var cs = this.childNodes;
25892         for(var i = 0, len = cs.length; i < len; i++) {
25893                 if(fn.call(scope || this, args || cs[i]) === false){
25894                     break;
25895                 }
25896         }
25897     },
25898
25899     /**
25900      * Finds the first child that has the attribute with the specified value.
25901      * @param {String} attribute The attribute name
25902      * @param {Mixed} value The value to search for
25903      * @return {Node} The found child or null if none was found
25904      */
25905     findChild : function(attribute, value){
25906         var cs = this.childNodes;
25907         for(var i = 0, len = cs.length; i < len; i++) {
25908                 if(cs[i].attributes[attribute] == value){
25909                     return cs[i];
25910                 }
25911         }
25912         return null;
25913     },
25914
25915     /**
25916      * Finds the first child by a custom function. The child matches if the function passed
25917      * returns true.
25918      * @param {Function} fn
25919      * @param {Object} scope (optional)
25920      * @return {Node} The found child or null if none was found
25921      */
25922     findChildBy : function(fn, scope){
25923         var cs = this.childNodes;
25924         for(var i = 0, len = cs.length; i < len; i++) {
25925                 if(fn.call(scope||cs[i], cs[i]) === true){
25926                     return cs[i];
25927                 }
25928         }
25929         return null;
25930     },
25931
25932     /**
25933      * Sorts this nodes children using the supplied sort function
25934      * @param {Function} fn
25935      * @param {Object} scope (optional)
25936      */
25937     sort : function(fn, scope){
25938         var cs = this.childNodes;
25939         var len = cs.length;
25940         if(len > 0){
25941             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
25942             cs.sort(sortFn);
25943             for(var i = 0; i < len; i++){
25944                 var n = cs[i];
25945                 n.previousSibling = cs[i-1];
25946                 n.nextSibling = cs[i+1];
25947                 if(i == 0){
25948                     this.setFirstChild(n);
25949                 }
25950                 if(i == len-1){
25951                     this.setLastChild(n);
25952                 }
25953             }
25954         }
25955     },
25956
25957     /**
25958      * Returns true if this node is an ancestor (at any point) of the passed node.
25959      * @param {Node} node
25960      * @return {Boolean}
25961      */
25962     contains : function(node){
25963         return node.isAncestor(this);
25964     },
25965
25966     /**
25967      * Returns true if the passed node is an ancestor (at any point) of this node.
25968      * @param {Node} node
25969      * @return {Boolean}
25970      */
25971     isAncestor : function(node){
25972         var p = this.parentNode;
25973         while(p){
25974             if(p == node){
25975                 return true;
25976             }
25977             p = p.parentNode;
25978         }
25979         return false;
25980     },
25981
25982     toString : function(){
25983         return "[Node"+(this.id?" "+this.id:"")+"]";
25984     }
25985 });/*
25986  * Based on:
25987  * Ext JS Library 1.1.1
25988  * Copyright(c) 2006-2007, Ext JS, LLC.
25989  *
25990  * Originally Released Under LGPL - original licence link has changed is not relivant.
25991  *
25992  * Fork - LGPL
25993  * <script type="text/javascript">
25994  */
25995
25996
25997 /**
25998  * @class Roo.Shadow
25999  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26000  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26001  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26002  * @constructor
26003  * Create a new Shadow
26004  * @param {Object} config The config object
26005  */
26006 Roo.Shadow = function(config){
26007     Roo.apply(this, config);
26008     if(typeof this.mode != "string"){
26009         this.mode = this.defaultMode;
26010     }
26011     var o = this.offset, a = {h: 0};
26012     var rad = Math.floor(this.offset/2);
26013     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26014         case "drop":
26015             a.w = 0;
26016             a.l = a.t = o;
26017             a.t -= 1;
26018             if(Roo.isIE){
26019                 a.l -= this.offset + rad;
26020                 a.t -= this.offset + rad;
26021                 a.w -= rad;
26022                 a.h -= rad;
26023                 a.t += 1;
26024             }
26025         break;
26026         case "sides":
26027             a.w = (o*2);
26028             a.l = -o;
26029             a.t = o-1;
26030             if(Roo.isIE){
26031                 a.l -= (this.offset - rad);
26032                 a.t -= this.offset + rad;
26033                 a.l += 1;
26034                 a.w -= (this.offset - rad)*2;
26035                 a.w -= rad + 1;
26036                 a.h -= 1;
26037             }
26038         break;
26039         case "frame":
26040             a.w = a.h = (o*2);
26041             a.l = a.t = -o;
26042             a.t += 1;
26043             a.h -= 2;
26044             if(Roo.isIE){
26045                 a.l -= (this.offset - rad);
26046                 a.t -= (this.offset - rad);
26047                 a.l += 1;
26048                 a.w -= (this.offset + rad + 1);
26049                 a.h -= (this.offset + rad);
26050                 a.h += 1;
26051             }
26052         break;
26053     };
26054
26055     this.adjusts = a;
26056 };
26057
26058 Roo.Shadow.prototype = {
26059     /**
26060      * @cfg {String} mode
26061      * The shadow display mode.  Supports the following options:<br />
26062      * sides: Shadow displays on both sides and bottom only<br />
26063      * frame: Shadow displays equally on all four sides<br />
26064      * drop: Traditional bottom-right drop shadow (default)
26065      */
26066     /**
26067      * @cfg {String} offset
26068      * The number of pixels to offset the shadow from the element (defaults to 4)
26069      */
26070     offset: 4,
26071
26072     // private
26073     defaultMode: "drop",
26074
26075     /**
26076      * Displays the shadow under the target element
26077      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26078      */
26079     show : function(target){
26080         target = Roo.get(target);
26081         if(!this.el){
26082             this.el = Roo.Shadow.Pool.pull();
26083             if(this.el.dom.nextSibling != target.dom){
26084                 this.el.insertBefore(target);
26085             }
26086         }
26087         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26088         if(Roo.isIE){
26089             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26090         }
26091         this.realign(
26092             target.getLeft(true),
26093             target.getTop(true),
26094             target.getWidth(),
26095             target.getHeight()
26096         );
26097         this.el.dom.style.display = "block";
26098     },
26099
26100     /**
26101      * Returns true if the shadow is visible, else false
26102      */
26103     isVisible : function(){
26104         return this.el ? true : false;  
26105     },
26106
26107     /**
26108      * Direct alignment when values are already available. Show must be called at least once before
26109      * calling this method to ensure it is initialized.
26110      * @param {Number} left The target element left position
26111      * @param {Number} top The target element top position
26112      * @param {Number} width The target element width
26113      * @param {Number} height The target element height
26114      */
26115     realign : function(l, t, w, h){
26116         if(!this.el){
26117             return;
26118         }
26119         var a = this.adjusts, d = this.el.dom, s = d.style;
26120         var iea = 0;
26121         s.left = (l+a.l)+"px";
26122         s.top = (t+a.t)+"px";
26123         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26124  
26125         if(s.width != sws || s.height != shs){
26126             s.width = sws;
26127             s.height = shs;
26128             if(!Roo.isIE){
26129                 var cn = d.childNodes;
26130                 var sww = Math.max(0, (sw-12))+"px";
26131                 cn[0].childNodes[1].style.width = sww;
26132                 cn[1].childNodes[1].style.width = sww;
26133                 cn[2].childNodes[1].style.width = sww;
26134                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26135             }
26136         }
26137     },
26138
26139     /**
26140      * Hides this shadow
26141      */
26142     hide : function(){
26143         if(this.el){
26144             this.el.dom.style.display = "none";
26145             Roo.Shadow.Pool.push(this.el);
26146             delete this.el;
26147         }
26148     },
26149
26150     /**
26151      * Adjust the z-index of this shadow
26152      * @param {Number} zindex The new z-index
26153      */
26154     setZIndex : function(z){
26155         this.zIndex = z;
26156         if(this.el){
26157             this.el.setStyle("z-index", z);
26158         }
26159     }
26160 };
26161
26162 // Private utility class that manages the internal Shadow cache
26163 Roo.Shadow.Pool = function(){
26164     var p = [];
26165     var markup = Roo.isIE ?
26166                  '<div class="x-ie-shadow"></div>' :
26167                  '<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>';
26168     return {
26169         pull : function(){
26170             var sh = p.shift();
26171             if(!sh){
26172                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26173                 sh.autoBoxAdjust = false;
26174             }
26175             return sh;
26176         },
26177
26178         push : function(sh){
26179             p.push(sh);
26180         }
26181     };
26182 }();/*
26183  * Based on:
26184  * Ext JS Library 1.1.1
26185  * Copyright(c) 2006-2007, Ext JS, LLC.
26186  *
26187  * Originally Released Under LGPL - original licence link has changed is not relivant.
26188  *
26189  * Fork - LGPL
26190  * <script type="text/javascript">
26191  */
26192
26193
26194 /**
26195  * @class Roo.SplitBar
26196  * @extends Roo.util.Observable
26197  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26198  * <br><br>
26199  * Usage:
26200  * <pre><code>
26201 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26202                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26203 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26204 split.minSize = 100;
26205 split.maxSize = 600;
26206 split.animate = true;
26207 split.on('moved', splitterMoved);
26208 </code></pre>
26209  * @constructor
26210  * Create a new SplitBar
26211  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26212  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26213  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26214  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26215                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26216                         position of the SplitBar).
26217  */
26218 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26219     
26220     /** @private */
26221     this.el = Roo.get(dragElement, true);
26222     this.el.dom.unselectable = "on";
26223     /** @private */
26224     this.resizingEl = Roo.get(resizingElement, true);
26225
26226     /**
26227      * @private
26228      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26229      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26230      * @type Number
26231      */
26232     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26233     
26234     /**
26235      * The minimum size of the resizing element. (Defaults to 0)
26236      * @type Number
26237      */
26238     this.minSize = 0;
26239     
26240     /**
26241      * The maximum size of the resizing element. (Defaults to 2000)
26242      * @type Number
26243      */
26244     this.maxSize = 2000;
26245     
26246     /**
26247      * Whether to animate the transition to the new size
26248      * @type Boolean
26249      */
26250     this.animate = false;
26251     
26252     /**
26253      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26254      * @type Boolean
26255      */
26256     this.useShim = false;
26257     
26258     /** @private */
26259     this.shim = null;
26260     
26261     if(!existingProxy){
26262         /** @private */
26263         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26264     }else{
26265         this.proxy = Roo.get(existingProxy).dom;
26266     }
26267     /** @private */
26268     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26269     
26270     /** @private */
26271     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26272     
26273     /** @private */
26274     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26275     
26276     /** @private */
26277     this.dragSpecs = {};
26278     
26279     /**
26280      * @private The adapter to use to positon and resize elements
26281      */
26282     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26283     this.adapter.init(this);
26284     
26285     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26286         /** @private */
26287         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26288         this.el.addClass("x-splitbar-h");
26289     }else{
26290         /** @private */
26291         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26292         this.el.addClass("x-splitbar-v");
26293     }
26294     
26295     this.addEvents({
26296         /**
26297          * @event resize
26298          * Fires when the splitter is moved (alias for {@link #event-moved})
26299          * @param {Roo.SplitBar} this
26300          * @param {Number} newSize the new width or height
26301          */
26302         "resize" : true,
26303         /**
26304          * @event moved
26305          * Fires when the splitter is moved
26306          * @param {Roo.SplitBar} this
26307          * @param {Number} newSize the new width or height
26308          */
26309         "moved" : true,
26310         /**
26311          * @event beforeresize
26312          * Fires before the splitter is dragged
26313          * @param {Roo.SplitBar} this
26314          */
26315         "beforeresize" : true,
26316
26317         "beforeapply" : true
26318     });
26319
26320     Roo.util.Observable.call(this);
26321 };
26322
26323 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26324     onStartProxyDrag : function(x, y){
26325         this.fireEvent("beforeresize", this);
26326         if(!this.overlay){
26327             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26328             o.unselectable();
26329             o.enableDisplayMode("block");
26330             // all splitbars share the same overlay
26331             Roo.SplitBar.prototype.overlay = o;
26332         }
26333         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26334         this.overlay.show();
26335         Roo.get(this.proxy).setDisplayed("block");
26336         var size = this.adapter.getElementSize(this);
26337         this.activeMinSize = this.getMinimumSize();;
26338         this.activeMaxSize = this.getMaximumSize();;
26339         var c1 = size - this.activeMinSize;
26340         var c2 = Math.max(this.activeMaxSize - size, 0);
26341         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26342             this.dd.resetConstraints();
26343             this.dd.setXConstraint(
26344                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26345                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26346             );
26347             this.dd.setYConstraint(0, 0);
26348         }else{
26349             this.dd.resetConstraints();
26350             this.dd.setXConstraint(0, 0);
26351             this.dd.setYConstraint(
26352                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26353                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26354             );
26355          }
26356         this.dragSpecs.startSize = size;
26357         this.dragSpecs.startPoint = [x, y];
26358         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26359     },
26360     
26361     /** 
26362      * @private Called after the drag operation by the DDProxy
26363      */
26364     onEndProxyDrag : function(e){
26365         Roo.get(this.proxy).setDisplayed(false);
26366         var endPoint = Roo.lib.Event.getXY(e);
26367         if(this.overlay){
26368             this.overlay.hide();
26369         }
26370         var newSize;
26371         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26372             newSize = this.dragSpecs.startSize + 
26373                 (this.placement == Roo.SplitBar.LEFT ?
26374                     endPoint[0] - this.dragSpecs.startPoint[0] :
26375                     this.dragSpecs.startPoint[0] - endPoint[0]
26376                 );
26377         }else{
26378             newSize = this.dragSpecs.startSize + 
26379                 (this.placement == Roo.SplitBar.TOP ?
26380                     endPoint[1] - this.dragSpecs.startPoint[1] :
26381                     this.dragSpecs.startPoint[1] - endPoint[1]
26382                 );
26383         }
26384         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26385         if(newSize != this.dragSpecs.startSize){
26386             if(this.fireEvent('beforeapply', this, newSize) !== false){
26387                 this.adapter.setElementSize(this, newSize);
26388                 this.fireEvent("moved", this, newSize);
26389                 this.fireEvent("resize", this, newSize);
26390             }
26391         }
26392     },
26393     
26394     /**
26395      * Get the adapter this SplitBar uses
26396      * @return The adapter object
26397      */
26398     getAdapter : function(){
26399         return this.adapter;
26400     },
26401     
26402     /**
26403      * Set the adapter this SplitBar uses
26404      * @param {Object} adapter A SplitBar adapter object
26405      */
26406     setAdapter : function(adapter){
26407         this.adapter = adapter;
26408         this.adapter.init(this);
26409     },
26410     
26411     /**
26412      * Gets the minimum size for the resizing element
26413      * @return {Number} The minimum size
26414      */
26415     getMinimumSize : function(){
26416         return this.minSize;
26417     },
26418     
26419     /**
26420      * Sets the minimum size for the resizing element
26421      * @param {Number} minSize The minimum size
26422      */
26423     setMinimumSize : function(minSize){
26424         this.minSize = minSize;
26425     },
26426     
26427     /**
26428      * Gets the maximum size for the resizing element
26429      * @return {Number} The maximum size
26430      */
26431     getMaximumSize : function(){
26432         return this.maxSize;
26433     },
26434     
26435     /**
26436      * Sets the maximum size for the resizing element
26437      * @param {Number} maxSize The maximum size
26438      */
26439     setMaximumSize : function(maxSize){
26440         this.maxSize = maxSize;
26441     },
26442     
26443     /**
26444      * Sets the initialize size for the resizing element
26445      * @param {Number} size The initial size
26446      */
26447     setCurrentSize : function(size){
26448         var oldAnimate = this.animate;
26449         this.animate = false;
26450         this.adapter.setElementSize(this, size);
26451         this.animate = oldAnimate;
26452     },
26453     
26454     /**
26455      * Destroy this splitbar. 
26456      * @param {Boolean} removeEl True to remove the element
26457      */
26458     destroy : function(removeEl){
26459         if(this.shim){
26460             this.shim.remove();
26461         }
26462         this.dd.unreg();
26463         this.proxy.parentNode.removeChild(this.proxy);
26464         if(removeEl){
26465             this.el.remove();
26466         }
26467     }
26468 });
26469
26470 /**
26471  * @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.
26472  */
26473 Roo.SplitBar.createProxy = function(dir){
26474     var proxy = new Roo.Element(document.createElement("div"));
26475     proxy.unselectable();
26476     var cls = 'x-splitbar-proxy';
26477     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26478     document.body.appendChild(proxy.dom);
26479     return proxy.dom;
26480 };
26481
26482 /** 
26483  * @class Roo.SplitBar.BasicLayoutAdapter
26484  * Default Adapter. It assumes the splitter and resizing element are not positioned
26485  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26486  */
26487 Roo.SplitBar.BasicLayoutAdapter = function(){
26488 };
26489
26490 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26491     // do nothing for now
26492     init : function(s){
26493     
26494     },
26495     /**
26496      * Called before drag operations to get the current size of the resizing element. 
26497      * @param {Roo.SplitBar} s The SplitBar using this adapter
26498      */
26499      getElementSize : function(s){
26500         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26501             return s.resizingEl.getWidth();
26502         }else{
26503             return s.resizingEl.getHeight();
26504         }
26505     },
26506     
26507     /**
26508      * Called after drag operations to set the size of the resizing element.
26509      * @param {Roo.SplitBar} s The SplitBar using this adapter
26510      * @param {Number} newSize The new size to set
26511      * @param {Function} onComplete A function to be invoked when resizing is complete
26512      */
26513     setElementSize : function(s, newSize, onComplete){
26514         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26515             if(!s.animate){
26516                 s.resizingEl.setWidth(newSize);
26517                 if(onComplete){
26518                     onComplete(s, newSize);
26519                 }
26520             }else{
26521                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26522             }
26523         }else{
26524             
26525             if(!s.animate){
26526                 s.resizingEl.setHeight(newSize);
26527                 if(onComplete){
26528                     onComplete(s, newSize);
26529                 }
26530             }else{
26531                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26532             }
26533         }
26534     }
26535 };
26536
26537 /** 
26538  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26539  * @extends Roo.SplitBar.BasicLayoutAdapter
26540  * Adapter that  moves the splitter element to align with the resized sizing element. 
26541  * Used with an absolute positioned SplitBar.
26542  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26543  * document.body, make sure you assign an id to the body element.
26544  */
26545 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26546     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26547     this.container = Roo.get(container);
26548 };
26549
26550 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26551     init : function(s){
26552         this.basic.init(s);
26553     },
26554     
26555     getElementSize : function(s){
26556         return this.basic.getElementSize(s);
26557     },
26558     
26559     setElementSize : function(s, newSize, onComplete){
26560         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26561     },
26562     
26563     moveSplitter : function(s){
26564         var yes = Roo.SplitBar;
26565         switch(s.placement){
26566             case yes.LEFT:
26567                 s.el.setX(s.resizingEl.getRight());
26568                 break;
26569             case yes.RIGHT:
26570                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26571                 break;
26572             case yes.TOP:
26573                 s.el.setY(s.resizingEl.getBottom());
26574                 break;
26575             case yes.BOTTOM:
26576                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26577                 break;
26578         }
26579     }
26580 };
26581
26582 /**
26583  * Orientation constant - Create a vertical SplitBar
26584  * @static
26585  * @type Number
26586  */
26587 Roo.SplitBar.VERTICAL = 1;
26588
26589 /**
26590  * Orientation constant - Create a horizontal SplitBar
26591  * @static
26592  * @type Number
26593  */
26594 Roo.SplitBar.HORIZONTAL = 2;
26595
26596 /**
26597  * Placement constant - The resizing element is to the left of the splitter element
26598  * @static
26599  * @type Number
26600  */
26601 Roo.SplitBar.LEFT = 1;
26602
26603 /**
26604  * Placement constant - The resizing element is to the right of the splitter element
26605  * @static
26606  * @type Number
26607  */
26608 Roo.SplitBar.RIGHT = 2;
26609
26610 /**
26611  * Placement constant - The resizing element is positioned above the splitter element
26612  * @static
26613  * @type Number
26614  */
26615 Roo.SplitBar.TOP = 3;
26616
26617 /**
26618  * Placement constant - The resizing element is positioned under splitter element
26619  * @static
26620  * @type Number
26621  */
26622 Roo.SplitBar.BOTTOM = 4;
26623 /*
26624  * Based on:
26625  * Ext JS Library 1.1.1
26626  * Copyright(c) 2006-2007, Ext JS, LLC.
26627  *
26628  * Originally Released Under LGPL - original licence link has changed is not relivant.
26629  *
26630  * Fork - LGPL
26631  * <script type="text/javascript">
26632  */
26633
26634 /**
26635  * @class Roo.View
26636  * @extends Roo.util.Observable
26637  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26638  * This class also supports single and multi selection modes. <br>
26639  * Create a data model bound view:
26640  <pre><code>
26641  var store = new Roo.data.Store(...);
26642
26643  var view = new Roo.View({
26644     el : "my-element",
26645     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26646  
26647     singleSelect: true,
26648     selectedClass: "ydataview-selected",
26649     store: store
26650  });
26651
26652  // listen for node click?
26653  view.on("click", function(vw, index, node, e){
26654  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26655  });
26656
26657  // load XML data
26658  dataModel.load("foobar.xml");
26659  </code></pre>
26660  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26661  * <br><br>
26662  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26663  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26664  * 
26665  * Note: old style constructor is still suported (container, template, config)
26666  * 
26667  * @constructor
26668  * Create a new View
26669  * @param {Object} config The config object
26670  * 
26671  */
26672 Roo.View = function(config, depreciated_tpl, depreciated_config){
26673     
26674     this.parent = false;
26675     
26676     if (typeof(depreciated_tpl) == 'undefined') {
26677         // new way.. - universal constructor.
26678         Roo.apply(this, config);
26679         this.el  = Roo.get(this.el);
26680     } else {
26681         // old format..
26682         this.el  = Roo.get(config);
26683         this.tpl = depreciated_tpl;
26684         Roo.apply(this, depreciated_config);
26685     }
26686     this.wrapEl  = this.el.wrap().wrap();
26687     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26688     
26689     
26690     if(typeof(this.tpl) == "string"){
26691         this.tpl = new Roo.Template(this.tpl);
26692     } else {
26693         // support xtype ctors..
26694         this.tpl = new Roo.factory(this.tpl, Roo);
26695     }
26696     
26697     
26698     this.tpl.compile();
26699     
26700     /** @private */
26701     this.addEvents({
26702         /**
26703          * @event beforeclick
26704          * Fires before a click is processed. Returns false to cancel the default action.
26705          * @param {Roo.View} this
26706          * @param {Number} index The index of the target node
26707          * @param {HTMLElement} node The target node
26708          * @param {Roo.EventObject} e The raw event object
26709          */
26710             "beforeclick" : true,
26711         /**
26712          * @event click
26713          * Fires when a template node is clicked.
26714          * @param {Roo.View} this
26715          * @param {Number} index The index of the target node
26716          * @param {HTMLElement} node The target node
26717          * @param {Roo.EventObject} e The raw event object
26718          */
26719             "click" : true,
26720         /**
26721          * @event dblclick
26722          * Fires when a template node is double clicked.
26723          * @param {Roo.View} this
26724          * @param {Number} index The index of the target node
26725          * @param {HTMLElement} node The target node
26726          * @param {Roo.EventObject} e The raw event object
26727          */
26728             "dblclick" : true,
26729         /**
26730          * @event contextmenu
26731          * Fires when a template node is right clicked.
26732          * @param {Roo.View} this
26733          * @param {Number} index The index of the target node
26734          * @param {HTMLElement} node The target node
26735          * @param {Roo.EventObject} e The raw event object
26736          */
26737             "contextmenu" : true,
26738         /**
26739          * @event selectionchange
26740          * Fires when the selected nodes change.
26741          * @param {Roo.View} this
26742          * @param {Array} selections Array of the selected nodes
26743          */
26744             "selectionchange" : true,
26745     
26746         /**
26747          * @event beforeselect
26748          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26749          * @param {Roo.View} this
26750          * @param {HTMLElement} node The node to be selected
26751          * @param {Array} selections Array of currently selected nodes
26752          */
26753             "beforeselect" : true,
26754         /**
26755          * @event preparedata
26756          * Fires on every row to render, to allow you to change the data.
26757          * @param {Roo.View} this
26758          * @param {Object} data to be rendered (change this)
26759          */
26760           "preparedata" : true
26761           
26762           
26763         });
26764
26765
26766
26767     this.el.on({
26768         "click": this.onClick,
26769         "dblclick": this.onDblClick,
26770         "contextmenu": this.onContextMenu,
26771         scope:this
26772     });
26773
26774     this.selections = [];
26775     this.nodes = [];
26776     this.cmp = new Roo.CompositeElementLite([]);
26777     if(this.store){
26778         this.store = Roo.factory(this.store, Roo.data);
26779         this.setStore(this.store, true);
26780     }
26781     
26782     if ( this.footer && this.footer.xtype) {
26783            
26784          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26785         
26786         this.footer.dataSource = this.store;
26787         this.footer.container = fctr;
26788         this.footer = Roo.factory(this.footer, Roo);
26789         fctr.insertFirst(this.el);
26790         
26791         // this is a bit insane - as the paging toolbar seems to detach the el..
26792 //        dom.parentNode.parentNode.parentNode
26793          // they get detached?
26794     }
26795     
26796     
26797     Roo.View.superclass.constructor.call(this);
26798     
26799     
26800 };
26801
26802 Roo.extend(Roo.View, Roo.util.Observable, {
26803     
26804      /**
26805      * @cfg {Roo.data.Store} store Data store to load data from.
26806      */
26807     store : false,
26808     
26809     /**
26810      * @cfg {String|Roo.Element} el The container element.
26811      */
26812     el : '',
26813     
26814     /**
26815      * @cfg {String|Roo.Template} tpl The template used by this View 
26816      */
26817     tpl : false,
26818     /**
26819      * @cfg {String} dataName the named area of the template to use as the data area
26820      *                          Works with domtemplates roo-name="name"
26821      */
26822     dataName: false,
26823     /**
26824      * @cfg {String} selectedClass The css class to add to selected nodes
26825      */
26826     selectedClass : "x-view-selected",
26827      /**
26828      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26829      */
26830     emptyText : "",
26831     
26832     /**
26833      * @cfg {String} text to display on mask (default Loading)
26834      */
26835     mask : false,
26836     /**
26837      * @cfg {Boolean} multiSelect Allow multiple selection
26838      */
26839     multiSelect : false,
26840     /**
26841      * @cfg {Boolean} singleSelect Allow single selection
26842      */
26843     singleSelect:  false,
26844     
26845     /**
26846      * @cfg {Boolean} toggleSelect - selecting 
26847      */
26848     toggleSelect : false,
26849     
26850     /**
26851      * @cfg {Boolean} tickable - selecting 
26852      */
26853     tickable : false,
26854     
26855     /**
26856      * Returns the element this view is bound to.
26857      * @return {Roo.Element}
26858      */
26859     getEl : function(){
26860         return this.wrapEl;
26861     },
26862     
26863     
26864
26865     /**
26866      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26867      */
26868     refresh : function(){
26869         //Roo.log('refresh');
26870         var t = this.tpl;
26871         
26872         // if we are using something like 'domtemplate', then
26873         // the what gets used is:
26874         // t.applySubtemplate(NAME, data, wrapping data..)
26875         // the outer template then get' applied with
26876         //     the store 'extra data'
26877         // and the body get's added to the
26878         //      roo-name="data" node?
26879         //      <span class='roo-tpl-{name}'></span> ?????
26880         
26881         
26882         
26883         this.clearSelections();
26884         this.el.update("");
26885         var html = [];
26886         var records = this.store.getRange();
26887         if(records.length < 1) {
26888             
26889             // is this valid??  = should it render a template??
26890             
26891             this.el.update(this.emptyText);
26892             return;
26893         }
26894         var el = this.el;
26895         if (this.dataName) {
26896             this.el.update(t.apply(this.store.meta)); //????
26897             el = this.el.child('.roo-tpl-' + this.dataName);
26898         }
26899         
26900         for(var i = 0, len = records.length; i < len; i++){
26901             var data = this.prepareData(records[i].data, i, records[i]);
26902             this.fireEvent("preparedata", this, data, i, records[i]);
26903             
26904             var d = Roo.apply({}, data);
26905             
26906             if(this.tickable){
26907                 Roo.apply(d, {'roo-id' : Roo.id()});
26908                 
26909                 var _this = this;
26910             
26911                 Roo.each(this.parent.item, function(item){
26912                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26913                         return;
26914                     }
26915                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26916                 });
26917             }
26918             
26919             html[html.length] = Roo.util.Format.trim(
26920                 this.dataName ?
26921                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26922                     t.apply(d)
26923             );
26924         }
26925         
26926         
26927         
26928         el.update(html.join(""));
26929         this.nodes = el.dom.childNodes;
26930         this.updateIndexes(0);
26931     },
26932     
26933
26934     /**
26935      * Function to override to reformat the data that is sent to
26936      * the template for each node.
26937      * DEPRICATED - use the preparedata event handler.
26938      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
26939      * a JSON object for an UpdateManager bound view).
26940      */
26941     prepareData : function(data, index, record)
26942     {
26943         this.fireEvent("preparedata", this, data, index, record);
26944         return data;
26945     },
26946
26947     onUpdate : function(ds, record){
26948         // Roo.log('on update');   
26949         this.clearSelections();
26950         var index = this.store.indexOf(record);
26951         var n = this.nodes[index];
26952         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
26953         n.parentNode.removeChild(n);
26954         this.updateIndexes(index, index);
26955     },
26956
26957     
26958     
26959 // --------- FIXME     
26960     onAdd : function(ds, records, index)
26961     {
26962         //Roo.log(['on Add', ds, records, index] );        
26963         this.clearSelections();
26964         if(this.nodes.length == 0){
26965             this.refresh();
26966             return;
26967         }
26968         var n = this.nodes[index];
26969         for(var i = 0, len = records.length; i < len; i++){
26970             var d = this.prepareData(records[i].data, i, records[i]);
26971             if(n){
26972                 this.tpl.insertBefore(n, d);
26973             }else{
26974                 
26975                 this.tpl.append(this.el, d);
26976             }
26977         }
26978         this.updateIndexes(index);
26979     },
26980
26981     onRemove : function(ds, record, index){
26982        // Roo.log('onRemove');
26983         this.clearSelections();
26984         var el = this.dataName  ?
26985             this.el.child('.roo-tpl-' + this.dataName) :
26986             this.el; 
26987         
26988         el.dom.removeChild(this.nodes[index]);
26989         this.updateIndexes(index);
26990     },
26991
26992     /**
26993      * Refresh an individual node.
26994      * @param {Number} index
26995      */
26996     refreshNode : function(index){
26997         this.onUpdate(this.store, this.store.getAt(index));
26998     },
26999
27000     updateIndexes : function(startIndex, endIndex){
27001         var ns = this.nodes;
27002         startIndex = startIndex || 0;
27003         endIndex = endIndex || ns.length - 1;
27004         for(var i = startIndex; i <= endIndex; i++){
27005             ns[i].nodeIndex = i;
27006         }
27007     },
27008
27009     /**
27010      * Changes the data store this view uses and refresh the view.
27011      * @param {Store} store
27012      */
27013     setStore : function(store, initial){
27014         if(!initial && this.store){
27015             this.store.un("datachanged", this.refresh);
27016             this.store.un("add", this.onAdd);
27017             this.store.un("remove", this.onRemove);
27018             this.store.un("update", this.onUpdate);
27019             this.store.un("clear", this.refresh);
27020             this.store.un("beforeload", this.onBeforeLoad);
27021             this.store.un("load", this.onLoad);
27022             this.store.un("loadexception", this.onLoad);
27023         }
27024         if(store){
27025           
27026             store.on("datachanged", this.refresh, this);
27027             store.on("add", this.onAdd, this);
27028             store.on("remove", this.onRemove, this);
27029             store.on("update", this.onUpdate, this);
27030             store.on("clear", this.refresh, this);
27031             store.on("beforeload", this.onBeforeLoad, this);
27032             store.on("load", this.onLoad, this);
27033             store.on("loadexception", this.onLoad, this);
27034         }
27035         
27036         if(store){
27037             this.refresh();
27038         }
27039     },
27040     /**
27041      * onbeforeLoad - masks the loading area.
27042      *
27043      */
27044     onBeforeLoad : function(store,opts)
27045     {
27046          //Roo.log('onBeforeLoad');   
27047         if (!opts.add) {
27048             this.el.update("");
27049         }
27050         this.el.mask(this.mask ? this.mask : "Loading" ); 
27051     },
27052     onLoad : function ()
27053     {
27054         this.el.unmask();
27055     },
27056     
27057
27058     /**
27059      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27060      * @param {HTMLElement} node
27061      * @return {HTMLElement} The template node
27062      */
27063     findItemFromChild : function(node){
27064         var el = this.dataName  ?
27065             this.el.child('.roo-tpl-' + this.dataName,true) :
27066             this.el.dom; 
27067         
27068         if(!node || node.parentNode == el){
27069                     return node;
27070             }
27071             var p = node.parentNode;
27072             while(p && p != el){
27073             if(p.parentNode == el){
27074                 return p;
27075             }
27076             p = p.parentNode;
27077         }
27078             return null;
27079     },
27080
27081     /** @ignore */
27082     onClick : function(e){
27083         var item = this.findItemFromChild(e.getTarget());
27084         if(item){
27085             var index = this.indexOf(item);
27086             if(this.onItemClick(item, index, e) !== false){
27087                 this.fireEvent("click", this, index, item, e);
27088             }
27089         }else{
27090             this.clearSelections();
27091         }
27092     },
27093
27094     /** @ignore */
27095     onContextMenu : function(e){
27096         var item = this.findItemFromChild(e.getTarget());
27097         if(item){
27098             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27099         }
27100     },
27101
27102     /** @ignore */
27103     onDblClick : function(e){
27104         var item = this.findItemFromChild(e.getTarget());
27105         if(item){
27106             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27107         }
27108     },
27109
27110     onItemClick : function(item, index, e)
27111     {
27112         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27113             return false;
27114         }
27115         if (this.toggleSelect) {
27116             var m = this.isSelected(item) ? 'unselect' : 'select';
27117             //Roo.log(m);
27118             var _t = this;
27119             _t[m](item, true, false);
27120             return true;
27121         }
27122         if(this.multiSelect || this.singleSelect){
27123             if(this.multiSelect && e.shiftKey && this.lastSelection){
27124                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27125             }else{
27126                 this.select(item, this.multiSelect && e.ctrlKey);
27127                 this.lastSelection = item;
27128             }
27129             
27130             if(!this.tickable){
27131                 e.preventDefault();
27132             }
27133             
27134         }
27135         return true;
27136     },
27137
27138     /**
27139      * Get the number of selected nodes.
27140      * @return {Number}
27141      */
27142     getSelectionCount : function(){
27143         return this.selections.length;
27144     },
27145
27146     /**
27147      * Get the currently selected nodes.
27148      * @return {Array} An array of HTMLElements
27149      */
27150     getSelectedNodes : function(){
27151         return this.selections;
27152     },
27153
27154     /**
27155      * Get the indexes of the selected nodes.
27156      * @return {Array}
27157      */
27158     getSelectedIndexes : function(){
27159         var indexes = [], s = this.selections;
27160         for(var i = 0, len = s.length; i < len; i++){
27161             indexes.push(s[i].nodeIndex);
27162         }
27163         return indexes;
27164     },
27165
27166     /**
27167      * Clear all selections
27168      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27169      */
27170     clearSelections : function(suppressEvent){
27171         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27172             this.cmp.elements = this.selections;
27173             this.cmp.removeClass(this.selectedClass);
27174             this.selections = [];
27175             if(!suppressEvent){
27176                 this.fireEvent("selectionchange", this, this.selections);
27177             }
27178         }
27179     },
27180
27181     /**
27182      * Returns true if the passed node is selected
27183      * @param {HTMLElement/Number} node The node or node index
27184      * @return {Boolean}
27185      */
27186     isSelected : function(node){
27187         var s = this.selections;
27188         if(s.length < 1){
27189             return false;
27190         }
27191         node = this.getNode(node);
27192         return s.indexOf(node) !== -1;
27193     },
27194
27195     /**
27196      * Selects nodes.
27197      * @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
27198      * @param {Boolean} keepExisting (optional) true to keep existing selections
27199      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27200      */
27201     select : function(nodeInfo, keepExisting, suppressEvent){
27202         if(nodeInfo instanceof Array){
27203             if(!keepExisting){
27204                 this.clearSelections(true);
27205             }
27206             for(var i = 0, len = nodeInfo.length; i < len; i++){
27207                 this.select(nodeInfo[i], true, true);
27208             }
27209             return;
27210         } 
27211         var node = this.getNode(nodeInfo);
27212         if(!node || this.isSelected(node)){
27213             return; // already selected.
27214         }
27215         if(!keepExisting){
27216             this.clearSelections(true);
27217         }
27218         
27219         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27220             Roo.fly(node).addClass(this.selectedClass);
27221             this.selections.push(node);
27222             if(!suppressEvent){
27223                 this.fireEvent("selectionchange", this, this.selections);
27224             }
27225         }
27226         
27227         
27228     },
27229       /**
27230      * Unselects nodes.
27231      * @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
27232      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27233      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27234      */
27235     unselect : function(nodeInfo, keepExisting, suppressEvent)
27236     {
27237         if(nodeInfo instanceof Array){
27238             Roo.each(this.selections, function(s) {
27239                 this.unselect(s, nodeInfo);
27240             }, this);
27241             return;
27242         }
27243         var node = this.getNode(nodeInfo);
27244         if(!node || !this.isSelected(node)){
27245             //Roo.log("not selected");
27246             return; // not selected.
27247         }
27248         // fireevent???
27249         var ns = [];
27250         Roo.each(this.selections, function(s) {
27251             if (s == node ) {
27252                 Roo.fly(node).removeClass(this.selectedClass);
27253
27254                 return;
27255             }
27256             ns.push(s);
27257         },this);
27258         
27259         this.selections= ns;
27260         this.fireEvent("selectionchange", this, this.selections);
27261     },
27262
27263     /**
27264      * Gets a template node.
27265      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27266      * @return {HTMLElement} The node or null if it wasn't found
27267      */
27268     getNode : function(nodeInfo){
27269         if(typeof nodeInfo == "string"){
27270             return document.getElementById(nodeInfo);
27271         }else if(typeof nodeInfo == "number"){
27272             return this.nodes[nodeInfo];
27273         }
27274         return nodeInfo;
27275     },
27276
27277     /**
27278      * Gets a range template nodes.
27279      * @param {Number} startIndex
27280      * @param {Number} endIndex
27281      * @return {Array} An array of nodes
27282      */
27283     getNodes : function(start, end){
27284         var ns = this.nodes;
27285         start = start || 0;
27286         end = typeof end == "undefined" ? ns.length - 1 : end;
27287         var nodes = [];
27288         if(start <= end){
27289             for(var i = start; i <= end; i++){
27290                 nodes.push(ns[i]);
27291             }
27292         } else{
27293             for(var i = start; i >= end; i--){
27294                 nodes.push(ns[i]);
27295             }
27296         }
27297         return nodes;
27298     },
27299
27300     /**
27301      * Finds the index of the passed node
27302      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27303      * @return {Number} The index of the node or -1
27304      */
27305     indexOf : function(node){
27306         node = this.getNode(node);
27307         if(typeof node.nodeIndex == "number"){
27308             return node.nodeIndex;
27309         }
27310         var ns = this.nodes;
27311         for(var i = 0, len = ns.length; i < len; i++){
27312             if(ns[i] == node){
27313                 return i;
27314             }
27315         }
27316         return -1;
27317     }
27318 });
27319 /*
27320  * Based on:
27321  * Ext JS Library 1.1.1
27322  * Copyright(c) 2006-2007, Ext JS, LLC.
27323  *
27324  * Originally Released Under LGPL - original licence link has changed is not relivant.
27325  *
27326  * Fork - LGPL
27327  * <script type="text/javascript">
27328  */
27329
27330 /**
27331  * @class Roo.JsonView
27332  * @extends Roo.View
27333  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27334 <pre><code>
27335 var view = new Roo.JsonView({
27336     container: "my-element",
27337     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27338     multiSelect: true, 
27339     jsonRoot: "data" 
27340 });
27341
27342 // listen for node click?
27343 view.on("click", function(vw, index, node, e){
27344     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27345 });
27346
27347 // direct load of JSON data
27348 view.load("foobar.php");
27349
27350 // Example from my blog list
27351 var tpl = new Roo.Template(
27352     '&lt;div class="entry"&gt;' +
27353     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27354     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27355     "&lt;/div&gt;&lt;hr /&gt;"
27356 );
27357
27358 var moreView = new Roo.JsonView({
27359     container :  "entry-list", 
27360     template : tpl,
27361     jsonRoot: "posts"
27362 });
27363 moreView.on("beforerender", this.sortEntries, this);
27364 moreView.load({
27365     url: "/blog/get-posts.php",
27366     params: "allposts=true",
27367     text: "Loading Blog Entries..."
27368 });
27369 </code></pre>
27370
27371 * Note: old code is supported with arguments : (container, template, config)
27372
27373
27374  * @constructor
27375  * Create a new JsonView
27376  * 
27377  * @param {Object} config The config object
27378  * 
27379  */
27380 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27381     
27382     
27383     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27384
27385     var um = this.el.getUpdateManager();
27386     um.setRenderer(this);
27387     um.on("update", this.onLoad, this);
27388     um.on("failure", this.onLoadException, this);
27389
27390     /**
27391      * @event beforerender
27392      * Fires before rendering of the downloaded JSON data.
27393      * @param {Roo.JsonView} this
27394      * @param {Object} data The JSON data loaded
27395      */
27396     /**
27397      * @event load
27398      * Fires when data is loaded.
27399      * @param {Roo.JsonView} this
27400      * @param {Object} data The JSON data loaded
27401      * @param {Object} response The raw Connect response object
27402      */
27403     /**
27404      * @event loadexception
27405      * Fires when loading fails.
27406      * @param {Roo.JsonView} this
27407      * @param {Object} response The raw Connect response object
27408      */
27409     this.addEvents({
27410         'beforerender' : true,
27411         'load' : true,
27412         'loadexception' : true
27413     });
27414 };
27415 Roo.extend(Roo.JsonView, Roo.View, {
27416     /**
27417      * @type {String} The root property in the loaded JSON object that contains the data
27418      */
27419     jsonRoot : "",
27420
27421     /**
27422      * Refreshes the view.
27423      */
27424     refresh : function(){
27425         this.clearSelections();
27426         this.el.update("");
27427         var html = [];
27428         var o = this.jsonData;
27429         if(o && o.length > 0){
27430             for(var i = 0, len = o.length; i < len; i++){
27431                 var data = this.prepareData(o[i], i, o);
27432                 html[html.length] = this.tpl.apply(data);
27433             }
27434         }else{
27435             html.push(this.emptyText);
27436         }
27437         this.el.update(html.join(""));
27438         this.nodes = this.el.dom.childNodes;
27439         this.updateIndexes(0);
27440     },
27441
27442     /**
27443      * 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.
27444      * @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:
27445      <pre><code>
27446      view.load({
27447          url: "your-url.php",
27448          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27449          callback: yourFunction,
27450          scope: yourObject, //(optional scope)
27451          discardUrl: false,
27452          nocache: false,
27453          text: "Loading...",
27454          timeout: 30,
27455          scripts: false
27456      });
27457      </code></pre>
27458      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27459      * 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.
27460      * @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}
27461      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27462      * @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.
27463      */
27464     load : function(){
27465         var um = this.el.getUpdateManager();
27466         um.update.apply(um, arguments);
27467     },
27468
27469     // note - render is a standard framework call...
27470     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27471     render : function(el, response){
27472         
27473         this.clearSelections();
27474         this.el.update("");
27475         var o;
27476         try{
27477             if (response != '') {
27478                 o = Roo.util.JSON.decode(response.responseText);
27479                 if(this.jsonRoot){
27480                     
27481                     o = o[this.jsonRoot];
27482                 }
27483             }
27484         } catch(e){
27485         }
27486         /**
27487          * The current JSON data or null
27488          */
27489         this.jsonData = o;
27490         this.beforeRender();
27491         this.refresh();
27492     },
27493
27494 /**
27495  * Get the number of records in the current JSON dataset
27496  * @return {Number}
27497  */
27498     getCount : function(){
27499         return this.jsonData ? this.jsonData.length : 0;
27500     },
27501
27502 /**
27503  * Returns the JSON object for the specified node(s)
27504  * @param {HTMLElement/Array} node The node or an array of nodes
27505  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27506  * you get the JSON object for the node
27507  */
27508     getNodeData : function(node){
27509         if(node instanceof Array){
27510             var data = [];
27511             for(var i = 0, len = node.length; i < len; i++){
27512                 data.push(this.getNodeData(node[i]));
27513             }
27514             return data;
27515         }
27516         return this.jsonData[this.indexOf(node)] || null;
27517     },
27518
27519     beforeRender : function(){
27520         this.snapshot = this.jsonData;
27521         if(this.sortInfo){
27522             this.sort.apply(this, this.sortInfo);
27523         }
27524         this.fireEvent("beforerender", this, this.jsonData);
27525     },
27526
27527     onLoad : function(el, o){
27528         this.fireEvent("load", this, this.jsonData, o);
27529     },
27530
27531     onLoadException : function(el, o){
27532         this.fireEvent("loadexception", this, o);
27533     },
27534
27535 /**
27536  * Filter the data by a specific property.
27537  * @param {String} property A property on your JSON objects
27538  * @param {String/RegExp} value Either string that the property values
27539  * should start with, or a RegExp to test against the property
27540  */
27541     filter : function(property, value){
27542         if(this.jsonData){
27543             var data = [];
27544             var ss = this.snapshot;
27545             if(typeof value == "string"){
27546                 var vlen = value.length;
27547                 if(vlen == 0){
27548                     this.clearFilter();
27549                     return;
27550                 }
27551                 value = value.toLowerCase();
27552                 for(var i = 0, len = ss.length; i < len; i++){
27553                     var o = ss[i];
27554                     if(o[property].substr(0, vlen).toLowerCase() == value){
27555                         data.push(o);
27556                     }
27557                 }
27558             } else if(value.exec){ // regex?
27559                 for(var i = 0, len = ss.length; i < len; i++){
27560                     var o = ss[i];
27561                     if(value.test(o[property])){
27562                         data.push(o);
27563                     }
27564                 }
27565             } else{
27566                 return;
27567             }
27568             this.jsonData = data;
27569             this.refresh();
27570         }
27571     },
27572
27573 /**
27574  * Filter by a function. The passed function will be called with each
27575  * object in the current dataset. If the function returns true the value is kept,
27576  * otherwise it is filtered.
27577  * @param {Function} fn
27578  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27579  */
27580     filterBy : function(fn, scope){
27581         if(this.jsonData){
27582             var data = [];
27583             var ss = this.snapshot;
27584             for(var i = 0, len = ss.length; i < len; i++){
27585                 var o = ss[i];
27586                 if(fn.call(scope || this, o)){
27587                     data.push(o);
27588                 }
27589             }
27590             this.jsonData = data;
27591             this.refresh();
27592         }
27593     },
27594
27595 /**
27596  * Clears the current filter.
27597  */
27598     clearFilter : function(){
27599         if(this.snapshot && this.jsonData != this.snapshot){
27600             this.jsonData = this.snapshot;
27601             this.refresh();
27602         }
27603     },
27604
27605
27606 /**
27607  * Sorts the data for this view and refreshes it.
27608  * @param {String} property A property on your JSON objects to sort on
27609  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27610  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27611  */
27612     sort : function(property, dir, sortType){
27613         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27614         if(this.jsonData){
27615             var p = property;
27616             var dsc = dir && dir.toLowerCase() == "desc";
27617             var f = function(o1, o2){
27618                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27619                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27620                 ;
27621                 if(v1 < v2){
27622                     return dsc ? +1 : -1;
27623                 } else if(v1 > v2){
27624                     return dsc ? -1 : +1;
27625                 } else{
27626                     return 0;
27627                 }
27628             };
27629             this.jsonData.sort(f);
27630             this.refresh();
27631             if(this.jsonData != this.snapshot){
27632                 this.snapshot.sort(f);
27633             }
27634         }
27635     }
27636 });/*
27637  * Based on:
27638  * Ext JS Library 1.1.1
27639  * Copyright(c) 2006-2007, Ext JS, LLC.
27640  *
27641  * Originally Released Under LGPL - original licence link has changed is not relivant.
27642  *
27643  * Fork - LGPL
27644  * <script type="text/javascript">
27645  */
27646  
27647
27648 /**
27649  * @class Roo.ColorPalette
27650  * @extends Roo.Component
27651  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27652  * Here's an example of typical usage:
27653  * <pre><code>
27654 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27655 cp.render('my-div');
27656
27657 cp.on('select', function(palette, selColor){
27658     // do something with selColor
27659 });
27660 </code></pre>
27661  * @constructor
27662  * Create a new ColorPalette
27663  * @param {Object} config The config object
27664  */
27665 Roo.ColorPalette = function(config){
27666     Roo.ColorPalette.superclass.constructor.call(this, config);
27667     this.addEvents({
27668         /**
27669              * @event select
27670              * Fires when a color is selected
27671              * @param {ColorPalette} this
27672              * @param {String} color The 6-digit color hex code (without the # symbol)
27673              */
27674         select: true
27675     });
27676
27677     if(this.handler){
27678         this.on("select", this.handler, this.scope, true);
27679     }
27680 };
27681 Roo.extend(Roo.ColorPalette, Roo.Component, {
27682     /**
27683      * @cfg {String} itemCls
27684      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27685      */
27686     itemCls : "x-color-palette",
27687     /**
27688      * @cfg {String} value
27689      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27690      * the hex codes are case-sensitive.
27691      */
27692     value : null,
27693     clickEvent:'click',
27694     // private
27695     ctype: "Roo.ColorPalette",
27696
27697     /**
27698      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27699      */
27700     allowReselect : false,
27701
27702     /**
27703      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27704      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27705      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27706      * of colors with the width setting until the box is symmetrical.</p>
27707      * <p>You can override individual colors if needed:</p>
27708      * <pre><code>
27709 var cp = new Roo.ColorPalette();
27710 cp.colors[0] = "FF0000";  // change the first box to red
27711 </code></pre>
27712
27713 Or you can provide a custom array of your own for complete control:
27714 <pre><code>
27715 var cp = new Roo.ColorPalette();
27716 cp.colors = ["000000", "993300", "333300"];
27717 </code></pre>
27718      * @type Array
27719      */
27720     colors : [
27721         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27722         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27723         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27724         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27725         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27726     ],
27727
27728     // private
27729     onRender : function(container, position){
27730         var t = new Roo.MasterTemplate(
27731             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27732         );
27733         var c = this.colors;
27734         for(var i = 0, len = c.length; i < len; i++){
27735             t.add([c[i]]);
27736         }
27737         var el = document.createElement("div");
27738         el.className = this.itemCls;
27739         t.overwrite(el);
27740         container.dom.insertBefore(el, position);
27741         this.el = Roo.get(el);
27742         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27743         if(this.clickEvent != 'click'){
27744             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27745         }
27746     },
27747
27748     // private
27749     afterRender : function(){
27750         Roo.ColorPalette.superclass.afterRender.call(this);
27751         if(this.value){
27752             var s = this.value;
27753             this.value = null;
27754             this.select(s);
27755         }
27756     },
27757
27758     // private
27759     handleClick : function(e, t){
27760         e.preventDefault();
27761         if(!this.disabled){
27762             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27763             this.select(c.toUpperCase());
27764         }
27765     },
27766
27767     /**
27768      * Selects the specified color in the palette (fires the select event)
27769      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27770      */
27771     select : function(color){
27772         color = color.replace("#", "");
27773         if(color != this.value || this.allowReselect){
27774             var el = this.el;
27775             if(this.value){
27776                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27777             }
27778             el.child("a.color-"+color).addClass("x-color-palette-sel");
27779             this.value = color;
27780             this.fireEvent("select", this, color);
27781         }
27782     }
27783 });/*
27784  * Based on:
27785  * Ext JS Library 1.1.1
27786  * Copyright(c) 2006-2007, Ext JS, LLC.
27787  *
27788  * Originally Released Under LGPL - original licence link has changed is not relivant.
27789  *
27790  * Fork - LGPL
27791  * <script type="text/javascript">
27792  */
27793  
27794 /**
27795  * @class Roo.DatePicker
27796  * @extends Roo.Component
27797  * Simple date picker class.
27798  * @constructor
27799  * Create a new DatePicker
27800  * @param {Object} config The config object
27801  */
27802 Roo.DatePicker = function(config){
27803     Roo.DatePicker.superclass.constructor.call(this, config);
27804
27805     this.value = config && config.value ?
27806                  config.value.clearTime() : new Date().clearTime();
27807
27808     this.addEvents({
27809         /**
27810              * @event select
27811              * Fires when a date is selected
27812              * @param {DatePicker} this
27813              * @param {Date} date The selected date
27814              */
27815         'select': true,
27816         /**
27817              * @event monthchange
27818              * Fires when the displayed month changes 
27819              * @param {DatePicker} this
27820              * @param {Date} date The selected month
27821              */
27822         'monthchange': true
27823     });
27824
27825     if(this.handler){
27826         this.on("select", this.handler,  this.scope || this);
27827     }
27828     // build the disabledDatesRE
27829     if(!this.disabledDatesRE && this.disabledDates){
27830         var dd = this.disabledDates;
27831         var re = "(?:";
27832         for(var i = 0; i < dd.length; i++){
27833             re += dd[i];
27834             if(i != dd.length-1) {
27835                 re += "|";
27836             }
27837         }
27838         this.disabledDatesRE = new RegExp(re + ")");
27839     }
27840 };
27841
27842 Roo.extend(Roo.DatePicker, Roo.Component, {
27843     /**
27844      * @cfg {String} todayText
27845      * The text to display on the button that selects the current date (defaults to "Today")
27846      */
27847     todayText : "Today",
27848     /**
27849      * @cfg {String} okText
27850      * The text to display on the ok button
27851      */
27852     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27853     /**
27854      * @cfg {String} cancelText
27855      * The text to display on the cancel button
27856      */
27857     cancelText : "Cancel",
27858     /**
27859      * @cfg {String} todayTip
27860      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27861      */
27862     todayTip : "{0} (Spacebar)",
27863     /**
27864      * @cfg {Date} minDate
27865      * Minimum allowable date (JavaScript date object, defaults to null)
27866      */
27867     minDate : null,
27868     /**
27869      * @cfg {Date} maxDate
27870      * Maximum allowable date (JavaScript date object, defaults to null)
27871      */
27872     maxDate : null,
27873     /**
27874      * @cfg {String} minText
27875      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27876      */
27877     minText : "This date is before the minimum date",
27878     /**
27879      * @cfg {String} maxText
27880      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27881      */
27882     maxText : "This date is after the maximum date",
27883     /**
27884      * @cfg {String} format
27885      * The default date format string which can be overriden for localization support.  The format must be
27886      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27887      */
27888     format : "m/d/y",
27889     /**
27890      * @cfg {Array} disabledDays
27891      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27892      */
27893     disabledDays : null,
27894     /**
27895      * @cfg {String} disabledDaysText
27896      * The tooltip to display when the date falls on a disabled day (defaults to "")
27897      */
27898     disabledDaysText : "",
27899     /**
27900      * @cfg {RegExp} disabledDatesRE
27901      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27902      */
27903     disabledDatesRE : null,
27904     /**
27905      * @cfg {String} disabledDatesText
27906      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27907      */
27908     disabledDatesText : "",
27909     /**
27910      * @cfg {Boolean} constrainToViewport
27911      * True to constrain the date picker to the viewport (defaults to true)
27912      */
27913     constrainToViewport : true,
27914     /**
27915      * @cfg {Array} monthNames
27916      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27917      */
27918     monthNames : Date.monthNames,
27919     /**
27920      * @cfg {Array} dayNames
27921      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27922      */
27923     dayNames : Date.dayNames,
27924     /**
27925      * @cfg {String} nextText
27926      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27927      */
27928     nextText: 'Next Month (Control+Right)',
27929     /**
27930      * @cfg {String} prevText
27931      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27932      */
27933     prevText: 'Previous Month (Control+Left)',
27934     /**
27935      * @cfg {String} monthYearText
27936      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
27937      */
27938     monthYearText: 'Choose a month (Control+Up/Down to move years)',
27939     /**
27940      * @cfg {Number} startDay
27941      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
27942      */
27943     startDay : 0,
27944     /**
27945      * @cfg {Bool} showClear
27946      * Show a clear button (usefull for date form elements that can be blank.)
27947      */
27948     
27949     showClear: false,
27950     
27951     /**
27952      * Sets the value of the date field
27953      * @param {Date} value The date to set
27954      */
27955     setValue : function(value){
27956         var old = this.value;
27957         
27958         if (typeof(value) == 'string') {
27959          
27960             value = Date.parseDate(value, this.format);
27961         }
27962         if (!value) {
27963             value = new Date();
27964         }
27965         
27966         this.value = value.clearTime(true);
27967         if(this.el){
27968             this.update(this.value);
27969         }
27970     },
27971
27972     /**
27973      * Gets the current selected value of the date field
27974      * @return {Date} The selected date
27975      */
27976     getValue : function(){
27977         return this.value;
27978     },
27979
27980     // private
27981     focus : function(){
27982         if(this.el){
27983             this.update(this.activeDate);
27984         }
27985     },
27986
27987     // privateval
27988     onRender : function(container, position){
27989         
27990         var m = [
27991              '<table cellspacing="0">',
27992                 '<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>',
27993                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
27994         var dn = this.dayNames;
27995         for(var i = 0; i < 7; i++){
27996             var d = this.startDay+i;
27997             if(d > 6){
27998                 d = d-7;
27999             }
28000             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28001         }
28002         m[m.length] = "</tr></thead><tbody><tr>";
28003         for(var i = 0; i < 42; i++) {
28004             if(i % 7 == 0 && i != 0){
28005                 m[m.length] = "</tr><tr>";
28006             }
28007             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28008         }
28009         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28010             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28011
28012         var el = document.createElement("div");
28013         el.className = "x-date-picker";
28014         el.innerHTML = m.join("");
28015
28016         container.dom.insertBefore(el, position);
28017
28018         this.el = Roo.get(el);
28019         this.eventEl = Roo.get(el.firstChild);
28020
28021         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28022             handler: this.showPrevMonth,
28023             scope: this,
28024             preventDefault:true,
28025             stopDefault:true
28026         });
28027
28028         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28029             handler: this.showNextMonth,
28030             scope: this,
28031             preventDefault:true,
28032             stopDefault:true
28033         });
28034
28035         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28036
28037         this.monthPicker = this.el.down('div.x-date-mp');
28038         this.monthPicker.enableDisplayMode('block');
28039         
28040         var kn = new Roo.KeyNav(this.eventEl, {
28041             "left" : function(e){
28042                 e.ctrlKey ?
28043                     this.showPrevMonth() :
28044                     this.update(this.activeDate.add("d", -1));
28045             },
28046
28047             "right" : function(e){
28048                 e.ctrlKey ?
28049                     this.showNextMonth() :
28050                     this.update(this.activeDate.add("d", 1));
28051             },
28052
28053             "up" : function(e){
28054                 e.ctrlKey ?
28055                     this.showNextYear() :
28056                     this.update(this.activeDate.add("d", -7));
28057             },
28058
28059             "down" : function(e){
28060                 e.ctrlKey ?
28061                     this.showPrevYear() :
28062                     this.update(this.activeDate.add("d", 7));
28063             },
28064
28065             "pageUp" : function(e){
28066                 this.showNextMonth();
28067             },
28068
28069             "pageDown" : function(e){
28070                 this.showPrevMonth();
28071             },
28072
28073             "enter" : function(e){
28074                 e.stopPropagation();
28075                 return true;
28076             },
28077
28078             scope : this
28079         });
28080
28081         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28082
28083         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28084
28085         this.el.unselectable();
28086         
28087         this.cells = this.el.select("table.x-date-inner tbody td");
28088         this.textNodes = this.el.query("table.x-date-inner tbody span");
28089
28090         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28091             text: "&#160;",
28092             tooltip: this.monthYearText
28093         });
28094
28095         this.mbtn.on('click', this.showMonthPicker, this);
28096         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28097
28098
28099         var today = (new Date()).dateFormat(this.format);
28100         
28101         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28102         if (this.showClear) {
28103             baseTb.add( new Roo.Toolbar.Fill());
28104         }
28105         baseTb.add({
28106             text: String.format(this.todayText, today),
28107             tooltip: String.format(this.todayTip, today),
28108             handler: this.selectToday,
28109             scope: this
28110         });
28111         
28112         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28113             
28114         //});
28115         if (this.showClear) {
28116             
28117             baseTb.add( new Roo.Toolbar.Fill());
28118             baseTb.add({
28119                 text: '&#160;',
28120                 cls: 'x-btn-icon x-btn-clear',
28121                 handler: function() {
28122                     //this.value = '';
28123                     this.fireEvent("select", this, '');
28124                 },
28125                 scope: this
28126             });
28127         }
28128         
28129         
28130         if(Roo.isIE){
28131             this.el.repaint();
28132         }
28133         this.update(this.value);
28134     },
28135
28136     createMonthPicker : function(){
28137         if(!this.monthPicker.dom.firstChild){
28138             var buf = ['<table border="0" cellspacing="0">'];
28139             for(var i = 0; i < 6; i++){
28140                 buf.push(
28141                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28142                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28143                     i == 0 ?
28144                     '<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>' :
28145                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28146                 );
28147             }
28148             buf.push(
28149                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28150                     this.okText,
28151                     '</button><button type="button" class="x-date-mp-cancel">',
28152                     this.cancelText,
28153                     '</button></td></tr>',
28154                 '</table>'
28155             );
28156             this.monthPicker.update(buf.join(''));
28157             this.monthPicker.on('click', this.onMonthClick, this);
28158             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28159
28160             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28161             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28162
28163             this.mpMonths.each(function(m, a, i){
28164                 i += 1;
28165                 if((i%2) == 0){
28166                     m.dom.xmonth = 5 + Math.round(i * .5);
28167                 }else{
28168                     m.dom.xmonth = Math.round((i-1) * .5);
28169                 }
28170             });
28171         }
28172     },
28173
28174     showMonthPicker : function(){
28175         this.createMonthPicker();
28176         var size = this.el.getSize();
28177         this.monthPicker.setSize(size);
28178         this.monthPicker.child('table').setSize(size);
28179
28180         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28181         this.updateMPMonth(this.mpSelMonth);
28182         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28183         this.updateMPYear(this.mpSelYear);
28184
28185         this.monthPicker.slideIn('t', {duration:.2});
28186     },
28187
28188     updateMPYear : function(y){
28189         this.mpyear = y;
28190         var ys = this.mpYears.elements;
28191         for(var i = 1; i <= 10; i++){
28192             var td = ys[i-1], y2;
28193             if((i%2) == 0){
28194                 y2 = y + Math.round(i * .5);
28195                 td.firstChild.innerHTML = y2;
28196                 td.xyear = y2;
28197             }else{
28198                 y2 = y - (5-Math.round(i * .5));
28199                 td.firstChild.innerHTML = y2;
28200                 td.xyear = y2;
28201             }
28202             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28203         }
28204     },
28205
28206     updateMPMonth : function(sm){
28207         this.mpMonths.each(function(m, a, i){
28208             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28209         });
28210     },
28211
28212     selectMPMonth: function(m){
28213         
28214     },
28215
28216     onMonthClick : function(e, t){
28217         e.stopEvent();
28218         var el = new Roo.Element(t), pn;
28219         if(el.is('button.x-date-mp-cancel')){
28220             this.hideMonthPicker();
28221         }
28222         else if(el.is('button.x-date-mp-ok')){
28223             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28224             this.hideMonthPicker();
28225         }
28226         else if(pn = el.up('td.x-date-mp-month', 2)){
28227             this.mpMonths.removeClass('x-date-mp-sel');
28228             pn.addClass('x-date-mp-sel');
28229             this.mpSelMonth = pn.dom.xmonth;
28230         }
28231         else if(pn = el.up('td.x-date-mp-year', 2)){
28232             this.mpYears.removeClass('x-date-mp-sel');
28233             pn.addClass('x-date-mp-sel');
28234             this.mpSelYear = pn.dom.xyear;
28235         }
28236         else if(el.is('a.x-date-mp-prev')){
28237             this.updateMPYear(this.mpyear-10);
28238         }
28239         else if(el.is('a.x-date-mp-next')){
28240             this.updateMPYear(this.mpyear+10);
28241         }
28242     },
28243
28244     onMonthDblClick : function(e, t){
28245         e.stopEvent();
28246         var el = new Roo.Element(t), pn;
28247         if(pn = el.up('td.x-date-mp-month', 2)){
28248             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28249             this.hideMonthPicker();
28250         }
28251         else if(pn = el.up('td.x-date-mp-year', 2)){
28252             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28253             this.hideMonthPicker();
28254         }
28255     },
28256
28257     hideMonthPicker : function(disableAnim){
28258         if(this.monthPicker){
28259             if(disableAnim === true){
28260                 this.monthPicker.hide();
28261             }else{
28262                 this.monthPicker.slideOut('t', {duration:.2});
28263             }
28264         }
28265     },
28266
28267     // private
28268     showPrevMonth : function(e){
28269         this.update(this.activeDate.add("mo", -1));
28270     },
28271
28272     // private
28273     showNextMonth : function(e){
28274         this.update(this.activeDate.add("mo", 1));
28275     },
28276
28277     // private
28278     showPrevYear : function(){
28279         this.update(this.activeDate.add("y", -1));
28280     },
28281
28282     // private
28283     showNextYear : function(){
28284         this.update(this.activeDate.add("y", 1));
28285     },
28286
28287     // private
28288     handleMouseWheel : function(e){
28289         var delta = e.getWheelDelta();
28290         if(delta > 0){
28291             this.showPrevMonth();
28292             e.stopEvent();
28293         } else if(delta < 0){
28294             this.showNextMonth();
28295             e.stopEvent();
28296         }
28297     },
28298
28299     // private
28300     handleDateClick : function(e, t){
28301         e.stopEvent();
28302         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28303             this.setValue(new Date(t.dateValue));
28304             this.fireEvent("select", this, this.value);
28305         }
28306     },
28307
28308     // private
28309     selectToday : function(){
28310         this.setValue(new Date().clearTime());
28311         this.fireEvent("select", this, this.value);
28312     },
28313
28314     // private
28315     update : function(date)
28316     {
28317         var vd = this.activeDate;
28318         this.activeDate = date;
28319         if(vd && this.el){
28320             var t = date.getTime();
28321             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28322                 this.cells.removeClass("x-date-selected");
28323                 this.cells.each(function(c){
28324                    if(c.dom.firstChild.dateValue == t){
28325                        c.addClass("x-date-selected");
28326                        setTimeout(function(){
28327                             try{c.dom.firstChild.focus();}catch(e){}
28328                        }, 50);
28329                        return false;
28330                    }
28331                 });
28332                 return;
28333             }
28334         }
28335         
28336         var days = date.getDaysInMonth();
28337         var firstOfMonth = date.getFirstDateOfMonth();
28338         var startingPos = firstOfMonth.getDay()-this.startDay;
28339
28340         if(startingPos <= this.startDay){
28341             startingPos += 7;
28342         }
28343
28344         var pm = date.add("mo", -1);
28345         var prevStart = pm.getDaysInMonth()-startingPos;
28346
28347         var cells = this.cells.elements;
28348         var textEls = this.textNodes;
28349         days += startingPos;
28350
28351         // convert everything to numbers so it's fast
28352         var day = 86400000;
28353         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28354         var today = new Date().clearTime().getTime();
28355         var sel = date.clearTime().getTime();
28356         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28357         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28358         var ddMatch = this.disabledDatesRE;
28359         var ddText = this.disabledDatesText;
28360         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28361         var ddaysText = this.disabledDaysText;
28362         var format = this.format;
28363
28364         var setCellClass = function(cal, cell){
28365             cell.title = "";
28366             var t = d.getTime();
28367             cell.firstChild.dateValue = t;
28368             if(t == today){
28369                 cell.className += " x-date-today";
28370                 cell.title = cal.todayText;
28371             }
28372             if(t == sel){
28373                 cell.className += " x-date-selected";
28374                 setTimeout(function(){
28375                     try{cell.firstChild.focus();}catch(e){}
28376                 }, 50);
28377             }
28378             // disabling
28379             if(t < min) {
28380                 cell.className = " x-date-disabled";
28381                 cell.title = cal.minText;
28382                 return;
28383             }
28384             if(t > max) {
28385                 cell.className = " x-date-disabled";
28386                 cell.title = cal.maxText;
28387                 return;
28388             }
28389             if(ddays){
28390                 if(ddays.indexOf(d.getDay()) != -1){
28391                     cell.title = ddaysText;
28392                     cell.className = " x-date-disabled";
28393                 }
28394             }
28395             if(ddMatch && format){
28396                 var fvalue = d.dateFormat(format);
28397                 if(ddMatch.test(fvalue)){
28398                     cell.title = ddText.replace("%0", fvalue);
28399                     cell.className = " x-date-disabled";
28400                 }
28401             }
28402         };
28403
28404         var i = 0;
28405         for(; i < startingPos; i++) {
28406             textEls[i].innerHTML = (++prevStart);
28407             d.setDate(d.getDate()+1);
28408             cells[i].className = "x-date-prevday";
28409             setCellClass(this, cells[i]);
28410         }
28411         for(; i < days; i++){
28412             intDay = i - startingPos + 1;
28413             textEls[i].innerHTML = (intDay);
28414             d.setDate(d.getDate()+1);
28415             cells[i].className = "x-date-active";
28416             setCellClass(this, cells[i]);
28417         }
28418         var extraDays = 0;
28419         for(; i < 42; i++) {
28420              textEls[i].innerHTML = (++extraDays);
28421              d.setDate(d.getDate()+1);
28422              cells[i].className = "x-date-nextday";
28423              setCellClass(this, cells[i]);
28424         }
28425
28426         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28427         this.fireEvent('monthchange', this, date);
28428         
28429         if(!this.internalRender){
28430             var main = this.el.dom.firstChild;
28431             var w = main.offsetWidth;
28432             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28433             Roo.fly(main).setWidth(w);
28434             this.internalRender = true;
28435             // opera does not respect the auto grow header center column
28436             // then, after it gets a width opera refuses to recalculate
28437             // without a second pass
28438             if(Roo.isOpera && !this.secondPass){
28439                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28440                 this.secondPass = true;
28441                 this.update.defer(10, this, [date]);
28442             }
28443         }
28444         
28445         
28446     }
28447 });        /*
28448  * Based on:
28449  * Ext JS Library 1.1.1
28450  * Copyright(c) 2006-2007, Ext JS, LLC.
28451  *
28452  * Originally Released Under LGPL - original licence link has changed is not relivant.
28453  *
28454  * Fork - LGPL
28455  * <script type="text/javascript">
28456  */
28457 /**
28458  * @class Roo.TabPanel
28459  * @extends Roo.util.Observable
28460  * A lightweight tab container.
28461  * <br><br>
28462  * Usage:
28463  * <pre><code>
28464 // basic tabs 1, built from existing content
28465 var tabs = new Roo.TabPanel("tabs1");
28466 tabs.addTab("script", "View Script");
28467 tabs.addTab("markup", "View Markup");
28468 tabs.activate("script");
28469
28470 // more advanced tabs, built from javascript
28471 var jtabs = new Roo.TabPanel("jtabs");
28472 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28473
28474 // set up the UpdateManager
28475 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28476 var updater = tab2.getUpdateManager();
28477 updater.setDefaultUrl("ajax1.htm");
28478 tab2.on('activate', updater.refresh, updater, true);
28479
28480 // Use setUrl for Ajax loading
28481 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28482 tab3.setUrl("ajax2.htm", null, true);
28483
28484 // Disabled tab
28485 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28486 tab4.disable();
28487
28488 jtabs.activate("jtabs-1");
28489  * </code></pre>
28490  * @constructor
28491  * Create a new TabPanel.
28492  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28493  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28494  */
28495 Roo.TabPanel = function(container, config){
28496     /**
28497     * The container element for this TabPanel.
28498     * @type Roo.Element
28499     */
28500     this.el = Roo.get(container, true);
28501     if(config){
28502         if(typeof config == "boolean"){
28503             this.tabPosition = config ? "bottom" : "top";
28504         }else{
28505             Roo.apply(this, config);
28506         }
28507     }
28508     if(this.tabPosition == "bottom"){
28509         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28510         this.el.addClass("x-tabs-bottom");
28511     }
28512     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28513     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28514     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28515     if(Roo.isIE){
28516         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28517     }
28518     if(this.tabPosition != "bottom"){
28519         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28520          * @type Roo.Element
28521          */
28522         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28523         this.el.addClass("x-tabs-top");
28524     }
28525     this.items = [];
28526
28527     this.bodyEl.setStyle("position", "relative");
28528
28529     this.active = null;
28530     this.activateDelegate = this.activate.createDelegate(this);
28531
28532     this.addEvents({
28533         /**
28534          * @event tabchange
28535          * Fires when the active tab changes
28536          * @param {Roo.TabPanel} this
28537          * @param {Roo.TabPanelItem} activePanel The new active tab
28538          */
28539         "tabchange": true,
28540         /**
28541          * @event beforetabchange
28542          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28543          * @param {Roo.TabPanel} this
28544          * @param {Object} e Set cancel to true on this object to cancel the tab change
28545          * @param {Roo.TabPanelItem} tab The tab being changed to
28546          */
28547         "beforetabchange" : true
28548     });
28549
28550     Roo.EventManager.onWindowResize(this.onResize, this);
28551     this.cpad = this.el.getPadding("lr");
28552     this.hiddenCount = 0;
28553
28554
28555     // toolbar on the tabbar support...
28556     if (this.toolbar) {
28557         var tcfg = this.toolbar;
28558         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28559         this.toolbar = new Roo.Toolbar(tcfg);
28560         if (Roo.isSafari) {
28561             var tbl = tcfg.container.child('table', true);
28562             tbl.setAttribute('width', '100%');
28563         }
28564         
28565     }
28566    
28567
28568
28569     Roo.TabPanel.superclass.constructor.call(this);
28570 };
28571
28572 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28573     /*
28574      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28575      */
28576     tabPosition : "top",
28577     /*
28578      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28579      */
28580     currentTabWidth : 0,
28581     /*
28582      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28583      */
28584     minTabWidth : 40,
28585     /*
28586      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28587      */
28588     maxTabWidth : 250,
28589     /*
28590      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28591      */
28592     preferredTabWidth : 175,
28593     /*
28594      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28595      */
28596     resizeTabs : false,
28597     /*
28598      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28599      */
28600     monitorResize : true,
28601     /*
28602      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28603      */
28604     toolbar : false,
28605
28606     /**
28607      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28608      * @param {String} id The id of the div to use <b>or create</b>
28609      * @param {String} text The text for the tab
28610      * @param {String} content (optional) Content to put in the TabPanelItem body
28611      * @param {Boolean} closable (optional) True to create a close icon on the tab
28612      * @return {Roo.TabPanelItem} The created TabPanelItem
28613      */
28614     addTab : function(id, text, content, closable){
28615         var item = new Roo.TabPanelItem(this, id, text, closable);
28616         this.addTabItem(item);
28617         if(content){
28618             item.setContent(content);
28619         }
28620         return item;
28621     },
28622
28623     /**
28624      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28625      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28626      * @return {Roo.TabPanelItem}
28627      */
28628     getTab : function(id){
28629         return this.items[id];
28630     },
28631
28632     /**
28633      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28634      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28635      */
28636     hideTab : function(id){
28637         var t = this.items[id];
28638         if(!t.isHidden()){
28639            t.setHidden(true);
28640            this.hiddenCount++;
28641            this.autoSizeTabs();
28642         }
28643     },
28644
28645     /**
28646      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28647      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28648      */
28649     unhideTab : function(id){
28650         var t = this.items[id];
28651         if(t.isHidden()){
28652            t.setHidden(false);
28653            this.hiddenCount--;
28654            this.autoSizeTabs();
28655         }
28656     },
28657
28658     /**
28659      * Adds an existing {@link Roo.TabPanelItem}.
28660      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28661      */
28662     addTabItem : function(item){
28663         this.items[item.id] = item;
28664         this.items.push(item);
28665         if(this.resizeTabs){
28666            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28667            this.autoSizeTabs();
28668         }else{
28669             item.autoSize();
28670         }
28671     },
28672
28673     /**
28674      * Removes a {@link Roo.TabPanelItem}.
28675      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28676      */
28677     removeTab : function(id){
28678         var items = this.items;
28679         var tab = items[id];
28680         if(!tab) { return; }
28681         var index = items.indexOf(tab);
28682         if(this.active == tab && items.length > 1){
28683             var newTab = this.getNextAvailable(index);
28684             if(newTab) {
28685                 newTab.activate();
28686             }
28687         }
28688         this.stripEl.dom.removeChild(tab.pnode.dom);
28689         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28690             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28691         }
28692         items.splice(index, 1);
28693         delete this.items[tab.id];
28694         tab.fireEvent("close", tab);
28695         tab.purgeListeners();
28696         this.autoSizeTabs();
28697     },
28698
28699     getNextAvailable : function(start){
28700         var items = this.items;
28701         var index = start;
28702         // look for a next tab that will slide over to
28703         // replace the one being removed
28704         while(index < items.length){
28705             var item = items[++index];
28706             if(item && !item.isHidden()){
28707                 return item;
28708             }
28709         }
28710         // if one isn't found select the previous tab (on the left)
28711         index = start;
28712         while(index >= 0){
28713             var item = items[--index];
28714             if(item && !item.isHidden()){
28715                 return item;
28716             }
28717         }
28718         return null;
28719     },
28720
28721     /**
28722      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28723      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28724      */
28725     disableTab : function(id){
28726         var tab = this.items[id];
28727         if(tab && this.active != tab){
28728             tab.disable();
28729         }
28730     },
28731
28732     /**
28733      * Enables a {@link Roo.TabPanelItem} that is disabled.
28734      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28735      */
28736     enableTab : function(id){
28737         var tab = this.items[id];
28738         tab.enable();
28739     },
28740
28741     /**
28742      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28743      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28744      * @return {Roo.TabPanelItem} The TabPanelItem.
28745      */
28746     activate : function(id){
28747         var tab = this.items[id];
28748         if(!tab){
28749             return null;
28750         }
28751         if(tab == this.active || tab.disabled){
28752             return tab;
28753         }
28754         var e = {};
28755         this.fireEvent("beforetabchange", this, e, tab);
28756         if(e.cancel !== true && !tab.disabled){
28757             if(this.active){
28758                 this.active.hide();
28759             }
28760             this.active = this.items[id];
28761             this.active.show();
28762             this.fireEvent("tabchange", this, this.active);
28763         }
28764         return tab;
28765     },
28766
28767     /**
28768      * Gets the active {@link Roo.TabPanelItem}.
28769      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28770      */
28771     getActiveTab : function(){
28772         return this.active;
28773     },
28774
28775     /**
28776      * Updates the tab body element to fit the height of the container element
28777      * for overflow scrolling
28778      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28779      */
28780     syncHeight : function(targetHeight){
28781         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28782         var bm = this.bodyEl.getMargins();
28783         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28784         this.bodyEl.setHeight(newHeight);
28785         return newHeight;
28786     },
28787
28788     onResize : function(){
28789         if(this.monitorResize){
28790             this.autoSizeTabs();
28791         }
28792     },
28793
28794     /**
28795      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28796      */
28797     beginUpdate : function(){
28798         this.updating = true;
28799     },
28800
28801     /**
28802      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28803      */
28804     endUpdate : function(){
28805         this.updating = false;
28806         this.autoSizeTabs();
28807     },
28808
28809     /**
28810      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28811      */
28812     autoSizeTabs : function(){
28813         var count = this.items.length;
28814         var vcount = count - this.hiddenCount;
28815         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28816             return;
28817         }
28818         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28819         var availWidth = Math.floor(w / vcount);
28820         var b = this.stripBody;
28821         if(b.getWidth() > w){
28822             var tabs = this.items;
28823             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28824             if(availWidth < this.minTabWidth){
28825                 /*if(!this.sleft){    // incomplete scrolling code
28826                     this.createScrollButtons();
28827                 }
28828                 this.showScroll();
28829                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28830             }
28831         }else{
28832             if(this.currentTabWidth < this.preferredTabWidth){
28833                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28834             }
28835         }
28836     },
28837
28838     /**
28839      * Returns the number of tabs in this TabPanel.
28840      * @return {Number}
28841      */
28842      getCount : function(){
28843          return this.items.length;
28844      },
28845
28846     /**
28847      * Resizes all the tabs to the passed width
28848      * @param {Number} The new width
28849      */
28850     setTabWidth : function(width){
28851         this.currentTabWidth = width;
28852         for(var i = 0, len = this.items.length; i < len; i++) {
28853                 if(!this.items[i].isHidden()) {
28854                 this.items[i].setWidth(width);
28855             }
28856         }
28857     },
28858
28859     /**
28860      * Destroys this TabPanel
28861      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28862      */
28863     destroy : function(removeEl){
28864         Roo.EventManager.removeResizeListener(this.onResize, this);
28865         for(var i = 0, len = this.items.length; i < len; i++){
28866             this.items[i].purgeListeners();
28867         }
28868         if(removeEl === true){
28869             this.el.update("");
28870             this.el.remove();
28871         }
28872     }
28873 });
28874
28875 /**
28876  * @class Roo.TabPanelItem
28877  * @extends Roo.util.Observable
28878  * Represents an individual item (tab plus body) in a TabPanel.
28879  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28880  * @param {String} id The id of this TabPanelItem
28881  * @param {String} text The text for the tab of this TabPanelItem
28882  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28883  */
28884 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28885     /**
28886      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28887      * @type Roo.TabPanel
28888      */
28889     this.tabPanel = tabPanel;
28890     /**
28891      * The id for this TabPanelItem
28892      * @type String
28893      */
28894     this.id = id;
28895     /** @private */
28896     this.disabled = false;
28897     /** @private */
28898     this.text = text;
28899     /** @private */
28900     this.loaded = false;
28901     this.closable = closable;
28902
28903     /**
28904      * The body element for this TabPanelItem.
28905      * @type Roo.Element
28906      */
28907     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28908     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28909     this.bodyEl.setStyle("display", "block");
28910     this.bodyEl.setStyle("zoom", "1");
28911     this.hideAction();
28912
28913     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28914     /** @private */
28915     this.el = Roo.get(els.el, true);
28916     this.inner = Roo.get(els.inner, true);
28917     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28918     this.pnode = Roo.get(els.el.parentNode, true);
28919     this.el.on("mousedown", this.onTabMouseDown, this);
28920     this.el.on("click", this.onTabClick, this);
28921     /** @private */
28922     if(closable){
28923         var c = Roo.get(els.close, true);
28924         c.dom.title = this.closeText;
28925         c.addClassOnOver("close-over");
28926         c.on("click", this.closeClick, this);
28927      }
28928
28929     this.addEvents({
28930          /**
28931          * @event activate
28932          * Fires when this tab becomes the active tab.
28933          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28934          * @param {Roo.TabPanelItem} this
28935          */
28936         "activate": true,
28937         /**
28938          * @event beforeclose
28939          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
28940          * @param {Roo.TabPanelItem} this
28941          * @param {Object} e Set cancel to true on this object to cancel the close.
28942          */
28943         "beforeclose": true,
28944         /**
28945          * @event close
28946          * Fires when this tab is closed.
28947          * @param {Roo.TabPanelItem} this
28948          */
28949          "close": true,
28950         /**
28951          * @event deactivate
28952          * Fires when this tab is no longer the active tab.
28953          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28954          * @param {Roo.TabPanelItem} this
28955          */
28956          "deactivate" : true
28957     });
28958     this.hidden = false;
28959
28960     Roo.TabPanelItem.superclass.constructor.call(this);
28961 };
28962
28963 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
28964     purgeListeners : function(){
28965        Roo.util.Observable.prototype.purgeListeners.call(this);
28966        this.el.removeAllListeners();
28967     },
28968     /**
28969      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
28970      */
28971     show : function(){
28972         this.pnode.addClass("on");
28973         this.showAction();
28974         if(Roo.isOpera){
28975             this.tabPanel.stripWrap.repaint();
28976         }
28977         this.fireEvent("activate", this.tabPanel, this);
28978     },
28979
28980     /**
28981      * Returns true if this tab is the active tab.
28982      * @return {Boolean}
28983      */
28984     isActive : function(){
28985         return this.tabPanel.getActiveTab() == this;
28986     },
28987
28988     /**
28989      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
28990      */
28991     hide : function(){
28992         this.pnode.removeClass("on");
28993         this.hideAction();
28994         this.fireEvent("deactivate", this.tabPanel, this);
28995     },
28996
28997     hideAction : function(){
28998         this.bodyEl.hide();
28999         this.bodyEl.setStyle("position", "absolute");
29000         this.bodyEl.setLeft("-20000px");
29001         this.bodyEl.setTop("-20000px");
29002     },
29003
29004     showAction : function(){
29005         this.bodyEl.setStyle("position", "relative");
29006         this.bodyEl.setTop("");
29007         this.bodyEl.setLeft("");
29008         this.bodyEl.show();
29009     },
29010
29011     /**
29012      * Set the tooltip for the tab.
29013      * @param {String} tooltip The tab's tooltip
29014      */
29015     setTooltip : function(text){
29016         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29017             this.textEl.dom.qtip = text;
29018             this.textEl.dom.removeAttribute('title');
29019         }else{
29020             this.textEl.dom.title = text;
29021         }
29022     },
29023
29024     onTabClick : function(e){
29025         e.preventDefault();
29026         this.tabPanel.activate(this.id);
29027     },
29028
29029     onTabMouseDown : function(e){
29030         e.preventDefault();
29031         this.tabPanel.activate(this.id);
29032     },
29033
29034     getWidth : function(){
29035         return this.inner.getWidth();
29036     },
29037
29038     setWidth : function(width){
29039         var iwidth = width - this.pnode.getPadding("lr");
29040         this.inner.setWidth(iwidth);
29041         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29042         this.pnode.setWidth(width);
29043     },
29044
29045     /**
29046      * Show or hide the tab
29047      * @param {Boolean} hidden True to hide or false to show.
29048      */
29049     setHidden : function(hidden){
29050         this.hidden = hidden;
29051         this.pnode.setStyle("display", hidden ? "none" : "");
29052     },
29053
29054     /**
29055      * Returns true if this tab is "hidden"
29056      * @return {Boolean}
29057      */
29058     isHidden : function(){
29059         return this.hidden;
29060     },
29061
29062     /**
29063      * Returns the text for this tab
29064      * @return {String}
29065      */
29066     getText : function(){
29067         return this.text;
29068     },
29069
29070     autoSize : function(){
29071         //this.el.beginMeasure();
29072         this.textEl.setWidth(1);
29073         /*
29074          *  #2804 [new] Tabs in Roojs
29075          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29076          */
29077         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29078         //this.el.endMeasure();
29079     },
29080
29081     /**
29082      * Sets the text for the tab (Note: this also sets the tooltip text)
29083      * @param {String} text The tab's text and tooltip
29084      */
29085     setText : function(text){
29086         this.text = text;
29087         this.textEl.update(text);
29088         this.setTooltip(text);
29089         if(!this.tabPanel.resizeTabs){
29090             this.autoSize();
29091         }
29092     },
29093     /**
29094      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29095      */
29096     activate : function(){
29097         this.tabPanel.activate(this.id);
29098     },
29099
29100     /**
29101      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29102      */
29103     disable : function(){
29104         if(this.tabPanel.active != this){
29105             this.disabled = true;
29106             this.pnode.addClass("disabled");
29107         }
29108     },
29109
29110     /**
29111      * Enables this TabPanelItem if it was previously disabled.
29112      */
29113     enable : function(){
29114         this.disabled = false;
29115         this.pnode.removeClass("disabled");
29116     },
29117
29118     /**
29119      * Sets the content for this TabPanelItem.
29120      * @param {String} content The content
29121      * @param {Boolean} loadScripts true to look for and load scripts
29122      */
29123     setContent : function(content, loadScripts){
29124         this.bodyEl.update(content, loadScripts);
29125     },
29126
29127     /**
29128      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29129      * @return {Roo.UpdateManager} The UpdateManager
29130      */
29131     getUpdateManager : function(){
29132         return this.bodyEl.getUpdateManager();
29133     },
29134
29135     /**
29136      * Set a URL to be used to load the content for this TabPanelItem.
29137      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29138      * @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)
29139      * @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)
29140      * @return {Roo.UpdateManager} The UpdateManager
29141      */
29142     setUrl : function(url, params, loadOnce){
29143         if(this.refreshDelegate){
29144             this.un('activate', this.refreshDelegate);
29145         }
29146         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29147         this.on("activate", this.refreshDelegate);
29148         return this.bodyEl.getUpdateManager();
29149     },
29150
29151     /** @private */
29152     _handleRefresh : function(url, params, loadOnce){
29153         if(!loadOnce || !this.loaded){
29154             var updater = this.bodyEl.getUpdateManager();
29155             updater.update(url, params, this._setLoaded.createDelegate(this));
29156         }
29157     },
29158
29159     /**
29160      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29161      *   Will fail silently if the setUrl method has not been called.
29162      *   This does not activate the panel, just updates its content.
29163      */
29164     refresh : function(){
29165         if(this.refreshDelegate){
29166            this.loaded = false;
29167            this.refreshDelegate();
29168         }
29169     },
29170
29171     /** @private */
29172     _setLoaded : function(){
29173         this.loaded = true;
29174     },
29175
29176     /** @private */
29177     closeClick : function(e){
29178         var o = {};
29179         e.stopEvent();
29180         this.fireEvent("beforeclose", this, o);
29181         if(o.cancel !== true){
29182             this.tabPanel.removeTab(this.id);
29183         }
29184     },
29185     /**
29186      * The text displayed in the tooltip for the close icon.
29187      * @type String
29188      */
29189     closeText : "Close this tab"
29190 });
29191
29192 /** @private */
29193 Roo.TabPanel.prototype.createStrip = function(container){
29194     var strip = document.createElement("div");
29195     strip.className = "x-tabs-wrap";
29196     container.appendChild(strip);
29197     return strip;
29198 };
29199 /** @private */
29200 Roo.TabPanel.prototype.createStripList = function(strip){
29201     // div wrapper for retard IE
29202     // returns the "tr" element.
29203     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29204         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29205         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29206     return strip.firstChild.firstChild.firstChild.firstChild;
29207 };
29208 /** @private */
29209 Roo.TabPanel.prototype.createBody = function(container){
29210     var body = document.createElement("div");
29211     Roo.id(body, "tab-body");
29212     Roo.fly(body).addClass("x-tabs-body");
29213     container.appendChild(body);
29214     return body;
29215 };
29216 /** @private */
29217 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29218     var body = Roo.getDom(id);
29219     if(!body){
29220         body = document.createElement("div");
29221         body.id = id;
29222     }
29223     Roo.fly(body).addClass("x-tabs-item-body");
29224     bodyEl.insertBefore(body, bodyEl.firstChild);
29225     return body;
29226 };
29227 /** @private */
29228 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29229     var td = document.createElement("td");
29230     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29231     //stripEl.appendChild(td);
29232     if(closable){
29233         td.className = "x-tabs-closable";
29234         if(!this.closeTpl){
29235             this.closeTpl = new Roo.Template(
29236                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29237                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29238                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29239             );
29240         }
29241         var el = this.closeTpl.overwrite(td, {"text": text});
29242         var close = el.getElementsByTagName("div")[0];
29243         var inner = el.getElementsByTagName("em")[0];
29244         return {"el": el, "close": close, "inner": inner};
29245     } else {
29246         if(!this.tabTpl){
29247             this.tabTpl = new Roo.Template(
29248                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29249                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29250             );
29251         }
29252         var el = this.tabTpl.overwrite(td, {"text": text});
29253         var inner = el.getElementsByTagName("em")[0];
29254         return {"el": el, "inner": inner};
29255     }
29256 };/*
29257  * Based on:
29258  * Ext JS Library 1.1.1
29259  * Copyright(c) 2006-2007, Ext JS, LLC.
29260  *
29261  * Originally Released Under LGPL - original licence link has changed is not relivant.
29262  *
29263  * Fork - LGPL
29264  * <script type="text/javascript">
29265  */
29266
29267 /**
29268  * @class Roo.Button
29269  * @extends Roo.util.Observable
29270  * Simple Button class
29271  * @cfg {String} text The button text
29272  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29273  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29274  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29275  * @cfg {Object} scope The scope of the handler
29276  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29277  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29278  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29279  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29280  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29281  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29282    applies if enableToggle = true)
29283  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29284  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29285   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29286  * @constructor
29287  * Create a new button
29288  * @param {Object} config The config object
29289  */
29290 Roo.Button = function(renderTo, config)
29291 {
29292     if (!config) {
29293         config = renderTo;
29294         renderTo = config.renderTo || false;
29295     }
29296     
29297     Roo.apply(this, config);
29298     this.addEvents({
29299         /**
29300              * @event click
29301              * Fires when this button is clicked
29302              * @param {Button} this
29303              * @param {EventObject} e The click event
29304              */
29305             "click" : true,
29306         /**
29307              * @event toggle
29308              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29309              * @param {Button} this
29310              * @param {Boolean} pressed
29311              */
29312             "toggle" : true,
29313         /**
29314              * @event mouseover
29315              * Fires when the mouse hovers over the button
29316              * @param {Button} this
29317              * @param {Event} e The event object
29318              */
29319         'mouseover' : true,
29320         /**
29321              * @event mouseout
29322              * Fires when the mouse exits the button
29323              * @param {Button} this
29324              * @param {Event} e The event object
29325              */
29326         'mouseout': true,
29327          /**
29328              * @event render
29329              * Fires when the button is rendered
29330              * @param {Button} this
29331              */
29332         'render': true
29333     });
29334     if(this.menu){
29335         this.menu = Roo.menu.MenuMgr.get(this.menu);
29336     }
29337     // register listeners first!!  - so render can be captured..
29338     Roo.util.Observable.call(this);
29339     if(renderTo){
29340         this.render(renderTo);
29341     }
29342     
29343   
29344 };
29345
29346 Roo.extend(Roo.Button, Roo.util.Observable, {
29347     /**
29348      * 
29349      */
29350     
29351     /**
29352      * Read-only. True if this button is hidden
29353      * @type Boolean
29354      */
29355     hidden : false,
29356     /**
29357      * Read-only. True if this button is disabled
29358      * @type Boolean
29359      */
29360     disabled : false,
29361     /**
29362      * Read-only. True if this button is pressed (only if enableToggle = true)
29363      * @type Boolean
29364      */
29365     pressed : false,
29366
29367     /**
29368      * @cfg {Number} tabIndex 
29369      * The DOM tabIndex for this button (defaults to undefined)
29370      */
29371     tabIndex : undefined,
29372
29373     /**
29374      * @cfg {Boolean} enableToggle
29375      * True to enable pressed/not pressed toggling (defaults to false)
29376      */
29377     enableToggle: false,
29378     /**
29379      * @cfg {Mixed} menu
29380      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29381      */
29382     menu : undefined,
29383     /**
29384      * @cfg {String} menuAlign
29385      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29386      */
29387     menuAlign : "tl-bl?",
29388
29389     /**
29390      * @cfg {String} iconCls
29391      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29392      */
29393     iconCls : undefined,
29394     /**
29395      * @cfg {String} type
29396      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29397      */
29398     type : 'button',
29399
29400     // private
29401     menuClassTarget: 'tr',
29402
29403     /**
29404      * @cfg {String} clickEvent
29405      * The type of event to map to the button's event handler (defaults to 'click')
29406      */
29407     clickEvent : 'click',
29408
29409     /**
29410      * @cfg {Boolean} handleMouseEvents
29411      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29412      */
29413     handleMouseEvents : true,
29414
29415     /**
29416      * @cfg {String} tooltipType
29417      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29418      */
29419     tooltipType : 'qtip',
29420
29421     /**
29422      * @cfg {String} cls
29423      * A CSS class to apply to the button's main element.
29424      */
29425     
29426     /**
29427      * @cfg {Roo.Template} template (Optional)
29428      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29429      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29430      * require code modifications if required elements (e.g. a button) aren't present.
29431      */
29432
29433     // private
29434     render : function(renderTo){
29435         var btn;
29436         if(this.hideParent){
29437             this.parentEl = Roo.get(renderTo);
29438         }
29439         if(!this.dhconfig){
29440             if(!this.template){
29441                 if(!Roo.Button.buttonTemplate){
29442                     // hideous table template
29443                     Roo.Button.buttonTemplate = new Roo.Template(
29444                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29445                         '<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>',
29446                         "</tr></tbody></table>");
29447                 }
29448                 this.template = Roo.Button.buttonTemplate;
29449             }
29450             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29451             var btnEl = btn.child("button:first");
29452             btnEl.on('focus', this.onFocus, this);
29453             btnEl.on('blur', this.onBlur, this);
29454             if(this.cls){
29455                 btn.addClass(this.cls);
29456             }
29457             if(this.icon){
29458                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29459             }
29460             if(this.iconCls){
29461                 btnEl.addClass(this.iconCls);
29462                 if(!this.cls){
29463                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29464                 }
29465             }
29466             if(this.tabIndex !== undefined){
29467                 btnEl.dom.tabIndex = this.tabIndex;
29468             }
29469             if(this.tooltip){
29470                 if(typeof this.tooltip == 'object'){
29471                     Roo.QuickTips.tips(Roo.apply({
29472                           target: btnEl.id
29473                     }, this.tooltip));
29474                 } else {
29475                     btnEl.dom[this.tooltipType] = this.tooltip;
29476                 }
29477             }
29478         }else{
29479             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29480         }
29481         this.el = btn;
29482         if(this.id){
29483             this.el.dom.id = this.el.id = this.id;
29484         }
29485         if(this.menu){
29486             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29487             this.menu.on("show", this.onMenuShow, this);
29488             this.menu.on("hide", this.onMenuHide, this);
29489         }
29490         btn.addClass("x-btn");
29491         if(Roo.isIE && !Roo.isIE7){
29492             this.autoWidth.defer(1, this);
29493         }else{
29494             this.autoWidth();
29495         }
29496         if(this.handleMouseEvents){
29497             btn.on("mouseover", this.onMouseOver, this);
29498             btn.on("mouseout", this.onMouseOut, this);
29499             btn.on("mousedown", this.onMouseDown, this);
29500         }
29501         btn.on(this.clickEvent, this.onClick, this);
29502         //btn.on("mouseup", this.onMouseUp, this);
29503         if(this.hidden){
29504             this.hide();
29505         }
29506         if(this.disabled){
29507             this.disable();
29508         }
29509         Roo.ButtonToggleMgr.register(this);
29510         if(this.pressed){
29511             this.el.addClass("x-btn-pressed");
29512         }
29513         if(this.repeat){
29514             var repeater = new Roo.util.ClickRepeater(btn,
29515                 typeof this.repeat == "object" ? this.repeat : {}
29516             );
29517             repeater.on("click", this.onClick,  this);
29518         }
29519         
29520         this.fireEvent('render', this);
29521         
29522     },
29523     /**
29524      * Returns the button's underlying element
29525      * @return {Roo.Element} The element
29526      */
29527     getEl : function(){
29528         return this.el;  
29529     },
29530     
29531     /**
29532      * Destroys this Button and removes any listeners.
29533      */
29534     destroy : function(){
29535         Roo.ButtonToggleMgr.unregister(this);
29536         this.el.removeAllListeners();
29537         this.purgeListeners();
29538         this.el.remove();
29539     },
29540
29541     // private
29542     autoWidth : function(){
29543         if(this.el){
29544             this.el.setWidth("auto");
29545             if(Roo.isIE7 && Roo.isStrict){
29546                 var ib = this.el.child('button');
29547                 if(ib && ib.getWidth() > 20){
29548                     ib.clip();
29549                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29550                 }
29551             }
29552             if(this.minWidth){
29553                 if(this.hidden){
29554                     this.el.beginMeasure();
29555                 }
29556                 if(this.el.getWidth() < this.minWidth){
29557                     this.el.setWidth(this.minWidth);
29558                 }
29559                 if(this.hidden){
29560                     this.el.endMeasure();
29561                 }
29562             }
29563         }
29564     },
29565
29566     /**
29567      * Assigns this button's click handler
29568      * @param {Function} handler The function to call when the button is clicked
29569      * @param {Object} scope (optional) Scope for the function passed in
29570      */
29571     setHandler : function(handler, scope){
29572         this.handler = handler;
29573         this.scope = scope;  
29574     },
29575     
29576     /**
29577      * Sets this button's text
29578      * @param {String} text The button text
29579      */
29580     setText : function(text){
29581         this.text = text;
29582         if(this.el){
29583             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29584         }
29585         this.autoWidth();
29586     },
29587     
29588     /**
29589      * Gets the text for this button
29590      * @return {String} The button text
29591      */
29592     getText : function(){
29593         return this.text;  
29594     },
29595     
29596     /**
29597      * Show this button
29598      */
29599     show: function(){
29600         this.hidden = false;
29601         if(this.el){
29602             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29603         }
29604     },
29605     
29606     /**
29607      * Hide this button
29608      */
29609     hide: function(){
29610         this.hidden = true;
29611         if(this.el){
29612             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29613         }
29614     },
29615     
29616     /**
29617      * Convenience function for boolean show/hide
29618      * @param {Boolean} visible True to show, false to hide
29619      */
29620     setVisible: function(visible){
29621         if(visible) {
29622             this.show();
29623         }else{
29624             this.hide();
29625         }
29626     },
29627     
29628     /**
29629      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29630      * @param {Boolean} state (optional) Force a particular state
29631      */
29632     toggle : function(state){
29633         state = state === undefined ? !this.pressed : state;
29634         if(state != this.pressed){
29635             if(state){
29636                 this.el.addClass("x-btn-pressed");
29637                 this.pressed = true;
29638                 this.fireEvent("toggle", this, true);
29639             }else{
29640                 this.el.removeClass("x-btn-pressed");
29641                 this.pressed = false;
29642                 this.fireEvent("toggle", this, false);
29643             }
29644             if(this.toggleHandler){
29645                 this.toggleHandler.call(this.scope || this, this, state);
29646             }
29647         }
29648     },
29649     
29650     /**
29651      * Focus the button
29652      */
29653     focus : function(){
29654         this.el.child('button:first').focus();
29655     },
29656     
29657     /**
29658      * Disable this button
29659      */
29660     disable : function(){
29661         if(this.el){
29662             this.el.addClass("x-btn-disabled");
29663         }
29664         this.disabled = true;
29665     },
29666     
29667     /**
29668      * Enable this button
29669      */
29670     enable : function(){
29671         if(this.el){
29672             this.el.removeClass("x-btn-disabled");
29673         }
29674         this.disabled = false;
29675     },
29676
29677     /**
29678      * Convenience function for boolean enable/disable
29679      * @param {Boolean} enabled True to enable, false to disable
29680      */
29681     setDisabled : function(v){
29682         this[v !== true ? "enable" : "disable"]();
29683     },
29684
29685     // private
29686     onClick : function(e)
29687     {
29688         if(e){
29689             e.preventDefault();
29690         }
29691         if(e.button != 0){
29692             return;
29693         }
29694         if(!this.disabled){
29695             if(this.enableToggle){
29696                 this.toggle();
29697             }
29698             if(this.menu && !this.menu.isVisible()){
29699                 this.menu.show(this.el, this.menuAlign);
29700             }
29701             this.fireEvent("click", this, e);
29702             if(this.handler){
29703                 this.el.removeClass("x-btn-over");
29704                 this.handler.call(this.scope || this, this, e);
29705             }
29706         }
29707     },
29708     // private
29709     onMouseOver : function(e){
29710         if(!this.disabled){
29711             this.el.addClass("x-btn-over");
29712             this.fireEvent('mouseover', this, e);
29713         }
29714     },
29715     // private
29716     onMouseOut : function(e){
29717         if(!e.within(this.el,  true)){
29718             this.el.removeClass("x-btn-over");
29719             this.fireEvent('mouseout', this, e);
29720         }
29721     },
29722     // private
29723     onFocus : function(e){
29724         if(!this.disabled){
29725             this.el.addClass("x-btn-focus");
29726         }
29727     },
29728     // private
29729     onBlur : function(e){
29730         this.el.removeClass("x-btn-focus");
29731     },
29732     // private
29733     onMouseDown : function(e){
29734         if(!this.disabled && e.button == 0){
29735             this.el.addClass("x-btn-click");
29736             Roo.get(document).on('mouseup', this.onMouseUp, this);
29737         }
29738     },
29739     // private
29740     onMouseUp : function(e){
29741         if(e.button == 0){
29742             this.el.removeClass("x-btn-click");
29743             Roo.get(document).un('mouseup', this.onMouseUp, this);
29744         }
29745     },
29746     // private
29747     onMenuShow : function(e){
29748         this.el.addClass("x-btn-menu-active");
29749     },
29750     // private
29751     onMenuHide : function(e){
29752         this.el.removeClass("x-btn-menu-active");
29753     }   
29754 });
29755
29756 // Private utility class used by Button
29757 Roo.ButtonToggleMgr = function(){
29758    var groups = {};
29759    
29760    function toggleGroup(btn, state){
29761        if(state){
29762            var g = groups[btn.toggleGroup];
29763            for(var i = 0, l = g.length; i < l; i++){
29764                if(g[i] != btn){
29765                    g[i].toggle(false);
29766                }
29767            }
29768        }
29769    }
29770    
29771    return {
29772        register : function(btn){
29773            if(!btn.toggleGroup){
29774                return;
29775            }
29776            var g = groups[btn.toggleGroup];
29777            if(!g){
29778                g = groups[btn.toggleGroup] = [];
29779            }
29780            g.push(btn);
29781            btn.on("toggle", toggleGroup);
29782        },
29783        
29784        unregister : function(btn){
29785            if(!btn.toggleGroup){
29786                return;
29787            }
29788            var g = groups[btn.toggleGroup];
29789            if(g){
29790                g.remove(btn);
29791                btn.un("toggle", toggleGroup);
29792            }
29793        }
29794    };
29795 }();/*
29796  * Based on:
29797  * Ext JS Library 1.1.1
29798  * Copyright(c) 2006-2007, Ext JS, LLC.
29799  *
29800  * Originally Released Under LGPL - original licence link has changed is not relivant.
29801  *
29802  * Fork - LGPL
29803  * <script type="text/javascript">
29804  */
29805  
29806 /**
29807  * @class Roo.SplitButton
29808  * @extends Roo.Button
29809  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29810  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29811  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29812  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29813  * @cfg {String} arrowTooltip The title attribute of the arrow
29814  * @constructor
29815  * Create a new menu button
29816  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29817  * @param {Object} config The config object
29818  */
29819 Roo.SplitButton = function(renderTo, config){
29820     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29821     /**
29822      * @event arrowclick
29823      * Fires when this button's arrow is clicked
29824      * @param {SplitButton} this
29825      * @param {EventObject} e The click event
29826      */
29827     this.addEvents({"arrowclick":true});
29828 };
29829
29830 Roo.extend(Roo.SplitButton, Roo.Button, {
29831     render : function(renderTo){
29832         // this is one sweet looking template!
29833         var tpl = new Roo.Template(
29834             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29835             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29836             '<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>',
29837             "</tbody></table></td><td>",
29838             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29839             '<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>',
29840             "</tbody></table></td></tr></table>"
29841         );
29842         var btn = tpl.append(renderTo, [this.text, this.type], true);
29843         var btnEl = btn.child("button");
29844         if(this.cls){
29845             btn.addClass(this.cls);
29846         }
29847         if(this.icon){
29848             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29849         }
29850         if(this.iconCls){
29851             btnEl.addClass(this.iconCls);
29852             if(!this.cls){
29853                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29854             }
29855         }
29856         this.el = btn;
29857         if(this.handleMouseEvents){
29858             btn.on("mouseover", this.onMouseOver, this);
29859             btn.on("mouseout", this.onMouseOut, this);
29860             btn.on("mousedown", this.onMouseDown, this);
29861             btn.on("mouseup", this.onMouseUp, this);
29862         }
29863         btn.on(this.clickEvent, this.onClick, this);
29864         if(this.tooltip){
29865             if(typeof this.tooltip == 'object'){
29866                 Roo.QuickTips.tips(Roo.apply({
29867                       target: btnEl.id
29868                 }, this.tooltip));
29869             } else {
29870                 btnEl.dom[this.tooltipType] = this.tooltip;
29871             }
29872         }
29873         if(this.arrowTooltip){
29874             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29875         }
29876         if(this.hidden){
29877             this.hide();
29878         }
29879         if(this.disabled){
29880             this.disable();
29881         }
29882         if(this.pressed){
29883             this.el.addClass("x-btn-pressed");
29884         }
29885         if(Roo.isIE && !Roo.isIE7){
29886             this.autoWidth.defer(1, this);
29887         }else{
29888             this.autoWidth();
29889         }
29890         if(this.menu){
29891             this.menu.on("show", this.onMenuShow, this);
29892             this.menu.on("hide", this.onMenuHide, this);
29893         }
29894         this.fireEvent('render', this);
29895     },
29896
29897     // private
29898     autoWidth : function(){
29899         if(this.el){
29900             var tbl = this.el.child("table:first");
29901             var tbl2 = this.el.child("table:last");
29902             this.el.setWidth("auto");
29903             tbl.setWidth("auto");
29904             if(Roo.isIE7 && Roo.isStrict){
29905                 var ib = this.el.child('button:first');
29906                 if(ib && ib.getWidth() > 20){
29907                     ib.clip();
29908                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29909                 }
29910             }
29911             if(this.minWidth){
29912                 if(this.hidden){
29913                     this.el.beginMeasure();
29914                 }
29915                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29916                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29917                 }
29918                 if(this.hidden){
29919                     this.el.endMeasure();
29920                 }
29921             }
29922             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29923         } 
29924     },
29925     /**
29926      * Sets this button's click handler
29927      * @param {Function} handler The function to call when the button is clicked
29928      * @param {Object} scope (optional) Scope for the function passed above
29929      */
29930     setHandler : function(handler, scope){
29931         this.handler = handler;
29932         this.scope = scope;  
29933     },
29934     
29935     /**
29936      * Sets this button's arrow click handler
29937      * @param {Function} handler The function to call when the arrow is clicked
29938      * @param {Object} scope (optional) Scope for the function passed above
29939      */
29940     setArrowHandler : function(handler, scope){
29941         this.arrowHandler = handler;
29942         this.scope = scope;  
29943     },
29944     
29945     /**
29946      * Focus the button
29947      */
29948     focus : function(){
29949         if(this.el){
29950             this.el.child("button:first").focus();
29951         }
29952     },
29953
29954     // private
29955     onClick : function(e){
29956         e.preventDefault();
29957         if(!this.disabled){
29958             if(e.getTarget(".x-btn-menu-arrow-wrap")){
29959                 if(this.menu && !this.menu.isVisible()){
29960                     this.menu.show(this.el, this.menuAlign);
29961                 }
29962                 this.fireEvent("arrowclick", this, e);
29963                 if(this.arrowHandler){
29964                     this.arrowHandler.call(this.scope || this, this, e);
29965                 }
29966             }else{
29967                 this.fireEvent("click", this, e);
29968                 if(this.handler){
29969                     this.handler.call(this.scope || this, this, e);
29970                 }
29971             }
29972         }
29973     },
29974     // private
29975     onMouseDown : function(e){
29976         if(!this.disabled){
29977             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
29978         }
29979     },
29980     // private
29981     onMouseUp : function(e){
29982         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
29983     }   
29984 });
29985
29986
29987 // backwards compat
29988 Roo.MenuButton = Roo.SplitButton;/*
29989  * Based on:
29990  * Ext JS Library 1.1.1
29991  * Copyright(c) 2006-2007, Ext JS, LLC.
29992  *
29993  * Originally Released Under LGPL - original licence link has changed is not relivant.
29994  *
29995  * Fork - LGPL
29996  * <script type="text/javascript">
29997  */
29998
29999 /**
30000  * @class Roo.Toolbar
30001  * Basic Toolbar class.
30002  * @constructor
30003  * Creates a new Toolbar
30004  * @param {Object} container The config object
30005  */ 
30006 Roo.Toolbar = function(container, buttons, config)
30007 {
30008     /// old consturctor format still supported..
30009     if(container instanceof Array){ // omit the container for later rendering
30010         buttons = container;
30011         config = buttons;
30012         container = null;
30013     }
30014     if (typeof(container) == 'object' && container.xtype) {
30015         config = container;
30016         container = config.container;
30017         buttons = config.buttons || []; // not really - use items!!
30018     }
30019     var xitems = [];
30020     if (config && config.items) {
30021         xitems = config.items;
30022         delete config.items;
30023     }
30024     Roo.apply(this, config);
30025     this.buttons = buttons;
30026     
30027     if(container){
30028         this.render(container);
30029     }
30030     this.xitems = xitems;
30031     Roo.each(xitems, function(b) {
30032         this.add(b);
30033     }, this);
30034     
30035 };
30036
30037 Roo.Toolbar.prototype = {
30038     /**
30039      * @cfg {Array} items
30040      * array of button configs or elements to add (will be converted to a MixedCollection)
30041      */
30042     
30043     /**
30044      * @cfg {String/HTMLElement/Element} container
30045      * The id or element that will contain the toolbar
30046      */
30047     // private
30048     render : function(ct){
30049         this.el = Roo.get(ct);
30050         if(this.cls){
30051             this.el.addClass(this.cls);
30052         }
30053         // using a table allows for vertical alignment
30054         // 100% width is needed by Safari...
30055         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30056         this.tr = this.el.child("tr", true);
30057         var autoId = 0;
30058         this.items = new Roo.util.MixedCollection(false, function(o){
30059             return o.id || ("item" + (++autoId));
30060         });
30061         if(this.buttons){
30062             this.add.apply(this, this.buttons);
30063             delete this.buttons;
30064         }
30065     },
30066
30067     /**
30068      * Adds element(s) to the toolbar -- this function takes a variable number of 
30069      * arguments of mixed type and adds them to the toolbar.
30070      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30071      * <ul>
30072      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30073      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30074      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30075      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30076      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30077      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30078      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30079      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30080      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30081      * </ul>
30082      * @param {Mixed} arg2
30083      * @param {Mixed} etc.
30084      */
30085     add : function(){
30086         var a = arguments, l = a.length;
30087         for(var i = 0; i < l; i++){
30088             this._add(a[i]);
30089         }
30090     },
30091     // private..
30092     _add : function(el) {
30093         
30094         if (el.xtype) {
30095             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30096         }
30097         
30098         if (el.applyTo){ // some kind of form field
30099             return this.addField(el);
30100         } 
30101         if (el.render){ // some kind of Toolbar.Item
30102             return this.addItem(el);
30103         }
30104         if (typeof el == "string"){ // string
30105             if(el == "separator" || el == "-"){
30106                 return this.addSeparator();
30107             }
30108             if (el == " "){
30109                 return this.addSpacer();
30110             }
30111             if(el == "->"){
30112                 return this.addFill();
30113             }
30114             return this.addText(el);
30115             
30116         }
30117         if(el.tagName){ // element
30118             return this.addElement(el);
30119         }
30120         if(typeof el == "object"){ // must be button config?
30121             return this.addButton(el);
30122         }
30123         // and now what?!?!
30124         return false;
30125         
30126     },
30127     
30128     /**
30129      * Add an Xtype element
30130      * @param {Object} xtype Xtype Object
30131      * @return {Object} created Object
30132      */
30133     addxtype : function(e){
30134         return this.add(e);  
30135     },
30136     
30137     /**
30138      * Returns the Element for this toolbar.
30139      * @return {Roo.Element}
30140      */
30141     getEl : function(){
30142         return this.el;  
30143     },
30144     
30145     /**
30146      * Adds a separator
30147      * @return {Roo.Toolbar.Item} The separator item
30148      */
30149     addSeparator : function(){
30150         return this.addItem(new Roo.Toolbar.Separator());
30151     },
30152
30153     /**
30154      * Adds a spacer element
30155      * @return {Roo.Toolbar.Spacer} The spacer item
30156      */
30157     addSpacer : function(){
30158         return this.addItem(new Roo.Toolbar.Spacer());
30159     },
30160
30161     /**
30162      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30163      * @return {Roo.Toolbar.Fill} The fill item
30164      */
30165     addFill : function(){
30166         return this.addItem(new Roo.Toolbar.Fill());
30167     },
30168
30169     /**
30170      * Adds any standard HTML element to the toolbar
30171      * @param {String/HTMLElement/Element} el The element or id of the element to add
30172      * @return {Roo.Toolbar.Item} The element's item
30173      */
30174     addElement : function(el){
30175         return this.addItem(new Roo.Toolbar.Item(el));
30176     },
30177     /**
30178      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30179      * @type Roo.util.MixedCollection  
30180      */
30181     items : false,
30182      
30183     /**
30184      * Adds any Toolbar.Item or subclass
30185      * @param {Roo.Toolbar.Item} item
30186      * @return {Roo.Toolbar.Item} The item
30187      */
30188     addItem : function(item){
30189         var td = this.nextBlock();
30190         item.render(td);
30191         this.items.add(item);
30192         return item;
30193     },
30194     
30195     /**
30196      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30197      * @param {Object/Array} config A button config or array of configs
30198      * @return {Roo.Toolbar.Button/Array}
30199      */
30200     addButton : function(config){
30201         if(config instanceof Array){
30202             var buttons = [];
30203             for(var i = 0, len = config.length; i < len; i++) {
30204                 buttons.push(this.addButton(config[i]));
30205             }
30206             return buttons;
30207         }
30208         var b = config;
30209         if(!(config instanceof Roo.Toolbar.Button)){
30210             b = config.split ?
30211                 new Roo.Toolbar.SplitButton(config) :
30212                 new Roo.Toolbar.Button(config);
30213         }
30214         var td = this.nextBlock();
30215         b.render(td);
30216         this.items.add(b);
30217         return b;
30218     },
30219     
30220     /**
30221      * Adds text to the toolbar
30222      * @param {String} text The text to add
30223      * @return {Roo.Toolbar.Item} The element's item
30224      */
30225     addText : function(text){
30226         return this.addItem(new Roo.Toolbar.TextItem(text));
30227     },
30228     
30229     /**
30230      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30231      * @param {Number} index The index where the item is to be inserted
30232      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30233      * @return {Roo.Toolbar.Button/Item}
30234      */
30235     insertButton : function(index, item){
30236         if(item instanceof Array){
30237             var buttons = [];
30238             for(var i = 0, len = item.length; i < len; i++) {
30239                buttons.push(this.insertButton(index + i, item[i]));
30240             }
30241             return buttons;
30242         }
30243         if (!(item instanceof Roo.Toolbar.Button)){
30244            item = new Roo.Toolbar.Button(item);
30245         }
30246         var td = document.createElement("td");
30247         this.tr.insertBefore(td, this.tr.childNodes[index]);
30248         item.render(td);
30249         this.items.insert(index, item);
30250         return item;
30251     },
30252     
30253     /**
30254      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30255      * @param {Object} config
30256      * @return {Roo.Toolbar.Item} The element's item
30257      */
30258     addDom : function(config, returnEl){
30259         var td = this.nextBlock();
30260         Roo.DomHelper.overwrite(td, config);
30261         var ti = new Roo.Toolbar.Item(td.firstChild);
30262         ti.render(td);
30263         this.items.add(ti);
30264         return ti;
30265     },
30266
30267     /**
30268      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30269      * @type Roo.util.MixedCollection  
30270      */
30271     fields : false,
30272     
30273     /**
30274      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30275      * Note: the field should not have been rendered yet. For a field that has already been
30276      * rendered, use {@link #addElement}.
30277      * @param {Roo.form.Field} field
30278      * @return {Roo.ToolbarItem}
30279      */
30280      
30281       
30282     addField : function(field) {
30283         if (!this.fields) {
30284             var autoId = 0;
30285             this.fields = new Roo.util.MixedCollection(false, function(o){
30286                 return o.id || ("item" + (++autoId));
30287             });
30288
30289         }
30290         
30291         var td = this.nextBlock();
30292         field.render(td);
30293         var ti = new Roo.Toolbar.Item(td.firstChild);
30294         ti.render(td);
30295         this.items.add(ti);
30296         this.fields.add(field);
30297         return ti;
30298     },
30299     /**
30300      * Hide the toolbar
30301      * @method hide
30302      */
30303      
30304       
30305     hide : function()
30306     {
30307         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30308         this.el.child('div').hide();
30309     },
30310     /**
30311      * Show the toolbar
30312      * @method show
30313      */
30314     show : function()
30315     {
30316         this.el.child('div').show();
30317     },
30318       
30319     // private
30320     nextBlock : function(){
30321         var td = document.createElement("td");
30322         this.tr.appendChild(td);
30323         return td;
30324     },
30325
30326     // private
30327     destroy : function(){
30328         if(this.items){ // rendered?
30329             Roo.destroy.apply(Roo, this.items.items);
30330         }
30331         if(this.fields){ // rendered?
30332             Roo.destroy.apply(Roo, this.fields.items);
30333         }
30334         Roo.Element.uncache(this.el, this.tr);
30335     }
30336 };
30337
30338 /**
30339  * @class Roo.Toolbar.Item
30340  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30341  * @constructor
30342  * Creates a new Item
30343  * @param {HTMLElement} el 
30344  */
30345 Roo.Toolbar.Item = function(el){
30346     var cfg = {};
30347     if (typeof (el.xtype) != 'undefined') {
30348         cfg = el;
30349         el = cfg.el;
30350     }
30351     
30352     this.el = Roo.getDom(el);
30353     this.id = Roo.id(this.el);
30354     this.hidden = false;
30355     
30356     this.addEvents({
30357          /**
30358              * @event render
30359              * Fires when the button is rendered
30360              * @param {Button} this
30361              */
30362         'render': true
30363     });
30364     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30365 };
30366 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30367 //Roo.Toolbar.Item.prototype = {
30368     
30369     /**
30370      * Get this item's HTML Element
30371      * @return {HTMLElement}
30372      */
30373     getEl : function(){
30374        return this.el;  
30375     },
30376
30377     // private
30378     render : function(td){
30379         
30380          this.td = td;
30381         td.appendChild(this.el);
30382         
30383         this.fireEvent('render', this);
30384     },
30385     
30386     /**
30387      * Removes and destroys this item.
30388      */
30389     destroy : function(){
30390         this.td.parentNode.removeChild(this.td);
30391     },
30392     
30393     /**
30394      * Shows this item.
30395      */
30396     show: function(){
30397         this.hidden = false;
30398         this.td.style.display = "";
30399     },
30400     
30401     /**
30402      * Hides this item.
30403      */
30404     hide: function(){
30405         this.hidden = true;
30406         this.td.style.display = "none";
30407     },
30408     
30409     /**
30410      * Convenience function for boolean show/hide.
30411      * @param {Boolean} visible true to show/false to hide
30412      */
30413     setVisible: function(visible){
30414         if(visible) {
30415             this.show();
30416         }else{
30417             this.hide();
30418         }
30419     },
30420     
30421     /**
30422      * Try to focus this item.
30423      */
30424     focus : function(){
30425         Roo.fly(this.el).focus();
30426     },
30427     
30428     /**
30429      * Disables this item.
30430      */
30431     disable : function(){
30432         Roo.fly(this.td).addClass("x-item-disabled");
30433         this.disabled = true;
30434         this.el.disabled = true;
30435     },
30436     
30437     /**
30438      * Enables this item.
30439      */
30440     enable : function(){
30441         Roo.fly(this.td).removeClass("x-item-disabled");
30442         this.disabled = false;
30443         this.el.disabled = false;
30444     }
30445 });
30446
30447
30448 /**
30449  * @class Roo.Toolbar.Separator
30450  * @extends Roo.Toolbar.Item
30451  * A simple toolbar separator class
30452  * @constructor
30453  * Creates a new Separator
30454  */
30455 Roo.Toolbar.Separator = function(cfg){
30456     
30457     var s = document.createElement("span");
30458     s.className = "ytb-sep";
30459     if (cfg) {
30460         cfg.el = s;
30461     }
30462     
30463     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30464 };
30465 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30466     enable:Roo.emptyFn,
30467     disable:Roo.emptyFn,
30468     focus:Roo.emptyFn
30469 });
30470
30471 /**
30472  * @class Roo.Toolbar.Spacer
30473  * @extends Roo.Toolbar.Item
30474  * A simple element that adds extra horizontal space to a toolbar.
30475  * @constructor
30476  * Creates a new Spacer
30477  */
30478 Roo.Toolbar.Spacer = function(cfg){
30479     var s = document.createElement("div");
30480     s.className = "ytb-spacer";
30481     if (cfg) {
30482         cfg.el = s;
30483     }
30484     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30485 };
30486 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30487     enable:Roo.emptyFn,
30488     disable:Roo.emptyFn,
30489     focus:Roo.emptyFn
30490 });
30491
30492 /**
30493  * @class Roo.Toolbar.Fill
30494  * @extends Roo.Toolbar.Spacer
30495  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30496  * @constructor
30497  * Creates a new Spacer
30498  */
30499 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30500     // private
30501     render : function(td){
30502         td.style.width = '100%';
30503         Roo.Toolbar.Fill.superclass.render.call(this, td);
30504     }
30505 });
30506
30507 /**
30508  * @class Roo.Toolbar.TextItem
30509  * @extends Roo.Toolbar.Item
30510  * A simple class that renders text directly into a toolbar.
30511  * @constructor
30512  * Creates a new TextItem
30513  * @cfg {string} text 
30514  */
30515 Roo.Toolbar.TextItem = function(cfg){
30516     var  text = cfg || "";
30517     if (typeof(cfg) == 'object') {
30518         text = cfg.text || "";
30519     }  else {
30520         cfg = null;
30521     }
30522     var s = document.createElement("span");
30523     s.className = "ytb-text";
30524     s.innerHTML = text;
30525     if (cfg) {
30526         cfg.el  = s;
30527     }
30528     
30529     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30530 };
30531 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30532     
30533      
30534     enable:Roo.emptyFn,
30535     disable:Roo.emptyFn,
30536     focus:Roo.emptyFn
30537 });
30538
30539 /**
30540  * @class Roo.Toolbar.Button
30541  * @extends Roo.Button
30542  * A button that renders into a toolbar.
30543  * @constructor
30544  * Creates a new Button
30545  * @param {Object} config A standard {@link Roo.Button} config object
30546  */
30547 Roo.Toolbar.Button = function(config){
30548     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30549 };
30550 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30551     render : function(td){
30552         this.td = td;
30553         Roo.Toolbar.Button.superclass.render.call(this, td);
30554     },
30555     
30556     /**
30557      * Removes and destroys this button
30558      */
30559     destroy : function(){
30560         Roo.Toolbar.Button.superclass.destroy.call(this);
30561         this.td.parentNode.removeChild(this.td);
30562     },
30563     
30564     /**
30565      * Shows this button
30566      */
30567     show: function(){
30568         this.hidden = false;
30569         this.td.style.display = "";
30570     },
30571     
30572     /**
30573      * Hides this button
30574      */
30575     hide: function(){
30576         this.hidden = true;
30577         this.td.style.display = "none";
30578     },
30579
30580     /**
30581      * Disables this item
30582      */
30583     disable : function(){
30584         Roo.fly(this.td).addClass("x-item-disabled");
30585         this.disabled = true;
30586     },
30587
30588     /**
30589      * Enables this item
30590      */
30591     enable : function(){
30592         Roo.fly(this.td).removeClass("x-item-disabled");
30593         this.disabled = false;
30594     }
30595 });
30596 // backwards compat
30597 Roo.ToolbarButton = Roo.Toolbar.Button;
30598
30599 /**
30600  * @class Roo.Toolbar.SplitButton
30601  * @extends Roo.SplitButton
30602  * A menu button that renders into a toolbar.
30603  * @constructor
30604  * Creates a new SplitButton
30605  * @param {Object} config A standard {@link Roo.SplitButton} config object
30606  */
30607 Roo.Toolbar.SplitButton = function(config){
30608     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30609 };
30610 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30611     render : function(td){
30612         this.td = td;
30613         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30614     },
30615     
30616     /**
30617      * Removes and destroys this button
30618      */
30619     destroy : function(){
30620         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30621         this.td.parentNode.removeChild(this.td);
30622     },
30623     
30624     /**
30625      * Shows this button
30626      */
30627     show: function(){
30628         this.hidden = false;
30629         this.td.style.display = "";
30630     },
30631     
30632     /**
30633      * Hides this button
30634      */
30635     hide: function(){
30636         this.hidden = true;
30637         this.td.style.display = "none";
30638     }
30639 });
30640
30641 // backwards compat
30642 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30643  * Based on:
30644  * Ext JS Library 1.1.1
30645  * Copyright(c) 2006-2007, Ext JS, LLC.
30646  *
30647  * Originally Released Under LGPL - original licence link has changed is not relivant.
30648  *
30649  * Fork - LGPL
30650  * <script type="text/javascript">
30651  */
30652  
30653 /**
30654  * @class Roo.PagingToolbar
30655  * @extends Roo.Toolbar
30656  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30657  * @constructor
30658  * Create a new PagingToolbar
30659  * @param {Object} config The config object
30660  */
30661 Roo.PagingToolbar = function(el, ds, config)
30662 {
30663     // old args format still supported... - xtype is prefered..
30664     if (typeof(el) == 'object' && el.xtype) {
30665         // created from xtype...
30666         config = el;
30667         ds = el.dataSource;
30668         el = config.container;
30669     }
30670     var items = [];
30671     if (config.items) {
30672         items = config.items;
30673         config.items = [];
30674     }
30675     
30676     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30677     this.ds = ds;
30678     this.cursor = 0;
30679     this.renderButtons(this.el);
30680     this.bind(ds);
30681     
30682     // supprot items array.
30683    
30684     Roo.each(items, function(e) {
30685         this.add(Roo.factory(e));
30686     },this);
30687     
30688 };
30689
30690 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30691     /**
30692      * @cfg {Roo.data.Store} dataSource
30693      * The underlying data store providing the paged data
30694      */
30695     /**
30696      * @cfg {String/HTMLElement/Element} container
30697      * container The id or element that will contain the toolbar
30698      */
30699     /**
30700      * @cfg {Boolean} displayInfo
30701      * True to display the displayMsg (defaults to false)
30702      */
30703     /**
30704      * @cfg {Number} pageSize
30705      * The number of records to display per page (defaults to 20)
30706      */
30707     pageSize: 20,
30708     /**
30709      * @cfg {String} displayMsg
30710      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30711      */
30712     displayMsg : 'Displaying {0} - {1} of {2}',
30713     /**
30714      * @cfg {String} emptyMsg
30715      * The message to display when no records are found (defaults to "No data to display")
30716      */
30717     emptyMsg : 'No data to display',
30718     /**
30719      * Customizable piece of the default paging text (defaults to "Page")
30720      * @type String
30721      */
30722     beforePageText : "Page",
30723     /**
30724      * Customizable piece of the default paging text (defaults to "of %0")
30725      * @type String
30726      */
30727     afterPageText : "of {0}",
30728     /**
30729      * Customizable piece of the default paging text (defaults to "First Page")
30730      * @type String
30731      */
30732     firstText : "First Page",
30733     /**
30734      * Customizable piece of the default paging text (defaults to "Previous Page")
30735      * @type String
30736      */
30737     prevText : "Previous Page",
30738     /**
30739      * Customizable piece of the default paging text (defaults to "Next Page")
30740      * @type String
30741      */
30742     nextText : "Next Page",
30743     /**
30744      * Customizable piece of the default paging text (defaults to "Last Page")
30745      * @type String
30746      */
30747     lastText : "Last Page",
30748     /**
30749      * Customizable piece of the default paging text (defaults to "Refresh")
30750      * @type String
30751      */
30752     refreshText : "Refresh",
30753
30754     // private
30755     renderButtons : function(el){
30756         Roo.PagingToolbar.superclass.render.call(this, el);
30757         this.first = this.addButton({
30758             tooltip: this.firstText,
30759             cls: "x-btn-icon x-grid-page-first",
30760             disabled: true,
30761             handler: this.onClick.createDelegate(this, ["first"])
30762         });
30763         this.prev = this.addButton({
30764             tooltip: this.prevText,
30765             cls: "x-btn-icon x-grid-page-prev",
30766             disabled: true,
30767             handler: this.onClick.createDelegate(this, ["prev"])
30768         });
30769         //this.addSeparator();
30770         this.add(this.beforePageText);
30771         this.field = Roo.get(this.addDom({
30772            tag: "input",
30773            type: "text",
30774            size: "3",
30775            value: "1",
30776            cls: "x-grid-page-number"
30777         }).el);
30778         this.field.on("keydown", this.onPagingKeydown, this);
30779         this.field.on("focus", function(){this.dom.select();});
30780         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30781         this.field.setHeight(18);
30782         //this.addSeparator();
30783         this.next = this.addButton({
30784             tooltip: this.nextText,
30785             cls: "x-btn-icon x-grid-page-next",
30786             disabled: true,
30787             handler: this.onClick.createDelegate(this, ["next"])
30788         });
30789         this.last = this.addButton({
30790             tooltip: this.lastText,
30791             cls: "x-btn-icon x-grid-page-last",
30792             disabled: true,
30793             handler: this.onClick.createDelegate(this, ["last"])
30794         });
30795         //this.addSeparator();
30796         this.loading = this.addButton({
30797             tooltip: this.refreshText,
30798             cls: "x-btn-icon x-grid-loading",
30799             handler: this.onClick.createDelegate(this, ["refresh"])
30800         });
30801
30802         if(this.displayInfo){
30803             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30804         }
30805     },
30806
30807     // private
30808     updateInfo : function(){
30809         if(this.displayEl){
30810             var count = this.ds.getCount();
30811             var msg = count == 0 ?
30812                 this.emptyMsg :
30813                 String.format(
30814                     this.displayMsg,
30815                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30816                 );
30817             this.displayEl.update(msg);
30818         }
30819     },
30820
30821     // private
30822     onLoad : function(ds, r, o){
30823        this.cursor = o.params ? o.params.start : 0;
30824        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30825
30826        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30827        this.field.dom.value = ap;
30828        this.first.setDisabled(ap == 1);
30829        this.prev.setDisabled(ap == 1);
30830        this.next.setDisabled(ap == ps);
30831        this.last.setDisabled(ap == ps);
30832        this.loading.enable();
30833        this.updateInfo();
30834     },
30835
30836     // private
30837     getPageData : function(){
30838         var total = this.ds.getTotalCount();
30839         return {
30840             total : total,
30841             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30842             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30843         };
30844     },
30845
30846     // private
30847     onLoadError : function(){
30848         this.loading.enable();
30849     },
30850
30851     // private
30852     onPagingKeydown : function(e){
30853         var k = e.getKey();
30854         var d = this.getPageData();
30855         if(k == e.RETURN){
30856             var v = this.field.dom.value, pageNum;
30857             if(!v || isNaN(pageNum = parseInt(v, 10))){
30858                 this.field.dom.value = d.activePage;
30859                 return;
30860             }
30861             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30862             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30863             e.stopEvent();
30864         }
30865         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))
30866         {
30867           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30868           this.field.dom.value = pageNum;
30869           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30870           e.stopEvent();
30871         }
30872         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30873         {
30874           var v = this.field.dom.value, pageNum; 
30875           var increment = (e.shiftKey) ? 10 : 1;
30876           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30877             increment *= -1;
30878           }
30879           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30880             this.field.dom.value = d.activePage;
30881             return;
30882           }
30883           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30884           {
30885             this.field.dom.value = parseInt(v, 10) + increment;
30886             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30887             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30888           }
30889           e.stopEvent();
30890         }
30891     },
30892
30893     // private
30894     beforeLoad : function(){
30895         if(this.loading){
30896             this.loading.disable();
30897         }
30898     },
30899
30900     // private
30901     onClick : function(which){
30902         var ds = this.ds;
30903         switch(which){
30904             case "first":
30905                 ds.load({params:{start: 0, limit: this.pageSize}});
30906             break;
30907             case "prev":
30908                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30909             break;
30910             case "next":
30911                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30912             break;
30913             case "last":
30914                 var total = ds.getTotalCount();
30915                 var extra = total % this.pageSize;
30916                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30917                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30918             break;
30919             case "refresh":
30920                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30921             break;
30922         }
30923     },
30924
30925     /**
30926      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30927      * @param {Roo.data.Store} store The data store to unbind
30928      */
30929     unbind : function(ds){
30930         ds.un("beforeload", this.beforeLoad, this);
30931         ds.un("load", this.onLoad, this);
30932         ds.un("loadexception", this.onLoadError, this);
30933         ds.un("remove", this.updateInfo, this);
30934         ds.un("add", this.updateInfo, this);
30935         this.ds = undefined;
30936     },
30937
30938     /**
30939      * Binds the paging toolbar to the specified {@link Roo.data.Store}
30940      * @param {Roo.data.Store} store The data store to bind
30941      */
30942     bind : function(ds){
30943         ds.on("beforeload", this.beforeLoad, this);
30944         ds.on("load", this.onLoad, this);
30945         ds.on("loadexception", this.onLoadError, this);
30946         ds.on("remove", this.updateInfo, this);
30947         ds.on("add", this.updateInfo, this);
30948         this.ds = ds;
30949     }
30950 });/*
30951  * Based on:
30952  * Ext JS Library 1.1.1
30953  * Copyright(c) 2006-2007, Ext JS, LLC.
30954  *
30955  * Originally Released Under LGPL - original licence link has changed is not relivant.
30956  *
30957  * Fork - LGPL
30958  * <script type="text/javascript">
30959  */
30960
30961 /**
30962  * @class Roo.Resizable
30963  * @extends Roo.util.Observable
30964  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
30965  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
30966  * 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
30967  * the element will be wrapped for you automatically.</p>
30968  * <p>Here is the list of valid resize handles:</p>
30969  * <pre>
30970 Value   Description
30971 ------  -------------------
30972  'n'     north
30973  's'     south
30974  'e'     east
30975  'w'     west
30976  'nw'    northwest
30977  'sw'    southwest
30978  'se'    southeast
30979  'ne'    northeast
30980  'hd'    horizontal drag
30981  'all'   all
30982 </pre>
30983  * <p>Here's an example showing the creation of a typical Resizable:</p>
30984  * <pre><code>
30985 var resizer = new Roo.Resizable("element-id", {
30986     handles: 'all',
30987     minWidth: 200,
30988     minHeight: 100,
30989     maxWidth: 500,
30990     maxHeight: 400,
30991     pinned: true
30992 });
30993 resizer.on("resize", myHandler);
30994 </code></pre>
30995  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
30996  * resizer.east.setDisplayed(false);</p>
30997  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
30998  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
30999  * resize operation's new size (defaults to [0, 0])
31000  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31001  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31002  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31003  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31004  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31005  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31006  * @cfg {Number} width The width of the element in pixels (defaults to null)
31007  * @cfg {Number} height The height of the element in pixels (defaults to null)
31008  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31009  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31010  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31011  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31012  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31013  * in favor of the handles config option (defaults to false)
31014  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31015  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31016  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31017  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31018  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31019  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31020  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31021  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31022  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31023  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31024  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31025  * @constructor
31026  * Create a new resizable component
31027  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31028  * @param {Object} config configuration options
31029   */
31030 Roo.Resizable = function(el, config)
31031 {
31032     this.el = Roo.get(el);
31033
31034     if(config && config.wrap){
31035         config.resizeChild = this.el;
31036         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31037         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31038         this.el.setStyle("overflow", "hidden");
31039         this.el.setPositioning(config.resizeChild.getPositioning());
31040         config.resizeChild.clearPositioning();
31041         if(!config.width || !config.height){
31042             var csize = config.resizeChild.getSize();
31043             this.el.setSize(csize.width, csize.height);
31044         }
31045         if(config.pinned && !config.adjustments){
31046             config.adjustments = "auto";
31047         }
31048     }
31049
31050     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31051     this.proxy.unselectable();
31052     this.proxy.enableDisplayMode('block');
31053
31054     Roo.apply(this, config);
31055
31056     if(this.pinned){
31057         this.disableTrackOver = true;
31058         this.el.addClass("x-resizable-pinned");
31059     }
31060     // if the element isn't positioned, make it relative
31061     var position = this.el.getStyle("position");
31062     if(position != "absolute" && position != "fixed"){
31063         this.el.setStyle("position", "relative");
31064     }
31065     if(!this.handles){ // no handles passed, must be legacy style
31066         this.handles = 's,e,se';
31067         if(this.multiDirectional){
31068             this.handles += ',n,w';
31069         }
31070     }
31071     if(this.handles == "all"){
31072         this.handles = "n s e w ne nw se sw";
31073     }
31074     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31075     var ps = Roo.Resizable.positions;
31076     for(var i = 0, len = hs.length; i < len; i++){
31077         if(hs[i] && ps[hs[i]]){
31078             var pos = ps[hs[i]];
31079             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31080         }
31081     }
31082     // legacy
31083     this.corner = this.southeast;
31084     
31085     // updateBox = the box can move..
31086     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31087         this.updateBox = true;
31088     }
31089
31090     this.activeHandle = null;
31091
31092     if(this.resizeChild){
31093         if(typeof this.resizeChild == "boolean"){
31094             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31095         }else{
31096             this.resizeChild = Roo.get(this.resizeChild, true);
31097         }
31098     }
31099     
31100     if(this.adjustments == "auto"){
31101         var rc = this.resizeChild;
31102         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31103         if(rc && (hw || hn)){
31104             rc.position("relative");
31105             rc.setLeft(hw ? hw.el.getWidth() : 0);
31106             rc.setTop(hn ? hn.el.getHeight() : 0);
31107         }
31108         this.adjustments = [
31109             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31110             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31111         ];
31112     }
31113
31114     if(this.draggable){
31115         this.dd = this.dynamic ?
31116             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31117         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31118     }
31119
31120     // public events
31121     this.addEvents({
31122         /**
31123          * @event beforeresize
31124          * Fired before resize is allowed. Set enabled to false to cancel resize.
31125          * @param {Roo.Resizable} this
31126          * @param {Roo.EventObject} e The mousedown event
31127          */
31128         "beforeresize" : true,
31129         /**
31130          * @event resizing
31131          * Fired a resizing.
31132          * @param {Roo.Resizable} this
31133          * @param {Number} x The new x position
31134          * @param {Number} y The new y position
31135          * @param {Number} w The new w width
31136          * @param {Number} h The new h hight
31137          * @param {Roo.EventObject} e The mouseup event
31138          */
31139         "resizing" : true,
31140         /**
31141          * @event resize
31142          * Fired after a resize.
31143          * @param {Roo.Resizable} this
31144          * @param {Number} width The new width
31145          * @param {Number} height The new height
31146          * @param {Roo.EventObject} e The mouseup event
31147          */
31148         "resize" : true
31149     });
31150
31151     if(this.width !== null && this.height !== null){
31152         this.resizeTo(this.width, this.height);
31153     }else{
31154         this.updateChildSize();
31155     }
31156     if(Roo.isIE){
31157         this.el.dom.style.zoom = 1;
31158     }
31159     Roo.Resizable.superclass.constructor.call(this);
31160 };
31161
31162 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31163         resizeChild : false,
31164         adjustments : [0, 0],
31165         minWidth : 5,
31166         minHeight : 5,
31167         maxWidth : 10000,
31168         maxHeight : 10000,
31169         enabled : true,
31170         animate : false,
31171         duration : .35,
31172         dynamic : false,
31173         handles : false,
31174         multiDirectional : false,
31175         disableTrackOver : false,
31176         easing : 'easeOutStrong',
31177         widthIncrement : 0,
31178         heightIncrement : 0,
31179         pinned : false,
31180         width : null,
31181         height : null,
31182         preserveRatio : false,
31183         transparent: false,
31184         minX: 0,
31185         minY: 0,
31186         draggable: false,
31187
31188         /**
31189          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31190          */
31191         constrainTo: undefined,
31192         /**
31193          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31194          */
31195         resizeRegion: undefined,
31196
31197
31198     /**
31199      * Perform a manual resize
31200      * @param {Number} width
31201      * @param {Number} height
31202      */
31203     resizeTo : function(width, height){
31204         this.el.setSize(width, height);
31205         this.updateChildSize();
31206         this.fireEvent("resize", this, width, height, null);
31207     },
31208
31209     // private
31210     startSizing : function(e, handle){
31211         this.fireEvent("beforeresize", this, e);
31212         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31213
31214             if(!this.overlay){
31215                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31216                 this.overlay.unselectable();
31217                 this.overlay.enableDisplayMode("block");
31218                 this.overlay.on("mousemove", this.onMouseMove, this);
31219                 this.overlay.on("mouseup", this.onMouseUp, this);
31220             }
31221             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31222
31223             this.resizing = true;
31224             this.startBox = this.el.getBox();
31225             this.startPoint = e.getXY();
31226             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31227                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31228
31229             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31230             this.overlay.show();
31231
31232             if(this.constrainTo) {
31233                 var ct = Roo.get(this.constrainTo);
31234                 this.resizeRegion = ct.getRegion().adjust(
31235                     ct.getFrameWidth('t'),
31236                     ct.getFrameWidth('l'),
31237                     -ct.getFrameWidth('b'),
31238                     -ct.getFrameWidth('r')
31239                 );
31240             }
31241
31242             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31243             this.proxy.show();
31244             this.proxy.setBox(this.startBox);
31245             if(!this.dynamic){
31246                 this.proxy.setStyle('visibility', 'visible');
31247             }
31248         }
31249     },
31250
31251     // private
31252     onMouseDown : function(handle, e){
31253         if(this.enabled){
31254             e.stopEvent();
31255             this.activeHandle = handle;
31256             this.startSizing(e, handle);
31257         }
31258     },
31259
31260     // private
31261     onMouseUp : function(e){
31262         var size = this.resizeElement();
31263         this.resizing = false;
31264         this.handleOut();
31265         this.overlay.hide();
31266         this.proxy.hide();
31267         this.fireEvent("resize", this, size.width, size.height, e);
31268     },
31269
31270     // private
31271     updateChildSize : function(){
31272         
31273         if(this.resizeChild){
31274             var el = this.el;
31275             var child = this.resizeChild;
31276             var adj = this.adjustments;
31277             if(el.dom.offsetWidth){
31278                 var b = el.getSize(true);
31279                 child.setSize(b.width+adj[0], b.height+adj[1]);
31280             }
31281             // Second call here for IE
31282             // The first call enables instant resizing and
31283             // the second call corrects scroll bars if they
31284             // exist
31285             if(Roo.isIE){
31286                 setTimeout(function(){
31287                     if(el.dom.offsetWidth){
31288                         var b = el.getSize(true);
31289                         child.setSize(b.width+adj[0], b.height+adj[1]);
31290                     }
31291                 }, 10);
31292             }
31293         }
31294     },
31295
31296     // private
31297     snap : function(value, inc, min){
31298         if(!inc || !value) {
31299             return value;
31300         }
31301         var newValue = value;
31302         var m = value % inc;
31303         if(m > 0){
31304             if(m > (inc/2)){
31305                 newValue = value + (inc-m);
31306             }else{
31307                 newValue = value - m;
31308             }
31309         }
31310         return Math.max(min, newValue);
31311     },
31312
31313     // private
31314     resizeElement : function(){
31315         var box = this.proxy.getBox();
31316         if(this.updateBox){
31317             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31318         }else{
31319             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31320         }
31321         this.updateChildSize();
31322         if(!this.dynamic){
31323             this.proxy.hide();
31324         }
31325         return box;
31326     },
31327
31328     // private
31329     constrain : function(v, diff, m, mx){
31330         if(v - diff < m){
31331             diff = v - m;
31332         }else if(v - diff > mx){
31333             diff = mx - v;
31334         }
31335         return diff;
31336     },
31337
31338     // private
31339     onMouseMove : function(e){
31340         
31341         if(this.enabled){
31342             try{// try catch so if something goes wrong the user doesn't get hung
31343
31344             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31345                 return;
31346             }
31347
31348             //var curXY = this.startPoint;
31349             var curSize = this.curSize || this.startBox;
31350             var x = this.startBox.x, y = this.startBox.y;
31351             var ox = x, oy = y;
31352             var w = curSize.width, h = curSize.height;
31353             var ow = w, oh = h;
31354             var mw = this.minWidth, mh = this.minHeight;
31355             var mxw = this.maxWidth, mxh = this.maxHeight;
31356             var wi = this.widthIncrement;
31357             var hi = this.heightIncrement;
31358
31359             var eventXY = e.getXY();
31360             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31361             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31362
31363             var pos = this.activeHandle.position;
31364
31365             switch(pos){
31366                 case "east":
31367                     w += diffX;
31368                     w = Math.min(Math.max(mw, w), mxw);
31369                     break;
31370              
31371                 case "south":
31372                     h += diffY;
31373                     h = Math.min(Math.max(mh, h), mxh);
31374                     break;
31375                 case "southeast":
31376                     w += diffX;
31377                     h += diffY;
31378                     w = Math.min(Math.max(mw, w), mxw);
31379                     h = Math.min(Math.max(mh, h), mxh);
31380                     break;
31381                 case "north":
31382                     diffY = this.constrain(h, diffY, mh, mxh);
31383                     y += diffY;
31384                     h -= diffY;
31385                     break;
31386                 case "hdrag":
31387                     
31388                     if (wi) {
31389                         var adiffX = Math.abs(diffX);
31390                         var sub = (adiffX % wi); // how much 
31391                         if (sub > (wi/2)) { // far enough to snap
31392                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31393                         } else {
31394                             // remove difference.. 
31395                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31396                         }
31397                     }
31398                     x += diffX;
31399                     x = Math.max(this.minX, x);
31400                     break;
31401                 case "west":
31402                     diffX = this.constrain(w, diffX, mw, mxw);
31403                     x += diffX;
31404                     w -= diffX;
31405                     break;
31406                 case "northeast":
31407                     w += diffX;
31408                     w = Math.min(Math.max(mw, w), mxw);
31409                     diffY = this.constrain(h, diffY, mh, mxh);
31410                     y += diffY;
31411                     h -= diffY;
31412                     break;
31413                 case "northwest":
31414                     diffX = this.constrain(w, diffX, mw, mxw);
31415                     diffY = this.constrain(h, diffY, mh, mxh);
31416                     y += diffY;
31417                     h -= diffY;
31418                     x += diffX;
31419                     w -= diffX;
31420                     break;
31421                case "southwest":
31422                     diffX = this.constrain(w, diffX, mw, mxw);
31423                     h += diffY;
31424                     h = Math.min(Math.max(mh, h), mxh);
31425                     x += diffX;
31426                     w -= diffX;
31427                     break;
31428             }
31429
31430             var sw = this.snap(w, wi, mw);
31431             var sh = this.snap(h, hi, mh);
31432             if(sw != w || sh != h){
31433                 switch(pos){
31434                     case "northeast":
31435                         y -= sh - h;
31436                     break;
31437                     case "north":
31438                         y -= sh - h;
31439                         break;
31440                     case "southwest":
31441                         x -= sw - w;
31442                     break;
31443                     case "west":
31444                         x -= sw - w;
31445                         break;
31446                     case "northwest":
31447                         x -= sw - w;
31448                         y -= sh - h;
31449                     break;
31450                 }
31451                 w = sw;
31452                 h = sh;
31453             }
31454
31455             if(this.preserveRatio){
31456                 switch(pos){
31457                     case "southeast":
31458                     case "east":
31459                         h = oh * (w/ow);
31460                         h = Math.min(Math.max(mh, h), mxh);
31461                         w = ow * (h/oh);
31462                        break;
31463                     case "south":
31464                         w = ow * (h/oh);
31465                         w = Math.min(Math.max(mw, w), mxw);
31466                         h = oh * (w/ow);
31467                         break;
31468                     case "northeast":
31469                         w = ow * (h/oh);
31470                         w = Math.min(Math.max(mw, w), mxw);
31471                         h = oh * (w/ow);
31472                     break;
31473                     case "north":
31474                         var tw = w;
31475                         w = ow * (h/oh);
31476                         w = Math.min(Math.max(mw, w), mxw);
31477                         h = oh * (w/ow);
31478                         x += (tw - w) / 2;
31479                         break;
31480                     case "southwest":
31481                         h = oh * (w/ow);
31482                         h = Math.min(Math.max(mh, h), mxh);
31483                         var tw = w;
31484                         w = ow * (h/oh);
31485                         x += tw - w;
31486                         break;
31487                     case "west":
31488                         var th = h;
31489                         h = oh * (w/ow);
31490                         h = Math.min(Math.max(mh, h), mxh);
31491                         y += (th - h) / 2;
31492                         var tw = w;
31493                         w = ow * (h/oh);
31494                         x += tw - w;
31495                        break;
31496                     case "northwest":
31497                         var tw = w;
31498                         var th = h;
31499                         h = oh * (w/ow);
31500                         h = Math.min(Math.max(mh, h), mxh);
31501                         w = ow * (h/oh);
31502                         y += th - h;
31503                         x += tw - w;
31504                        break;
31505
31506                 }
31507             }
31508             if (pos == 'hdrag') {
31509                 w = ow;
31510             }
31511             this.proxy.setBounds(x, y, w, h);
31512             if(this.dynamic){
31513                 this.resizeElement();
31514             }
31515             }catch(e){}
31516         }
31517         this.fireEvent("resizing", this, x, y, w, h, e);
31518     },
31519
31520     // private
31521     handleOver : function(){
31522         if(this.enabled){
31523             this.el.addClass("x-resizable-over");
31524         }
31525     },
31526
31527     // private
31528     handleOut : function(){
31529         if(!this.resizing){
31530             this.el.removeClass("x-resizable-over");
31531         }
31532     },
31533
31534     /**
31535      * Returns the element this component is bound to.
31536      * @return {Roo.Element}
31537      */
31538     getEl : function(){
31539         return this.el;
31540     },
31541
31542     /**
31543      * Returns the resizeChild element (or null).
31544      * @return {Roo.Element}
31545      */
31546     getResizeChild : function(){
31547         return this.resizeChild;
31548     },
31549     groupHandler : function()
31550     {
31551         
31552     },
31553     /**
31554      * Destroys this resizable. If the element was wrapped and
31555      * removeEl is not true then the element remains.
31556      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31557      */
31558     destroy : function(removeEl){
31559         this.proxy.remove();
31560         if(this.overlay){
31561             this.overlay.removeAllListeners();
31562             this.overlay.remove();
31563         }
31564         var ps = Roo.Resizable.positions;
31565         for(var k in ps){
31566             if(typeof ps[k] != "function" && this[ps[k]]){
31567                 var h = this[ps[k]];
31568                 h.el.removeAllListeners();
31569                 h.el.remove();
31570             }
31571         }
31572         if(removeEl){
31573             this.el.update("");
31574             this.el.remove();
31575         }
31576     }
31577 });
31578
31579 // private
31580 // hash to map config positions to true positions
31581 Roo.Resizable.positions = {
31582     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31583     hd: "hdrag"
31584 };
31585
31586 // private
31587 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31588     if(!this.tpl){
31589         // only initialize the template if resizable is used
31590         var tpl = Roo.DomHelper.createTemplate(
31591             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31592         );
31593         tpl.compile();
31594         Roo.Resizable.Handle.prototype.tpl = tpl;
31595     }
31596     this.position = pos;
31597     this.rz = rz;
31598     // show north drag fro topdra
31599     var handlepos = pos == 'hdrag' ? 'north' : pos;
31600     
31601     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31602     if (pos == 'hdrag') {
31603         this.el.setStyle('cursor', 'pointer');
31604     }
31605     this.el.unselectable();
31606     if(transparent){
31607         this.el.setOpacity(0);
31608     }
31609     this.el.on("mousedown", this.onMouseDown, this);
31610     if(!disableTrackOver){
31611         this.el.on("mouseover", this.onMouseOver, this);
31612         this.el.on("mouseout", this.onMouseOut, this);
31613     }
31614 };
31615
31616 // private
31617 Roo.Resizable.Handle.prototype = {
31618     afterResize : function(rz){
31619         Roo.log('after?');
31620         // do nothing
31621     },
31622     // private
31623     onMouseDown : function(e){
31624         this.rz.onMouseDown(this, e);
31625     },
31626     // private
31627     onMouseOver : function(e){
31628         this.rz.handleOver(this, e);
31629     },
31630     // private
31631     onMouseOut : function(e){
31632         this.rz.handleOut(this, e);
31633     }
31634 };/*
31635  * Based on:
31636  * Ext JS Library 1.1.1
31637  * Copyright(c) 2006-2007, Ext JS, LLC.
31638  *
31639  * Originally Released Under LGPL - original licence link has changed is not relivant.
31640  *
31641  * Fork - LGPL
31642  * <script type="text/javascript">
31643  */
31644
31645 /**
31646  * @class Roo.Editor
31647  * @extends Roo.Component
31648  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31649  * @constructor
31650  * Create a new Editor
31651  * @param {Roo.form.Field} field The Field object (or descendant)
31652  * @param {Object} config The config object
31653  */
31654 Roo.Editor = function(field, config){
31655     Roo.Editor.superclass.constructor.call(this, config);
31656     this.field = field;
31657     this.addEvents({
31658         /**
31659              * @event beforestartedit
31660              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31661              * false from the handler of this event.
31662              * @param {Editor} this
31663              * @param {Roo.Element} boundEl The underlying element bound to this editor
31664              * @param {Mixed} value The field value being set
31665              */
31666         "beforestartedit" : true,
31667         /**
31668              * @event startedit
31669              * Fires when this editor is displayed
31670              * @param {Roo.Element} boundEl The underlying element bound to this editor
31671              * @param {Mixed} value The starting field value
31672              */
31673         "startedit" : true,
31674         /**
31675              * @event beforecomplete
31676              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31677              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31678              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31679              * event will not fire since no edit actually occurred.
31680              * @param {Editor} this
31681              * @param {Mixed} value The current field value
31682              * @param {Mixed} startValue The original field value
31683              */
31684         "beforecomplete" : true,
31685         /**
31686              * @event complete
31687              * Fires after editing is complete and any changed value has been written to the underlying field.
31688              * @param {Editor} this
31689              * @param {Mixed} value The current field value
31690              * @param {Mixed} startValue The original field value
31691              */
31692         "complete" : true,
31693         /**
31694          * @event specialkey
31695          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31696          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31697          * @param {Roo.form.Field} this
31698          * @param {Roo.EventObject} e The event object
31699          */
31700         "specialkey" : true
31701     });
31702 };
31703
31704 Roo.extend(Roo.Editor, Roo.Component, {
31705     /**
31706      * @cfg {Boolean/String} autosize
31707      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31708      * or "height" to adopt the height only (defaults to false)
31709      */
31710     /**
31711      * @cfg {Boolean} revertInvalid
31712      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31713      * validation fails (defaults to true)
31714      */
31715     /**
31716      * @cfg {Boolean} ignoreNoChange
31717      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31718      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31719      * will never be ignored.
31720      */
31721     /**
31722      * @cfg {Boolean} hideEl
31723      * False to keep the bound element visible while the editor is displayed (defaults to true)
31724      */
31725     /**
31726      * @cfg {Mixed} value
31727      * The data value of the underlying field (defaults to "")
31728      */
31729     value : "",
31730     /**
31731      * @cfg {String} alignment
31732      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31733      */
31734     alignment: "c-c?",
31735     /**
31736      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31737      * for bottom-right shadow (defaults to "frame")
31738      */
31739     shadow : "frame",
31740     /**
31741      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31742      */
31743     constrain : false,
31744     /**
31745      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31746      */
31747     completeOnEnter : false,
31748     /**
31749      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31750      */
31751     cancelOnEsc : false,
31752     /**
31753      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31754      */
31755     updateEl : false,
31756
31757     // private
31758     onRender : function(ct, position){
31759         this.el = new Roo.Layer({
31760             shadow: this.shadow,
31761             cls: "x-editor",
31762             parentEl : ct,
31763             shim : this.shim,
31764             shadowOffset:4,
31765             id: this.id,
31766             constrain: this.constrain
31767         });
31768         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31769         if(this.field.msgTarget != 'title'){
31770             this.field.msgTarget = 'qtip';
31771         }
31772         this.field.render(this.el);
31773         if(Roo.isGecko){
31774             this.field.el.dom.setAttribute('autocomplete', 'off');
31775         }
31776         this.field.on("specialkey", this.onSpecialKey, this);
31777         if(this.swallowKeys){
31778             this.field.el.swallowEvent(['keydown','keypress']);
31779         }
31780         this.field.show();
31781         this.field.on("blur", this.onBlur, this);
31782         if(this.field.grow){
31783             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31784         }
31785     },
31786
31787     onSpecialKey : function(field, e)
31788     {
31789         //Roo.log('editor onSpecialKey');
31790         if(this.completeOnEnter && e.getKey() == e.ENTER){
31791             e.stopEvent();
31792             this.completeEdit();
31793             return;
31794         }
31795         // do not fire special key otherwise it might hide close the editor...
31796         if(e.getKey() == e.ENTER){    
31797             return;
31798         }
31799         if(this.cancelOnEsc && e.getKey() == e.ESC){
31800             this.cancelEdit();
31801             return;
31802         } 
31803         this.fireEvent('specialkey', field, e);
31804     
31805     },
31806
31807     /**
31808      * Starts the editing process and shows the editor.
31809      * @param {String/HTMLElement/Element} el The element to edit
31810      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31811       * to the innerHTML of el.
31812      */
31813     startEdit : function(el, value){
31814         if(this.editing){
31815             this.completeEdit();
31816         }
31817         this.boundEl = Roo.get(el);
31818         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31819         if(!this.rendered){
31820             this.render(this.parentEl || document.body);
31821         }
31822         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31823             return;
31824         }
31825         this.startValue = v;
31826         this.field.setValue(v);
31827         if(this.autoSize){
31828             var sz = this.boundEl.getSize();
31829             switch(this.autoSize){
31830                 case "width":
31831                 this.setSize(sz.width,  "");
31832                 break;
31833                 case "height":
31834                 this.setSize("",  sz.height);
31835                 break;
31836                 default:
31837                 this.setSize(sz.width,  sz.height);
31838             }
31839         }
31840         this.el.alignTo(this.boundEl, this.alignment);
31841         this.editing = true;
31842         if(Roo.QuickTips){
31843             Roo.QuickTips.disable();
31844         }
31845         this.show();
31846     },
31847
31848     /**
31849      * Sets the height and width of this editor.
31850      * @param {Number} width The new width
31851      * @param {Number} height The new height
31852      */
31853     setSize : function(w, h){
31854         this.field.setSize(w, h);
31855         if(this.el){
31856             this.el.sync();
31857         }
31858     },
31859
31860     /**
31861      * Realigns the editor to the bound field based on the current alignment config value.
31862      */
31863     realign : function(){
31864         this.el.alignTo(this.boundEl, this.alignment);
31865     },
31866
31867     /**
31868      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31869      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31870      */
31871     completeEdit : function(remainVisible){
31872         if(!this.editing){
31873             return;
31874         }
31875         var v = this.getValue();
31876         if(this.revertInvalid !== false && !this.field.isValid()){
31877             v = this.startValue;
31878             this.cancelEdit(true);
31879         }
31880         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31881             this.editing = false;
31882             this.hide();
31883             return;
31884         }
31885         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31886             this.editing = false;
31887             if(this.updateEl && this.boundEl){
31888                 this.boundEl.update(v);
31889             }
31890             if(remainVisible !== true){
31891                 this.hide();
31892             }
31893             this.fireEvent("complete", this, v, this.startValue);
31894         }
31895     },
31896
31897     // private
31898     onShow : function(){
31899         this.el.show();
31900         if(this.hideEl !== false){
31901             this.boundEl.hide();
31902         }
31903         this.field.show();
31904         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31905             this.fixIEFocus = true;
31906             this.deferredFocus.defer(50, this);
31907         }else{
31908             this.field.focus();
31909         }
31910         this.fireEvent("startedit", this.boundEl, this.startValue);
31911     },
31912
31913     deferredFocus : function(){
31914         if(this.editing){
31915             this.field.focus();
31916         }
31917     },
31918
31919     /**
31920      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31921      * reverted to the original starting value.
31922      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31923      * cancel (defaults to false)
31924      */
31925     cancelEdit : function(remainVisible){
31926         if(this.editing){
31927             this.setValue(this.startValue);
31928             if(remainVisible !== true){
31929                 this.hide();
31930             }
31931         }
31932     },
31933
31934     // private
31935     onBlur : function(){
31936         if(this.allowBlur !== true && this.editing){
31937             this.completeEdit();
31938         }
31939     },
31940
31941     // private
31942     onHide : function(){
31943         if(this.editing){
31944             this.completeEdit();
31945             return;
31946         }
31947         this.field.blur();
31948         if(this.field.collapse){
31949             this.field.collapse();
31950         }
31951         this.el.hide();
31952         if(this.hideEl !== false){
31953             this.boundEl.show();
31954         }
31955         if(Roo.QuickTips){
31956             Roo.QuickTips.enable();
31957         }
31958     },
31959
31960     /**
31961      * Sets the data value of the editor
31962      * @param {Mixed} value Any valid value supported by the underlying field
31963      */
31964     setValue : function(v){
31965         this.field.setValue(v);
31966     },
31967
31968     /**
31969      * Gets the data value of the editor
31970      * @return {Mixed} The data value
31971      */
31972     getValue : function(){
31973         return this.field.getValue();
31974     }
31975 });/*
31976  * Based on:
31977  * Ext JS Library 1.1.1
31978  * Copyright(c) 2006-2007, Ext JS, LLC.
31979  *
31980  * Originally Released Under LGPL - original licence link has changed is not relivant.
31981  *
31982  * Fork - LGPL
31983  * <script type="text/javascript">
31984  */
31985  
31986 /**
31987  * @class Roo.BasicDialog
31988  * @extends Roo.util.Observable
31989  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
31990  * <pre><code>
31991 var dlg = new Roo.BasicDialog("my-dlg", {
31992     height: 200,
31993     width: 300,
31994     minHeight: 100,
31995     minWidth: 150,
31996     modal: true,
31997     proxyDrag: true,
31998     shadow: true
31999 });
32000 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32001 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32002 dlg.addButton('Cancel', dlg.hide, dlg);
32003 dlg.show();
32004 </code></pre>
32005   <b>A Dialog should always be a direct child of the body element.</b>
32006  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32007  * @cfg {String} title Default text to display in the title bar (defaults to null)
32008  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32009  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32010  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32011  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32012  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32013  * (defaults to null with no animation)
32014  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32015  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32016  * property for valid values (defaults to 'all')
32017  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32018  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32019  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32020  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32021  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32022  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32023  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32024  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32025  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32026  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32027  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32028  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32029  * draggable = true (defaults to false)
32030  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32031  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32032  * shadow (defaults to false)
32033  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32034  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32035  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32036  * @cfg {Array} buttons Array of buttons
32037  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32038  * @constructor
32039  * Create a new BasicDialog.
32040  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32041  * @param {Object} config Configuration options
32042  */
32043 Roo.BasicDialog = function(el, config){
32044     this.el = Roo.get(el);
32045     var dh = Roo.DomHelper;
32046     if(!this.el && config && config.autoCreate){
32047         if(typeof config.autoCreate == "object"){
32048             if(!config.autoCreate.id){
32049                 config.autoCreate.id = el;
32050             }
32051             this.el = dh.append(document.body,
32052                         config.autoCreate, true);
32053         }else{
32054             this.el = dh.append(document.body,
32055                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32056         }
32057     }
32058     el = this.el;
32059     el.setDisplayed(true);
32060     el.hide = this.hideAction;
32061     this.id = el.id;
32062     el.addClass("x-dlg");
32063
32064     Roo.apply(this, config);
32065
32066     this.proxy = el.createProxy("x-dlg-proxy");
32067     this.proxy.hide = this.hideAction;
32068     this.proxy.setOpacity(.5);
32069     this.proxy.hide();
32070
32071     if(config.width){
32072         el.setWidth(config.width);
32073     }
32074     if(config.height){
32075         el.setHeight(config.height);
32076     }
32077     this.size = el.getSize();
32078     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32079         this.xy = [config.x,config.y];
32080     }else{
32081         this.xy = el.getCenterXY(true);
32082     }
32083     /** The header element @type Roo.Element */
32084     this.header = el.child("> .x-dlg-hd");
32085     /** The body element @type Roo.Element */
32086     this.body = el.child("> .x-dlg-bd");
32087     /** The footer element @type Roo.Element */
32088     this.footer = el.child("> .x-dlg-ft");
32089
32090     if(!this.header){
32091         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32092     }
32093     if(!this.body){
32094         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32095     }
32096
32097     this.header.unselectable();
32098     if(this.title){
32099         this.header.update(this.title);
32100     }
32101     // this element allows the dialog to be focused for keyboard event
32102     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32103     this.focusEl.swallowEvent("click", true);
32104
32105     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32106
32107     // wrap the body and footer for special rendering
32108     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32109     if(this.footer){
32110         this.bwrap.dom.appendChild(this.footer.dom);
32111     }
32112
32113     this.bg = this.el.createChild({
32114         tag: "div", cls:"x-dlg-bg",
32115         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32116     });
32117     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32118
32119
32120     if(this.autoScroll !== false && !this.autoTabs){
32121         this.body.setStyle("overflow", "auto");
32122     }
32123
32124     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32125
32126     if(this.closable !== false){
32127         this.el.addClass("x-dlg-closable");
32128         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32129         this.close.on("click", this.closeClick, this);
32130         this.close.addClassOnOver("x-dlg-close-over");
32131     }
32132     if(this.collapsible !== false){
32133         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32134         this.collapseBtn.on("click", this.collapseClick, this);
32135         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32136         this.header.on("dblclick", this.collapseClick, this);
32137     }
32138     if(this.resizable !== false){
32139         this.el.addClass("x-dlg-resizable");
32140         this.resizer = new Roo.Resizable(el, {
32141             minWidth: this.minWidth || 80,
32142             minHeight:this.minHeight || 80,
32143             handles: this.resizeHandles || "all",
32144             pinned: true
32145         });
32146         this.resizer.on("beforeresize", this.beforeResize, this);
32147         this.resizer.on("resize", this.onResize, this);
32148     }
32149     if(this.draggable !== false){
32150         el.addClass("x-dlg-draggable");
32151         if (!this.proxyDrag) {
32152             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32153         }
32154         else {
32155             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32156         }
32157         dd.setHandleElId(this.header.id);
32158         dd.endDrag = this.endMove.createDelegate(this);
32159         dd.startDrag = this.startMove.createDelegate(this);
32160         dd.onDrag = this.onDrag.createDelegate(this);
32161         dd.scroll = false;
32162         this.dd = dd;
32163     }
32164     if(this.modal){
32165         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32166         this.mask.enableDisplayMode("block");
32167         this.mask.hide();
32168         this.el.addClass("x-dlg-modal");
32169     }
32170     if(this.shadow){
32171         this.shadow = new Roo.Shadow({
32172             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32173             offset : this.shadowOffset
32174         });
32175     }else{
32176         this.shadowOffset = 0;
32177     }
32178     if(Roo.useShims && this.shim !== false){
32179         this.shim = this.el.createShim();
32180         this.shim.hide = this.hideAction;
32181         this.shim.hide();
32182     }else{
32183         this.shim = false;
32184     }
32185     if(this.autoTabs){
32186         this.initTabs();
32187     }
32188     if (this.buttons) { 
32189         var bts= this.buttons;
32190         this.buttons = [];
32191         Roo.each(bts, function(b) {
32192             this.addButton(b);
32193         }, this);
32194     }
32195     
32196     
32197     this.addEvents({
32198         /**
32199          * @event keydown
32200          * Fires when a key is pressed
32201          * @param {Roo.BasicDialog} this
32202          * @param {Roo.EventObject} e
32203          */
32204         "keydown" : true,
32205         /**
32206          * @event move
32207          * Fires when this dialog is moved by the user.
32208          * @param {Roo.BasicDialog} this
32209          * @param {Number} x The new page X
32210          * @param {Number} y The new page Y
32211          */
32212         "move" : true,
32213         /**
32214          * @event resize
32215          * Fires when this dialog is resized by the user.
32216          * @param {Roo.BasicDialog} this
32217          * @param {Number} width The new width
32218          * @param {Number} height The new height
32219          */
32220         "resize" : true,
32221         /**
32222          * @event beforehide
32223          * Fires before this dialog is hidden.
32224          * @param {Roo.BasicDialog} this
32225          */
32226         "beforehide" : true,
32227         /**
32228          * @event hide
32229          * Fires when this dialog is hidden.
32230          * @param {Roo.BasicDialog} this
32231          */
32232         "hide" : true,
32233         /**
32234          * @event beforeshow
32235          * Fires before this dialog is shown.
32236          * @param {Roo.BasicDialog} this
32237          */
32238         "beforeshow" : true,
32239         /**
32240          * @event show
32241          * Fires when this dialog is shown.
32242          * @param {Roo.BasicDialog} this
32243          */
32244         "show" : true
32245     });
32246     el.on("keydown", this.onKeyDown, this);
32247     el.on("mousedown", this.toFront, this);
32248     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32249     this.el.hide();
32250     Roo.DialogManager.register(this);
32251     Roo.BasicDialog.superclass.constructor.call(this);
32252 };
32253
32254 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32255     shadowOffset: Roo.isIE ? 6 : 5,
32256     minHeight: 80,
32257     minWidth: 200,
32258     minButtonWidth: 75,
32259     defaultButton: null,
32260     buttonAlign: "right",
32261     tabTag: 'div',
32262     firstShow: true,
32263
32264     /**
32265      * Sets the dialog title text
32266      * @param {String} text The title text to display
32267      * @return {Roo.BasicDialog} this
32268      */
32269     setTitle : function(text){
32270         this.header.update(text);
32271         return this;
32272     },
32273
32274     // private
32275     closeClick : function(){
32276         this.hide();
32277     },
32278
32279     // private
32280     collapseClick : function(){
32281         this[this.collapsed ? "expand" : "collapse"]();
32282     },
32283
32284     /**
32285      * Collapses the dialog to its minimized state (only the title bar is visible).
32286      * Equivalent to the user clicking the collapse dialog button.
32287      */
32288     collapse : function(){
32289         if(!this.collapsed){
32290             this.collapsed = true;
32291             this.el.addClass("x-dlg-collapsed");
32292             this.restoreHeight = this.el.getHeight();
32293             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32294         }
32295     },
32296
32297     /**
32298      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32299      * clicking the expand dialog button.
32300      */
32301     expand : function(){
32302         if(this.collapsed){
32303             this.collapsed = false;
32304             this.el.removeClass("x-dlg-collapsed");
32305             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32306         }
32307     },
32308
32309     /**
32310      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32311      * @return {Roo.TabPanel} The tabs component
32312      */
32313     initTabs : function(){
32314         var tabs = this.getTabs();
32315         while(tabs.getTab(0)){
32316             tabs.removeTab(0);
32317         }
32318         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32319             var dom = el.dom;
32320             tabs.addTab(Roo.id(dom), dom.title);
32321             dom.title = "";
32322         });
32323         tabs.activate(0);
32324         return tabs;
32325     },
32326
32327     // private
32328     beforeResize : function(){
32329         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32330     },
32331
32332     // private
32333     onResize : function(){
32334         this.refreshSize();
32335         this.syncBodyHeight();
32336         this.adjustAssets();
32337         this.focus();
32338         this.fireEvent("resize", this, this.size.width, this.size.height);
32339     },
32340
32341     // private
32342     onKeyDown : function(e){
32343         if(this.isVisible()){
32344             this.fireEvent("keydown", this, e);
32345         }
32346     },
32347
32348     /**
32349      * Resizes the dialog.
32350      * @param {Number} width
32351      * @param {Number} height
32352      * @return {Roo.BasicDialog} this
32353      */
32354     resizeTo : function(width, height){
32355         this.el.setSize(width, height);
32356         this.size = {width: width, height: height};
32357         this.syncBodyHeight();
32358         if(this.fixedcenter){
32359             this.center();
32360         }
32361         if(this.isVisible()){
32362             this.constrainXY();
32363             this.adjustAssets();
32364         }
32365         this.fireEvent("resize", this, width, height);
32366         return this;
32367     },
32368
32369
32370     /**
32371      * Resizes the dialog to fit the specified content size.
32372      * @param {Number} width
32373      * @param {Number} height
32374      * @return {Roo.BasicDialog} this
32375      */
32376     setContentSize : function(w, h){
32377         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32378         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32379         //if(!this.el.isBorderBox()){
32380             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32381             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32382         //}
32383         if(this.tabs){
32384             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32385             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32386         }
32387         this.resizeTo(w, h);
32388         return this;
32389     },
32390
32391     /**
32392      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32393      * executed in response to a particular key being pressed while the dialog is active.
32394      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32395      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32396      * @param {Function} fn The function to call
32397      * @param {Object} scope (optional) The scope of the function
32398      * @return {Roo.BasicDialog} this
32399      */
32400     addKeyListener : function(key, fn, scope){
32401         var keyCode, shift, ctrl, alt;
32402         if(typeof key == "object" && !(key instanceof Array)){
32403             keyCode = key["key"];
32404             shift = key["shift"];
32405             ctrl = key["ctrl"];
32406             alt = key["alt"];
32407         }else{
32408             keyCode = key;
32409         }
32410         var handler = function(dlg, e){
32411             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32412                 var k = e.getKey();
32413                 if(keyCode instanceof Array){
32414                     for(var i = 0, len = keyCode.length; i < len; i++){
32415                         if(keyCode[i] == k){
32416                           fn.call(scope || window, dlg, k, e);
32417                           return;
32418                         }
32419                     }
32420                 }else{
32421                     if(k == keyCode){
32422                         fn.call(scope || window, dlg, k, e);
32423                     }
32424                 }
32425             }
32426         };
32427         this.on("keydown", handler);
32428         return this;
32429     },
32430
32431     /**
32432      * Returns the TabPanel component (creates it if it doesn't exist).
32433      * Note: If you wish to simply check for the existence of tabs without creating them,
32434      * check for a null 'tabs' property.
32435      * @return {Roo.TabPanel} The tabs component
32436      */
32437     getTabs : function(){
32438         if(!this.tabs){
32439             this.el.addClass("x-dlg-auto-tabs");
32440             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32441             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32442         }
32443         return this.tabs;
32444     },
32445
32446     /**
32447      * Adds a button to the footer section of the dialog.
32448      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32449      * object or a valid Roo.DomHelper element config
32450      * @param {Function} handler The function called when the button is clicked
32451      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32452      * @return {Roo.Button} The new button
32453      */
32454     addButton : function(config, handler, scope){
32455         var dh = Roo.DomHelper;
32456         if(!this.footer){
32457             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32458         }
32459         if(!this.btnContainer){
32460             var tb = this.footer.createChild({
32461
32462                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32463                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32464             }, null, true);
32465             this.btnContainer = tb.firstChild.firstChild.firstChild;
32466         }
32467         var bconfig = {
32468             handler: handler,
32469             scope: scope,
32470             minWidth: this.minButtonWidth,
32471             hideParent:true
32472         };
32473         if(typeof config == "string"){
32474             bconfig.text = config;
32475         }else{
32476             if(config.tag){
32477                 bconfig.dhconfig = config;
32478             }else{
32479                 Roo.apply(bconfig, config);
32480             }
32481         }
32482         var fc = false;
32483         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32484             bconfig.position = Math.max(0, bconfig.position);
32485             fc = this.btnContainer.childNodes[bconfig.position];
32486         }
32487          
32488         var btn = new Roo.Button(
32489             fc ? 
32490                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32491                 : this.btnContainer.appendChild(document.createElement("td")),
32492             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32493             bconfig
32494         );
32495         this.syncBodyHeight();
32496         if(!this.buttons){
32497             /**
32498              * Array of all the buttons that have been added to this dialog via addButton
32499              * @type Array
32500              */
32501             this.buttons = [];
32502         }
32503         this.buttons.push(btn);
32504         return btn;
32505     },
32506
32507     /**
32508      * Sets the default button to be focused when the dialog is displayed.
32509      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32510      * @return {Roo.BasicDialog} this
32511      */
32512     setDefaultButton : function(btn){
32513         this.defaultButton = btn;
32514         return this;
32515     },
32516
32517     // private
32518     getHeaderFooterHeight : function(safe){
32519         var height = 0;
32520         if(this.header){
32521            height += this.header.getHeight();
32522         }
32523         if(this.footer){
32524            var fm = this.footer.getMargins();
32525             height += (this.footer.getHeight()+fm.top+fm.bottom);
32526         }
32527         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32528         height += this.centerBg.getPadding("tb");
32529         return height;
32530     },
32531
32532     // private
32533     syncBodyHeight : function()
32534     {
32535         var bd = this.body, // the text
32536             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32537             bw = this.bwrap;
32538         var height = this.size.height - this.getHeaderFooterHeight(false);
32539         bd.setHeight(height-bd.getMargins("tb"));
32540         var hh = this.header.getHeight();
32541         var h = this.size.height-hh;
32542         cb.setHeight(h);
32543         
32544         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32545         bw.setHeight(h-cb.getPadding("tb"));
32546         
32547         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32548         bd.setWidth(bw.getWidth(true));
32549         if(this.tabs){
32550             this.tabs.syncHeight();
32551             if(Roo.isIE){
32552                 this.tabs.el.repaint();
32553             }
32554         }
32555     },
32556
32557     /**
32558      * Restores the previous state of the dialog if Roo.state is configured.
32559      * @return {Roo.BasicDialog} this
32560      */
32561     restoreState : function(){
32562         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32563         if(box && box.width){
32564             this.xy = [box.x, box.y];
32565             this.resizeTo(box.width, box.height);
32566         }
32567         return this;
32568     },
32569
32570     // private
32571     beforeShow : function(){
32572         this.expand();
32573         if(this.fixedcenter){
32574             this.xy = this.el.getCenterXY(true);
32575         }
32576         if(this.modal){
32577             Roo.get(document.body).addClass("x-body-masked");
32578             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32579             this.mask.show();
32580         }
32581         this.constrainXY();
32582     },
32583
32584     // private
32585     animShow : function(){
32586         var b = Roo.get(this.animateTarget).getBox();
32587         this.proxy.setSize(b.width, b.height);
32588         this.proxy.setLocation(b.x, b.y);
32589         this.proxy.show();
32590         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32591                     true, .35, this.showEl.createDelegate(this));
32592     },
32593
32594     /**
32595      * Shows the dialog.
32596      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32597      * @return {Roo.BasicDialog} this
32598      */
32599     show : function(animateTarget){
32600         if (this.fireEvent("beforeshow", this) === false){
32601             return;
32602         }
32603         if(this.syncHeightBeforeShow){
32604             this.syncBodyHeight();
32605         }else if(this.firstShow){
32606             this.firstShow = false;
32607             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32608         }
32609         this.animateTarget = animateTarget || this.animateTarget;
32610         if(!this.el.isVisible()){
32611             this.beforeShow();
32612             if(this.animateTarget && Roo.get(this.animateTarget)){
32613                 this.animShow();
32614             }else{
32615                 this.showEl();
32616             }
32617         }
32618         return this;
32619     },
32620
32621     // private
32622     showEl : function(){
32623         this.proxy.hide();
32624         this.el.setXY(this.xy);
32625         this.el.show();
32626         this.adjustAssets(true);
32627         this.toFront();
32628         this.focus();
32629         // IE peekaboo bug - fix found by Dave Fenwick
32630         if(Roo.isIE){
32631             this.el.repaint();
32632         }
32633         this.fireEvent("show", this);
32634     },
32635
32636     /**
32637      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32638      * dialog itself will receive focus.
32639      */
32640     focus : function(){
32641         if(this.defaultButton){
32642             this.defaultButton.focus();
32643         }else{
32644             this.focusEl.focus();
32645         }
32646     },
32647
32648     // private
32649     constrainXY : function(){
32650         if(this.constraintoviewport !== false){
32651             if(!this.viewSize){
32652                 if(this.container){
32653                     var s = this.container.getSize();
32654                     this.viewSize = [s.width, s.height];
32655                 }else{
32656                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32657                 }
32658             }
32659             var s = Roo.get(this.container||document).getScroll();
32660
32661             var x = this.xy[0], y = this.xy[1];
32662             var w = this.size.width, h = this.size.height;
32663             var vw = this.viewSize[0], vh = this.viewSize[1];
32664             // only move it if it needs it
32665             var moved = false;
32666             // first validate right/bottom
32667             if(x + w > vw+s.left){
32668                 x = vw - w;
32669                 moved = true;
32670             }
32671             if(y + h > vh+s.top){
32672                 y = vh - h;
32673                 moved = true;
32674             }
32675             // then make sure top/left isn't negative
32676             if(x < s.left){
32677                 x = s.left;
32678                 moved = true;
32679             }
32680             if(y < s.top){
32681                 y = s.top;
32682                 moved = true;
32683             }
32684             if(moved){
32685                 // cache xy
32686                 this.xy = [x, y];
32687                 if(this.isVisible()){
32688                     this.el.setLocation(x, y);
32689                     this.adjustAssets();
32690                 }
32691             }
32692         }
32693     },
32694
32695     // private
32696     onDrag : function(){
32697         if(!this.proxyDrag){
32698             this.xy = this.el.getXY();
32699             this.adjustAssets();
32700         }
32701     },
32702
32703     // private
32704     adjustAssets : function(doShow){
32705         var x = this.xy[0], y = this.xy[1];
32706         var w = this.size.width, h = this.size.height;
32707         if(doShow === true){
32708             if(this.shadow){
32709                 this.shadow.show(this.el);
32710             }
32711             if(this.shim){
32712                 this.shim.show();
32713             }
32714         }
32715         if(this.shadow && this.shadow.isVisible()){
32716             this.shadow.show(this.el);
32717         }
32718         if(this.shim && this.shim.isVisible()){
32719             this.shim.setBounds(x, y, w, h);
32720         }
32721     },
32722
32723     // private
32724     adjustViewport : function(w, h){
32725         if(!w || !h){
32726             w = Roo.lib.Dom.getViewWidth();
32727             h = Roo.lib.Dom.getViewHeight();
32728         }
32729         // cache the size
32730         this.viewSize = [w, h];
32731         if(this.modal && this.mask.isVisible()){
32732             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32733             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32734         }
32735         if(this.isVisible()){
32736             this.constrainXY();
32737         }
32738     },
32739
32740     /**
32741      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32742      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32743      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32744      */
32745     destroy : function(removeEl){
32746         if(this.isVisible()){
32747             this.animateTarget = null;
32748             this.hide();
32749         }
32750         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32751         if(this.tabs){
32752             this.tabs.destroy(removeEl);
32753         }
32754         Roo.destroy(
32755              this.shim,
32756              this.proxy,
32757              this.resizer,
32758              this.close,
32759              this.mask
32760         );
32761         if(this.dd){
32762             this.dd.unreg();
32763         }
32764         if(this.buttons){
32765            for(var i = 0, len = this.buttons.length; i < len; i++){
32766                this.buttons[i].destroy();
32767            }
32768         }
32769         this.el.removeAllListeners();
32770         if(removeEl === true){
32771             this.el.update("");
32772             this.el.remove();
32773         }
32774         Roo.DialogManager.unregister(this);
32775     },
32776
32777     // private
32778     startMove : function(){
32779         if(this.proxyDrag){
32780             this.proxy.show();
32781         }
32782         if(this.constraintoviewport !== false){
32783             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32784         }
32785     },
32786
32787     // private
32788     endMove : function(){
32789         if(!this.proxyDrag){
32790             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32791         }else{
32792             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32793             this.proxy.hide();
32794         }
32795         this.refreshSize();
32796         this.adjustAssets();
32797         this.focus();
32798         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32799     },
32800
32801     /**
32802      * Brings this dialog to the front of any other visible dialogs
32803      * @return {Roo.BasicDialog} this
32804      */
32805     toFront : function(){
32806         Roo.DialogManager.bringToFront(this);
32807         return this;
32808     },
32809
32810     /**
32811      * Sends this dialog to the back (under) of any other visible dialogs
32812      * @return {Roo.BasicDialog} this
32813      */
32814     toBack : function(){
32815         Roo.DialogManager.sendToBack(this);
32816         return this;
32817     },
32818
32819     /**
32820      * Centers this dialog in the viewport
32821      * @return {Roo.BasicDialog} this
32822      */
32823     center : function(){
32824         var xy = this.el.getCenterXY(true);
32825         this.moveTo(xy[0], xy[1]);
32826         return this;
32827     },
32828
32829     /**
32830      * Moves the dialog's top-left corner to the specified point
32831      * @param {Number} x
32832      * @param {Number} y
32833      * @return {Roo.BasicDialog} this
32834      */
32835     moveTo : function(x, y){
32836         this.xy = [x,y];
32837         if(this.isVisible()){
32838             this.el.setXY(this.xy);
32839             this.adjustAssets();
32840         }
32841         return this;
32842     },
32843
32844     /**
32845      * Aligns the dialog to the specified element
32846      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32847      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32848      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32849      * @return {Roo.BasicDialog} this
32850      */
32851     alignTo : function(element, position, offsets){
32852         this.xy = this.el.getAlignToXY(element, position, offsets);
32853         if(this.isVisible()){
32854             this.el.setXY(this.xy);
32855             this.adjustAssets();
32856         }
32857         return this;
32858     },
32859
32860     /**
32861      * Anchors an element to another element and realigns it when the window is resized.
32862      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32863      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32864      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32865      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32866      * is a number, it is used as the buffer delay (defaults to 50ms).
32867      * @return {Roo.BasicDialog} this
32868      */
32869     anchorTo : function(el, alignment, offsets, monitorScroll){
32870         var action = function(){
32871             this.alignTo(el, alignment, offsets);
32872         };
32873         Roo.EventManager.onWindowResize(action, this);
32874         var tm = typeof monitorScroll;
32875         if(tm != 'undefined'){
32876             Roo.EventManager.on(window, 'scroll', action, this,
32877                 {buffer: tm == 'number' ? monitorScroll : 50});
32878         }
32879         action.call(this);
32880         return this;
32881     },
32882
32883     /**
32884      * Returns true if the dialog is visible
32885      * @return {Boolean}
32886      */
32887     isVisible : function(){
32888         return this.el.isVisible();
32889     },
32890
32891     // private
32892     animHide : function(callback){
32893         var b = Roo.get(this.animateTarget).getBox();
32894         this.proxy.show();
32895         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32896         this.el.hide();
32897         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32898                     this.hideEl.createDelegate(this, [callback]));
32899     },
32900
32901     /**
32902      * Hides the dialog.
32903      * @param {Function} callback (optional) Function to call when the dialog is hidden
32904      * @return {Roo.BasicDialog} this
32905      */
32906     hide : function(callback){
32907         if (this.fireEvent("beforehide", this) === false){
32908             return;
32909         }
32910         if(this.shadow){
32911             this.shadow.hide();
32912         }
32913         if(this.shim) {
32914           this.shim.hide();
32915         }
32916         // sometimes animateTarget seems to get set.. causing problems...
32917         // this just double checks..
32918         if(this.animateTarget && Roo.get(this.animateTarget)) {
32919            this.animHide(callback);
32920         }else{
32921             this.el.hide();
32922             this.hideEl(callback);
32923         }
32924         return this;
32925     },
32926
32927     // private
32928     hideEl : function(callback){
32929         this.proxy.hide();
32930         if(this.modal){
32931             this.mask.hide();
32932             Roo.get(document.body).removeClass("x-body-masked");
32933         }
32934         this.fireEvent("hide", this);
32935         if(typeof callback == "function"){
32936             callback();
32937         }
32938     },
32939
32940     // private
32941     hideAction : function(){
32942         this.setLeft("-10000px");
32943         this.setTop("-10000px");
32944         this.setStyle("visibility", "hidden");
32945     },
32946
32947     // private
32948     refreshSize : function(){
32949         this.size = this.el.getSize();
32950         this.xy = this.el.getXY();
32951         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
32952     },
32953
32954     // private
32955     // z-index is managed by the DialogManager and may be overwritten at any time
32956     setZIndex : function(index){
32957         if(this.modal){
32958             this.mask.setStyle("z-index", index);
32959         }
32960         if(this.shim){
32961             this.shim.setStyle("z-index", ++index);
32962         }
32963         if(this.shadow){
32964             this.shadow.setZIndex(++index);
32965         }
32966         this.el.setStyle("z-index", ++index);
32967         if(this.proxy){
32968             this.proxy.setStyle("z-index", ++index);
32969         }
32970         if(this.resizer){
32971             this.resizer.proxy.setStyle("z-index", ++index);
32972         }
32973
32974         this.lastZIndex = index;
32975     },
32976
32977     /**
32978      * Returns the element for this dialog
32979      * @return {Roo.Element} The underlying dialog Element
32980      */
32981     getEl : function(){
32982         return this.el;
32983     }
32984 });
32985
32986 /**
32987  * @class Roo.DialogManager
32988  * Provides global access to BasicDialogs that have been created and
32989  * support for z-indexing (layering) multiple open dialogs.
32990  */
32991 Roo.DialogManager = function(){
32992     var list = {};
32993     var accessList = [];
32994     var front = null;
32995
32996     // private
32997     var sortDialogs = function(d1, d2){
32998         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
32999     };
33000
33001     // private
33002     var orderDialogs = function(){
33003         accessList.sort(sortDialogs);
33004         var seed = Roo.DialogManager.zseed;
33005         for(var i = 0, len = accessList.length; i < len; i++){
33006             var dlg = accessList[i];
33007             if(dlg){
33008                 dlg.setZIndex(seed + (i*10));
33009             }
33010         }
33011     };
33012
33013     return {
33014         /**
33015          * The starting z-index for BasicDialogs (defaults to 9000)
33016          * @type Number The z-index value
33017          */
33018         zseed : 9000,
33019
33020         // private
33021         register : function(dlg){
33022             list[dlg.id] = dlg;
33023             accessList.push(dlg);
33024         },
33025
33026         // private
33027         unregister : function(dlg){
33028             delete list[dlg.id];
33029             var i=0;
33030             var len=0;
33031             if(!accessList.indexOf){
33032                 for(  i = 0, len = accessList.length; i < len; i++){
33033                     if(accessList[i] == dlg){
33034                         accessList.splice(i, 1);
33035                         return;
33036                     }
33037                 }
33038             }else{
33039                  i = accessList.indexOf(dlg);
33040                 if(i != -1){
33041                     accessList.splice(i, 1);
33042                 }
33043             }
33044         },
33045
33046         /**
33047          * Gets a registered dialog by id
33048          * @param {String/Object} id The id of the dialog or a dialog
33049          * @return {Roo.BasicDialog} this
33050          */
33051         get : function(id){
33052             return typeof id == "object" ? id : list[id];
33053         },
33054
33055         /**
33056          * Brings the specified dialog to the front
33057          * @param {String/Object} dlg The id of the dialog or a dialog
33058          * @return {Roo.BasicDialog} this
33059          */
33060         bringToFront : function(dlg){
33061             dlg = this.get(dlg);
33062             if(dlg != front){
33063                 front = dlg;
33064                 dlg._lastAccess = new Date().getTime();
33065                 orderDialogs();
33066             }
33067             return dlg;
33068         },
33069
33070         /**
33071          * Sends the specified dialog to the back
33072          * @param {String/Object} dlg The id of the dialog or a dialog
33073          * @return {Roo.BasicDialog} this
33074          */
33075         sendToBack : function(dlg){
33076             dlg = this.get(dlg);
33077             dlg._lastAccess = -(new Date().getTime());
33078             orderDialogs();
33079             return dlg;
33080         },
33081
33082         /**
33083          * Hides all dialogs
33084          */
33085         hideAll : function(){
33086             for(var id in list){
33087                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33088                     list[id].hide();
33089                 }
33090             }
33091         }
33092     };
33093 }();
33094
33095 /**
33096  * @class Roo.LayoutDialog
33097  * @extends Roo.BasicDialog
33098  * Dialog which provides adjustments for working with a layout in a Dialog.
33099  * Add your necessary layout config options to the dialog's config.<br>
33100  * Example usage (including a nested layout):
33101  * <pre><code>
33102 if(!dialog){
33103     dialog = new Roo.LayoutDialog("download-dlg", {
33104         modal: true,
33105         width:600,
33106         height:450,
33107         shadow:true,
33108         minWidth:500,
33109         minHeight:350,
33110         autoTabs:true,
33111         proxyDrag:true,
33112         // layout config merges with the dialog config
33113         center:{
33114             tabPosition: "top",
33115             alwaysShowTabs: true
33116         }
33117     });
33118     dialog.addKeyListener(27, dialog.hide, dialog);
33119     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33120     dialog.addButton("Build It!", this.getDownload, this);
33121
33122     // we can even add nested layouts
33123     var innerLayout = new Roo.BorderLayout("dl-inner", {
33124         east: {
33125             initialSize: 200,
33126             autoScroll:true,
33127             split:true
33128         },
33129         center: {
33130             autoScroll:true
33131         }
33132     });
33133     innerLayout.beginUpdate();
33134     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33135     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33136     innerLayout.endUpdate(true);
33137
33138     var layout = dialog.getLayout();
33139     layout.beginUpdate();
33140     layout.add("center", new Roo.ContentPanel("standard-panel",
33141                         {title: "Download the Source", fitToFrame:true}));
33142     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33143                {title: "Build your own roo.js"}));
33144     layout.getRegion("center").showPanel(sp);
33145     layout.endUpdate();
33146 }
33147 </code></pre>
33148     * @constructor
33149     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33150     * @param {Object} config configuration options
33151   */
33152 Roo.LayoutDialog = function(el, cfg){
33153     
33154     var config=  cfg;
33155     if (typeof(cfg) == 'undefined') {
33156         config = Roo.apply({}, el);
33157         // not sure why we use documentElement here.. - it should always be body.
33158         // IE7 borks horribly if we use documentElement.
33159         // webkit also does not like documentElement - it creates a body element...
33160         el = Roo.get( document.body || document.documentElement ).createChild();
33161         //config.autoCreate = true;
33162     }
33163     
33164     
33165     config.autoTabs = false;
33166     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33167     this.body.setStyle({overflow:"hidden", position:"relative"});
33168     this.layout = new Roo.BorderLayout(this.body.dom, config);
33169     this.layout.monitorWindowResize = false;
33170     this.el.addClass("x-dlg-auto-layout");
33171     // fix case when center region overwrites center function
33172     this.center = Roo.BasicDialog.prototype.center;
33173     this.on("show", this.layout.layout, this.layout, true);
33174     if (config.items) {
33175         var xitems = config.items;
33176         delete config.items;
33177         Roo.each(xitems, this.addxtype, this);
33178     }
33179     
33180     
33181 };
33182 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33183     /**
33184      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33185      * @deprecated
33186      */
33187     endUpdate : function(){
33188         this.layout.endUpdate();
33189     },
33190
33191     /**
33192      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33193      *  @deprecated
33194      */
33195     beginUpdate : function(){
33196         this.layout.beginUpdate();
33197     },
33198
33199     /**
33200      * Get the BorderLayout for this dialog
33201      * @return {Roo.BorderLayout}
33202      */
33203     getLayout : function(){
33204         return this.layout;
33205     },
33206
33207     showEl : function(){
33208         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33209         if(Roo.isIE7){
33210             this.layout.layout();
33211         }
33212     },
33213
33214     // private
33215     // Use the syncHeightBeforeShow config option to control this automatically
33216     syncBodyHeight : function(){
33217         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33218         if(this.layout){this.layout.layout();}
33219     },
33220     
33221       /**
33222      * Add an xtype element (actually adds to the layout.)
33223      * @return {Object} xdata xtype object data.
33224      */
33225     
33226     addxtype : function(c) {
33227         return this.layout.addxtype(c);
33228     }
33229 });/*
33230  * Based on:
33231  * Ext JS Library 1.1.1
33232  * Copyright(c) 2006-2007, Ext JS, LLC.
33233  *
33234  * Originally Released Under LGPL - original licence link has changed is not relivant.
33235  *
33236  * Fork - LGPL
33237  * <script type="text/javascript">
33238  */
33239  
33240 /**
33241  * @class Roo.MessageBox
33242  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33243  * Example usage:
33244  *<pre><code>
33245 // Basic alert:
33246 Roo.Msg.alert('Status', 'Changes saved successfully.');
33247
33248 // Prompt for user data:
33249 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33250     if (btn == 'ok'){
33251         // process text value...
33252     }
33253 });
33254
33255 // Show a dialog using config options:
33256 Roo.Msg.show({
33257    title:'Save Changes?',
33258    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33259    buttons: Roo.Msg.YESNOCANCEL,
33260    fn: processResult,
33261    animEl: 'elId'
33262 });
33263 </code></pre>
33264  * @singleton
33265  */
33266 Roo.MessageBox = function(){
33267     var dlg, opt, mask, waitTimer;
33268     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33269     var buttons, activeTextEl, bwidth;
33270
33271     // private
33272     var handleButton = function(button){
33273         dlg.hide();
33274         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33275     };
33276
33277     // private
33278     var handleHide = function(){
33279         if(opt && opt.cls){
33280             dlg.el.removeClass(opt.cls);
33281         }
33282         if(waitTimer){
33283             Roo.TaskMgr.stop(waitTimer);
33284             waitTimer = null;
33285         }
33286     };
33287
33288     // private
33289     var updateButtons = function(b){
33290         var width = 0;
33291         if(!b){
33292             buttons["ok"].hide();
33293             buttons["cancel"].hide();
33294             buttons["yes"].hide();
33295             buttons["no"].hide();
33296             dlg.footer.dom.style.display = 'none';
33297             return width;
33298         }
33299         dlg.footer.dom.style.display = '';
33300         for(var k in buttons){
33301             if(typeof buttons[k] != "function"){
33302                 if(b[k]){
33303                     buttons[k].show();
33304                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33305                     width += buttons[k].el.getWidth()+15;
33306                 }else{
33307                     buttons[k].hide();
33308                 }
33309             }
33310         }
33311         return width;
33312     };
33313
33314     // private
33315     var handleEsc = function(d, k, e){
33316         if(opt && opt.closable !== false){
33317             dlg.hide();
33318         }
33319         if(e){
33320             e.stopEvent();
33321         }
33322     };
33323
33324     return {
33325         /**
33326          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33327          * @return {Roo.BasicDialog} The BasicDialog element
33328          */
33329         getDialog : function(){
33330            if(!dlg){
33331                 dlg = new Roo.BasicDialog("x-msg-box", {
33332                     autoCreate : true,
33333                     shadow: true,
33334                     draggable: true,
33335                     resizable:false,
33336                     constraintoviewport:false,
33337                     fixedcenter:true,
33338                     collapsible : false,
33339                     shim:true,
33340                     modal: true,
33341                     width:400, height:100,
33342                     buttonAlign:"center",
33343                     closeClick : function(){
33344                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33345                             handleButton("no");
33346                         }else{
33347                             handleButton("cancel");
33348                         }
33349                     }
33350                 });
33351                 dlg.on("hide", handleHide);
33352                 mask = dlg.mask;
33353                 dlg.addKeyListener(27, handleEsc);
33354                 buttons = {};
33355                 var bt = this.buttonText;
33356                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33357                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33358                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33359                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33360                 bodyEl = dlg.body.createChild({
33361
33362                     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>'
33363                 });
33364                 msgEl = bodyEl.dom.firstChild;
33365                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33366                 textboxEl.enableDisplayMode();
33367                 textboxEl.addKeyListener([10,13], function(){
33368                     if(dlg.isVisible() && opt && opt.buttons){
33369                         if(opt.buttons.ok){
33370                             handleButton("ok");
33371                         }else if(opt.buttons.yes){
33372                             handleButton("yes");
33373                         }
33374                     }
33375                 });
33376                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33377                 textareaEl.enableDisplayMode();
33378                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33379                 progressEl.enableDisplayMode();
33380                 var pf = progressEl.dom.firstChild;
33381                 if (pf) {
33382                     pp = Roo.get(pf.firstChild);
33383                     pp.setHeight(pf.offsetHeight);
33384                 }
33385                 
33386             }
33387             return dlg;
33388         },
33389
33390         /**
33391          * Updates the message box body text
33392          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33393          * the XHTML-compliant non-breaking space character '&amp;#160;')
33394          * @return {Roo.MessageBox} This message box
33395          */
33396         updateText : function(text){
33397             if(!dlg.isVisible() && !opt.width){
33398                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33399             }
33400             msgEl.innerHTML = text || '&#160;';
33401       
33402             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33403             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33404             var w = Math.max(
33405                     Math.min(opt.width || cw , this.maxWidth), 
33406                     Math.max(opt.minWidth || this.minWidth, bwidth)
33407             );
33408             if(opt.prompt){
33409                 activeTextEl.setWidth(w);
33410             }
33411             if(dlg.isVisible()){
33412                 dlg.fixedcenter = false;
33413             }
33414             // to big, make it scroll. = But as usual stupid IE does not support
33415             // !important..
33416             
33417             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33418                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33419                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33420             } else {
33421                 bodyEl.dom.style.height = '';
33422                 bodyEl.dom.style.overflowY = '';
33423             }
33424             if (cw > w) {
33425                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33426             } else {
33427                 bodyEl.dom.style.overflowX = '';
33428             }
33429             
33430             dlg.setContentSize(w, bodyEl.getHeight());
33431             if(dlg.isVisible()){
33432                 dlg.fixedcenter = true;
33433             }
33434             return this;
33435         },
33436
33437         /**
33438          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33439          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33440          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33441          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33442          * @return {Roo.MessageBox} This message box
33443          */
33444         updateProgress : function(value, text){
33445             if(text){
33446                 this.updateText(text);
33447             }
33448             if (pp) { // weird bug on my firefox - for some reason this is not defined
33449                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33450             }
33451             return this;
33452         },        
33453
33454         /**
33455          * Returns true if the message box is currently displayed
33456          * @return {Boolean} True if the message box is visible, else false
33457          */
33458         isVisible : function(){
33459             return dlg && dlg.isVisible();  
33460         },
33461
33462         /**
33463          * Hides the message box if it is displayed
33464          */
33465         hide : function(){
33466             if(this.isVisible()){
33467                 dlg.hide();
33468             }  
33469         },
33470
33471         /**
33472          * Displays a new message box, or reinitializes an existing message box, based on the config options
33473          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33474          * The following config object properties are supported:
33475          * <pre>
33476 Property    Type             Description
33477 ----------  ---------------  ------------------------------------------------------------------------------------
33478 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33479                                    closes (defaults to undefined)
33480 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33481                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33482 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33483                                    progress and wait dialogs will ignore this property and always hide the
33484                                    close button as they can only be closed programmatically.
33485 cls               String           A custom CSS class to apply to the message box element
33486 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33487                                    displayed (defaults to 75)
33488 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33489                                    function will be btn (the name of the button that was clicked, if applicable,
33490                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33491                                    Progress and wait dialogs will ignore this option since they do not respond to
33492                                    user actions and can only be closed programmatically, so any required function
33493                                    should be called by the same code after it closes the dialog.
33494 icon              String           A CSS class that provides a background image to be used as an icon for
33495                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33496 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33497 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33498 modal             Boolean          False to allow user interaction with the page while the message box is
33499                                    displayed (defaults to true)
33500 msg               String           A string that will replace the existing message box body text (defaults
33501                                    to the XHTML-compliant non-breaking space character '&#160;')
33502 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33503 progress          Boolean          True to display a progress bar (defaults to false)
33504 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33505 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33506 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33507 title             String           The title text
33508 value             String           The string value to set into the active textbox element if displayed
33509 wait              Boolean          True to display a progress bar (defaults to false)
33510 width             Number           The width of the dialog in pixels
33511 </pre>
33512          *
33513          * Example usage:
33514          * <pre><code>
33515 Roo.Msg.show({
33516    title: 'Address',
33517    msg: 'Please enter your address:',
33518    width: 300,
33519    buttons: Roo.MessageBox.OKCANCEL,
33520    multiline: true,
33521    fn: saveAddress,
33522    animEl: 'addAddressBtn'
33523 });
33524 </code></pre>
33525          * @param {Object} config Configuration options
33526          * @return {Roo.MessageBox} This message box
33527          */
33528         show : function(options)
33529         {
33530             
33531             // this causes nightmares if you show one dialog after another
33532             // especially on callbacks..
33533              
33534             if(this.isVisible()){
33535                 
33536                 this.hide();
33537                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33538                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33539                 Roo.log("New Dialog Message:" +  options.msg )
33540                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33541                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33542                 
33543             }
33544             var d = this.getDialog();
33545             opt = options;
33546             d.setTitle(opt.title || "&#160;");
33547             d.close.setDisplayed(opt.closable !== false);
33548             activeTextEl = textboxEl;
33549             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33550             if(opt.prompt){
33551                 if(opt.multiline){
33552                     textboxEl.hide();
33553                     textareaEl.show();
33554                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33555                         opt.multiline : this.defaultTextHeight);
33556                     activeTextEl = textareaEl;
33557                 }else{
33558                     textboxEl.show();
33559                     textareaEl.hide();
33560                 }
33561             }else{
33562                 textboxEl.hide();
33563                 textareaEl.hide();
33564             }
33565             progressEl.setDisplayed(opt.progress === true);
33566             this.updateProgress(0);
33567             activeTextEl.dom.value = opt.value || "";
33568             if(opt.prompt){
33569                 dlg.setDefaultButton(activeTextEl);
33570             }else{
33571                 var bs = opt.buttons;
33572                 var db = null;
33573                 if(bs && bs.ok){
33574                     db = buttons["ok"];
33575                 }else if(bs && bs.yes){
33576                     db = buttons["yes"];
33577                 }
33578                 dlg.setDefaultButton(db);
33579             }
33580             bwidth = updateButtons(opt.buttons);
33581             this.updateText(opt.msg);
33582             if(opt.cls){
33583                 d.el.addClass(opt.cls);
33584             }
33585             d.proxyDrag = opt.proxyDrag === true;
33586             d.modal = opt.modal !== false;
33587             d.mask = opt.modal !== false ? mask : false;
33588             if(!d.isVisible()){
33589                 // force it to the end of the z-index stack so it gets a cursor in FF
33590                 document.body.appendChild(dlg.el.dom);
33591                 d.animateTarget = null;
33592                 d.show(options.animEl);
33593             }
33594             return this;
33595         },
33596
33597         /**
33598          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33599          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33600          * and closing the message box when the process is complete.
33601          * @param {String} title The title bar text
33602          * @param {String} msg The message box body text
33603          * @return {Roo.MessageBox} This message box
33604          */
33605         progress : function(title, msg){
33606             this.show({
33607                 title : title,
33608                 msg : msg,
33609                 buttons: false,
33610                 progress:true,
33611                 closable:false,
33612                 minWidth: this.minProgressWidth,
33613                 modal : true
33614             });
33615             return this;
33616         },
33617
33618         /**
33619          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33620          * If a callback function is passed it will be called after the user clicks the button, and the
33621          * id of the button that was clicked will be passed as the only parameter to the callback
33622          * (could also be the top-right close button).
33623          * @param {String} title The title bar text
33624          * @param {String} msg The message box body text
33625          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33626          * @param {Object} scope (optional) The scope of the callback function
33627          * @return {Roo.MessageBox} This message box
33628          */
33629         alert : function(title, msg, fn, scope){
33630             this.show({
33631                 title : title,
33632                 msg : msg,
33633                 buttons: this.OK,
33634                 fn: fn,
33635                 scope : scope,
33636                 modal : true
33637             });
33638             return this;
33639         },
33640
33641         /**
33642          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33643          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33644          * You are responsible for closing the message box when the process is complete.
33645          * @param {String} msg The message box body text
33646          * @param {String} title (optional) The title bar text
33647          * @return {Roo.MessageBox} This message box
33648          */
33649         wait : function(msg, title){
33650             this.show({
33651                 title : title,
33652                 msg : msg,
33653                 buttons: false,
33654                 closable:false,
33655                 progress:true,
33656                 modal:true,
33657                 width:300,
33658                 wait:true
33659             });
33660             waitTimer = Roo.TaskMgr.start({
33661                 run: function(i){
33662                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33663                 },
33664                 interval: 1000
33665             });
33666             return this;
33667         },
33668
33669         /**
33670          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33671          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33672          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33673          * @param {String} title The title bar text
33674          * @param {String} msg The message box body text
33675          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33676          * @param {Object} scope (optional) The scope of the callback function
33677          * @return {Roo.MessageBox} This message box
33678          */
33679         confirm : function(title, msg, fn, scope){
33680             this.show({
33681                 title : title,
33682                 msg : msg,
33683                 buttons: this.YESNO,
33684                 fn: fn,
33685                 scope : scope,
33686                 modal : true
33687             });
33688             return this;
33689         },
33690
33691         /**
33692          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33693          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33694          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33695          * (could also be the top-right close button) and the text that was entered will be passed as the two
33696          * parameters to the callback.
33697          * @param {String} title The title bar text
33698          * @param {String} msg The message box body text
33699          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33700          * @param {Object} scope (optional) The scope of the callback function
33701          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33702          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33703          * @return {Roo.MessageBox} This message box
33704          */
33705         prompt : function(title, msg, fn, scope, multiline){
33706             this.show({
33707                 title : title,
33708                 msg : msg,
33709                 buttons: this.OKCANCEL,
33710                 fn: fn,
33711                 minWidth:250,
33712                 scope : scope,
33713                 prompt:true,
33714                 multiline: multiline,
33715                 modal : true
33716             });
33717             return this;
33718         },
33719
33720         /**
33721          * Button config that displays a single OK button
33722          * @type Object
33723          */
33724         OK : {ok:true},
33725         /**
33726          * Button config that displays Yes and No buttons
33727          * @type Object
33728          */
33729         YESNO : {yes:true, no:true},
33730         /**
33731          * Button config that displays OK and Cancel buttons
33732          * @type Object
33733          */
33734         OKCANCEL : {ok:true, cancel:true},
33735         /**
33736          * Button config that displays Yes, No and Cancel buttons
33737          * @type Object
33738          */
33739         YESNOCANCEL : {yes:true, no:true, cancel:true},
33740
33741         /**
33742          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33743          * @type Number
33744          */
33745         defaultTextHeight : 75,
33746         /**
33747          * The maximum width in pixels of the message box (defaults to 600)
33748          * @type Number
33749          */
33750         maxWidth : 600,
33751         /**
33752          * The minimum width in pixels of the message box (defaults to 100)
33753          * @type Number
33754          */
33755         minWidth : 100,
33756         /**
33757          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33758          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33759          * @type Number
33760          */
33761         minProgressWidth : 250,
33762         /**
33763          * An object containing the default button text strings that can be overriden for localized language support.
33764          * Supported properties are: ok, cancel, yes and no.
33765          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33766          * @type Object
33767          */
33768         buttonText : {
33769             ok : "OK",
33770             cancel : "Cancel",
33771             yes : "Yes",
33772             no : "No"
33773         }
33774     };
33775 }();
33776
33777 /**
33778  * Shorthand for {@link Roo.MessageBox}
33779  */
33780 Roo.Msg = Roo.MessageBox;/*
33781  * Based on:
33782  * Ext JS Library 1.1.1
33783  * Copyright(c) 2006-2007, Ext JS, LLC.
33784  *
33785  * Originally Released Under LGPL - original licence link has changed is not relivant.
33786  *
33787  * Fork - LGPL
33788  * <script type="text/javascript">
33789  */
33790 /**
33791  * @class Roo.QuickTips
33792  * Provides attractive and customizable tooltips for any element.
33793  * @singleton
33794  */
33795 Roo.QuickTips = function(){
33796     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33797     var ce, bd, xy, dd;
33798     var visible = false, disabled = true, inited = false;
33799     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33800     
33801     var onOver = function(e){
33802         if(disabled){
33803             return;
33804         }
33805         var t = e.getTarget();
33806         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33807             return;
33808         }
33809         if(ce && t == ce.el){
33810             clearTimeout(hideProc);
33811             return;
33812         }
33813         if(t && tagEls[t.id]){
33814             tagEls[t.id].el = t;
33815             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33816             return;
33817         }
33818         var ttp, et = Roo.fly(t);
33819         var ns = cfg.namespace;
33820         if(tm.interceptTitles && t.title){
33821             ttp = t.title;
33822             t.qtip = ttp;
33823             t.removeAttribute("title");
33824             e.preventDefault();
33825         }else{
33826             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33827         }
33828         if(ttp){
33829             showProc = show.defer(tm.showDelay, tm, [{
33830                 el: t, 
33831                 text: ttp.replace(/\\n/g,'<br/>'),
33832                 width: et.getAttributeNS(ns, cfg.width),
33833                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33834                 title: et.getAttributeNS(ns, cfg.title),
33835                     cls: et.getAttributeNS(ns, cfg.cls)
33836             }]);
33837         }
33838     };
33839     
33840     var onOut = function(e){
33841         clearTimeout(showProc);
33842         var t = e.getTarget();
33843         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33844             hideProc = setTimeout(hide, tm.hideDelay);
33845         }
33846     };
33847     
33848     var onMove = function(e){
33849         if(disabled){
33850             return;
33851         }
33852         xy = e.getXY();
33853         xy[1] += 18;
33854         if(tm.trackMouse && ce){
33855             el.setXY(xy);
33856         }
33857     };
33858     
33859     var onDown = function(e){
33860         clearTimeout(showProc);
33861         clearTimeout(hideProc);
33862         if(!e.within(el)){
33863             if(tm.hideOnClick){
33864                 hide();
33865                 tm.disable();
33866                 tm.enable.defer(100, tm);
33867             }
33868         }
33869     };
33870     
33871     var getPad = function(){
33872         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33873     };
33874
33875     var show = function(o){
33876         if(disabled){
33877             return;
33878         }
33879         clearTimeout(dismissProc);
33880         ce = o;
33881         if(removeCls){ // in case manually hidden
33882             el.removeClass(removeCls);
33883             removeCls = null;
33884         }
33885         if(ce.cls){
33886             el.addClass(ce.cls);
33887             removeCls = ce.cls;
33888         }
33889         if(ce.title){
33890             tipTitle.update(ce.title);
33891             tipTitle.show();
33892         }else{
33893             tipTitle.update('');
33894             tipTitle.hide();
33895         }
33896         el.dom.style.width  = tm.maxWidth+'px';
33897         //tipBody.dom.style.width = '';
33898         tipBodyText.update(o.text);
33899         var p = getPad(), w = ce.width;
33900         if(!w){
33901             var td = tipBodyText.dom;
33902             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33903             if(aw > tm.maxWidth){
33904                 w = tm.maxWidth;
33905             }else if(aw < tm.minWidth){
33906                 w = tm.minWidth;
33907             }else{
33908                 w = aw;
33909             }
33910         }
33911         //tipBody.setWidth(w);
33912         el.setWidth(parseInt(w, 10) + p);
33913         if(ce.autoHide === false){
33914             close.setDisplayed(true);
33915             if(dd){
33916                 dd.unlock();
33917             }
33918         }else{
33919             close.setDisplayed(false);
33920             if(dd){
33921                 dd.lock();
33922             }
33923         }
33924         if(xy){
33925             el.avoidY = xy[1]-18;
33926             el.setXY(xy);
33927         }
33928         if(tm.animate){
33929             el.setOpacity(.1);
33930             el.setStyle("visibility", "visible");
33931             el.fadeIn({callback: afterShow});
33932         }else{
33933             afterShow();
33934         }
33935     };
33936     
33937     var afterShow = function(){
33938         if(ce){
33939             el.show();
33940             esc.enable();
33941             if(tm.autoDismiss && ce.autoHide !== false){
33942                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
33943             }
33944         }
33945     };
33946     
33947     var hide = function(noanim){
33948         clearTimeout(dismissProc);
33949         clearTimeout(hideProc);
33950         ce = null;
33951         if(el.isVisible()){
33952             esc.disable();
33953             if(noanim !== true && tm.animate){
33954                 el.fadeOut({callback: afterHide});
33955             }else{
33956                 afterHide();
33957             } 
33958         }
33959     };
33960     
33961     var afterHide = function(){
33962         el.hide();
33963         if(removeCls){
33964             el.removeClass(removeCls);
33965             removeCls = null;
33966         }
33967     };
33968     
33969     return {
33970         /**
33971         * @cfg {Number} minWidth
33972         * The minimum width of the quick tip (defaults to 40)
33973         */
33974        minWidth : 40,
33975         /**
33976         * @cfg {Number} maxWidth
33977         * The maximum width of the quick tip (defaults to 300)
33978         */
33979        maxWidth : 300,
33980         /**
33981         * @cfg {Boolean} interceptTitles
33982         * True to automatically use the element's DOM title value if available (defaults to false)
33983         */
33984        interceptTitles : false,
33985         /**
33986         * @cfg {Boolean} trackMouse
33987         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
33988         */
33989        trackMouse : false,
33990         /**
33991         * @cfg {Boolean} hideOnClick
33992         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
33993         */
33994        hideOnClick : true,
33995         /**
33996         * @cfg {Number} showDelay
33997         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
33998         */
33999        showDelay : 500,
34000         /**
34001         * @cfg {Number} hideDelay
34002         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34003         */
34004        hideDelay : 200,
34005         /**
34006         * @cfg {Boolean} autoHide
34007         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34008         * Used in conjunction with hideDelay.
34009         */
34010        autoHide : true,
34011         /**
34012         * @cfg {Boolean}
34013         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34014         * (defaults to true).  Used in conjunction with autoDismissDelay.
34015         */
34016        autoDismiss : true,
34017         /**
34018         * @cfg {Number}
34019         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34020         */
34021        autoDismissDelay : 5000,
34022        /**
34023         * @cfg {Boolean} animate
34024         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34025         */
34026        animate : false,
34027
34028        /**
34029         * @cfg {String} title
34030         * Title text to display (defaults to '').  This can be any valid HTML markup.
34031         */
34032         title: '',
34033        /**
34034         * @cfg {String} text
34035         * Body text to display (defaults to '').  This can be any valid HTML markup.
34036         */
34037         text : '',
34038        /**
34039         * @cfg {String} cls
34040         * A CSS class to apply to the base quick tip element (defaults to '').
34041         */
34042         cls : '',
34043        /**
34044         * @cfg {Number} width
34045         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34046         * minWidth or maxWidth.
34047         */
34048         width : null,
34049
34050     /**
34051      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34052      * or display QuickTips in a page.
34053      */
34054        init : function(){
34055           tm = Roo.QuickTips;
34056           cfg = tm.tagConfig;
34057           if(!inited){
34058               if(!Roo.isReady){ // allow calling of init() before onReady
34059                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34060                   return;
34061               }
34062               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34063               el.fxDefaults = {stopFx: true};
34064               // maximum custom styling
34065               //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>');
34066               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>');              
34067               tipTitle = el.child('h3');
34068               tipTitle.enableDisplayMode("block");
34069               tipBody = el.child('div.x-tip-bd');
34070               tipBodyText = el.child('div.x-tip-bd-inner');
34071               //bdLeft = el.child('div.x-tip-bd-left');
34072               //bdRight = el.child('div.x-tip-bd-right');
34073               close = el.child('div.x-tip-close');
34074               close.enableDisplayMode("block");
34075               close.on("click", hide);
34076               var d = Roo.get(document);
34077               d.on("mousedown", onDown);
34078               d.on("mouseover", onOver);
34079               d.on("mouseout", onOut);
34080               d.on("mousemove", onMove);
34081               esc = d.addKeyListener(27, hide);
34082               esc.disable();
34083               if(Roo.dd.DD){
34084                   dd = el.initDD("default", null, {
34085                       onDrag : function(){
34086                           el.sync();  
34087                       }
34088                   });
34089                   dd.setHandleElId(tipTitle.id);
34090                   dd.lock();
34091               }
34092               inited = true;
34093           }
34094           this.enable(); 
34095        },
34096
34097     /**
34098      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34099      * are supported:
34100      * <pre>
34101 Property    Type                   Description
34102 ----------  ---------------------  ------------------------------------------------------------------------
34103 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34104      * </ul>
34105      * @param {Object} config The config object
34106      */
34107        register : function(config){
34108            var cs = config instanceof Array ? config : arguments;
34109            for(var i = 0, len = cs.length; i < len; i++) {
34110                var c = cs[i];
34111                var target = c.target;
34112                if(target){
34113                    if(target instanceof Array){
34114                        for(var j = 0, jlen = target.length; j < jlen; j++){
34115                            tagEls[target[j]] = c;
34116                        }
34117                    }else{
34118                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34119                    }
34120                }
34121            }
34122        },
34123
34124     /**
34125      * Removes this quick tip from its element and destroys it.
34126      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34127      */
34128        unregister : function(el){
34129            delete tagEls[Roo.id(el)];
34130        },
34131
34132     /**
34133      * Enable this quick tip.
34134      */
34135        enable : function(){
34136            if(inited && disabled){
34137                locks.pop();
34138                if(locks.length < 1){
34139                    disabled = false;
34140                }
34141            }
34142        },
34143
34144     /**
34145      * Disable this quick tip.
34146      */
34147        disable : function(){
34148           disabled = true;
34149           clearTimeout(showProc);
34150           clearTimeout(hideProc);
34151           clearTimeout(dismissProc);
34152           if(ce){
34153               hide(true);
34154           }
34155           locks.push(1);
34156        },
34157
34158     /**
34159      * Returns true if the quick tip is enabled, else false.
34160      */
34161        isEnabled : function(){
34162             return !disabled;
34163        },
34164
34165         // private
34166        tagConfig : {
34167            namespace : "roo", // was ext?? this may break..
34168            alt_namespace : "ext",
34169            attribute : "qtip",
34170            width : "width",
34171            target : "target",
34172            title : "qtitle",
34173            hide : "hide",
34174            cls : "qclass"
34175        }
34176    };
34177 }();
34178
34179 // backwards compat
34180 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34181  * Based on:
34182  * Ext JS Library 1.1.1
34183  * Copyright(c) 2006-2007, Ext JS, LLC.
34184  *
34185  * Originally Released Under LGPL - original licence link has changed is not relivant.
34186  *
34187  * Fork - LGPL
34188  * <script type="text/javascript">
34189  */
34190  
34191
34192 /**
34193  * @class Roo.tree.TreePanel
34194  * @extends Roo.data.Tree
34195
34196  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34197  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34198  * @cfg {Boolean} enableDD true to enable drag and drop
34199  * @cfg {Boolean} enableDrag true to enable just drag
34200  * @cfg {Boolean} enableDrop true to enable just drop
34201  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34202  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34203  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34204  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34205  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34206  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34207  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34208  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34209  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34210  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34211  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34212  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34213  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34214  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34215  * @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>
34216  * @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>
34217  * 
34218  * @constructor
34219  * @param {String/HTMLElement/Element} el The container element
34220  * @param {Object} config
34221  */
34222 Roo.tree.TreePanel = function(el, config){
34223     var root = false;
34224     var loader = false;
34225     if (config.root) {
34226         root = config.root;
34227         delete config.root;
34228     }
34229     if (config.loader) {
34230         loader = config.loader;
34231         delete config.loader;
34232     }
34233     
34234     Roo.apply(this, config);
34235     Roo.tree.TreePanel.superclass.constructor.call(this);
34236     this.el = Roo.get(el);
34237     this.el.addClass('x-tree');
34238     //console.log(root);
34239     if (root) {
34240         this.setRootNode( Roo.factory(root, Roo.tree));
34241     }
34242     if (loader) {
34243         this.loader = Roo.factory(loader, Roo.tree);
34244     }
34245    /**
34246     * Read-only. The id of the container element becomes this TreePanel's id.
34247     */
34248     this.id = this.el.id;
34249     this.addEvents({
34250         /**
34251         * @event beforeload
34252         * Fires before a node is loaded, return false to cancel
34253         * @param {Node} node The node being loaded
34254         */
34255         "beforeload" : true,
34256         /**
34257         * @event load
34258         * Fires when a node is loaded
34259         * @param {Node} node The node that was loaded
34260         */
34261         "load" : true,
34262         /**
34263         * @event textchange
34264         * Fires when the text for a node is changed
34265         * @param {Node} node The node
34266         * @param {String} text The new text
34267         * @param {String} oldText The old text
34268         */
34269         "textchange" : true,
34270         /**
34271         * @event beforeexpand
34272         * Fires before a node is expanded, return false to cancel.
34273         * @param {Node} node The node
34274         * @param {Boolean} deep
34275         * @param {Boolean} anim
34276         */
34277         "beforeexpand" : true,
34278         /**
34279         * @event beforecollapse
34280         * Fires before a node is collapsed, return false to cancel.
34281         * @param {Node} node The node
34282         * @param {Boolean} deep
34283         * @param {Boolean} anim
34284         */
34285         "beforecollapse" : true,
34286         /**
34287         * @event expand
34288         * Fires when a node is expanded
34289         * @param {Node} node The node
34290         */
34291         "expand" : true,
34292         /**
34293         * @event disabledchange
34294         * Fires when the disabled status of a node changes
34295         * @param {Node} node The node
34296         * @param {Boolean} disabled
34297         */
34298         "disabledchange" : true,
34299         /**
34300         * @event collapse
34301         * Fires when a node is collapsed
34302         * @param {Node} node The node
34303         */
34304         "collapse" : true,
34305         /**
34306         * @event beforeclick
34307         * Fires before click processing on a node. Return false to cancel the default action.
34308         * @param {Node} node The node
34309         * @param {Roo.EventObject} e The event object
34310         */
34311         "beforeclick":true,
34312         /**
34313         * @event checkchange
34314         * Fires when a node with a checkbox's checked property changes
34315         * @param {Node} this This node
34316         * @param {Boolean} checked
34317         */
34318         "checkchange":true,
34319         /**
34320         * @event click
34321         * Fires when a node is clicked
34322         * @param {Node} node The node
34323         * @param {Roo.EventObject} e The event object
34324         */
34325         "click":true,
34326         /**
34327         * @event dblclick
34328         * Fires when a node is double clicked
34329         * @param {Node} node The node
34330         * @param {Roo.EventObject} e The event object
34331         */
34332         "dblclick":true,
34333         /**
34334         * @event contextmenu
34335         * Fires when a node is right clicked
34336         * @param {Node} node The node
34337         * @param {Roo.EventObject} e The event object
34338         */
34339         "contextmenu":true,
34340         /**
34341         * @event beforechildrenrendered
34342         * Fires right before the child nodes for a node are rendered
34343         * @param {Node} node The node
34344         */
34345         "beforechildrenrendered":true,
34346         /**
34347         * @event startdrag
34348         * Fires when a node starts being dragged
34349         * @param {Roo.tree.TreePanel} this
34350         * @param {Roo.tree.TreeNode} node
34351         * @param {event} e The raw browser event
34352         */ 
34353        "startdrag" : true,
34354        /**
34355         * @event enddrag
34356         * Fires when a drag operation is complete
34357         * @param {Roo.tree.TreePanel} this
34358         * @param {Roo.tree.TreeNode} node
34359         * @param {event} e The raw browser event
34360         */
34361        "enddrag" : true,
34362        /**
34363         * @event dragdrop
34364         * Fires when a dragged node is dropped on a valid DD target
34365         * @param {Roo.tree.TreePanel} this
34366         * @param {Roo.tree.TreeNode} node
34367         * @param {DD} dd The dd it was dropped on
34368         * @param {event} e The raw browser event
34369         */
34370        "dragdrop" : true,
34371        /**
34372         * @event beforenodedrop
34373         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34374         * passed to handlers has the following properties:<br />
34375         * <ul style="padding:5px;padding-left:16px;">
34376         * <li>tree - The TreePanel</li>
34377         * <li>target - The node being targeted for the drop</li>
34378         * <li>data - The drag data from the drag source</li>
34379         * <li>point - The point of the drop - append, above or below</li>
34380         * <li>source - The drag source</li>
34381         * <li>rawEvent - Raw mouse event</li>
34382         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34383         * to be inserted by setting them on this object.</li>
34384         * <li>cancel - Set this to true to cancel the drop.</li>
34385         * </ul>
34386         * @param {Object} dropEvent
34387         */
34388        "beforenodedrop" : true,
34389        /**
34390         * @event nodedrop
34391         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34392         * passed to handlers has the following properties:<br />
34393         * <ul style="padding:5px;padding-left:16px;">
34394         * <li>tree - The TreePanel</li>
34395         * <li>target - The node being targeted for the drop</li>
34396         * <li>data - The drag data from the drag source</li>
34397         * <li>point - The point of the drop - append, above or below</li>
34398         * <li>source - The drag source</li>
34399         * <li>rawEvent - Raw mouse event</li>
34400         * <li>dropNode - Dropped node(s).</li>
34401         * </ul>
34402         * @param {Object} dropEvent
34403         */
34404        "nodedrop" : true,
34405         /**
34406         * @event nodedragover
34407         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34408         * passed to handlers has the following properties:<br />
34409         * <ul style="padding:5px;padding-left:16px;">
34410         * <li>tree - The TreePanel</li>
34411         * <li>target - The node being targeted for the drop</li>
34412         * <li>data - The drag data from the drag source</li>
34413         * <li>point - The point of the drop - append, above or below</li>
34414         * <li>source - The drag source</li>
34415         * <li>rawEvent - Raw mouse event</li>
34416         * <li>dropNode - Drop node(s) provided by the source.</li>
34417         * <li>cancel - Set this to true to signal drop not allowed.</li>
34418         * </ul>
34419         * @param {Object} dragOverEvent
34420         */
34421        "nodedragover" : true,
34422        /**
34423         * @event appendnode
34424         * Fires when append node to the tree
34425         * @param {Roo.tree.TreePanel} this
34426         * @param {Roo.tree.TreeNode} node
34427         * @param {Number} index The index of the newly appended node
34428         */
34429        "appendnode" : true
34430         
34431     });
34432     if(this.singleExpand){
34433        this.on("beforeexpand", this.restrictExpand, this);
34434     }
34435     if (this.editor) {
34436         this.editor.tree = this;
34437         this.editor = Roo.factory(this.editor, Roo.tree);
34438     }
34439     
34440     if (this.selModel) {
34441         this.selModel = Roo.factory(this.selModel, Roo.tree);
34442     }
34443    
34444 };
34445 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34446     rootVisible : true,
34447     animate: Roo.enableFx,
34448     lines : true,
34449     enableDD : false,
34450     hlDrop : Roo.enableFx,
34451   
34452     renderer: false,
34453     
34454     rendererTip: false,
34455     // private
34456     restrictExpand : function(node){
34457         var p = node.parentNode;
34458         if(p){
34459             if(p.expandedChild && p.expandedChild.parentNode == p){
34460                 p.expandedChild.collapse();
34461             }
34462             p.expandedChild = node;
34463         }
34464     },
34465
34466     // private override
34467     setRootNode : function(node){
34468         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34469         if(!this.rootVisible){
34470             node.ui = new Roo.tree.RootTreeNodeUI(node);
34471         }
34472         return node;
34473     },
34474
34475     /**
34476      * Returns the container element for this TreePanel
34477      */
34478     getEl : function(){
34479         return this.el;
34480     },
34481
34482     /**
34483      * Returns the default TreeLoader for this TreePanel
34484      */
34485     getLoader : function(){
34486         return this.loader;
34487     },
34488
34489     /**
34490      * Expand all nodes
34491      */
34492     expandAll : function(){
34493         this.root.expand(true);
34494     },
34495
34496     /**
34497      * Collapse all nodes
34498      */
34499     collapseAll : function(){
34500         this.root.collapse(true);
34501     },
34502
34503     /**
34504      * Returns the selection model used by this TreePanel
34505      */
34506     getSelectionModel : function(){
34507         if(!this.selModel){
34508             this.selModel = new Roo.tree.DefaultSelectionModel();
34509         }
34510         return this.selModel;
34511     },
34512
34513     /**
34514      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34515      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34516      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34517      * @return {Array}
34518      */
34519     getChecked : function(a, startNode){
34520         startNode = startNode || this.root;
34521         var r = [];
34522         var f = function(){
34523             if(this.attributes.checked){
34524                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34525             }
34526         }
34527         startNode.cascade(f);
34528         return r;
34529     },
34530
34531     /**
34532      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34533      * @param {String} path
34534      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34535      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34536      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34537      */
34538     expandPath : function(path, attr, callback){
34539         attr = attr || "id";
34540         var keys = path.split(this.pathSeparator);
34541         var curNode = this.root;
34542         if(curNode.attributes[attr] != keys[1]){ // invalid root
34543             if(callback){
34544                 callback(false, null);
34545             }
34546             return;
34547         }
34548         var index = 1;
34549         var f = function(){
34550             if(++index == keys.length){
34551                 if(callback){
34552                     callback(true, curNode);
34553                 }
34554                 return;
34555             }
34556             var c = curNode.findChild(attr, keys[index]);
34557             if(!c){
34558                 if(callback){
34559                     callback(false, curNode);
34560                 }
34561                 return;
34562             }
34563             curNode = c;
34564             c.expand(false, false, f);
34565         };
34566         curNode.expand(false, false, f);
34567     },
34568
34569     /**
34570      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34571      * @param {String} path
34572      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34573      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34574      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34575      */
34576     selectPath : function(path, attr, callback){
34577         attr = attr || "id";
34578         var keys = path.split(this.pathSeparator);
34579         var v = keys.pop();
34580         if(keys.length > 0){
34581             var f = function(success, node){
34582                 if(success && node){
34583                     var n = node.findChild(attr, v);
34584                     if(n){
34585                         n.select();
34586                         if(callback){
34587                             callback(true, n);
34588                         }
34589                     }else if(callback){
34590                         callback(false, n);
34591                     }
34592                 }else{
34593                     if(callback){
34594                         callback(false, n);
34595                     }
34596                 }
34597             };
34598             this.expandPath(keys.join(this.pathSeparator), attr, f);
34599         }else{
34600             this.root.select();
34601             if(callback){
34602                 callback(true, this.root);
34603             }
34604         }
34605     },
34606
34607     getTreeEl : function(){
34608         return this.el;
34609     },
34610
34611     /**
34612      * Trigger rendering of this TreePanel
34613      */
34614     render : function(){
34615         if (this.innerCt) {
34616             return this; // stop it rendering more than once!!
34617         }
34618         
34619         this.innerCt = this.el.createChild({tag:"ul",
34620                cls:"x-tree-root-ct " +
34621                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34622
34623         if(this.containerScroll){
34624             Roo.dd.ScrollManager.register(this.el);
34625         }
34626         if((this.enableDD || this.enableDrop) && !this.dropZone){
34627            /**
34628             * The dropZone used by this tree if drop is enabled
34629             * @type Roo.tree.TreeDropZone
34630             */
34631              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34632                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34633            });
34634         }
34635         if((this.enableDD || this.enableDrag) && !this.dragZone){
34636            /**
34637             * The dragZone used by this tree if drag is enabled
34638             * @type Roo.tree.TreeDragZone
34639             */
34640             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34641                ddGroup: this.ddGroup || "TreeDD",
34642                scroll: this.ddScroll
34643            });
34644         }
34645         this.getSelectionModel().init(this);
34646         if (!this.root) {
34647             Roo.log("ROOT not set in tree");
34648             return this;
34649         }
34650         this.root.render();
34651         if(!this.rootVisible){
34652             this.root.renderChildren();
34653         }
34654         return this;
34655     }
34656 });/*
34657  * Based on:
34658  * Ext JS Library 1.1.1
34659  * Copyright(c) 2006-2007, Ext JS, LLC.
34660  *
34661  * Originally Released Under LGPL - original licence link has changed is not relivant.
34662  *
34663  * Fork - LGPL
34664  * <script type="text/javascript">
34665  */
34666  
34667
34668 /**
34669  * @class Roo.tree.DefaultSelectionModel
34670  * @extends Roo.util.Observable
34671  * The default single selection for a TreePanel.
34672  * @param {Object} cfg Configuration
34673  */
34674 Roo.tree.DefaultSelectionModel = function(cfg){
34675    this.selNode = null;
34676    
34677    
34678    
34679    this.addEvents({
34680        /**
34681         * @event selectionchange
34682         * Fires when the selected node changes
34683         * @param {DefaultSelectionModel} this
34684         * @param {TreeNode} node the new selection
34685         */
34686        "selectionchange" : true,
34687
34688        /**
34689         * @event beforeselect
34690         * Fires before the selected node changes, return false to cancel the change
34691         * @param {DefaultSelectionModel} this
34692         * @param {TreeNode} node the new selection
34693         * @param {TreeNode} node the old selection
34694         */
34695        "beforeselect" : true
34696    });
34697    
34698     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34699 };
34700
34701 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34702     init : function(tree){
34703         this.tree = tree;
34704         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34705         tree.on("click", this.onNodeClick, this);
34706     },
34707     
34708     onNodeClick : function(node, e){
34709         if (e.ctrlKey && this.selNode == node)  {
34710             this.unselect(node);
34711             return;
34712         }
34713         this.select(node);
34714     },
34715     
34716     /**
34717      * Select a node.
34718      * @param {TreeNode} node The node to select
34719      * @return {TreeNode} The selected node
34720      */
34721     select : function(node){
34722         var last = this.selNode;
34723         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34724             if(last){
34725                 last.ui.onSelectedChange(false);
34726             }
34727             this.selNode = node;
34728             node.ui.onSelectedChange(true);
34729             this.fireEvent("selectionchange", this, node, last);
34730         }
34731         return node;
34732     },
34733     
34734     /**
34735      * Deselect a node.
34736      * @param {TreeNode} node The node to unselect
34737      */
34738     unselect : function(node){
34739         if(this.selNode == node){
34740             this.clearSelections();
34741         }    
34742     },
34743     
34744     /**
34745      * Clear all selections
34746      */
34747     clearSelections : function(){
34748         var n = this.selNode;
34749         if(n){
34750             n.ui.onSelectedChange(false);
34751             this.selNode = null;
34752             this.fireEvent("selectionchange", this, null);
34753         }
34754         return n;
34755     },
34756     
34757     /**
34758      * Get the selected node
34759      * @return {TreeNode} The selected node
34760      */
34761     getSelectedNode : function(){
34762         return this.selNode;    
34763     },
34764     
34765     /**
34766      * Returns true if the node is selected
34767      * @param {TreeNode} node The node to check
34768      * @return {Boolean}
34769      */
34770     isSelected : function(node){
34771         return this.selNode == node;  
34772     },
34773
34774     /**
34775      * Selects the node above the selected node in the tree, intelligently walking the nodes
34776      * @return TreeNode The new selection
34777      */
34778     selectPrevious : function(){
34779         var s = this.selNode || this.lastSelNode;
34780         if(!s){
34781             return null;
34782         }
34783         var ps = s.previousSibling;
34784         if(ps){
34785             if(!ps.isExpanded() || ps.childNodes.length < 1){
34786                 return this.select(ps);
34787             } else{
34788                 var lc = ps.lastChild;
34789                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34790                     lc = lc.lastChild;
34791                 }
34792                 return this.select(lc);
34793             }
34794         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34795             return this.select(s.parentNode);
34796         }
34797         return null;
34798     },
34799
34800     /**
34801      * Selects the node above the selected node in the tree, intelligently walking the nodes
34802      * @return TreeNode The new selection
34803      */
34804     selectNext : function(){
34805         var s = this.selNode || this.lastSelNode;
34806         if(!s){
34807             return null;
34808         }
34809         if(s.firstChild && s.isExpanded()){
34810              return this.select(s.firstChild);
34811          }else if(s.nextSibling){
34812              return this.select(s.nextSibling);
34813          }else if(s.parentNode){
34814             var newS = null;
34815             s.parentNode.bubble(function(){
34816                 if(this.nextSibling){
34817                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34818                     return false;
34819                 }
34820             });
34821             return newS;
34822          }
34823         return null;
34824     },
34825
34826     onKeyDown : function(e){
34827         var s = this.selNode || this.lastSelNode;
34828         // undesirable, but required
34829         var sm = this;
34830         if(!s){
34831             return;
34832         }
34833         var k = e.getKey();
34834         switch(k){
34835              case e.DOWN:
34836                  e.stopEvent();
34837                  this.selectNext();
34838              break;
34839              case e.UP:
34840                  e.stopEvent();
34841                  this.selectPrevious();
34842              break;
34843              case e.RIGHT:
34844                  e.preventDefault();
34845                  if(s.hasChildNodes()){
34846                      if(!s.isExpanded()){
34847                          s.expand();
34848                      }else if(s.firstChild){
34849                          this.select(s.firstChild, e);
34850                      }
34851                  }
34852              break;
34853              case e.LEFT:
34854                  e.preventDefault();
34855                  if(s.hasChildNodes() && s.isExpanded()){
34856                      s.collapse();
34857                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34858                      this.select(s.parentNode, e);
34859                  }
34860              break;
34861         };
34862     }
34863 });
34864
34865 /**
34866  * @class Roo.tree.MultiSelectionModel
34867  * @extends Roo.util.Observable
34868  * Multi selection for a TreePanel.
34869  * @param {Object} cfg Configuration
34870  */
34871 Roo.tree.MultiSelectionModel = function(){
34872    this.selNodes = [];
34873    this.selMap = {};
34874    this.addEvents({
34875        /**
34876         * @event selectionchange
34877         * Fires when the selected nodes change
34878         * @param {MultiSelectionModel} this
34879         * @param {Array} nodes Array of the selected nodes
34880         */
34881        "selectionchange" : true
34882    });
34883    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34884    
34885 };
34886
34887 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34888     init : function(tree){
34889         this.tree = tree;
34890         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34891         tree.on("click", this.onNodeClick, this);
34892     },
34893     
34894     onNodeClick : function(node, e){
34895         this.select(node, e, e.ctrlKey);
34896     },
34897     
34898     /**
34899      * Select a node.
34900      * @param {TreeNode} node The node to select
34901      * @param {EventObject} e (optional) An event associated with the selection
34902      * @param {Boolean} keepExisting True to retain existing selections
34903      * @return {TreeNode} The selected node
34904      */
34905     select : function(node, e, keepExisting){
34906         if(keepExisting !== true){
34907             this.clearSelections(true);
34908         }
34909         if(this.isSelected(node)){
34910             this.lastSelNode = node;
34911             return node;
34912         }
34913         this.selNodes.push(node);
34914         this.selMap[node.id] = node;
34915         this.lastSelNode = node;
34916         node.ui.onSelectedChange(true);
34917         this.fireEvent("selectionchange", this, this.selNodes);
34918         return node;
34919     },
34920     
34921     /**
34922      * Deselect a node.
34923      * @param {TreeNode} node The node to unselect
34924      */
34925     unselect : function(node){
34926         if(this.selMap[node.id]){
34927             node.ui.onSelectedChange(false);
34928             var sn = this.selNodes;
34929             var index = -1;
34930             if(sn.indexOf){
34931                 index = sn.indexOf(node);
34932             }else{
34933                 for(var i = 0, len = sn.length; i < len; i++){
34934                     if(sn[i] == node){
34935                         index = i;
34936                         break;
34937                     }
34938                 }
34939             }
34940             if(index != -1){
34941                 this.selNodes.splice(index, 1);
34942             }
34943             delete this.selMap[node.id];
34944             this.fireEvent("selectionchange", this, this.selNodes);
34945         }
34946     },
34947     
34948     /**
34949      * Clear all selections
34950      */
34951     clearSelections : function(suppressEvent){
34952         var sn = this.selNodes;
34953         if(sn.length > 0){
34954             for(var i = 0, len = sn.length; i < len; i++){
34955                 sn[i].ui.onSelectedChange(false);
34956             }
34957             this.selNodes = [];
34958             this.selMap = {};
34959             if(suppressEvent !== true){
34960                 this.fireEvent("selectionchange", this, this.selNodes);
34961             }
34962         }
34963     },
34964     
34965     /**
34966      * Returns true if the node is selected
34967      * @param {TreeNode} node The node to check
34968      * @return {Boolean}
34969      */
34970     isSelected : function(node){
34971         return this.selMap[node.id] ? true : false;  
34972     },
34973     
34974     /**
34975      * Returns an array of the selected nodes
34976      * @return {Array}
34977      */
34978     getSelectedNodes : function(){
34979         return this.selNodes;    
34980     },
34981
34982     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
34983
34984     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
34985
34986     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
34987 });/*
34988  * Based on:
34989  * Ext JS Library 1.1.1
34990  * Copyright(c) 2006-2007, Ext JS, LLC.
34991  *
34992  * Originally Released Under LGPL - original licence link has changed is not relivant.
34993  *
34994  * Fork - LGPL
34995  * <script type="text/javascript">
34996  */
34997  
34998 /**
34999  * @class Roo.tree.TreeNode
35000  * @extends Roo.data.Node
35001  * @cfg {String} text The text for this node
35002  * @cfg {Boolean} expanded true to start the node expanded
35003  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35004  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35005  * @cfg {Boolean} disabled true to start the node disabled
35006  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35007  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35008  * @cfg {String} cls A css class to be added to the node
35009  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35010  * @cfg {String} href URL of the link used for the node (defaults to #)
35011  * @cfg {String} hrefTarget target frame for the link
35012  * @cfg {String} qtip An Ext QuickTip for the node
35013  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35014  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35015  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35016  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35017  * (defaults to undefined with no checkbox rendered)
35018  * @constructor
35019  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35020  */
35021 Roo.tree.TreeNode = function(attributes){
35022     attributes = attributes || {};
35023     if(typeof attributes == "string"){
35024         attributes = {text: attributes};
35025     }
35026     this.childrenRendered = false;
35027     this.rendered = false;
35028     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35029     this.expanded = attributes.expanded === true;
35030     this.isTarget = attributes.isTarget !== false;
35031     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35032     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35033
35034     /**
35035      * Read-only. The text for this node. To change it use setText().
35036      * @type String
35037      */
35038     this.text = attributes.text;
35039     /**
35040      * True if this node is disabled.
35041      * @type Boolean
35042      */
35043     this.disabled = attributes.disabled === true;
35044
35045     this.addEvents({
35046         /**
35047         * @event textchange
35048         * Fires when the text for this node is changed
35049         * @param {Node} this This node
35050         * @param {String} text The new text
35051         * @param {String} oldText The old text
35052         */
35053         "textchange" : true,
35054         /**
35055         * @event beforeexpand
35056         * Fires before this node is expanded, return false to cancel.
35057         * @param {Node} this This node
35058         * @param {Boolean} deep
35059         * @param {Boolean} anim
35060         */
35061         "beforeexpand" : true,
35062         /**
35063         * @event beforecollapse
35064         * Fires before this node is collapsed, return false to cancel.
35065         * @param {Node} this This node
35066         * @param {Boolean} deep
35067         * @param {Boolean} anim
35068         */
35069         "beforecollapse" : true,
35070         /**
35071         * @event expand
35072         * Fires when this node is expanded
35073         * @param {Node} this This node
35074         */
35075         "expand" : true,
35076         /**
35077         * @event disabledchange
35078         * Fires when the disabled status of this node changes
35079         * @param {Node} this This node
35080         * @param {Boolean} disabled
35081         */
35082         "disabledchange" : true,
35083         /**
35084         * @event collapse
35085         * Fires when this node is collapsed
35086         * @param {Node} this This node
35087         */
35088         "collapse" : true,
35089         /**
35090         * @event beforeclick
35091         * Fires before click processing. Return false to cancel the default action.
35092         * @param {Node} this This node
35093         * @param {Roo.EventObject} e The event object
35094         */
35095         "beforeclick":true,
35096         /**
35097         * @event checkchange
35098         * Fires when a node with a checkbox's checked property changes
35099         * @param {Node} this This node
35100         * @param {Boolean} checked
35101         */
35102         "checkchange":true,
35103         /**
35104         * @event click
35105         * Fires when this node is clicked
35106         * @param {Node} this This node
35107         * @param {Roo.EventObject} e The event object
35108         */
35109         "click":true,
35110         /**
35111         * @event dblclick
35112         * Fires when this node is double clicked
35113         * @param {Node} this This node
35114         * @param {Roo.EventObject} e The event object
35115         */
35116         "dblclick":true,
35117         /**
35118         * @event contextmenu
35119         * Fires when this node is right clicked
35120         * @param {Node} this This node
35121         * @param {Roo.EventObject} e The event object
35122         */
35123         "contextmenu":true,
35124         /**
35125         * @event beforechildrenrendered
35126         * Fires right before the child nodes for this node are rendered
35127         * @param {Node} this This node
35128         */
35129         "beforechildrenrendered":true
35130     });
35131
35132     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35133
35134     /**
35135      * Read-only. The UI for this node
35136      * @type TreeNodeUI
35137      */
35138     this.ui = new uiClass(this);
35139     
35140     // finally support items[]
35141     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35142         return;
35143     }
35144     
35145     
35146     Roo.each(this.attributes.items, function(c) {
35147         this.appendChild(Roo.factory(c,Roo.Tree));
35148     }, this);
35149     delete this.attributes.items;
35150     
35151     
35152     
35153 };
35154 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35155     preventHScroll: true,
35156     /**
35157      * Returns true if this node is expanded
35158      * @return {Boolean}
35159      */
35160     isExpanded : function(){
35161         return this.expanded;
35162     },
35163
35164     /**
35165      * Returns the UI object for this node
35166      * @return {TreeNodeUI}
35167      */
35168     getUI : function(){
35169         return this.ui;
35170     },
35171
35172     // private override
35173     setFirstChild : function(node){
35174         var of = this.firstChild;
35175         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35176         if(this.childrenRendered && of && node != of){
35177             of.renderIndent(true, true);
35178         }
35179         if(this.rendered){
35180             this.renderIndent(true, true);
35181         }
35182     },
35183
35184     // private override
35185     setLastChild : function(node){
35186         var ol = this.lastChild;
35187         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35188         if(this.childrenRendered && ol && node != ol){
35189             ol.renderIndent(true, true);
35190         }
35191         if(this.rendered){
35192             this.renderIndent(true, true);
35193         }
35194     },
35195
35196     // these methods are overridden to provide lazy rendering support
35197     // private override
35198     appendChild : function()
35199     {
35200         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35201         if(node && this.childrenRendered){
35202             node.render();
35203         }
35204         this.ui.updateExpandIcon();
35205         return node;
35206     },
35207
35208     // private override
35209     removeChild : function(node){
35210         this.ownerTree.getSelectionModel().unselect(node);
35211         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35212         // if it's been rendered remove dom node
35213         if(this.childrenRendered){
35214             node.ui.remove();
35215         }
35216         if(this.childNodes.length < 1){
35217             this.collapse(false, false);
35218         }else{
35219             this.ui.updateExpandIcon();
35220         }
35221         if(!this.firstChild) {
35222             this.childrenRendered = false;
35223         }
35224         return node;
35225     },
35226
35227     // private override
35228     insertBefore : function(node, refNode){
35229         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35230         if(newNode && refNode && this.childrenRendered){
35231             node.render();
35232         }
35233         this.ui.updateExpandIcon();
35234         return newNode;
35235     },
35236
35237     /**
35238      * Sets the text for this node
35239      * @param {String} text
35240      */
35241     setText : function(text){
35242         var oldText = this.text;
35243         this.text = text;
35244         this.attributes.text = text;
35245         if(this.rendered){ // event without subscribing
35246             this.ui.onTextChange(this, text, oldText);
35247         }
35248         this.fireEvent("textchange", this, text, oldText);
35249     },
35250
35251     /**
35252      * Triggers selection of this node
35253      */
35254     select : function(){
35255         this.getOwnerTree().getSelectionModel().select(this);
35256     },
35257
35258     /**
35259      * Triggers deselection of this node
35260      */
35261     unselect : function(){
35262         this.getOwnerTree().getSelectionModel().unselect(this);
35263     },
35264
35265     /**
35266      * Returns true if this node is selected
35267      * @return {Boolean}
35268      */
35269     isSelected : function(){
35270         return this.getOwnerTree().getSelectionModel().isSelected(this);
35271     },
35272
35273     /**
35274      * Expand this node.
35275      * @param {Boolean} deep (optional) True to expand all children as well
35276      * @param {Boolean} anim (optional) false to cancel the default animation
35277      * @param {Function} callback (optional) A callback to be called when
35278      * expanding this node completes (does not wait for deep expand to complete).
35279      * Called with 1 parameter, this node.
35280      */
35281     expand : function(deep, anim, callback){
35282         if(!this.expanded){
35283             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35284                 return;
35285             }
35286             if(!this.childrenRendered){
35287                 this.renderChildren();
35288             }
35289             this.expanded = true;
35290             
35291             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35292                 this.ui.animExpand(function(){
35293                     this.fireEvent("expand", this);
35294                     if(typeof callback == "function"){
35295                         callback(this);
35296                     }
35297                     if(deep === true){
35298                         this.expandChildNodes(true);
35299                     }
35300                 }.createDelegate(this));
35301                 return;
35302             }else{
35303                 this.ui.expand();
35304                 this.fireEvent("expand", this);
35305                 if(typeof callback == "function"){
35306                     callback(this);
35307                 }
35308             }
35309         }else{
35310            if(typeof callback == "function"){
35311                callback(this);
35312            }
35313         }
35314         if(deep === true){
35315             this.expandChildNodes(true);
35316         }
35317     },
35318
35319     isHiddenRoot : function(){
35320         return this.isRoot && !this.getOwnerTree().rootVisible;
35321     },
35322
35323     /**
35324      * Collapse this node.
35325      * @param {Boolean} deep (optional) True to collapse all children as well
35326      * @param {Boolean} anim (optional) false to cancel the default animation
35327      */
35328     collapse : function(deep, anim){
35329         if(this.expanded && !this.isHiddenRoot()){
35330             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35331                 return;
35332             }
35333             this.expanded = false;
35334             if((this.getOwnerTree().animate && anim !== false) || anim){
35335                 this.ui.animCollapse(function(){
35336                     this.fireEvent("collapse", this);
35337                     if(deep === true){
35338                         this.collapseChildNodes(true);
35339                     }
35340                 }.createDelegate(this));
35341                 return;
35342             }else{
35343                 this.ui.collapse();
35344                 this.fireEvent("collapse", this);
35345             }
35346         }
35347         if(deep === true){
35348             var cs = this.childNodes;
35349             for(var i = 0, len = cs.length; i < len; i++) {
35350                 cs[i].collapse(true, false);
35351             }
35352         }
35353     },
35354
35355     // private
35356     delayedExpand : function(delay){
35357         if(!this.expandProcId){
35358             this.expandProcId = this.expand.defer(delay, this);
35359         }
35360     },
35361
35362     // private
35363     cancelExpand : function(){
35364         if(this.expandProcId){
35365             clearTimeout(this.expandProcId);
35366         }
35367         this.expandProcId = false;
35368     },
35369
35370     /**
35371      * Toggles expanded/collapsed state of the node
35372      */
35373     toggle : function(){
35374         if(this.expanded){
35375             this.collapse();
35376         }else{
35377             this.expand();
35378         }
35379     },
35380
35381     /**
35382      * Ensures all parent nodes are expanded
35383      */
35384     ensureVisible : function(callback){
35385         var tree = this.getOwnerTree();
35386         tree.expandPath(this.parentNode.getPath(), false, function(){
35387             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35388             Roo.callback(callback);
35389         }.createDelegate(this));
35390     },
35391
35392     /**
35393      * Expand all child nodes
35394      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35395      */
35396     expandChildNodes : function(deep){
35397         var cs = this.childNodes;
35398         for(var i = 0, len = cs.length; i < len; i++) {
35399                 cs[i].expand(deep);
35400         }
35401     },
35402
35403     /**
35404      * Collapse all child nodes
35405      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35406      */
35407     collapseChildNodes : function(deep){
35408         var cs = this.childNodes;
35409         for(var i = 0, len = cs.length; i < len; i++) {
35410                 cs[i].collapse(deep);
35411         }
35412     },
35413
35414     /**
35415      * Disables this node
35416      */
35417     disable : function(){
35418         this.disabled = true;
35419         this.unselect();
35420         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35421             this.ui.onDisableChange(this, true);
35422         }
35423         this.fireEvent("disabledchange", this, true);
35424     },
35425
35426     /**
35427      * Enables this node
35428      */
35429     enable : function(){
35430         this.disabled = false;
35431         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35432             this.ui.onDisableChange(this, false);
35433         }
35434         this.fireEvent("disabledchange", this, false);
35435     },
35436
35437     // private
35438     renderChildren : function(suppressEvent){
35439         if(suppressEvent !== false){
35440             this.fireEvent("beforechildrenrendered", this);
35441         }
35442         var cs = this.childNodes;
35443         for(var i = 0, len = cs.length; i < len; i++){
35444             cs[i].render(true);
35445         }
35446         this.childrenRendered = true;
35447     },
35448
35449     // private
35450     sort : function(fn, scope){
35451         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35452         if(this.childrenRendered){
35453             var cs = this.childNodes;
35454             for(var i = 0, len = cs.length; i < len; i++){
35455                 cs[i].render(true);
35456             }
35457         }
35458     },
35459
35460     // private
35461     render : function(bulkRender){
35462         this.ui.render(bulkRender);
35463         if(!this.rendered){
35464             this.rendered = true;
35465             if(this.expanded){
35466                 this.expanded = false;
35467                 this.expand(false, false);
35468             }
35469         }
35470     },
35471
35472     // private
35473     renderIndent : function(deep, refresh){
35474         if(refresh){
35475             this.ui.childIndent = null;
35476         }
35477         this.ui.renderIndent();
35478         if(deep === true && this.childrenRendered){
35479             var cs = this.childNodes;
35480             for(var i = 0, len = cs.length; i < len; i++){
35481                 cs[i].renderIndent(true, refresh);
35482             }
35483         }
35484     }
35485 });/*
35486  * Based on:
35487  * Ext JS Library 1.1.1
35488  * Copyright(c) 2006-2007, Ext JS, LLC.
35489  *
35490  * Originally Released Under LGPL - original licence link has changed is not relivant.
35491  *
35492  * Fork - LGPL
35493  * <script type="text/javascript">
35494  */
35495  
35496 /**
35497  * @class Roo.tree.AsyncTreeNode
35498  * @extends Roo.tree.TreeNode
35499  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35500  * @constructor
35501  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35502  */
35503  Roo.tree.AsyncTreeNode = function(config){
35504     this.loaded = false;
35505     this.loading = false;
35506     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35507     /**
35508     * @event beforeload
35509     * Fires before this node is loaded, return false to cancel
35510     * @param {Node} this This node
35511     */
35512     this.addEvents({'beforeload':true, 'load': true});
35513     /**
35514     * @event load
35515     * Fires when this node is loaded
35516     * @param {Node} this This node
35517     */
35518     /**
35519      * The loader used by this node (defaults to using the tree's defined loader)
35520      * @type TreeLoader
35521      * @property loader
35522      */
35523 };
35524 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35525     expand : function(deep, anim, callback){
35526         if(this.loading){ // if an async load is already running, waiting til it's done
35527             var timer;
35528             var f = function(){
35529                 if(!this.loading){ // done loading
35530                     clearInterval(timer);
35531                     this.expand(deep, anim, callback);
35532                 }
35533             }.createDelegate(this);
35534             timer = setInterval(f, 200);
35535             return;
35536         }
35537         if(!this.loaded){
35538             if(this.fireEvent("beforeload", this) === false){
35539                 return;
35540             }
35541             this.loading = true;
35542             this.ui.beforeLoad(this);
35543             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35544             if(loader){
35545                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35546                 return;
35547             }
35548         }
35549         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35550     },
35551     
35552     /**
35553      * Returns true if this node is currently loading
35554      * @return {Boolean}
35555      */
35556     isLoading : function(){
35557         return this.loading;  
35558     },
35559     
35560     loadComplete : function(deep, anim, callback){
35561         this.loading = false;
35562         this.loaded = true;
35563         this.ui.afterLoad(this);
35564         this.fireEvent("load", this);
35565         this.expand(deep, anim, callback);
35566     },
35567     
35568     /**
35569      * Returns true if this node has been loaded
35570      * @return {Boolean}
35571      */
35572     isLoaded : function(){
35573         return this.loaded;
35574     },
35575     
35576     hasChildNodes : function(){
35577         if(!this.isLeaf() && !this.loaded){
35578             return true;
35579         }else{
35580             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35581         }
35582     },
35583
35584     /**
35585      * Trigger a reload for this node
35586      * @param {Function} callback
35587      */
35588     reload : function(callback){
35589         this.collapse(false, false);
35590         while(this.firstChild){
35591             this.removeChild(this.firstChild);
35592         }
35593         this.childrenRendered = false;
35594         this.loaded = false;
35595         if(this.isHiddenRoot()){
35596             this.expanded = false;
35597         }
35598         this.expand(false, false, callback);
35599     }
35600 });/*
35601  * Based on:
35602  * Ext JS Library 1.1.1
35603  * Copyright(c) 2006-2007, Ext JS, LLC.
35604  *
35605  * Originally Released Under LGPL - original licence link has changed is not relivant.
35606  *
35607  * Fork - LGPL
35608  * <script type="text/javascript">
35609  */
35610  
35611 /**
35612  * @class Roo.tree.TreeNodeUI
35613  * @constructor
35614  * @param {Object} node The node to render
35615  * The TreeNode UI implementation is separate from the
35616  * tree implementation. Unless you are customizing the tree UI,
35617  * you should never have to use this directly.
35618  */
35619 Roo.tree.TreeNodeUI = function(node){
35620     this.node = node;
35621     this.rendered = false;
35622     this.animating = false;
35623     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35624 };
35625
35626 Roo.tree.TreeNodeUI.prototype = {
35627     removeChild : function(node){
35628         if(this.rendered){
35629             this.ctNode.removeChild(node.ui.getEl());
35630         }
35631     },
35632
35633     beforeLoad : function(){
35634          this.addClass("x-tree-node-loading");
35635     },
35636
35637     afterLoad : function(){
35638          this.removeClass("x-tree-node-loading");
35639     },
35640
35641     onTextChange : function(node, text, oldText){
35642         if(this.rendered){
35643             this.textNode.innerHTML = text;
35644         }
35645     },
35646
35647     onDisableChange : function(node, state){
35648         this.disabled = state;
35649         if(state){
35650             this.addClass("x-tree-node-disabled");
35651         }else{
35652             this.removeClass("x-tree-node-disabled");
35653         }
35654     },
35655
35656     onSelectedChange : function(state){
35657         if(state){
35658             this.focus();
35659             this.addClass("x-tree-selected");
35660         }else{
35661             //this.blur();
35662             this.removeClass("x-tree-selected");
35663         }
35664     },
35665
35666     onMove : function(tree, node, oldParent, newParent, index, refNode){
35667         this.childIndent = null;
35668         if(this.rendered){
35669             var targetNode = newParent.ui.getContainer();
35670             if(!targetNode){//target not rendered
35671                 this.holder = document.createElement("div");
35672                 this.holder.appendChild(this.wrap);
35673                 return;
35674             }
35675             var insertBefore = refNode ? refNode.ui.getEl() : null;
35676             if(insertBefore){
35677                 targetNode.insertBefore(this.wrap, insertBefore);
35678             }else{
35679                 targetNode.appendChild(this.wrap);
35680             }
35681             this.node.renderIndent(true);
35682         }
35683     },
35684
35685     addClass : function(cls){
35686         if(this.elNode){
35687             Roo.fly(this.elNode).addClass(cls);
35688         }
35689     },
35690
35691     removeClass : function(cls){
35692         if(this.elNode){
35693             Roo.fly(this.elNode).removeClass(cls);
35694         }
35695     },
35696
35697     remove : function(){
35698         if(this.rendered){
35699             this.holder = document.createElement("div");
35700             this.holder.appendChild(this.wrap);
35701         }
35702     },
35703
35704     fireEvent : function(){
35705         return this.node.fireEvent.apply(this.node, arguments);
35706     },
35707
35708     initEvents : function(){
35709         this.node.on("move", this.onMove, this);
35710         var E = Roo.EventManager;
35711         var a = this.anchor;
35712
35713         var el = Roo.fly(a, '_treeui');
35714
35715         if(Roo.isOpera){ // opera render bug ignores the CSS
35716             el.setStyle("text-decoration", "none");
35717         }
35718
35719         el.on("click", this.onClick, this);
35720         el.on("dblclick", this.onDblClick, this);
35721
35722         if(this.checkbox){
35723             Roo.EventManager.on(this.checkbox,
35724                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35725         }
35726
35727         el.on("contextmenu", this.onContextMenu, this);
35728
35729         var icon = Roo.fly(this.iconNode);
35730         icon.on("click", this.onClick, this);
35731         icon.on("dblclick", this.onDblClick, this);
35732         icon.on("contextmenu", this.onContextMenu, this);
35733         E.on(this.ecNode, "click", this.ecClick, this, true);
35734
35735         if(this.node.disabled){
35736             this.addClass("x-tree-node-disabled");
35737         }
35738         if(this.node.hidden){
35739             this.addClass("x-tree-node-disabled");
35740         }
35741         var ot = this.node.getOwnerTree();
35742         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35743         if(dd && (!this.node.isRoot || ot.rootVisible)){
35744             Roo.dd.Registry.register(this.elNode, {
35745                 node: this.node,
35746                 handles: this.getDDHandles(),
35747                 isHandle: false
35748             });
35749         }
35750     },
35751
35752     getDDHandles : function(){
35753         return [this.iconNode, this.textNode];
35754     },
35755
35756     hide : function(){
35757         if(this.rendered){
35758             this.wrap.style.display = "none";
35759         }
35760     },
35761
35762     show : function(){
35763         if(this.rendered){
35764             this.wrap.style.display = "";
35765         }
35766     },
35767
35768     onContextMenu : function(e){
35769         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35770             e.preventDefault();
35771             this.focus();
35772             this.fireEvent("contextmenu", this.node, e);
35773         }
35774     },
35775
35776     onClick : function(e){
35777         if(this.dropping){
35778             e.stopEvent();
35779             return;
35780         }
35781         if(this.fireEvent("beforeclick", this.node, e) !== false){
35782             if(!this.disabled && this.node.attributes.href){
35783                 this.fireEvent("click", this.node, e);
35784                 return;
35785             }
35786             e.preventDefault();
35787             if(this.disabled){
35788                 return;
35789             }
35790
35791             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35792                 this.node.toggle();
35793             }
35794
35795             this.fireEvent("click", this.node, e);
35796         }else{
35797             e.stopEvent();
35798         }
35799     },
35800
35801     onDblClick : function(e){
35802         e.preventDefault();
35803         if(this.disabled){
35804             return;
35805         }
35806         if(this.checkbox){
35807             this.toggleCheck();
35808         }
35809         if(!this.animating && this.node.hasChildNodes()){
35810             this.node.toggle();
35811         }
35812         this.fireEvent("dblclick", this.node, e);
35813     },
35814
35815     onCheckChange : function(){
35816         var checked = this.checkbox.checked;
35817         this.node.attributes.checked = checked;
35818         this.fireEvent('checkchange', this.node, checked);
35819     },
35820
35821     ecClick : function(e){
35822         if(!this.animating && this.node.hasChildNodes()){
35823             this.node.toggle();
35824         }
35825     },
35826
35827     startDrop : function(){
35828         this.dropping = true;
35829     },
35830
35831     // delayed drop so the click event doesn't get fired on a drop
35832     endDrop : function(){
35833        setTimeout(function(){
35834            this.dropping = false;
35835        }.createDelegate(this), 50);
35836     },
35837
35838     expand : function(){
35839         this.updateExpandIcon();
35840         this.ctNode.style.display = "";
35841     },
35842
35843     focus : function(){
35844         if(!this.node.preventHScroll){
35845             try{this.anchor.focus();
35846             }catch(e){}
35847         }else if(!Roo.isIE){
35848             try{
35849                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35850                 var l = noscroll.scrollLeft;
35851                 this.anchor.focus();
35852                 noscroll.scrollLeft = l;
35853             }catch(e){}
35854         }
35855     },
35856
35857     toggleCheck : function(value){
35858         var cb = this.checkbox;
35859         if(cb){
35860             cb.checked = (value === undefined ? !cb.checked : value);
35861         }
35862     },
35863
35864     blur : function(){
35865         try{
35866             this.anchor.blur();
35867         }catch(e){}
35868     },
35869
35870     animExpand : function(callback){
35871         var ct = Roo.get(this.ctNode);
35872         ct.stopFx();
35873         if(!this.node.hasChildNodes()){
35874             this.updateExpandIcon();
35875             this.ctNode.style.display = "";
35876             Roo.callback(callback);
35877             return;
35878         }
35879         this.animating = true;
35880         this.updateExpandIcon();
35881
35882         ct.slideIn('t', {
35883            callback : function(){
35884                this.animating = false;
35885                Roo.callback(callback);
35886             },
35887             scope: this,
35888             duration: this.node.ownerTree.duration || .25
35889         });
35890     },
35891
35892     highlight : function(){
35893         var tree = this.node.getOwnerTree();
35894         Roo.fly(this.wrap).highlight(
35895             tree.hlColor || "C3DAF9",
35896             {endColor: tree.hlBaseColor}
35897         );
35898     },
35899
35900     collapse : function(){
35901         this.updateExpandIcon();
35902         this.ctNode.style.display = "none";
35903     },
35904
35905     animCollapse : function(callback){
35906         var ct = Roo.get(this.ctNode);
35907         ct.enableDisplayMode('block');
35908         ct.stopFx();
35909
35910         this.animating = true;
35911         this.updateExpandIcon();
35912
35913         ct.slideOut('t', {
35914             callback : function(){
35915                this.animating = false;
35916                Roo.callback(callback);
35917             },
35918             scope: this,
35919             duration: this.node.ownerTree.duration || .25
35920         });
35921     },
35922
35923     getContainer : function(){
35924         return this.ctNode;
35925     },
35926
35927     getEl : function(){
35928         return this.wrap;
35929     },
35930
35931     appendDDGhost : function(ghostNode){
35932         ghostNode.appendChild(this.elNode.cloneNode(true));
35933     },
35934
35935     getDDRepairXY : function(){
35936         return Roo.lib.Dom.getXY(this.iconNode);
35937     },
35938
35939     onRender : function(){
35940         this.render();
35941     },
35942
35943     render : function(bulkRender){
35944         var n = this.node, a = n.attributes;
35945         var targetNode = n.parentNode ?
35946               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
35947
35948         if(!this.rendered){
35949             this.rendered = true;
35950
35951             this.renderElements(n, a, targetNode, bulkRender);
35952
35953             if(a.qtip){
35954                if(this.textNode.setAttributeNS){
35955                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
35956                    if(a.qtipTitle){
35957                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
35958                    }
35959                }else{
35960                    this.textNode.setAttribute("ext:qtip", a.qtip);
35961                    if(a.qtipTitle){
35962                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
35963                    }
35964                }
35965             }else if(a.qtipCfg){
35966                 a.qtipCfg.target = Roo.id(this.textNode);
35967                 Roo.QuickTips.register(a.qtipCfg);
35968             }
35969             this.initEvents();
35970             if(!this.node.expanded){
35971                 this.updateExpandIcon();
35972             }
35973         }else{
35974             if(bulkRender === true) {
35975                 targetNode.appendChild(this.wrap);
35976             }
35977         }
35978     },
35979
35980     renderElements : function(n, a, targetNode, bulkRender)
35981     {
35982         // add some indent caching, this helps performance when rendering a large tree
35983         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
35984         var t = n.getOwnerTree();
35985         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
35986         if (typeof(n.attributes.html) != 'undefined') {
35987             txt = n.attributes.html;
35988         }
35989         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
35990         var cb = typeof a.checked == 'boolean';
35991         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
35992         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
35993             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
35994             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
35995             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
35996             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
35997             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
35998              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
35999                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36000             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36001             "</li>"];
36002
36003         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36004             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36005                                 n.nextSibling.ui.getEl(), buf.join(""));
36006         }else{
36007             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36008         }
36009
36010         this.elNode = this.wrap.childNodes[0];
36011         this.ctNode = this.wrap.childNodes[1];
36012         var cs = this.elNode.childNodes;
36013         this.indentNode = cs[0];
36014         this.ecNode = cs[1];
36015         this.iconNode = cs[2];
36016         var index = 3;
36017         if(cb){
36018             this.checkbox = cs[3];
36019             index++;
36020         }
36021         this.anchor = cs[index];
36022         this.textNode = cs[index].firstChild;
36023     },
36024
36025     getAnchor : function(){
36026         return this.anchor;
36027     },
36028
36029     getTextEl : function(){
36030         return this.textNode;
36031     },
36032
36033     getIconEl : function(){
36034         return this.iconNode;
36035     },
36036
36037     isChecked : function(){
36038         return this.checkbox ? this.checkbox.checked : false;
36039     },
36040
36041     updateExpandIcon : function(){
36042         if(this.rendered){
36043             var n = this.node, c1, c2;
36044             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36045             var hasChild = n.hasChildNodes();
36046             if(hasChild){
36047                 if(n.expanded){
36048                     cls += "-minus";
36049                     c1 = "x-tree-node-collapsed";
36050                     c2 = "x-tree-node-expanded";
36051                 }else{
36052                     cls += "-plus";
36053                     c1 = "x-tree-node-expanded";
36054                     c2 = "x-tree-node-collapsed";
36055                 }
36056                 if(this.wasLeaf){
36057                     this.removeClass("x-tree-node-leaf");
36058                     this.wasLeaf = false;
36059                 }
36060                 if(this.c1 != c1 || this.c2 != c2){
36061                     Roo.fly(this.elNode).replaceClass(c1, c2);
36062                     this.c1 = c1; this.c2 = c2;
36063                 }
36064             }else{
36065                 // this changes non-leafs into leafs if they have no children.
36066                 // it's not very rational behaviour..
36067                 
36068                 if(!this.wasLeaf && this.node.leaf){
36069                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36070                     delete this.c1;
36071                     delete this.c2;
36072                     this.wasLeaf = true;
36073                 }
36074             }
36075             var ecc = "x-tree-ec-icon "+cls;
36076             if(this.ecc != ecc){
36077                 this.ecNode.className = ecc;
36078                 this.ecc = ecc;
36079             }
36080         }
36081     },
36082
36083     getChildIndent : function(){
36084         if(!this.childIndent){
36085             var buf = [];
36086             var p = this.node;
36087             while(p){
36088                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36089                     if(!p.isLast()) {
36090                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36091                     } else {
36092                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36093                     }
36094                 }
36095                 p = p.parentNode;
36096             }
36097             this.childIndent = buf.join("");
36098         }
36099         return this.childIndent;
36100     },
36101
36102     renderIndent : function(){
36103         if(this.rendered){
36104             var indent = "";
36105             var p = this.node.parentNode;
36106             if(p){
36107                 indent = p.ui.getChildIndent();
36108             }
36109             if(this.indentMarkup != indent){ // don't rerender if not required
36110                 this.indentNode.innerHTML = indent;
36111                 this.indentMarkup = indent;
36112             }
36113             this.updateExpandIcon();
36114         }
36115     }
36116 };
36117
36118 Roo.tree.RootTreeNodeUI = function(){
36119     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36120 };
36121 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36122     render : function(){
36123         if(!this.rendered){
36124             var targetNode = this.node.ownerTree.innerCt.dom;
36125             this.node.expanded = true;
36126             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36127             this.wrap = this.ctNode = targetNode.firstChild;
36128         }
36129     },
36130     collapse : function(){
36131     },
36132     expand : function(){
36133     }
36134 });/*
36135  * Based on:
36136  * Ext JS Library 1.1.1
36137  * Copyright(c) 2006-2007, Ext JS, LLC.
36138  *
36139  * Originally Released Under LGPL - original licence link has changed is not relivant.
36140  *
36141  * Fork - LGPL
36142  * <script type="text/javascript">
36143  */
36144 /**
36145  * @class Roo.tree.TreeLoader
36146  * @extends Roo.util.Observable
36147  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36148  * nodes from a specified URL. The response must be a javascript Array definition
36149  * who's elements are node definition objects. eg:
36150  * <pre><code>
36151 {  success : true,
36152    data :      [
36153    
36154     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36155     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36156     ]
36157 }
36158
36159
36160 </code></pre>
36161  * <br><br>
36162  * The old style respose with just an array is still supported, but not recommended.
36163  * <br><br>
36164  *
36165  * A server request is sent, and child nodes are loaded only when a node is expanded.
36166  * The loading node's id is passed to the server under the parameter name "node" to
36167  * enable the server to produce the correct child nodes.
36168  * <br><br>
36169  * To pass extra parameters, an event handler may be attached to the "beforeload"
36170  * event, and the parameters specified in the TreeLoader's baseParams property:
36171  * <pre><code>
36172     myTreeLoader.on("beforeload", function(treeLoader, node) {
36173         this.baseParams.category = node.attributes.category;
36174     }, this);
36175     
36176 </code></pre>
36177  *
36178  * This would pass an HTTP parameter called "category" to the server containing
36179  * the value of the Node's "category" attribute.
36180  * @constructor
36181  * Creates a new Treeloader.
36182  * @param {Object} config A config object containing config properties.
36183  */
36184 Roo.tree.TreeLoader = function(config){
36185     this.baseParams = {};
36186     this.requestMethod = "POST";
36187     Roo.apply(this, config);
36188
36189     this.addEvents({
36190     
36191         /**
36192          * @event beforeload
36193          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36194          * @param {Object} This TreeLoader object.
36195          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36196          * @param {Object} callback The callback function specified in the {@link #load} call.
36197          */
36198         beforeload : true,
36199         /**
36200          * @event load
36201          * Fires when the node has been successfuly loaded.
36202          * @param {Object} This TreeLoader object.
36203          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36204          * @param {Object} response The response object containing the data from the server.
36205          */
36206         load : true,
36207         /**
36208          * @event loadexception
36209          * Fires if the network request failed.
36210          * @param {Object} This TreeLoader object.
36211          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36212          * @param {Object} response The response object containing the data from the server.
36213          */
36214         loadexception : true,
36215         /**
36216          * @event create
36217          * Fires before a node is created, enabling you to return custom Node types 
36218          * @param {Object} This TreeLoader object.
36219          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36220          */
36221         create : true
36222     });
36223
36224     Roo.tree.TreeLoader.superclass.constructor.call(this);
36225 };
36226
36227 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36228     /**
36229     * @cfg {String} dataUrl The URL from which to request a Json string which
36230     * specifies an array of node definition object representing the child nodes
36231     * to be loaded.
36232     */
36233     /**
36234     * @cfg {String} requestMethod either GET or POST
36235     * defaults to POST (due to BC)
36236     * to be loaded.
36237     */
36238     /**
36239     * @cfg {Object} baseParams (optional) An object containing properties which
36240     * specify HTTP parameters to be passed to each request for child nodes.
36241     */
36242     /**
36243     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36244     * created by this loader. If the attributes sent by the server have an attribute in this object,
36245     * they take priority.
36246     */
36247     /**
36248     * @cfg {Object} uiProviders (optional) An object containing properties which
36249     * 
36250     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36251     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36252     * <i>uiProvider</i> attribute of a returned child node is a string rather
36253     * than a reference to a TreeNodeUI implementation, this that string value
36254     * is used as a property name in the uiProviders object. You can define the provider named
36255     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36256     */
36257     uiProviders : {},
36258
36259     /**
36260     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36261     * child nodes before loading.
36262     */
36263     clearOnLoad : true,
36264
36265     /**
36266     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36267     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36268     * Grid query { data : [ .....] }
36269     */
36270     
36271     root : false,
36272      /**
36273     * @cfg {String} queryParam (optional) 
36274     * Name of the query as it will be passed on the querystring (defaults to 'node')
36275     * eg. the request will be ?node=[id]
36276     */
36277     
36278     
36279     queryParam: false,
36280     
36281     /**
36282      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36283      * This is called automatically when a node is expanded, but may be used to reload
36284      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36285      * @param {Roo.tree.TreeNode} node
36286      * @param {Function} callback
36287      */
36288     load : function(node, callback){
36289         if(this.clearOnLoad){
36290             while(node.firstChild){
36291                 node.removeChild(node.firstChild);
36292             }
36293         }
36294         if(node.attributes.children){ // preloaded json children
36295             var cs = node.attributes.children;
36296             for(var i = 0, len = cs.length; i < len; i++){
36297                 node.appendChild(this.createNode(cs[i]));
36298             }
36299             if(typeof callback == "function"){
36300                 callback();
36301             }
36302         }else if(this.dataUrl){
36303             this.requestData(node, callback);
36304         }
36305     },
36306
36307     getParams: function(node){
36308         var buf = [], bp = this.baseParams;
36309         for(var key in bp){
36310             if(typeof bp[key] != "function"){
36311                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36312             }
36313         }
36314         var n = this.queryParam === false ? 'node' : this.queryParam;
36315         buf.push(n + "=", encodeURIComponent(node.id));
36316         return buf.join("");
36317     },
36318
36319     requestData : function(node, callback){
36320         if(this.fireEvent("beforeload", this, node, callback) !== false){
36321             this.transId = Roo.Ajax.request({
36322                 method:this.requestMethod,
36323                 url: this.dataUrl||this.url,
36324                 success: this.handleResponse,
36325                 failure: this.handleFailure,
36326                 scope: this,
36327                 argument: {callback: callback, node: node},
36328                 params: this.getParams(node)
36329             });
36330         }else{
36331             // if the load is cancelled, make sure we notify
36332             // the node that we are done
36333             if(typeof callback == "function"){
36334                 callback();
36335             }
36336         }
36337     },
36338
36339     isLoading : function(){
36340         return this.transId ? true : false;
36341     },
36342
36343     abort : function(){
36344         if(this.isLoading()){
36345             Roo.Ajax.abort(this.transId);
36346         }
36347     },
36348
36349     // private
36350     createNode : function(attr)
36351     {
36352         // apply baseAttrs, nice idea Corey!
36353         if(this.baseAttrs){
36354             Roo.applyIf(attr, this.baseAttrs);
36355         }
36356         if(this.applyLoader !== false){
36357             attr.loader = this;
36358         }
36359         // uiProvider = depreciated..
36360         
36361         if(typeof(attr.uiProvider) == 'string'){
36362            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36363                 /**  eval:var:attr */ eval(attr.uiProvider);
36364         }
36365         if(typeof(this.uiProviders['default']) != 'undefined') {
36366             attr.uiProvider = this.uiProviders['default'];
36367         }
36368         
36369         this.fireEvent('create', this, attr);
36370         
36371         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36372         return(attr.leaf ?
36373                         new Roo.tree.TreeNode(attr) :
36374                         new Roo.tree.AsyncTreeNode(attr));
36375     },
36376
36377     processResponse : function(response, node, callback)
36378     {
36379         var json = response.responseText;
36380         try {
36381             
36382             var o = Roo.decode(json);
36383             
36384             if (this.root === false && typeof(o.success) != undefined) {
36385                 this.root = 'data'; // the default behaviour for list like data..
36386                 }
36387                 
36388             if (this.root !== false &&  !o.success) {
36389                 // it's a failure condition.
36390                 var a = response.argument;
36391                 this.fireEvent("loadexception", this, a.node, response);
36392                 Roo.log("Load failed - should have a handler really");
36393                 return;
36394             }
36395             
36396             
36397             
36398             if (this.root !== false) {
36399                  o = o[this.root];
36400             }
36401             
36402             for(var i = 0, len = o.length; i < len; i++){
36403                 var n = this.createNode(o[i]);
36404                 if(n){
36405                     node.appendChild(n);
36406                 }
36407             }
36408             if(typeof callback == "function"){
36409                 callback(this, node);
36410             }
36411         }catch(e){
36412             this.handleFailure(response);
36413         }
36414     },
36415
36416     handleResponse : function(response){
36417         this.transId = false;
36418         var a = response.argument;
36419         this.processResponse(response, a.node, a.callback);
36420         this.fireEvent("load", this, a.node, response);
36421     },
36422
36423     handleFailure : function(response)
36424     {
36425         // should handle failure better..
36426         this.transId = false;
36427         var a = response.argument;
36428         this.fireEvent("loadexception", this, a.node, response);
36429         if(typeof a.callback == "function"){
36430             a.callback(this, a.node);
36431         }
36432     }
36433 });/*
36434  * Based on:
36435  * Ext JS Library 1.1.1
36436  * Copyright(c) 2006-2007, Ext JS, LLC.
36437  *
36438  * Originally Released Under LGPL - original licence link has changed is not relivant.
36439  *
36440  * Fork - LGPL
36441  * <script type="text/javascript">
36442  */
36443
36444 /**
36445 * @class Roo.tree.TreeFilter
36446 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36447 * @param {TreePanel} tree
36448 * @param {Object} config (optional)
36449  */
36450 Roo.tree.TreeFilter = function(tree, config){
36451     this.tree = tree;
36452     this.filtered = {};
36453     Roo.apply(this, config);
36454 };
36455
36456 Roo.tree.TreeFilter.prototype = {
36457     clearBlank:false,
36458     reverse:false,
36459     autoClear:false,
36460     remove:false,
36461
36462      /**
36463      * Filter the data by a specific attribute.
36464      * @param {String/RegExp} value Either string that the attribute value
36465      * should start with or a RegExp to test against the attribute
36466      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36467      * @param {TreeNode} startNode (optional) The node to start the filter at.
36468      */
36469     filter : function(value, attr, startNode){
36470         attr = attr || "text";
36471         var f;
36472         if(typeof value == "string"){
36473             var vlen = value.length;
36474             // auto clear empty filter
36475             if(vlen == 0 && this.clearBlank){
36476                 this.clear();
36477                 return;
36478             }
36479             value = value.toLowerCase();
36480             f = function(n){
36481                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36482             };
36483         }else if(value.exec){ // regex?
36484             f = function(n){
36485                 return value.test(n.attributes[attr]);
36486             };
36487         }else{
36488             throw 'Illegal filter type, must be string or regex';
36489         }
36490         this.filterBy(f, null, startNode);
36491         },
36492
36493     /**
36494      * Filter by a function. The passed function will be called with each
36495      * node in the tree (or from the startNode). If the function returns true, the node is kept
36496      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36497      * @param {Function} fn The filter function
36498      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36499      */
36500     filterBy : function(fn, scope, startNode){
36501         startNode = startNode || this.tree.root;
36502         if(this.autoClear){
36503             this.clear();
36504         }
36505         var af = this.filtered, rv = this.reverse;
36506         var f = function(n){
36507             if(n == startNode){
36508                 return true;
36509             }
36510             if(af[n.id]){
36511                 return false;
36512             }
36513             var m = fn.call(scope || n, n);
36514             if(!m || rv){
36515                 af[n.id] = n;
36516                 n.ui.hide();
36517                 return false;
36518             }
36519             return true;
36520         };
36521         startNode.cascade(f);
36522         if(this.remove){
36523            for(var id in af){
36524                if(typeof id != "function"){
36525                    var n = af[id];
36526                    if(n && n.parentNode){
36527                        n.parentNode.removeChild(n);
36528                    }
36529                }
36530            }
36531         }
36532     },
36533
36534     /**
36535      * Clears the current filter. Note: with the "remove" option
36536      * set a filter cannot be cleared.
36537      */
36538     clear : function(){
36539         var t = this.tree;
36540         var af = this.filtered;
36541         for(var id in af){
36542             if(typeof id != "function"){
36543                 var n = af[id];
36544                 if(n){
36545                     n.ui.show();
36546                 }
36547             }
36548         }
36549         this.filtered = {};
36550     }
36551 };
36552 /*
36553  * Based on:
36554  * Ext JS Library 1.1.1
36555  * Copyright(c) 2006-2007, Ext JS, LLC.
36556  *
36557  * Originally Released Under LGPL - original licence link has changed is not relivant.
36558  *
36559  * Fork - LGPL
36560  * <script type="text/javascript">
36561  */
36562  
36563
36564 /**
36565  * @class Roo.tree.TreeSorter
36566  * Provides sorting of nodes in a TreePanel
36567  * 
36568  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36569  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36570  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36571  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36572  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36573  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36574  * @constructor
36575  * @param {TreePanel} tree
36576  * @param {Object} config
36577  */
36578 Roo.tree.TreeSorter = function(tree, config){
36579     Roo.apply(this, config);
36580     tree.on("beforechildrenrendered", this.doSort, this);
36581     tree.on("append", this.updateSort, this);
36582     tree.on("insert", this.updateSort, this);
36583     
36584     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36585     var p = this.property || "text";
36586     var sortType = this.sortType;
36587     var fs = this.folderSort;
36588     var cs = this.caseSensitive === true;
36589     var leafAttr = this.leafAttr || 'leaf';
36590
36591     this.sortFn = function(n1, n2){
36592         if(fs){
36593             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36594                 return 1;
36595             }
36596             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36597                 return -1;
36598             }
36599         }
36600         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36601         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36602         if(v1 < v2){
36603                         return dsc ? +1 : -1;
36604                 }else if(v1 > v2){
36605                         return dsc ? -1 : +1;
36606         }else{
36607                 return 0;
36608         }
36609     };
36610 };
36611
36612 Roo.tree.TreeSorter.prototype = {
36613     doSort : function(node){
36614         node.sort(this.sortFn);
36615     },
36616     
36617     compareNodes : function(n1, n2){
36618         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36619     },
36620     
36621     updateSort : function(tree, node){
36622         if(node.childrenRendered){
36623             this.doSort.defer(1, this, [node]);
36624         }
36625     }
36626 };/*
36627  * Based on:
36628  * Ext JS Library 1.1.1
36629  * Copyright(c) 2006-2007, Ext JS, LLC.
36630  *
36631  * Originally Released Under LGPL - original licence link has changed is not relivant.
36632  *
36633  * Fork - LGPL
36634  * <script type="text/javascript">
36635  */
36636
36637 if(Roo.dd.DropZone){
36638     
36639 Roo.tree.TreeDropZone = function(tree, config){
36640     this.allowParentInsert = false;
36641     this.allowContainerDrop = false;
36642     this.appendOnly = false;
36643     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36644     this.tree = tree;
36645     this.lastInsertClass = "x-tree-no-status";
36646     this.dragOverData = {};
36647 };
36648
36649 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36650     ddGroup : "TreeDD",
36651     scroll:  true,
36652     
36653     expandDelay : 1000,
36654     
36655     expandNode : function(node){
36656         if(node.hasChildNodes() && !node.isExpanded()){
36657             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36658         }
36659     },
36660     
36661     queueExpand : function(node){
36662         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36663     },
36664     
36665     cancelExpand : function(){
36666         if(this.expandProcId){
36667             clearTimeout(this.expandProcId);
36668             this.expandProcId = false;
36669         }
36670     },
36671     
36672     isValidDropPoint : function(n, pt, dd, e, data){
36673         if(!n || !data){ return false; }
36674         var targetNode = n.node;
36675         var dropNode = data.node;
36676         // default drop rules
36677         if(!(targetNode && targetNode.isTarget && pt)){
36678             return false;
36679         }
36680         if(pt == "append" && targetNode.allowChildren === false){
36681             return false;
36682         }
36683         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36684             return false;
36685         }
36686         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36687             return false;
36688         }
36689         // reuse the object
36690         var overEvent = this.dragOverData;
36691         overEvent.tree = this.tree;
36692         overEvent.target = targetNode;
36693         overEvent.data = data;
36694         overEvent.point = pt;
36695         overEvent.source = dd;
36696         overEvent.rawEvent = e;
36697         overEvent.dropNode = dropNode;
36698         overEvent.cancel = false;  
36699         var result = this.tree.fireEvent("nodedragover", overEvent);
36700         return overEvent.cancel === false && result !== false;
36701     },
36702     
36703     getDropPoint : function(e, n, dd)
36704     {
36705         var tn = n.node;
36706         if(tn.isRoot){
36707             return tn.allowChildren !== false ? "append" : false; // always append for root
36708         }
36709         var dragEl = n.ddel;
36710         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36711         var y = Roo.lib.Event.getPageY(e);
36712         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36713         
36714         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36715         var noAppend = tn.allowChildren === false;
36716         if(this.appendOnly || tn.parentNode.allowChildren === false){
36717             return noAppend ? false : "append";
36718         }
36719         var noBelow = false;
36720         if(!this.allowParentInsert){
36721             noBelow = tn.hasChildNodes() && tn.isExpanded();
36722         }
36723         var q = (b - t) / (noAppend ? 2 : 3);
36724         if(y >= t && y < (t + q)){
36725             return "above";
36726         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36727             return "below";
36728         }else{
36729             return "append";
36730         }
36731     },
36732     
36733     onNodeEnter : function(n, dd, e, data)
36734     {
36735         this.cancelExpand();
36736     },
36737     
36738     onNodeOver : function(n, dd, e, data)
36739     {
36740        
36741         var pt = this.getDropPoint(e, n, dd);
36742         var node = n.node;
36743         
36744         // auto node expand check
36745         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36746             this.queueExpand(node);
36747         }else if(pt != "append"){
36748             this.cancelExpand();
36749         }
36750         
36751         // set the insert point style on the target node
36752         var returnCls = this.dropNotAllowed;
36753         if(this.isValidDropPoint(n, pt, dd, e, data)){
36754            if(pt){
36755                var el = n.ddel;
36756                var cls;
36757                if(pt == "above"){
36758                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36759                    cls = "x-tree-drag-insert-above";
36760                }else if(pt == "below"){
36761                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36762                    cls = "x-tree-drag-insert-below";
36763                }else{
36764                    returnCls = "x-tree-drop-ok-append";
36765                    cls = "x-tree-drag-append";
36766                }
36767                if(this.lastInsertClass != cls){
36768                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36769                    this.lastInsertClass = cls;
36770                }
36771            }
36772        }
36773        return returnCls;
36774     },
36775     
36776     onNodeOut : function(n, dd, e, data){
36777         
36778         this.cancelExpand();
36779         this.removeDropIndicators(n);
36780     },
36781     
36782     onNodeDrop : function(n, dd, e, data){
36783         var point = this.getDropPoint(e, n, dd);
36784         var targetNode = n.node;
36785         targetNode.ui.startDrop();
36786         if(!this.isValidDropPoint(n, point, dd, e, data)){
36787             targetNode.ui.endDrop();
36788             return false;
36789         }
36790         // first try to find the drop node
36791         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36792         var dropEvent = {
36793             tree : this.tree,
36794             target: targetNode,
36795             data: data,
36796             point: point,
36797             source: dd,
36798             rawEvent: e,
36799             dropNode: dropNode,
36800             cancel: !dropNode   
36801         };
36802         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36803         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36804             targetNode.ui.endDrop();
36805             return false;
36806         }
36807         // allow target changing
36808         targetNode = dropEvent.target;
36809         if(point == "append" && !targetNode.isExpanded()){
36810             targetNode.expand(false, null, function(){
36811                 this.completeDrop(dropEvent);
36812             }.createDelegate(this));
36813         }else{
36814             this.completeDrop(dropEvent);
36815         }
36816         return true;
36817     },
36818     
36819     completeDrop : function(de){
36820         var ns = de.dropNode, p = de.point, t = de.target;
36821         if(!(ns instanceof Array)){
36822             ns = [ns];
36823         }
36824         var n;
36825         for(var i = 0, len = ns.length; i < len; i++){
36826             n = ns[i];
36827             if(p == "above"){
36828                 t.parentNode.insertBefore(n, t);
36829             }else if(p == "below"){
36830                 t.parentNode.insertBefore(n, t.nextSibling);
36831             }else{
36832                 t.appendChild(n);
36833             }
36834         }
36835         n.ui.focus();
36836         if(this.tree.hlDrop){
36837             n.ui.highlight();
36838         }
36839         t.ui.endDrop();
36840         this.tree.fireEvent("nodedrop", de);
36841     },
36842     
36843     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36844         if(this.tree.hlDrop){
36845             dropNode.ui.focus();
36846             dropNode.ui.highlight();
36847         }
36848         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36849     },
36850     
36851     getTree : function(){
36852         return this.tree;
36853     },
36854     
36855     removeDropIndicators : function(n){
36856         if(n && n.ddel){
36857             var el = n.ddel;
36858             Roo.fly(el).removeClass([
36859                     "x-tree-drag-insert-above",
36860                     "x-tree-drag-insert-below",
36861                     "x-tree-drag-append"]);
36862             this.lastInsertClass = "_noclass";
36863         }
36864     },
36865     
36866     beforeDragDrop : function(target, e, id){
36867         this.cancelExpand();
36868         return true;
36869     },
36870     
36871     afterRepair : function(data){
36872         if(data && Roo.enableFx){
36873             data.node.ui.highlight();
36874         }
36875         this.hideProxy();
36876     } 
36877     
36878 });
36879
36880 }
36881 /*
36882  * Based on:
36883  * Ext JS Library 1.1.1
36884  * Copyright(c) 2006-2007, Ext JS, LLC.
36885  *
36886  * Originally Released Under LGPL - original licence link has changed is not relivant.
36887  *
36888  * Fork - LGPL
36889  * <script type="text/javascript">
36890  */
36891  
36892
36893 if(Roo.dd.DragZone){
36894 Roo.tree.TreeDragZone = function(tree, config){
36895     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36896     this.tree = tree;
36897 };
36898
36899 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36900     ddGroup : "TreeDD",
36901    
36902     onBeforeDrag : function(data, e){
36903         var n = data.node;
36904         return n && n.draggable && !n.disabled;
36905     },
36906      
36907     
36908     onInitDrag : function(e){
36909         var data = this.dragData;
36910         this.tree.getSelectionModel().select(data.node);
36911         this.proxy.update("");
36912         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36913         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36914     },
36915     
36916     getRepairXY : function(e, data){
36917         return data.node.ui.getDDRepairXY();
36918     },
36919     
36920     onEndDrag : function(data, e){
36921         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36922         
36923         
36924     },
36925     
36926     onValidDrop : function(dd, e, id){
36927         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36928         this.hideProxy();
36929     },
36930     
36931     beforeInvalidDrop : function(e, id){
36932         // this scrolls the original position back into view
36933         var sm = this.tree.getSelectionModel();
36934         sm.clearSelections();
36935         sm.select(this.dragData.node);
36936     }
36937 });
36938 }/*
36939  * Based on:
36940  * Ext JS Library 1.1.1
36941  * Copyright(c) 2006-2007, Ext JS, LLC.
36942  *
36943  * Originally Released Under LGPL - original licence link has changed is not relivant.
36944  *
36945  * Fork - LGPL
36946  * <script type="text/javascript">
36947  */
36948 /**
36949  * @class Roo.tree.TreeEditor
36950  * @extends Roo.Editor
36951  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
36952  * as the editor field.
36953  * @constructor
36954  * @param {Object} config (used to be the tree panel.)
36955  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
36956  * 
36957  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
36958  * @cfg {Roo.form.TextField|Object} field The field configuration
36959  *
36960  * 
36961  */
36962 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
36963     var tree = config;
36964     var field;
36965     if (oldconfig) { // old style..
36966         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
36967     } else {
36968         // new style..
36969         tree = config.tree;
36970         config.field = config.field  || {};
36971         config.field.xtype = 'TextField';
36972         field = Roo.factory(config.field, Roo.form);
36973     }
36974     config = config || {};
36975     
36976     
36977     this.addEvents({
36978         /**
36979          * @event beforenodeedit
36980          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
36981          * false from the handler of this event.
36982          * @param {Editor} this
36983          * @param {Roo.tree.Node} node 
36984          */
36985         "beforenodeedit" : true
36986     });
36987     
36988     //Roo.log(config);
36989     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
36990
36991     this.tree = tree;
36992
36993     tree.on('beforeclick', this.beforeNodeClick, this);
36994     tree.getTreeEl().on('mousedown', this.hide, this);
36995     this.on('complete', this.updateNode, this);
36996     this.on('beforestartedit', this.fitToTree, this);
36997     this.on('startedit', this.bindScroll, this, {delay:10});
36998     this.on('specialkey', this.onSpecialKey, this);
36999 };
37000
37001 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37002     /**
37003      * @cfg {String} alignment
37004      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37005      */
37006     alignment: "l-l",
37007     // inherit
37008     autoSize: false,
37009     /**
37010      * @cfg {Boolean} hideEl
37011      * True to hide the bound element while the editor is displayed (defaults to false)
37012      */
37013     hideEl : false,
37014     /**
37015      * @cfg {String} cls
37016      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37017      */
37018     cls: "x-small-editor x-tree-editor",
37019     /**
37020      * @cfg {Boolean} shim
37021      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37022      */
37023     shim:false,
37024     // inherit
37025     shadow:"frame",
37026     /**
37027      * @cfg {Number} maxWidth
37028      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37029      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37030      * scroll and client offsets into account prior to each edit.
37031      */
37032     maxWidth: 250,
37033
37034     editDelay : 350,
37035
37036     // private
37037     fitToTree : function(ed, el){
37038         var td = this.tree.getTreeEl().dom, nd = el.dom;
37039         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37040             td.scrollLeft = nd.offsetLeft;
37041         }
37042         var w = Math.min(
37043                 this.maxWidth,
37044                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37045         this.setSize(w, '');
37046         
37047         return this.fireEvent('beforenodeedit', this, this.editNode);
37048         
37049     },
37050
37051     // private
37052     triggerEdit : function(node){
37053         this.completeEdit();
37054         this.editNode = node;
37055         this.startEdit(node.ui.textNode, node.text);
37056     },
37057
37058     // private
37059     bindScroll : function(){
37060         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37061     },
37062
37063     // private
37064     beforeNodeClick : function(node, e){
37065         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37066         this.lastClick = new Date();
37067         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37068             e.stopEvent();
37069             this.triggerEdit(node);
37070             return false;
37071         }
37072         return true;
37073     },
37074
37075     // private
37076     updateNode : function(ed, value){
37077         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37078         this.editNode.setText(value);
37079     },
37080
37081     // private
37082     onHide : function(){
37083         Roo.tree.TreeEditor.superclass.onHide.call(this);
37084         if(this.editNode){
37085             this.editNode.ui.focus();
37086         }
37087     },
37088
37089     // private
37090     onSpecialKey : function(field, e){
37091         var k = e.getKey();
37092         if(k == e.ESC){
37093             e.stopEvent();
37094             this.cancelEdit();
37095         }else if(k == e.ENTER && !e.hasModifier()){
37096             e.stopEvent();
37097             this.completeEdit();
37098         }
37099     }
37100 });//<Script type="text/javascript">
37101 /*
37102  * Based on:
37103  * Ext JS Library 1.1.1
37104  * Copyright(c) 2006-2007, Ext JS, LLC.
37105  *
37106  * Originally Released Under LGPL - original licence link has changed is not relivant.
37107  *
37108  * Fork - LGPL
37109  * <script type="text/javascript">
37110  */
37111  
37112 /**
37113  * Not documented??? - probably should be...
37114  */
37115
37116 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37117     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37118     
37119     renderElements : function(n, a, targetNode, bulkRender){
37120         //consel.log("renderElements?");
37121         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37122
37123         var t = n.getOwnerTree();
37124         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37125         
37126         var cols = t.columns;
37127         var bw = t.borderWidth;
37128         var c = cols[0];
37129         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37130          var cb = typeof a.checked == "boolean";
37131         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37132         var colcls = 'x-t-' + tid + '-c0';
37133         var buf = [
37134             '<li class="x-tree-node">',
37135             
37136                 
37137                 '<div class="x-tree-node-el ', a.cls,'">',
37138                     // extran...
37139                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37140                 
37141                 
37142                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37143                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37144                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37145                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37146                            (a.iconCls ? ' '+a.iconCls : ''),
37147                            '" unselectable="on" />',
37148                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37149                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37150                              
37151                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37152                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37153                             '<span unselectable="on" qtip="' + tx + '">',
37154                              tx,
37155                              '</span></a>' ,
37156                     '</div>',
37157                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37158                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37159                  ];
37160         for(var i = 1, len = cols.length; i < len; i++){
37161             c = cols[i];
37162             colcls = 'x-t-' + tid + '-c' +i;
37163             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37164             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37165                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37166                       "</div>");
37167          }
37168          
37169          buf.push(
37170             '</a>',
37171             '<div class="x-clear"></div></div>',
37172             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37173             "</li>");
37174         
37175         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37176             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37177                                 n.nextSibling.ui.getEl(), buf.join(""));
37178         }else{
37179             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37180         }
37181         var el = this.wrap.firstChild;
37182         this.elRow = el;
37183         this.elNode = el.firstChild;
37184         this.ranchor = el.childNodes[1];
37185         this.ctNode = this.wrap.childNodes[1];
37186         var cs = el.firstChild.childNodes;
37187         this.indentNode = cs[0];
37188         this.ecNode = cs[1];
37189         this.iconNode = cs[2];
37190         var index = 3;
37191         if(cb){
37192             this.checkbox = cs[3];
37193             index++;
37194         }
37195         this.anchor = cs[index];
37196         
37197         this.textNode = cs[index].firstChild;
37198         
37199         //el.on("click", this.onClick, this);
37200         //el.on("dblclick", this.onDblClick, this);
37201         
37202         
37203        // console.log(this);
37204     },
37205     initEvents : function(){
37206         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37207         
37208             
37209         var a = this.ranchor;
37210
37211         var el = Roo.get(a);
37212
37213         if(Roo.isOpera){ // opera render bug ignores the CSS
37214             el.setStyle("text-decoration", "none");
37215         }
37216
37217         el.on("click", this.onClick, this);
37218         el.on("dblclick", this.onDblClick, this);
37219         el.on("contextmenu", this.onContextMenu, this);
37220         
37221     },
37222     
37223     /*onSelectedChange : function(state){
37224         if(state){
37225             this.focus();
37226             this.addClass("x-tree-selected");
37227         }else{
37228             //this.blur();
37229             this.removeClass("x-tree-selected");
37230         }
37231     },*/
37232     addClass : function(cls){
37233         if(this.elRow){
37234             Roo.fly(this.elRow).addClass(cls);
37235         }
37236         
37237     },
37238     
37239     
37240     removeClass : function(cls){
37241         if(this.elRow){
37242             Roo.fly(this.elRow).removeClass(cls);
37243         }
37244     }
37245
37246     
37247     
37248 });//<Script type="text/javascript">
37249
37250 /*
37251  * Based on:
37252  * Ext JS Library 1.1.1
37253  * Copyright(c) 2006-2007, Ext JS, LLC.
37254  *
37255  * Originally Released Under LGPL - original licence link has changed is not relivant.
37256  *
37257  * Fork - LGPL
37258  * <script type="text/javascript">
37259  */
37260  
37261
37262 /**
37263  * @class Roo.tree.ColumnTree
37264  * @extends Roo.data.TreePanel
37265  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37266  * @cfg {int} borderWidth  compined right/left border allowance
37267  * @constructor
37268  * @param {String/HTMLElement/Element} el The container element
37269  * @param {Object} config
37270  */
37271 Roo.tree.ColumnTree =  function(el, config)
37272 {
37273    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37274    this.addEvents({
37275         /**
37276         * @event resize
37277         * Fire this event on a container when it resizes
37278         * @param {int} w Width
37279         * @param {int} h Height
37280         */
37281        "resize" : true
37282     });
37283     this.on('resize', this.onResize, this);
37284 };
37285
37286 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37287     //lines:false,
37288     
37289     
37290     borderWidth: Roo.isBorderBox ? 0 : 2, 
37291     headEls : false,
37292     
37293     render : function(){
37294         // add the header.....
37295        
37296         Roo.tree.ColumnTree.superclass.render.apply(this);
37297         
37298         this.el.addClass('x-column-tree');
37299         
37300         this.headers = this.el.createChild(
37301             {cls:'x-tree-headers'},this.innerCt.dom);
37302    
37303         var cols = this.columns, c;
37304         var totalWidth = 0;
37305         this.headEls = [];
37306         var  len = cols.length;
37307         for(var i = 0; i < len; i++){
37308              c = cols[i];
37309              totalWidth += c.width;
37310             this.headEls.push(this.headers.createChild({
37311                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37312                  cn: {
37313                      cls:'x-tree-hd-text',
37314                      html: c.header
37315                  },
37316                  style:'width:'+(c.width-this.borderWidth)+'px;'
37317              }));
37318         }
37319         this.headers.createChild({cls:'x-clear'});
37320         // prevent floats from wrapping when clipped
37321         this.headers.setWidth(totalWidth);
37322         //this.innerCt.setWidth(totalWidth);
37323         this.innerCt.setStyle({ overflow: 'auto' });
37324         this.onResize(this.width, this.height);
37325              
37326         
37327     },
37328     onResize : function(w,h)
37329     {
37330         this.height = h;
37331         this.width = w;
37332         // resize cols..
37333         this.innerCt.setWidth(this.width);
37334         this.innerCt.setHeight(this.height-20);
37335         
37336         // headers...
37337         var cols = this.columns, c;
37338         var totalWidth = 0;
37339         var expEl = false;
37340         var len = cols.length;
37341         for(var i = 0; i < len; i++){
37342             c = cols[i];
37343             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37344                 // it's the expander..
37345                 expEl  = this.headEls[i];
37346                 continue;
37347             }
37348             totalWidth += c.width;
37349             
37350         }
37351         if (expEl) {
37352             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37353         }
37354         this.headers.setWidth(w-20);
37355
37356         
37357         
37358         
37359     }
37360 });
37361 /*
37362  * Based on:
37363  * Ext JS Library 1.1.1
37364  * Copyright(c) 2006-2007, Ext JS, LLC.
37365  *
37366  * Originally Released Under LGPL - original licence link has changed is not relivant.
37367  *
37368  * Fork - LGPL
37369  * <script type="text/javascript">
37370  */
37371  
37372 /**
37373  * @class Roo.menu.Menu
37374  * @extends Roo.util.Observable
37375  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37376  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37377  * @constructor
37378  * Creates a new Menu
37379  * @param {Object} config Configuration options
37380  */
37381 Roo.menu.Menu = function(config){
37382     
37383     Roo.menu.Menu.superclass.constructor.call(this, config);
37384     
37385     this.id = this.id || Roo.id();
37386     this.addEvents({
37387         /**
37388          * @event beforeshow
37389          * Fires before this menu is displayed
37390          * @param {Roo.menu.Menu} this
37391          */
37392         beforeshow : true,
37393         /**
37394          * @event beforehide
37395          * Fires before this menu is hidden
37396          * @param {Roo.menu.Menu} this
37397          */
37398         beforehide : true,
37399         /**
37400          * @event show
37401          * Fires after this menu is displayed
37402          * @param {Roo.menu.Menu} this
37403          */
37404         show : true,
37405         /**
37406          * @event hide
37407          * Fires after this menu is hidden
37408          * @param {Roo.menu.Menu} this
37409          */
37410         hide : true,
37411         /**
37412          * @event click
37413          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37414          * @param {Roo.menu.Menu} this
37415          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37416          * @param {Roo.EventObject} e
37417          */
37418         click : true,
37419         /**
37420          * @event mouseover
37421          * Fires when the mouse is hovering over this menu
37422          * @param {Roo.menu.Menu} this
37423          * @param {Roo.EventObject} e
37424          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37425          */
37426         mouseover : true,
37427         /**
37428          * @event mouseout
37429          * Fires when the mouse exits this menu
37430          * @param {Roo.menu.Menu} this
37431          * @param {Roo.EventObject} e
37432          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37433          */
37434         mouseout : true,
37435         /**
37436          * @event itemclick
37437          * Fires when a menu item contained in this menu is clicked
37438          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37439          * @param {Roo.EventObject} e
37440          */
37441         itemclick: true
37442     });
37443     if (this.registerMenu) {
37444         Roo.menu.MenuMgr.register(this);
37445     }
37446     
37447     var mis = this.items;
37448     this.items = new Roo.util.MixedCollection();
37449     if(mis){
37450         this.add.apply(this, mis);
37451     }
37452 };
37453
37454 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37455     /**
37456      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37457      */
37458     minWidth : 120,
37459     /**
37460      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37461      * for bottom-right shadow (defaults to "sides")
37462      */
37463     shadow : "sides",
37464     /**
37465      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37466      * this menu (defaults to "tl-tr?")
37467      */
37468     subMenuAlign : "tl-tr?",
37469     /**
37470      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37471      * relative to its element of origin (defaults to "tl-bl?")
37472      */
37473     defaultAlign : "tl-bl?",
37474     /**
37475      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37476      */
37477     allowOtherMenus : false,
37478     /**
37479      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37480      */
37481     registerMenu : true,
37482
37483     hidden:true,
37484
37485     // private
37486     render : function(){
37487         if(this.el){
37488             return;
37489         }
37490         var el = this.el = new Roo.Layer({
37491             cls: "x-menu",
37492             shadow:this.shadow,
37493             constrain: false,
37494             parentEl: this.parentEl || document.body,
37495             zindex:15000
37496         });
37497
37498         this.keyNav = new Roo.menu.MenuNav(this);
37499
37500         if(this.plain){
37501             el.addClass("x-menu-plain");
37502         }
37503         if(this.cls){
37504             el.addClass(this.cls);
37505         }
37506         // generic focus element
37507         this.focusEl = el.createChild({
37508             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37509         });
37510         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37511         //disabling touch- as it's causing issues ..
37512         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37513         ul.on('click'   , this.onClick, this);
37514         
37515         
37516         ul.on("mouseover", this.onMouseOver, this);
37517         ul.on("mouseout", this.onMouseOut, this);
37518         this.items.each(function(item){
37519             if (item.hidden) {
37520                 return;
37521             }
37522             
37523             var li = document.createElement("li");
37524             li.className = "x-menu-list-item";
37525             ul.dom.appendChild(li);
37526             item.render(li, this);
37527         }, this);
37528         this.ul = ul;
37529         this.autoWidth();
37530     },
37531
37532     // private
37533     autoWidth : function(){
37534         var el = this.el, ul = this.ul;
37535         if(!el){
37536             return;
37537         }
37538         var w = this.width;
37539         if(w){
37540             el.setWidth(w);
37541         }else if(Roo.isIE){
37542             el.setWidth(this.minWidth);
37543             var t = el.dom.offsetWidth; // force recalc
37544             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37545         }
37546     },
37547
37548     // private
37549     delayAutoWidth : function(){
37550         if(this.rendered){
37551             if(!this.awTask){
37552                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37553             }
37554             this.awTask.delay(20);
37555         }
37556     },
37557
37558     // private
37559     findTargetItem : function(e){
37560         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37561         if(t && t.menuItemId){
37562             return this.items.get(t.menuItemId);
37563         }
37564     },
37565
37566     // private
37567     onClick : function(e){
37568         Roo.log("menu.onClick");
37569         var t = this.findTargetItem(e);
37570         if(!t){
37571             return;
37572         }
37573         Roo.log(e);
37574         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37575             if(t == this.activeItem && t.shouldDeactivate(e)){
37576                 this.activeItem.deactivate();
37577                 delete this.activeItem;
37578                 return;
37579             }
37580             if(t.canActivate){
37581                 this.setActiveItem(t, true);
37582             }
37583             return;
37584             
37585             
37586         }
37587         
37588         t.onClick(e);
37589         this.fireEvent("click", this, t, e);
37590     },
37591
37592     // private
37593     setActiveItem : function(item, autoExpand){
37594         if(item != this.activeItem){
37595             if(this.activeItem){
37596                 this.activeItem.deactivate();
37597             }
37598             this.activeItem = item;
37599             item.activate(autoExpand);
37600         }else if(autoExpand){
37601             item.expandMenu();
37602         }
37603     },
37604
37605     // private
37606     tryActivate : function(start, step){
37607         var items = this.items;
37608         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37609             var item = items.get(i);
37610             if(!item.disabled && item.canActivate){
37611                 this.setActiveItem(item, false);
37612                 return item;
37613             }
37614         }
37615         return false;
37616     },
37617
37618     // private
37619     onMouseOver : function(e){
37620         var t;
37621         if(t = this.findTargetItem(e)){
37622             if(t.canActivate && !t.disabled){
37623                 this.setActiveItem(t, true);
37624             }
37625         }
37626         this.fireEvent("mouseover", this, e, t);
37627     },
37628
37629     // private
37630     onMouseOut : function(e){
37631         var t;
37632         if(t = this.findTargetItem(e)){
37633             if(t == this.activeItem && t.shouldDeactivate(e)){
37634                 this.activeItem.deactivate();
37635                 delete this.activeItem;
37636             }
37637         }
37638         this.fireEvent("mouseout", this, e, t);
37639     },
37640
37641     /**
37642      * Read-only.  Returns true if the menu is currently displayed, else false.
37643      * @type Boolean
37644      */
37645     isVisible : function(){
37646         return this.el && !this.hidden;
37647     },
37648
37649     /**
37650      * Displays this menu relative to another element
37651      * @param {String/HTMLElement/Roo.Element} element The element to align to
37652      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37653      * the element (defaults to this.defaultAlign)
37654      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37655      */
37656     show : function(el, pos, parentMenu){
37657         this.parentMenu = parentMenu;
37658         if(!this.el){
37659             this.render();
37660         }
37661         this.fireEvent("beforeshow", this);
37662         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37663     },
37664
37665     /**
37666      * Displays this menu at a specific xy position
37667      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37668      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37669      */
37670     showAt : function(xy, parentMenu, /* private: */_e){
37671         this.parentMenu = parentMenu;
37672         if(!this.el){
37673             this.render();
37674         }
37675         if(_e !== false){
37676             this.fireEvent("beforeshow", this);
37677             xy = this.el.adjustForConstraints(xy);
37678         }
37679         this.el.setXY(xy);
37680         this.el.show();
37681         this.hidden = false;
37682         this.focus();
37683         this.fireEvent("show", this);
37684     },
37685
37686     focus : function(){
37687         if(!this.hidden){
37688             this.doFocus.defer(50, this);
37689         }
37690     },
37691
37692     doFocus : function(){
37693         if(!this.hidden){
37694             this.focusEl.focus();
37695         }
37696     },
37697
37698     /**
37699      * Hides this menu and optionally all parent menus
37700      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37701      */
37702     hide : function(deep){
37703         if(this.el && this.isVisible()){
37704             this.fireEvent("beforehide", this);
37705             if(this.activeItem){
37706                 this.activeItem.deactivate();
37707                 this.activeItem = null;
37708             }
37709             this.el.hide();
37710             this.hidden = true;
37711             this.fireEvent("hide", this);
37712         }
37713         if(deep === true && this.parentMenu){
37714             this.parentMenu.hide(true);
37715         }
37716     },
37717
37718     /**
37719      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37720      * Any of the following are valid:
37721      * <ul>
37722      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37723      * <li>An HTMLElement object which will be converted to a menu item</li>
37724      * <li>A menu item config object that will be created as a new menu item</li>
37725      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37726      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37727      * </ul>
37728      * Usage:
37729      * <pre><code>
37730 // Create the menu
37731 var menu = new Roo.menu.Menu();
37732
37733 // Create a menu item to add by reference
37734 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37735
37736 // Add a bunch of items at once using different methods.
37737 // Only the last item added will be returned.
37738 var item = menu.add(
37739     menuItem,                // add existing item by ref
37740     'Dynamic Item',          // new TextItem
37741     '-',                     // new separator
37742     { text: 'Config Item' }  // new item by config
37743 );
37744 </code></pre>
37745      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37746      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37747      */
37748     add : function(){
37749         var a = arguments, l = a.length, item;
37750         for(var i = 0; i < l; i++){
37751             var el = a[i];
37752             if ((typeof(el) == "object") && el.xtype && el.xns) {
37753                 el = Roo.factory(el, Roo.menu);
37754             }
37755             
37756             if(el.render){ // some kind of Item
37757                 item = this.addItem(el);
37758             }else if(typeof el == "string"){ // string
37759                 if(el == "separator" || el == "-"){
37760                     item = this.addSeparator();
37761                 }else{
37762                     item = this.addText(el);
37763                 }
37764             }else if(el.tagName || el.el){ // element
37765                 item = this.addElement(el);
37766             }else if(typeof el == "object"){ // must be menu item config?
37767                 item = this.addMenuItem(el);
37768             }
37769         }
37770         return item;
37771     },
37772
37773     /**
37774      * Returns this menu's underlying {@link Roo.Element} object
37775      * @return {Roo.Element} The element
37776      */
37777     getEl : function(){
37778         if(!this.el){
37779             this.render();
37780         }
37781         return this.el;
37782     },
37783
37784     /**
37785      * Adds a separator bar to the menu
37786      * @return {Roo.menu.Item} The menu item that was added
37787      */
37788     addSeparator : function(){
37789         return this.addItem(new Roo.menu.Separator());
37790     },
37791
37792     /**
37793      * Adds an {@link Roo.Element} object to the menu
37794      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37795      * @return {Roo.menu.Item} The menu item that was added
37796      */
37797     addElement : function(el){
37798         return this.addItem(new Roo.menu.BaseItem(el));
37799     },
37800
37801     /**
37802      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37803      * @param {Roo.menu.Item} item The menu item to add
37804      * @return {Roo.menu.Item} The menu item that was added
37805      */
37806     addItem : function(item){
37807         this.items.add(item);
37808         if(this.ul){
37809             var li = document.createElement("li");
37810             li.className = "x-menu-list-item";
37811             this.ul.dom.appendChild(li);
37812             item.render(li, this);
37813             this.delayAutoWidth();
37814         }
37815         return item;
37816     },
37817
37818     /**
37819      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37820      * @param {Object} config A MenuItem config object
37821      * @return {Roo.menu.Item} The menu item that was added
37822      */
37823     addMenuItem : function(config){
37824         if(!(config instanceof Roo.menu.Item)){
37825             if(typeof config.checked == "boolean"){ // must be check menu item config?
37826                 config = new Roo.menu.CheckItem(config);
37827             }else{
37828                 config = new Roo.menu.Item(config);
37829             }
37830         }
37831         return this.addItem(config);
37832     },
37833
37834     /**
37835      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37836      * @param {String} text The text to display in the menu item
37837      * @return {Roo.menu.Item} The menu item that was added
37838      */
37839     addText : function(text){
37840         return this.addItem(new Roo.menu.TextItem({ text : text }));
37841     },
37842
37843     /**
37844      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37845      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37846      * @param {Roo.menu.Item} item The menu item to add
37847      * @return {Roo.menu.Item} The menu item that was added
37848      */
37849     insert : function(index, item){
37850         this.items.insert(index, item);
37851         if(this.ul){
37852             var li = document.createElement("li");
37853             li.className = "x-menu-list-item";
37854             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37855             item.render(li, this);
37856             this.delayAutoWidth();
37857         }
37858         return item;
37859     },
37860
37861     /**
37862      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37863      * @param {Roo.menu.Item} item The menu item to remove
37864      */
37865     remove : function(item){
37866         this.items.removeKey(item.id);
37867         item.destroy();
37868     },
37869
37870     /**
37871      * Removes and destroys all items in the menu
37872      */
37873     removeAll : function(){
37874         var f;
37875         while(f = this.items.first()){
37876             this.remove(f);
37877         }
37878     }
37879 });
37880
37881 // MenuNav is a private utility class used internally by the Menu
37882 Roo.menu.MenuNav = function(menu){
37883     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37884     this.scope = this.menu = menu;
37885 };
37886
37887 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37888     doRelay : function(e, h){
37889         var k = e.getKey();
37890         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37891             this.menu.tryActivate(0, 1);
37892             return false;
37893         }
37894         return h.call(this.scope || this, e, this.menu);
37895     },
37896
37897     up : function(e, m){
37898         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37899             m.tryActivate(m.items.length-1, -1);
37900         }
37901     },
37902
37903     down : function(e, m){
37904         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37905             m.tryActivate(0, 1);
37906         }
37907     },
37908
37909     right : function(e, m){
37910         if(m.activeItem){
37911             m.activeItem.expandMenu(true);
37912         }
37913     },
37914
37915     left : function(e, m){
37916         m.hide();
37917         if(m.parentMenu && m.parentMenu.activeItem){
37918             m.parentMenu.activeItem.activate();
37919         }
37920     },
37921
37922     enter : function(e, m){
37923         if(m.activeItem){
37924             e.stopPropagation();
37925             m.activeItem.onClick(e);
37926             m.fireEvent("click", this, m.activeItem);
37927             return true;
37928         }
37929     }
37930 });/*
37931  * Based on:
37932  * Ext JS Library 1.1.1
37933  * Copyright(c) 2006-2007, Ext JS, LLC.
37934  *
37935  * Originally Released Under LGPL - original licence link has changed is not relivant.
37936  *
37937  * Fork - LGPL
37938  * <script type="text/javascript">
37939  */
37940  
37941 /**
37942  * @class Roo.menu.MenuMgr
37943  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
37944  * @singleton
37945  */
37946 Roo.menu.MenuMgr = function(){
37947    var menus, active, groups = {}, attached = false, lastShow = new Date();
37948
37949    // private - called when first menu is created
37950    function init(){
37951        menus = {};
37952        active = new Roo.util.MixedCollection();
37953        Roo.get(document).addKeyListener(27, function(){
37954            if(active.length > 0){
37955                hideAll();
37956            }
37957        });
37958    }
37959
37960    // private
37961    function hideAll(){
37962        if(active && active.length > 0){
37963            var c = active.clone();
37964            c.each(function(m){
37965                m.hide();
37966            });
37967        }
37968    }
37969
37970    // private
37971    function onHide(m){
37972        active.remove(m);
37973        if(active.length < 1){
37974            Roo.get(document).un("mousedown", onMouseDown);
37975            attached = false;
37976        }
37977    }
37978
37979    // private
37980    function onShow(m){
37981        var last = active.last();
37982        lastShow = new Date();
37983        active.add(m);
37984        if(!attached){
37985            Roo.get(document).on("mousedown", onMouseDown);
37986            attached = true;
37987        }
37988        if(m.parentMenu){
37989           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
37990           m.parentMenu.activeChild = m;
37991        }else if(last && last.isVisible()){
37992           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
37993        }
37994    }
37995
37996    // private
37997    function onBeforeHide(m){
37998        if(m.activeChild){
37999            m.activeChild.hide();
38000        }
38001        if(m.autoHideTimer){
38002            clearTimeout(m.autoHideTimer);
38003            delete m.autoHideTimer;
38004        }
38005    }
38006
38007    // private
38008    function onBeforeShow(m){
38009        var pm = m.parentMenu;
38010        if(!pm && !m.allowOtherMenus){
38011            hideAll();
38012        }else if(pm && pm.activeChild && active != m){
38013            pm.activeChild.hide();
38014        }
38015    }
38016
38017    // private
38018    function onMouseDown(e){
38019        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38020            hideAll();
38021        }
38022    }
38023
38024    // private
38025    function onBeforeCheck(mi, state){
38026        if(state){
38027            var g = groups[mi.group];
38028            for(var i = 0, l = g.length; i < l; i++){
38029                if(g[i] != mi){
38030                    g[i].setChecked(false);
38031                }
38032            }
38033        }
38034    }
38035
38036    return {
38037
38038        /**
38039         * Hides all menus that are currently visible
38040         */
38041        hideAll : function(){
38042             hideAll();  
38043        },
38044
38045        // private
38046        register : function(menu){
38047            if(!menus){
38048                init();
38049            }
38050            menus[menu.id] = menu;
38051            menu.on("beforehide", onBeforeHide);
38052            menu.on("hide", onHide);
38053            menu.on("beforeshow", onBeforeShow);
38054            menu.on("show", onShow);
38055            var g = menu.group;
38056            if(g && menu.events["checkchange"]){
38057                if(!groups[g]){
38058                    groups[g] = [];
38059                }
38060                groups[g].push(menu);
38061                menu.on("checkchange", onCheck);
38062            }
38063        },
38064
38065         /**
38066          * Returns a {@link Roo.menu.Menu} object
38067          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38068          * be used to generate and return a new Menu instance.
38069          */
38070        get : function(menu){
38071            if(typeof menu == "string"){ // menu id
38072                return menus[menu];
38073            }else if(menu.events){  // menu instance
38074                return menu;
38075            }else if(typeof menu.length == 'number'){ // array of menu items?
38076                return new Roo.menu.Menu({items:menu});
38077            }else{ // otherwise, must be a config
38078                return new Roo.menu.Menu(menu);
38079            }
38080        },
38081
38082        // private
38083        unregister : function(menu){
38084            delete menus[menu.id];
38085            menu.un("beforehide", onBeforeHide);
38086            menu.un("hide", onHide);
38087            menu.un("beforeshow", onBeforeShow);
38088            menu.un("show", onShow);
38089            var g = menu.group;
38090            if(g && menu.events["checkchange"]){
38091                groups[g].remove(menu);
38092                menu.un("checkchange", onCheck);
38093            }
38094        },
38095
38096        // private
38097        registerCheckable : function(menuItem){
38098            var g = menuItem.group;
38099            if(g){
38100                if(!groups[g]){
38101                    groups[g] = [];
38102                }
38103                groups[g].push(menuItem);
38104                menuItem.on("beforecheckchange", onBeforeCheck);
38105            }
38106        },
38107
38108        // private
38109        unregisterCheckable : function(menuItem){
38110            var g = menuItem.group;
38111            if(g){
38112                groups[g].remove(menuItem);
38113                menuItem.un("beforecheckchange", onBeforeCheck);
38114            }
38115        }
38116    };
38117 }();/*
38118  * Based on:
38119  * Ext JS Library 1.1.1
38120  * Copyright(c) 2006-2007, Ext JS, LLC.
38121  *
38122  * Originally Released Under LGPL - original licence link has changed is not relivant.
38123  *
38124  * Fork - LGPL
38125  * <script type="text/javascript">
38126  */
38127  
38128
38129 /**
38130  * @class Roo.menu.BaseItem
38131  * @extends Roo.Component
38132  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38133  * management and base configuration options shared by all menu components.
38134  * @constructor
38135  * Creates a new BaseItem
38136  * @param {Object} config Configuration options
38137  */
38138 Roo.menu.BaseItem = function(config){
38139     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38140
38141     this.addEvents({
38142         /**
38143          * @event click
38144          * Fires when this item is clicked
38145          * @param {Roo.menu.BaseItem} this
38146          * @param {Roo.EventObject} e
38147          */
38148         click: true,
38149         /**
38150          * @event activate
38151          * Fires when this item is activated
38152          * @param {Roo.menu.BaseItem} this
38153          */
38154         activate : true,
38155         /**
38156          * @event deactivate
38157          * Fires when this item is deactivated
38158          * @param {Roo.menu.BaseItem} this
38159          */
38160         deactivate : true
38161     });
38162
38163     if(this.handler){
38164         this.on("click", this.handler, this.scope, true);
38165     }
38166 };
38167
38168 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38169     /**
38170      * @cfg {Function} handler
38171      * A function that will handle the click event of this menu item (defaults to undefined)
38172      */
38173     /**
38174      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38175      */
38176     canActivate : false,
38177     
38178      /**
38179      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38180      */
38181     hidden: false,
38182     
38183     /**
38184      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38185      */
38186     activeClass : "x-menu-item-active",
38187     /**
38188      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38189      */
38190     hideOnClick : true,
38191     /**
38192      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38193      */
38194     hideDelay : 100,
38195
38196     // private
38197     ctype: "Roo.menu.BaseItem",
38198
38199     // private
38200     actionMode : "container",
38201
38202     // private
38203     render : function(container, parentMenu){
38204         this.parentMenu = parentMenu;
38205         Roo.menu.BaseItem.superclass.render.call(this, container);
38206         this.container.menuItemId = this.id;
38207     },
38208
38209     // private
38210     onRender : function(container, position){
38211         this.el = Roo.get(this.el);
38212         container.dom.appendChild(this.el.dom);
38213     },
38214
38215     // private
38216     onClick : function(e){
38217         if(!this.disabled && this.fireEvent("click", this, e) !== false
38218                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38219             this.handleClick(e);
38220         }else{
38221             e.stopEvent();
38222         }
38223     },
38224
38225     // private
38226     activate : function(){
38227         if(this.disabled){
38228             return false;
38229         }
38230         var li = this.container;
38231         li.addClass(this.activeClass);
38232         this.region = li.getRegion().adjust(2, 2, -2, -2);
38233         this.fireEvent("activate", this);
38234         return true;
38235     },
38236
38237     // private
38238     deactivate : function(){
38239         this.container.removeClass(this.activeClass);
38240         this.fireEvent("deactivate", this);
38241     },
38242
38243     // private
38244     shouldDeactivate : function(e){
38245         return !this.region || !this.region.contains(e.getPoint());
38246     },
38247
38248     // private
38249     handleClick : function(e){
38250         if(this.hideOnClick){
38251             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38252         }
38253     },
38254
38255     // private
38256     expandMenu : function(autoActivate){
38257         // do nothing
38258     },
38259
38260     // private
38261     hideMenu : function(){
38262         // do nothing
38263     }
38264 });/*
38265  * Based on:
38266  * Ext JS Library 1.1.1
38267  * Copyright(c) 2006-2007, Ext JS, LLC.
38268  *
38269  * Originally Released Under LGPL - original licence link has changed is not relivant.
38270  *
38271  * Fork - LGPL
38272  * <script type="text/javascript">
38273  */
38274  
38275 /**
38276  * @class Roo.menu.Adapter
38277  * @extends Roo.menu.BaseItem
38278  * 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.
38279  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38280  * @constructor
38281  * Creates a new Adapter
38282  * @param {Object} config Configuration options
38283  */
38284 Roo.menu.Adapter = function(component, config){
38285     Roo.menu.Adapter.superclass.constructor.call(this, config);
38286     this.component = component;
38287 };
38288 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38289     // private
38290     canActivate : true,
38291
38292     // private
38293     onRender : function(container, position){
38294         this.component.render(container);
38295         this.el = this.component.getEl();
38296     },
38297
38298     // private
38299     activate : function(){
38300         if(this.disabled){
38301             return false;
38302         }
38303         this.component.focus();
38304         this.fireEvent("activate", this);
38305         return true;
38306     },
38307
38308     // private
38309     deactivate : function(){
38310         this.fireEvent("deactivate", this);
38311     },
38312
38313     // private
38314     disable : function(){
38315         this.component.disable();
38316         Roo.menu.Adapter.superclass.disable.call(this);
38317     },
38318
38319     // private
38320     enable : function(){
38321         this.component.enable();
38322         Roo.menu.Adapter.superclass.enable.call(this);
38323     }
38324 });/*
38325  * Based on:
38326  * Ext JS Library 1.1.1
38327  * Copyright(c) 2006-2007, Ext JS, LLC.
38328  *
38329  * Originally Released Under LGPL - original licence link has changed is not relivant.
38330  *
38331  * Fork - LGPL
38332  * <script type="text/javascript">
38333  */
38334
38335 /**
38336  * @class Roo.menu.TextItem
38337  * @extends Roo.menu.BaseItem
38338  * Adds a static text string to a menu, usually used as either a heading or group separator.
38339  * Note: old style constructor with text is still supported.
38340  * 
38341  * @constructor
38342  * Creates a new TextItem
38343  * @param {Object} cfg Configuration
38344  */
38345 Roo.menu.TextItem = function(cfg){
38346     if (typeof(cfg) == 'string') {
38347         this.text = cfg;
38348     } else {
38349         Roo.apply(this,cfg);
38350     }
38351     
38352     Roo.menu.TextItem.superclass.constructor.call(this);
38353 };
38354
38355 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38356     /**
38357      * @cfg {Boolean} text Text to show on item.
38358      */
38359     text : '',
38360     
38361     /**
38362      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38363      */
38364     hideOnClick : false,
38365     /**
38366      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38367      */
38368     itemCls : "x-menu-text",
38369
38370     // private
38371     onRender : function(){
38372         var s = document.createElement("span");
38373         s.className = this.itemCls;
38374         s.innerHTML = this.text;
38375         this.el = s;
38376         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38377     }
38378 });/*
38379  * Based on:
38380  * Ext JS Library 1.1.1
38381  * Copyright(c) 2006-2007, Ext JS, LLC.
38382  *
38383  * Originally Released Under LGPL - original licence link has changed is not relivant.
38384  *
38385  * Fork - LGPL
38386  * <script type="text/javascript">
38387  */
38388
38389 /**
38390  * @class Roo.menu.Separator
38391  * @extends Roo.menu.BaseItem
38392  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38393  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38394  * @constructor
38395  * @param {Object} config Configuration options
38396  */
38397 Roo.menu.Separator = function(config){
38398     Roo.menu.Separator.superclass.constructor.call(this, config);
38399 };
38400
38401 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38402     /**
38403      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38404      */
38405     itemCls : "x-menu-sep",
38406     /**
38407      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38408      */
38409     hideOnClick : false,
38410
38411     // private
38412     onRender : function(li){
38413         var s = document.createElement("span");
38414         s.className = this.itemCls;
38415         s.innerHTML = "&#160;";
38416         this.el = s;
38417         li.addClass("x-menu-sep-li");
38418         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38419     }
38420 });/*
38421  * Based on:
38422  * Ext JS Library 1.1.1
38423  * Copyright(c) 2006-2007, Ext JS, LLC.
38424  *
38425  * Originally Released Under LGPL - original licence link has changed is not relivant.
38426  *
38427  * Fork - LGPL
38428  * <script type="text/javascript">
38429  */
38430 /**
38431  * @class Roo.menu.Item
38432  * @extends Roo.menu.BaseItem
38433  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38434  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38435  * activation and click handling.
38436  * @constructor
38437  * Creates a new Item
38438  * @param {Object} config Configuration options
38439  */
38440 Roo.menu.Item = function(config){
38441     Roo.menu.Item.superclass.constructor.call(this, config);
38442     if(this.menu){
38443         this.menu = Roo.menu.MenuMgr.get(this.menu);
38444     }
38445 };
38446 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38447     
38448     /**
38449      * @cfg {String} text
38450      * The text to show on the menu item.
38451      */
38452     text: '',
38453      /**
38454      * @cfg {String} HTML to render in menu
38455      * The text to show on the menu item (HTML version).
38456      */
38457     html: '',
38458     /**
38459      * @cfg {String} icon
38460      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38461      */
38462     icon: undefined,
38463     /**
38464      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38465      */
38466     itemCls : "x-menu-item",
38467     /**
38468      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38469      */
38470     canActivate : true,
38471     /**
38472      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38473      */
38474     showDelay: 200,
38475     // doc'd in BaseItem
38476     hideDelay: 200,
38477
38478     // private
38479     ctype: "Roo.menu.Item",
38480     
38481     // private
38482     onRender : function(container, position){
38483         var el = document.createElement("a");
38484         el.hideFocus = true;
38485         el.unselectable = "on";
38486         el.href = this.href || "#";
38487         if(this.hrefTarget){
38488             el.target = this.hrefTarget;
38489         }
38490         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38491         
38492         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38493         
38494         el.innerHTML = String.format(
38495                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38496                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38497         this.el = el;
38498         Roo.menu.Item.superclass.onRender.call(this, container, position);
38499     },
38500
38501     /**
38502      * Sets the text to display in this menu item
38503      * @param {String} text The text to display
38504      * @param {Boolean} isHTML true to indicate text is pure html.
38505      */
38506     setText : function(text, isHTML){
38507         if (isHTML) {
38508             this.html = text;
38509         } else {
38510             this.text = text;
38511             this.html = '';
38512         }
38513         if(this.rendered){
38514             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38515      
38516             this.el.update(String.format(
38517                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38518                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38519             this.parentMenu.autoWidth();
38520         }
38521     },
38522
38523     // private
38524     handleClick : function(e){
38525         if(!this.href){ // if no link defined, stop the event automatically
38526             e.stopEvent();
38527         }
38528         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38529     },
38530
38531     // private
38532     activate : function(autoExpand){
38533         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38534             this.focus();
38535             if(autoExpand){
38536                 this.expandMenu();
38537             }
38538         }
38539         return true;
38540     },
38541
38542     // private
38543     shouldDeactivate : function(e){
38544         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38545             if(this.menu && this.menu.isVisible()){
38546                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38547             }
38548             return true;
38549         }
38550         return false;
38551     },
38552
38553     // private
38554     deactivate : function(){
38555         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38556         this.hideMenu();
38557     },
38558
38559     // private
38560     expandMenu : function(autoActivate){
38561         if(!this.disabled && this.menu){
38562             clearTimeout(this.hideTimer);
38563             delete this.hideTimer;
38564             if(!this.menu.isVisible() && !this.showTimer){
38565                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38566             }else if (this.menu.isVisible() && autoActivate){
38567                 this.menu.tryActivate(0, 1);
38568             }
38569         }
38570     },
38571
38572     // private
38573     deferExpand : function(autoActivate){
38574         delete this.showTimer;
38575         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38576         if(autoActivate){
38577             this.menu.tryActivate(0, 1);
38578         }
38579     },
38580
38581     // private
38582     hideMenu : function(){
38583         clearTimeout(this.showTimer);
38584         delete this.showTimer;
38585         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38586             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38587         }
38588     },
38589
38590     // private
38591     deferHide : function(){
38592         delete this.hideTimer;
38593         this.menu.hide();
38594     }
38595 });/*
38596  * Based on:
38597  * Ext JS Library 1.1.1
38598  * Copyright(c) 2006-2007, Ext JS, LLC.
38599  *
38600  * Originally Released Under LGPL - original licence link has changed is not relivant.
38601  *
38602  * Fork - LGPL
38603  * <script type="text/javascript">
38604  */
38605  
38606 /**
38607  * @class Roo.menu.CheckItem
38608  * @extends Roo.menu.Item
38609  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38610  * @constructor
38611  * Creates a new CheckItem
38612  * @param {Object} config Configuration options
38613  */
38614 Roo.menu.CheckItem = function(config){
38615     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38616     this.addEvents({
38617         /**
38618          * @event beforecheckchange
38619          * Fires before the checked value is set, providing an opportunity to cancel if needed
38620          * @param {Roo.menu.CheckItem} this
38621          * @param {Boolean} checked The new checked value that will be set
38622          */
38623         "beforecheckchange" : true,
38624         /**
38625          * @event checkchange
38626          * Fires after the checked value has been set
38627          * @param {Roo.menu.CheckItem} this
38628          * @param {Boolean} checked The checked value that was set
38629          */
38630         "checkchange" : true
38631     });
38632     if(this.checkHandler){
38633         this.on('checkchange', this.checkHandler, this.scope);
38634     }
38635 };
38636 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38637     /**
38638      * @cfg {String} group
38639      * All check items with the same group name will automatically be grouped into a single-select
38640      * radio button group (defaults to '')
38641      */
38642     /**
38643      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38644      */
38645     itemCls : "x-menu-item x-menu-check-item",
38646     /**
38647      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38648      */
38649     groupClass : "x-menu-group-item",
38650
38651     /**
38652      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38653      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38654      * initialized with checked = true will be rendered as checked.
38655      */
38656     checked: false,
38657
38658     // private
38659     ctype: "Roo.menu.CheckItem",
38660
38661     // private
38662     onRender : function(c){
38663         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38664         if(this.group){
38665             this.el.addClass(this.groupClass);
38666         }
38667         Roo.menu.MenuMgr.registerCheckable(this);
38668         if(this.checked){
38669             this.checked = false;
38670             this.setChecked(true, true);
38671         }
38672     },
38673
38674     // private
38675     destroy : function(){
38676         if(this.rendered){
38677             Roo.menu.MenuMgr.unregisterCheckable(this);
38678         }
38679         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38680     },
38681
38682     /**
38683      * Set the checked state of this item
38684      * @param {Boolean} checked The new checked value
38685      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38686      */
38687     setChecked : function(state, suppressEvent){
38688         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38689             if(this.container){
38690                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38691             }
38692             this.checked = state;
38693             if(suppressEvent !== true){
38694                 this.fireEvent("checkchange", this, state);
38695             }
38696         }
38697     },
38698
38699     // private
38700     handleClick : function(e){
38701        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38702            this.setChecked(!this.checked);
38703        }
38704        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38705     }
38706 });/*
38707  * Based on:
38708  * Ext JS Library 1.1.1
38709  * Copyright(c) 2006-2007, Ext JS, LLC.
38710  *
38711  * Originally Released Under LGPL - original licence link has changed is not relivant.
38712  *
38713  * Fork - LGPL
38714  * <script type="text/javascript">
38715  */
38716  
38717 /**
38718  * @class Roo.menu.DateItem
38719  * @extends Roo.menu.Adapter
38720  * A menu item that wraps the {@link Roo.DatPicker} component.
38721  * @constructor
38722  * Creates a new DateItem
38723  * @param {Object} config Configuration options
38724  */
38725 Roo.menu.DateItem = function(config){
38726     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38727     /** The Roo.DatePicker object @type Roo.DatePicker */
38728     this.picker = this.component;
38729     this.addEvents({select: true});
38730     
38731     this.picker.on("render", function(picker){
38732         picker.getEl().swallowEvent("click");
38733         picker.container.addClass("x-menu-date-item");
38734     });
38735
38736     this.picker.on("select", this.onSelect, this);
38737 };
38738
38739 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38740     // private
38741     onSelect : function(picker, date){
38742         this.fireEvent("select", this, date, picker);
38743         Roo.menu.DateItem.superclass.handleClick.call(this);
38744     }
38745 });/*
38746  * Based on:
38747  * Ext JS Library 1.1.1
38748  * Copyright(c) 2006-2007, Ext JS, LLC.
38749  *
38750  * Originally Released Under LGPL - original licence link has changed is not relivant.
38751  *
38752  * Fork - LGPL
38753  * <script type="text/javascript">
38754  */
38755  
38756 /**
38757  * @class Roo.menu.ColorItem
38758  * @extends Roo.menu.Adapter
38759  * A menu item that wraps the {@link Roo.ColorPalette} component.
38760  * @constructor
38761  * Creates a new ColorItem
38762  * @param {Object} config Configuration options
38763  */
38764 Roo.menu.ColorItem = function(config){
38765     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38766     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38767     this.palette = this.component;
38768     this.relayEvents(this.palette, ["select"]);
38769     if(this.selectHandler){
38770         this.on('select', this.selectHandler, this.scope);
38771     }
38772 };
38773 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38774  * Based on:
38775  * Ext JS Library 1.1.1
38776  * Copyright(c) 2006-2007, Ext JS, LLC.
38777  *
38778  * Originally Released Under LGPL - original licence link has changed is not relivant.
38779  *
38780  * Fork - LGPL
38781  * <script type="text/javascript">
38782  */
38783  
38784
38785 /**
38786  * @class Roo.menu.DateMenu
38787  * @extends Roo.menu.Menu
38788  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38789  * @constructor
38790  * Creates a new DateMenu
38791  * @param {Object} config Configuration options
38792  */
38793 Roo.menu.DateMenu = function(config){
38794     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38795     this.plain = true;
38796     var di = new Roo.menu.DateItem(config);
38797     this.add(di);
38798     /**
38799      * The {@link Roo.DatePicker} instance for this DateMenu
38800      * @type DatePicker
38801      */
38802     this.picker = di.picker;
38803     /**
38804      * @event select
38805      * @param {DatePicker} picker
38806      * @param {Date} date
38807      */
38808     this.relayEvents(di, ["select"]);
38809     this.on('beforeshow', function(){
38810         if(this.picker){
38811             this.picker.hideMonthPicker(false);
38812         }
38813     }, this);
38814 };
38815 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38816     cls:'x-date-menu'
38817 });/*
38818  * Based on:
38819  * Ext JS Library 1.1.1
38820  * Copyright(c) 2006-2007, Ext JS, LLC.
38821  *
38822  * Originally Released Under LGPL - original licence link has changed is not relivant.
38823  *
38824  * Fork - LGPL
38825  * <script type="text/javascript">
38826  */
38827  
38828
38829 /**
38830  * @class Roo.menu.ColorMenu
38831  * @extends Roo.menu.Menu
38832  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38833  * @constructor
38834  * Creates a new ColorMenu
38835  * @param {Object} config Configuration options
38836  */
38837 Roo.menu.ColorMenu = function(config){
38838     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38839     this.plain = true;
38840     var ci = new Roo.menu.ColorItem(config);
38841     this.add(ci);
38842     /**
38843      * The {@link Roo.ColorPalette} instance for this ColorMenu
38844      * @type ColorPalette
38845      */
38846     this.palette = ci.palette;
38847     /**
38848      * @event select
38849      * @param {ColorPalette} palette
38850      * @param {String} color
38851      */
38852     this.relayEvents(ci, ["select"]);
38853 };
38854 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38855  * Based on:
38856  * Ext JS Library 1.1.1
38857  * Copyright(c) 2006-2007, Ext JS, LLC.
38858  *
38859  * Originally Released Under LGPL - original licence link has changed is not relivant.
38860  *
38861  * Fork - LGPL
38862  * <script type="text/javascript">
38863  */
38864  
38865 /**
38866  * @class Roo.form.TextItem
38867  * @extends Roo.BoxComponent
38868  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38869  * @constructor
38870  * Creates a new TextItem
38871  * @param {Object} config Configuration options
38872  */
38873 Roo.form.TextItem = function(config){
38874     Roo.form.TextItem.superclass.constructor.call(this, config);
38875 };
38876
38877 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38878     
38879     /**
38880      * @cfg {String} tag the tag for this item (default div)
38881      */
38882     tag : 'div',
38883     /**
38884      * @cfg {String} html the content for this item
38885      */
38886     html : '',
38887     
38888     getAutoCreate : function()
38889     {
38890         var cfg = {
38891             id: this.id,
38892             tag: this.tag,
38893             html: this.html,
38894             cls: 'x-form-item'
38895         };
38896         
38897         return cfg;
38898         
38899     },
38900     
38901     onRender : function(ct, position)
38902     {
38903         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
38904         
38905         if(!this.el){
38906             var cfg = this.getAutoCreate();
38907             if(!cfg.name){
38908                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38909             }
38910             if (!cfg.name.length) {
38911                 delete cfg.name;
38912             }
38913             this.el = ct.createChild(cfg, position);
38914         }
38915     },
38916     /*
38917      * setHTML
38918      * @param {String} html update the Contents of the element.
38919      */
38920     setHTML : function(html)
38921     {
38922         this.fieldEl.dom.innerHTML = html;
38923     }
38924     
38925 });/*
38926  * Based on:
38927  * Ext JS Library 1.1.1
38928  * Copyright(c) 2006-2007, Ext JS, LLC.
38929  *
38930  * Originally Released Under LGPL - original licence link has changed is not relivant.
38931  *
38932  * Fork - LGPL
38933  * <script type="text/javascript">
38934  */
38935  
38936 /**
38937  * @class Roo.form.Field
38938  * @extends Roo.BoxComponent
38939  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38940  * @constructor
38941  * Creates a new Field
38942  * @param {Object} config Configuration options
38943  */
38944 Roo.form.Field = function(config){
38945     Roo.form.Field.superclass.constructor.call(this, config);
38946 };
38947
38948 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
38949     /**
38950      * @cfg {String} fieldLabel Label to use when rendering a form.
38951      */
38952        /**
38953      * @cfg {String} qtip Mouse over tip
38954      */
38955      
38956     /**
38957      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
38958      */
38959     invalidClass : "x-form-invalid",
38960     /**
38961      * @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")
38962      */
38963     invalidText : "The value in this field is invalid",
38964     /**
38965      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
38966      */
38967     focusClass : "x-form-focus",
38968     /**
38969      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
38970       automatic validation (defaults to "keyup").
38971      */
38972     validationEvent : "keyup",
38973     /**
38974      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
38975      */
38976     validateOnBlur : true,
38977     /**
38978      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
38979      */
38980     validationDelay : 250,
38981     /**
38982      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
38983      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
38984      */
38985     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
38986     /**
38987      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
38988      */
38989     fieldClass : "x-form-field",
38990     /**
38991      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
38992      *<pre>
38993 Value         Description
38994 -----------   ----------------------------------------------------------------------
38995 qtip          Display a quick tip when the user hovers over the field
38996 title         Display a default browser title attribute popup
38997 under         Add a block div beneath the field containing the error text
38998 side          Add an error icon to the right of the field with a popup on hover
38999 [element id]  Add the error text directly to the innerHTML of the specified element
39000 </pre>
39001      */
39002     msgTarget : 'qtip',
39003     /**
39004      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39005      */
39006     msgFx : 'normal',
39007
39008     /**
39009      * @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.
39010      */
39011     readOnly : false,
39012
39013     /**
39014      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39015      */
39016     disabled : false,
39017
39018     /**
39019      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39020      */
39021     inputType : undefined,
39022     
39023     /**
39024      * @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).
39025          */
39026         tabIndex : undefined,
39027         
39028     // private
39029     isFormField : true,
39030
39031     // private
39032     hasFocus : false,
39033     /**
39034      * @property {Roo.Element} fieldEl
39035      * Element Containing the rendered Field (with label etc.)
39036      */
39037     /**
39038      * @cfg {Mixed} value A value to initialize this field with.
39039      */
39040     value : undefined,
39041
39042     /**
39043      * @cfg {String} name The field's HTML name attribute.
39044      */
39045     /**
39046      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39047      */
39048     // private
39049     loadedValue : false,
39050      
39051      
39052         // private ??
39053         initComponent : function(){
39054         Roo.form.Field.superclass.initComponent.call(this);
39055         this.addEvents({
39056             /**
39057              * @event focus
39058              * Fires when this field receives input focus.
39059              * @param {Roo.form.Field} this
39060              */
39061             focus : true,
39062             /**
39063              * @event blur
39064              * Fires when this field loses input focus.
39065              * @param {Roo.form.Field} this
39066              */
39067             blur : true,
39068             /**
39069              * @event specialkey
39070              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39071              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39072              * @param {Roo.form.Field} this
39073              * @param {Roo.EventObject} e The event object
39074              */
39075             specialkey : true,
39076             /**
39077              * @event change
39078              * Fires just before the field blurs if the field value has changed.
39079              * @param {Roo.form.Field} this
39080              * @param {Mixed} newValue The new value
39081              * @param {Mixed} oldValue The original value
39082              */
39083             change : true,
39084             /**
39085              * @event invalid
39086              * Fires after the field has been marked as invalid.
39087              * @param {Roo.form.Field} this
39088              * @param {String} msg The validation message
39089              */
39090             invalid : true,
39091             /**
39092              * @event valid
39093              * Fires after the field has been validated with no errors.
39094              * @param {Roo.form.Field} this
39095              */
39096             valid : true,
39097              /**
39098              * @event keyup
39099              * Fires after the key up
39100              * @param {Roo.form.Field} this
39101              * @param {Roo.EventObject}  e The event Object
39102              */
39103             keyup : true
39104         });
39105     },
39106
39107     /**
39108      * Returns the name attribute of the field if available
39109      * @return {String} name The field name
39110      */
39111     getName: function(){
39112          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39113     },
39114
39115     // private
39116     onRender : function(ct, position){
39117         Roo.form.Field.superclass.onRender.call(this, ct, position);
39118         if(!this.el){
39119             var cfg = this.getAutoCreate();
39120             if(!cfg.name){
39121                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39122             }
39123             if (!cfg.name.length) {
39124                 delete cfg.name;
39125             }
39126             if(this.inputType){
39127                 cfg.type = this.inputType;
39128             }
39129             this.el = ct.createChild(cfg, position);
39130         }
39131         var type = this.el.dom.type;
39132         if(type){
39133             if(type == 'password'){
39134                 type = 'text';
39135             }
39136             this.el.addClass('x-form-'+type);
39137         }
39138         if(this.readOnly){
39139             this.el.dom.readOnly = true;
39140         }
39141         if(this.tabIndex !== undefined){
39142             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39143         }
39144
39145         this.el.addClass([this.fieldClass, this.cls]);
39146         this.initValue();
39147     },
39148
39149     /**
39150      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39151      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39152      * @return {Roo.form.Field} this
39153      */
39154     applyTo : function(target){
39155         this.allowDomMove = false;
39156         this.el = Roo.get(target);
39157         this.render(this.el.dom.parentNode);
39158         return this;
39159     },
39160
39161     // private
39162     initValue : function(){
39163         if(this.value !== undefined){
39164             this.setValue(this.value);
39165         }else if(this.el.dom.value.length > 0){
39166             this.setValue(this.el.dom.value);
39167         }
39168     },
39169
39170     /**
39171      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39172      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39173      */
39174     isDirty : function() {
39175         if(this.disabled) {
39176             return false;
39177         }
39178         return String(this.getValue()) !== String(this.originalValue);
39179     },
39180
39181     /**
39182      * stores the current value in loadedValue
39183      */
39184     resetHasChanged : function()
39185     {
39186         this.loadedValue = String(this.getValue());
39187     },
39188     /**
39189      * checks the current value against the 'loaded' value.
39190      * Note - will return false if 'resetHasChanged' has not been called first.
39191      */
39192     hasChanged : function()
39193     {
39194         if(this.disabled || this.readOnly) {
39195             return false;
39196         }
39197         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39198     },
39199     
39200     
39201     
39202     // private
39203     afterRender : function(){
39204         Roo.form.Field.superclass.afterRender.call(this);
39205         this.initEvents();
39206     },
39207
39208     // private
39209     fireKey : function(e){
39210         //Roo.log('field ' + e.getKey());
39211         if(e.isNavKeyPress()){
39212             this.fireEvent("specialkey", this, e);
39213         }
39214     },
39215
39216     /**
39217      * Resets the current field value to the originally loaded value and clears any validation messages
39218      */
39219     reset : function(){
39220         this.setValue(this.resetValue);
39221         this.originalValue = this.getValue();
39222         this.clearInvalid();
39223     },
39224
39225     // private
39226     initEvents : function(){
39227         // safari killled keypress - so keydown is now used..
39228         this.el.on("keydown" , this.fireKey,  this);
39229         this.el.on("focus", this.onFocus,  this);
39230         this.el.on("blur", this.onBlur,  this);
39231         this.el.relayEvent('keyup', this);
39232
39233         // reference to original value for reset
39234         this.originalValue = this.getValue();
39235         this.resetValue =  this.getValue();
39236     },
39237
39238     // private
39239     onFocus : function(){
39240         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39241             this.el.addClass(this.focusClass);
39242         }
39243         if(!this.hasFocus){
39244             this.hasFocus = true;
39245             this.startValue = this.getValue();
39246             this.fireEvent("focus", this);
39247         }
39248     },
39249
39250     beforeBlur : Roo.emptyFn,
39251
39252     // private
39253     onBlur : function(){
39254         this.beforeBlur();
39255         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39256             this.el.removeClass(this.focusClass);
39257         }
39258         this.hasFocus = false;
39259         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39260             this.validate();
39261         }
39262         var v = this.getValue();
39263         if(String(v) !== String(this.startValue)){
39264             this.fireEvent('change', this, v, this.startValue);
39265         }
39266         this.fireEvent("blur", this);
39267     },
39268
39269     /**
39270      * Returns whether or not the field value is currently valid
39271      * @param {Boolean} preventMark True to disable marking the field invalid
39272      * @return {Boolean} True if the value is valid, else false
39273      */
39274     isValid : function(preventMark){
39275         if(this.disabled){
39276             return true;
39277         }
39278         var restore = this.preventMark;
39279         this.preventMark = preventMark === true;
39280         var v = this.validateValue(this.processValue(this.getRawValue()));
39281         this.preventMark = restore;
39282         return v;
39283     },
39284
39285     /**
39286      * Validates the field value
39287      * @return {Boolean} True if the value is valid, else false
39288      */
39289     validate : function(){
39290         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39291             this.clearInvalid();
39292             return true;
39293         }
39294         return false;
39295     },
39296
39297     processValue : function(value){
39298         return value;
39299     },
39300
39301     // private
39302     // Subclasses should provide the validation implementation by overriding this
39303     validateValue : function(value){
39304         return true;
39305     },
39306
39307     /**
39308      * Mark this field as invalid
39309      * @param {String} msg The validation message
39310      */
39311     markInvalid : function(msg){
39312         if(!this.rendered || this.preventMark){ // not rendered
39313             return;
39314         }
39315         
39316         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39317         
39318         obj.el.addClass(this.invalidClass);
39319         msg = msg || this.invalidText;
39320         switch(this.msgTarget){
39321             case 'qtip':
39322                 obj.el.dom.qtip = msg;
39323                 obj.el.dom.qclass = 'x-form-invalid-tip';
39324                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39325                     Roo.QuickTips.enable();
39326                 }
39327                 break;
39328             case 'title':
39329                 this.el.dom.title = msg;
39330                 break;
39331             case 'under':
39332                 if(!this.errorEl){
39333                     var elp = this.el.findParent('.x-form-element', 5, true);
39334                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39335                     this.errorEl.setWidth(elp.getWidth(true)-20);
39336                 }
39337                 this.errorEl.update(msg);
39338                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39339                 break;
39340             case 'side':
39341                 if(!this.errorIcon){
39342                     var elp = this.el.findParent('.x-form-element', 5, true);
39343                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39344                 }
39345                 this.alignErrorIcon();
39346                 this.errorIcon.dom.qtip = msg;
39347                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39348                 this.errorIcon.show();
39349                 this.on('resize', this.alignErrorIcon, this);
39350                 break;
39351             default:
39352                 var t = Roo.getDom(this.msgTarget);
39353                 t.innerHTML = msg;
39354                 t.style.display = this.msgDisplay;
39355                 break;
39356         }
39357         this.fireEvent('invalid', this, msg);
39358     },
39359
39360     // private
39361     alignErrorIcon : function(){
39362         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39363     },
39364
39365     /**
39366      * Clear any invalid styles/messages for this field
39367      */
39368     clearInvalid : function(){
39369         if(!this.rendered || this.preventMark){ // not rendered
39370             return;
39371         }
39372         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39373         
39374         obj.el.removeClass(this.invalidClass);
39375         switch(this.msgTarget){
39376             case 'qtip':
39377                 obj.el.dom.qtip = '';
39378                 break;
39379             case 'title':
39380                 this.el.dom.title = '';
39381                 break;
39382             case 'under':
39383                 if(this.errorEl){
39384                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39385                 }
39386                 break;
39387             case 'side':
39388                 if(this.errorIcon){
39389                     this.errorIcon.dom.qtip = '';
39390                     this.errorIcon.hide();
39391                     this.un('resize', this.alignErrorIcon, this);
39392                 }
39393                 break;
39394             default:
39395                 var t = Roo.getDom(this.msgTarget);
39396                 t.innerHTML = '';
39397                 t.style.display = 'none';
39398                 break;
39399         }
39400         this.fireEvent('valid', this);
39401     },
39402
39403     /**
39404      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39405      * @return {Mixed} value The field value
39406      */
39407     getRawValue : function(){
39408         var v = this.el.getValue();
39409         
39410         return v;
39411     },
39412
39413     /**
39414      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39415      * @return {Mixed} value The field value
39416      */
39417     getValue : function(){
39418         var v = this.el.getValue();
39419          
39420         return v;
39421     },
39422
39423     /**
39424      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39425      * @param {Mixed} value The value to set
39426      */
39427     setRawValue : function(v){
39428         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39429     },
39430
39431     /**
39432      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39433      * @param {Mixed} value The value to set
39434      */
39435     setValue : function(v){
39436         this.value = v;
39437         if(this.rendered){
39438             this.el.dom.value = (v === null || v === undefined ? '' : v);
39439              this.validate();
39440         }
39441     },
39442
39443     adjustSize : function(w, h){
39444         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39445         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39446         return s;
39447     },
39448
39449     adjustWidth : function(tag, w){
39450         tag = tag.toLowerCase();
39451         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39452             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39453                 if(tag == 'input'){
39454                     return w + 2;
39455                 }
39456                 if(tag == 'textarea'){
39457                     return w-2;
39458                 }
39459             }else if(Roo.isOpera){
39460                 if(tag == 'input'){
39461                     return w + 2;
39462                 }
39463                 if(tag == 'textarea'){
39464                     return w-2;
39465                 }
39466             }
39467         }
39468         return w;
39469     }
39470 });
39471
39472
39473 // anything other than normal should be considered experimental
39474 Roo.form.Field.msgFx = {
39475     normal : {
39476         show: function(msgEl, f){
39477             msgEl.setDisplayed('block');
39478         },
39479
39480         hide : function(msgEl, f){
39481             msgEl.setDisplayed(false).update('');
39482         }
39483     },
39484
39485     slide : {
39486         show: function(msgEl, f){
39487             msgEl.slideIn('t', {stopFx:true});
39488         },
39489
39490         hide : function(msgEl, f){
39491             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39492         }
39493     },
39494
39495     slideRight : {
39496         show: function(msgEl, f){
39497             msgEl.fixDisplay();
39498             msgEl.alignTo(f.el, 'tl-tr');
39499             msgEl.slideIn('l', {stopFx:true});
39500         },
39501
39502         hide : function(msgEl, f){
39503             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39504         }
39505     }
39506 };/*
39507  * Based on:
39508  * Ext JS Library 1.1.1
39509  * Copyright(c) 2006-2007, Ext JS, LLC.
39510  *
39511  * Originally Released Under LGPL - original licence link has changed is not relivant.
39512  *
39513  * Fork - LGPL
39514  * <script type="text/javascript">
39515  */
39516  
39517
39518 /**
39519  * @class Roo.form.TextField
39520  * @extends Roo.form.Field
39521  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39522  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39523  * @constructor
39524  * Creates a new TextField
39525  * @param {Object} config Configuration options
39526  */
39527 Roo.form.TextField = function(config){
39528     Roo.form.TextField.superclass.constructor.call(this, config);
39529     this.addEvents({
39530         /**
39531          * @event autosize
39532          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39533          * according to the default logic, but this event provides a hook for the developer to apply additional
39534          * logic at runtime to resize the field if needed.
39535              * @param {Roo.form.Field} this This text field
39536              * @param {Number} width The new field width
39537              */
39538         autosize : true
39539     });
39540 };
39541
39542 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39543     /**
39544      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39545      */
39546     grow : false,
39547     /**
39548      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39549      */
39550     growMin : 30,
39551     /**
39552      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39553      */
39554     growMax : 800,
39555     /**
39556      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39557      */
39558     vtype : null,
39559     /**
39560      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39561      */
39562     maskRe : null,
39563     /**
39564      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39565      */
39566     disableKeyFilter : false,
39567     /**
39568      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39569      */
39570     allowBlank : true,
39571     /**
39572      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39573      */
39574     minLength : 0,
39575     /**
39576      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39577      */
39578     maxLength : Number.MAX_VALUE,
39579     /**
39580      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39581      */
39582     minLengthText : "The minimum length for this field is {0}",
39583     /**
39584      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39585      */
39586     maxLengthText : "The maximum length for this field is {0}",
39587     /**
39588      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39589      */
39590     selectOnFocus : false,
39591     /**
39592      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39593      */    
39594     allowLeadingSpace : false,
39595     /**
39596      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39597      */
39598     blankText : "This field is required",
39599     /**
39600      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39601      * If available, this function will be called only after the basic validators all return true, and will be passed the
39602      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39603      */
39604     validator : null,
39605     /**
39606      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39607      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39608      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39609      */
39610     regex : null,
39611     /**
39612      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39613      */
39614     regexText : "",
39615     /**
39616      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39617      */
39618     emptyText : null,
39619    
39620
39621     // private
39622     initEvents : function()
39623     {
39624         if (this.emptyText) {
39625             this.el.attr('placeholder', this.emptyText);
39626         }
39627         
39628         Roo.form.TextField.superclass.initEvents.call(this);
39629         if(this.validationEvent == 'keyup'){
39630             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39631             this.el.on('keyup', this.filterValidation, this);
39632         }
39633         else if(this.validationEvent !== false){
39634             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39635         }
39636         
39637         if(this.selectOnFocus){
39638             this.on("focus", this.preFocus, this);
39639         }
39640         if (!this.allowLeadingSpace) {
39641             this.on('blur', this.cleanLeadingSpace, this);
39642         }
39643         
39644         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39645             this.el.on("keypress", this.filterKeys, this);
39646         }
39647         if(this.grow){
39648             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39649             this.el.on("click", this.autoSize,  this);
39650         }
39651         if(this.el.is('input[type=password]') && Roo.isSafari){
39652             this.el.on('keydown', this.SafariOnKeyDown, this);
39653         }
39654     },
39655
39656     processValue : function(value){
39657         if(this.stripCharsRe){
39658             var newValue = value.replace(this.stripCharsRe, '');
39659             if(newValue !== value){
39660                 this.setRawValue(newValue);
39661                 return newValue;
39662             }
39663         }
39664         return value;
39665     },
39666
39667     filterValidation : function(e){
39668         if(!e.isNavKeyPress()){
39669             this.validationTask.delay(this.validationDelay);
39670         }
39671     },
39672
39673     // private
39674     onKeyUp : function(e){
39675         if(!e.isNavKeyPress()){
39676             this.autoSize();
39677         }
39678     },
39679     // private - clean the leading white space
39680     cleanLeadingSpace : function(e)
39681     {
39682         if ( this.inputType == 'file') {
39683             return;
39684         }
39685         
39686         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39687     },
39688     /**
39689      * Resets the current field value to the originally-loaded value and clears any validation messages.
39690      *  
39691      */
39692     reset : function(){
39693         Roo.form.TextField.superclass.reset.call(this);
39694        
39695     }, 
39696     // private
39697     preFocus : function(){
39698         
39699         if(this.selectOnFocus){
39700             this.el.dom.select();
39701         }
39702     },
39703
39704     
39705     // private
39706     filterKeys : function(e){
39707         var k = e.getKey();
39708         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39709             return;
39710         }
39711         var c = e.getCharCode(), cc = String.fromCharCode(c);
39712         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39713             return;
39714         }
39715         if(!this.maskRe.test(cc)){
39716             e.stopEvent();
39717         }
39718     },
39719
39720     setValue : function(v){
39721         
39722         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39723         
39724         this.autoSize();
39725     },
39726
39727     /**
39728      * Validates a value according to the field's validation rules and marks the field as invalid
39729      * if the validation fails
39730      * @param {Mixed} value The value to validate
39731      * @return {Boolean} True if the value is valid, else false
39732      */
39733     validateValue : function(value){
39734         if(value.length < 1)  { // if it's blank
39735              if(this.allowBlank){
39736                 this.clearInvalid();
39737                 return true;
39738              }else{
39739                 this.markInvalid(this.blankText);
39740                 return false;
39741              }
39742         }
39743         if(value.length < this.minLength){
39744             this.markInvalid(String.format(this.minLengthText, this.minLength));
39745             return false;
39746         }
39747         if(value.length > this.maxLength){
39748             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39749             return false;
39750         }
39751         if(this.vtype){
39752             var vt = Roo.form.VTypes;
39753             if(!vt[this.vtype](value, this)){
39754                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39755                 return false;
39756             }
39757         }
39758         if(typeof this.validator == "function"){
39759             var msg = this.validator(value);
39760             if(msg !== true){
39761                 this.markInvalid(msg);
39762                 return false;
39763             }
39764         }
39765         if(this.regex && !this.regex.test(value)){
39766             this.markInvalid(this.regexText);
39767             return false;
39768         }
39769         return true;
39770     },
39771
39772     /**
39773      * Selects text in this field
39774      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39775      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39776      */
39777     selectText : function(start, end){
39778         var v = this.getRawValue();
39779         if(v.length > 0){
39780             start = start === undefined ? 0 : start;
39781             end = end === undefined ? v.length : end;
39782             var d = this.el.dom;
39783             if(d.setSelectionRange){
39784                 d.setSelectionRange(start, end);
39785             }else if(d.createTextRange){
39786                 var range = d.createTextRange();
39787                 range.moveStart("character", start);
39788                 range.moveEnd("character", v.length-end);
39789                 range.select();
39790             }
39791         }
39792     },
39793
39794     /**
39795      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39796      * This only takes effect if grow = true, and fires the autosize event.
39797      */
39798     autoSize : function(){
39799         if(!this.grow || !this.rendered){
39800             return;
39801         }
39802         if(!this.metrics){
39803             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39804         }
39805         var el = this.el;
39806         var v = el.dom.value;
39807         var d = document.createElement('div');
39808         d.appendChild(document.createTextNode(v));
39809         v = d.innerHTML;
39810         d = null;
39811         v += "&#160;";
39812         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39813         this.el.setWidth(w);
39814         this.fireEvent("autosize", this, w);
39815     },
39816     
39817     // private
39818     SafariOnKeyDown : function(event)
39819     {
39820         // this is a workaround for a password hang bug on chrome/ webkit.
39821         
39822         var isSelectAll = false;
39823         
39824         if(this.el.dom.selectionEnd > 0){
39825             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39826         }
39827         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39828             event.preventDefault();
39829             this.setValue('');
39830             return;
39831         }
39832         
39833         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39834             
39835             event.preventDefault();
39836             // this is very hacky as keydown always get's upper case.
39837             
39838             var cc = String.fromCharCode(event.getCharCode());
39839             
39840             
39841             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39842             
39843         }
39844         
39845         
39846     }
39847 });/*
39848  * Based on:
39849  * Ext JS Library 1.1.1
39850  * Copyright(c) 2006-2007, Ext JS, LLC.
39851  *
39852  * Originally Released Under LGPL - original licence link has changed is not relivant.
39853  *
39854  * Fork - LGPL
39855  * <script type="text/javascript">
39856  */
39857  
39858 /**
39859  * @class Roo.form.Hidden
39860  * @extends Roo.form.TextField
39861  * Simple Hidden element used on forms 
39862  * 
39863  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39864  * 
39865  * @constructor
39866  * Creates a new Hidden form element.
39867  * @param {Object} config Configuration options
39868  */
39869
39870
39871
39872 // easy hidden field...
39873 Roo.form.Hidden = function(config){
39874     Roo.form.Hidden.superclass.constructor.call(this, config);
39875 };
39876   
39877 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39878     fieldLabel:      '',
39879     inputType:      'hidden',
39880     width:          50,
39881     allowBlank:     true,
39882     labelSeparator: '',
39883     hidden:         true,
39884     itemCls :       'x-form-item-display-none'
39885
39886
39887 });
39888
39889
39890 /*
39891  * Based on:
39892  * Ext JS Library 1.1.1
39893  * Copyright(c) 2006-2007, Ext JS, LLC.
39894  *
39895  * Originally Released Under LGPL - original licence link has changed is not relivant.
39896  *
39897  * Fork - LGPL
39898  * <script type="text/javascript">
39899  */
39900  
39901 /**
39902  * @class Roo.form.TriggerField
39903  * @extends Roo.form.TextField
39904  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39905  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39906  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39907  * for which you can provide a custom implementation.  For example:
39908  * <pre><code>
39909 var trigger = new Roo.form.TriggerField();
39910 trigger.onTriggerClick = myTriggerFn;
39911 trigger.applyTo('my-field');
39912 </code></pre>
39913  *
39914  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39915  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39916  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39917  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39918  * @constructor
39919  * Create a new TriggerField.
39920  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39921  * to the base TextField)
39922  */
39923 Roo.form.TriggerField = function(config){
39924     this.mimicing = false;
39925     Roo.form.TriggerField.superclass.constructor.call(this, config);
39926 };
39927
39928 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39929     /**
39930      * @cfg {String} triggerClass A CSS class to apply to the trigger
39931      */
39932     /**
39933      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39934      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39935      */
39936     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
39937     /**
39938      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
39939      */
39940     hideTrigger:false,
39941
39942     /** @cfg {Boolean} grow @hide */
39943     /** @cfg {Number} growMin @hide */
39944     /** @cfg {Number} growMax @hide */
39945
39946     /**
39947      * @hide 
39948      * @method
39949      */
39950     autoSize: Roo.emptyFn,
39951     // private
39952     monitorTab : true,
39953     // private
39954     deferHeight : true,
39955
39956     
39957     actionMode : 'wrap',
39958     // private
39959     onResize : function(w, h){
39960         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
39961         if(typeof w == 'number'){
39962             var x = w - this.trigger.getWidth();
39963             this.el.setWidth(this.adjustWidth('input', x));
39964             this.trigger.setStyle('left', x+'px');
39965         }
39966     },
39967
39968     // private
39969     adjustSize : Roo.BoxComponent.prototype.adjustSize,
39970
39971     // private
39972     getResizeEl : function(){
39973         return this.wrap;
39974     },
39975
39976     // private
39977     getPositionEl : function(){
39978         return this.wrap;
39979     },
39980
39981     // private
39982     alignErrorIcon : function(){
39983         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
39984     },
39985
39986     // private
39987     onRender : function(ct, position){
39988         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
39989         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
39990         this.trigger = this.wrap.createChild(this.triggerConfig ||
39991                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
39992         if(this.hideTrigger){
39993             this.trigger.setDisplayed(false);
39994         }
39995         this.initTrigger();
39996         if(!this.width){
39997             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
39998         }
39999     },
40000
40001     // private
40002     initTrigger : function(){
40003         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40004         this.trigger.addClassOnOver('x-form-trigger-over');
40005         this.trigger.addClassOnClick('x-form-trigger-click');
40006     },
40007
40008     // private
40009     onDestroy : function(){
40010         if(this.trigger){
40011             this.trigger.removeAllListeners();
40012             this.trigger.remove();
40013         }
40014         if(this.wrap){
40015             this.wrap.remove();
40016         }
40017         Roo.form.TriggerField.superclass.onDestroy.call(this);
40018     },
40019
40020     // private
40021     onFocus : function(){
40022         Roo.form.TriggerField.superclass.onFocus.call(this);
40023         if(!this.mimicing){
40024             this.wrap.addClass('x-trigger-wrap-focus');
40025             this.mimicing = true;
40026             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40027             if(this.monitorTab){
40028                 this.el.on("keydown", this.checkTab, this);
40029             }
40030         }
40031     },
40032
40033     // private
40034     checkTab : function(e){
40035         if(e.getKey() == e.TAB){
40036             this.triggerBlur();
40037         }
40038     },
40039
40040     // private
40041     onBlur : function(){
40042         // do nothing
40043     },
40044
40045     // private
40046     mimicBlur : function(e, t){
40047         if(!this.wrap.contains(t) && this.validateBlur()){
40048             this.triggerBlur();
40049         }
40050     },
40051
40052     // private
40053     triggerBlur : function(){
40054         this.mimicing = false;
40055         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40056         if(this.monitorTab){
40057             this.el.un("keydown", this.checkTab, this);
40058         }
40059         this.wrap.removeClass('x-trigger-wrap-focus');
40060         Roo.form.TriggerField.superclass.onBlur.call(this);
40061     },
40062
40063     // private
40064     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40065     validateBlur : function(e, t){
40066         return true;
40067     },
40068
40069     // private
40070     onDisable : function(){
40071         Roo.form.TriggerField.superclass.onDisable.call(this);
40072         if(this.wrap){
40073             this.wrap.addClass('x-item-disabled');
40074         }
40075     },
40076
40077     // private
40078     onEnable : function(){
40079         Roo.form.TriggerField.superclass.onEnable.call(this);
40080         if(this.wrap){
40081             this.wrap.removeClass('x-item-disabled');
40082         }
40083     },
40084
40085     // private
40086     onShow : function(){
40087         var ae = this.getActionEl();
40088         
40089         if(ae){
40090             ae.dom.style.display = '';
40091             ae.dom.style.visibility = 'visible';
40092         }
40093     },
40094
40095     // private
40096     
40097     onHide : function(){
40098         var ae = this.getActionEl();
40099         ae.dom.style.display = 'none';
40100     },
40101
40102     /**
40103      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40104      * by an implementing function.
40105      * @method
40106      * @param {EventObject} e
40107      */
40108     onTriggerClick : Roo.emptyFn
40109 });
40110
40111 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40112 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40113 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40114 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40115     initComponent : function(){
40116         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40117
40118         this.triggerConfig = {
40119             tag:'span', cls:'x-form-twin-triggers', cn:[
40120             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40121             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40122         ]};
40123     },
40124
40125     getTrigger : function(index){
40126         return this.triggers[index];
40127     },
40128
40129     initTrigger : function(){
40130         var ts = this.trigger.select('.x-form-trigger', true);
40131         this.wrap.setStyle('overflow', 'hidden');
40132         var triggerField = this;
40133         ts.each(function(t, all, index){
40134             t.hide = function(){
40135                 var w = triggerField.wrap.getWidth();
40136                 this.dom.style.display = 'none';
40137                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40138             };
40139             t.show = function(){
40140                 var w = triggerField.wrap.getWidth();
40141                 this.dom.style.display = '';
40142                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40143             };
40144             var triggerIndex = 'Trigger'+(index+1);
40145
40146             if(this['hide'+triggerIndex]){
40147                 t.dom.style.display = 'none';
40148             }
40149             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40150             t.addClassOnOver('x-form-trigger-over');
40151             t.addClassOnClick('x-form-trigger-click');
40152         }, this);
40153         this.triggers = ts.elements;
40154     },
40155
40156     onTrigger1Click : Roo.emptyFn,
40157     onTrigger2Click : Roo.emptyFn
40158 });/*
40159  * Based on:
40160  * Ext JS Library 1.1.1
40161  * Copyright(c) 2006-2007, Ext JS, LLC.
40162  *
40163  * Originally Released Under LGPL - original licence link has changed is not relivant.
40164  *
40165  * Fork - LGPL
40166  * <script type="text/javascript">
40167  */
40168  
40169 /**
40170  * @class Roo.form.TextArea
40171  * @extends Roo.form.TextField
40172  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40173  * support for auto-sizing.
40174  * @constructor
40175  * Creates a new TextArea
40176  * @param {Object} config Configuration options
40177  */
40178 Roo.form.TextArea = function(config){
40179     Roo.form.TextArea.superclass.constructor.call(this, config);
40180     // these are provided exchanges for backwards compat
40181     // minHeight/maxHeight were replaced by growMin/growMax to be
40182     // compatible with TextField growing config values
40183     if(this.minHeight !== undefined){
40184         this.growMin = this.minHeight;
40185     }
40186     if(this.maxHeight !== undefined){
40187         this.growMax = this.maxHeight;
40188     }
40189 };
40190
40191 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40192     /**
40193      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40194      */
40195     growMin : 60,
40196     /**
40197      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40198      */
40199     growMax: 1000,
40200     /**
40201      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40202      * in the field (equivalent to setting overflow: hidden, defaults to false)
40203      */
40204     preventScrollbars: false,
40205     /**
40206      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40207      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40208      */
40209
40210     // private
40211     onRender : function(ct, position){
40212         if(!this.el){
40213             this.defaultAutoCreate = {
40214                 tag: "textarea",
40215                 style:"width:300px;height:60px;",
40216                 autocomplete: "new-password"
40217             };
40218         }
40219         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40220         if(this.grow){
40221             this.textSizeEl = Roo.DomHelper.append(document.body, {
40222                 tag: "pre", cls: "x-form-grow-sizer"
40223             });
40224             if(this.preventScrollbars){
40225                 this.el.setStyle("overflow", "hidden");
40226             }
40227             this.el.setHeight(this.growMin);
40228         }
40229     },
40230
40231     onDestroy : function(){
40232         if(this.textSizeEl){
40233             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40234         }
40235         Roo.form.TextArea.superclass.onDestroy.call(this);
40236     },
40237
40238     // private
40239     onKeyUp : function(e){
40240         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40241             this.autoSize();
40242         }
40243     },
40244
40245     /**
40246      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40247      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40248      */
40249     autoSize : function(){
40250         if(!this.grow || !this.textSizeEl){
40251             return;
40252         }
40253         var el = this.el;
40254         var v = el.dom.value;
40255         var ts = this.textSizeEl;
40256
40257         ts.innerHTML = '';
40258         ts.appendChild(document.createTextNode(v));
40259         v = ts.innerHTML;
40260
40261         Roo.fly(ts).setWidth(this.el.getWidth());
40262         if(v.length < 1){
40263             v = "&#160;&#160;";
40264         }else{
40265             if(Roo.isIE){
40266                 v = v.replace(/\n/g, '<p>&#160;</p>');
40267             }
40268             v += "&#160;\n&#160;";
40269         }
40270         ts.innerHTML = v;
40271         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40272         if(h != this.lastHeight){
40273             this.lastHeight = h;
40274             this.el.setHeight(h);
40275             this.fireEvent("autosize", this, h);
40276         }
40277     }
40278 });/*
40279  * Based on:
40280  * Ext JS Library 1.1.1
40281  * Copyright(c) 2006-2007, Ext JS, LLC.
40282  *
40283  * Originally Released Under LGPL - original licence link has changed is not relivant.
40284  *
40285  * Fork - LGPL
40286  * <script type="text/javascript">
40287  */
40288  
40289
40290 /**
40291  * @class Roo.form.NumberField
40292  * @extends Roo.form.TextField
40293  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40294  * @constructor
40295  * Creates a new NumberField
40296  * @param {Object} config Configuration options
40297  */
40298 Roo.form.NumberField = function(config){
40299     Roo.form.NumberField.superclass.constructor.call(this, config);
40300 };
40301
40302 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40303     /**
40304      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40305      */
40306     fieldClass: "x-form-field x-form-num-field",
40307     /**
40308      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40309      */
40310     allowDecimals : true,
40311     /**
40312      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40313      */
40314     decimalSeparator : ".",
40315     /**
40316      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40317      */
40318     decimalPrecision : 2,
40319     /**
40320      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40321      */
40322     allowNegative : true,
40323     /**
40324      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40325      */
40326     minValue : Number.NEGATIVE_INFINITY,
40327     /**
40328      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40329      */
40330     maxValue : Number.MAX_VALUE,
40331     /**
40332      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40333      */
40334     minText : "The minimum value for this field is {0}",
40335     /**
40336      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40337      */
40338     maxText : "The maximum value for this field is {0}",
40339     /**
40340      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40341      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40342      */
40343     nanText : "{0} is not a valid number",
40344
40345     // private
40346     initEvents : function(){
40347         Roo.form.NumberField.superclass.initEvents.call(this);
40348         var allowed = "0123456789";
40349         if(this.allowDecimals){
40350             allowed += this.decimalSeparator;
40351         }
40352         if(this.allowNegative){
40353             allowed += "-";
40354         }
40355         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40356         var keyPress = function(e){
40357             var k = e.getKey();
40358             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40359                 return;
40360             }
40361             var c = e.getCharCode();
40362             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40363                 e.stopEvent();
40364             }
40365         };
40366         this.el.on("keypress", keyPress, this);
40367     },
40368
40369     // private
40370     validateValue : function(value){
40371         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40372             return false;
40373         }
40374         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40375              return true;
40376         }
40377         var num = this.parseValue(value);
40378         if(isNaN(num)){
40379             this.markInvalid(String.format(this.nanText, value));
40380             return false;
40381         }
40382         if(num < this.minValue){
40383             this.markInvalid(String.format(this.minText, this.minValue));
40384             return false;
40385         }
40386         if(num > this.maxValue){
40387             this.markInvalid(String.format(this.maxText, this.maxValue));
40388             return false;
40389         }
40390         return true;
40391     },
40392
40393     getValue : function(){
40394         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40395     },
40396
40397     // private
40398     parseValue : function(value){
40399         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40400         return isNaN(value) ? '' : value;
40401     },
40402
40403     // private
40404     fixPrecision : function(value){
40405         var nan = isNaN(value);
40406         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40407             return nan ? '' : value;
40408         }
40409         return parseFloat(value).toFixed(this.decimalPrecision);
40410     },
40411
40412     setValue : function(v){
40413         v = this.fixPrecision(v);
40414         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40415     },
40416
40417     // private
40418     decimalPrecisionFcn : function(v){
40419         return Math.floor(v);
40420     },
40421
40422     beforeBlur : function(){
40423         var v = this.parseValue(this.getRawValue());
40424         if(v){
40425             this.setValue(v);
40426         }
40427     }
40428 });/*
40429  * Based on:
40430  * Ext JS Library 1.1.1
40431  * Copyright(c) 2006-2007, Ext JS, LLC.
40432  *
40433  * Originally Released Under LGPL - original licence link has changed is not relivant.
40434  *
40435  * Fork - LGPL
40436  * <script type="text/javascript">
40437  */
40438  
40439 /**
40440  * @class Roo.form.DateField
40441  * @extends Roo.form.TriggerField
40442  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40443 * @constructor
40444 * Create a new DateField
40445 * @param {Object} config
40446  */
40447 Roo.form.DateField = function(config)
40448 {
40449     Roo.form.DateField.superclass.constructor.call(this, config);
40450     
40451       this.addEvents({
40452          
40453         /**
40454          * @event select
40455          * Fires when a date is selected
40456              * @param {Roo.form.DateField} combo This combo box
40457              * @param {Date} date The date selected
40458              */
40459         'select' : true
40460          
40461     });
40462     
40463     
40464     if(typeof this.minValue == "string") {
40465         this.minValue = this.parseDate(this.minValue);
40466     }
40467     if(typeof this.maxValue == "string") {
40468         this.maxValue = this.parseDate(this.maxValue);
40469     }
40470     this.ddMatch = null;
40471     if(this.disabledDates){
40472         var dd = this.disabledDates;
40473         var re = "(?:";
40474         for(var i = 0; i < dd.length; i++){
40475             re += dd[i];
40476             if(i != dd.length-1) {
40477                 re += "|";
40478             }
40479         }
40480         this.ddMatch = new RegExp(re + ")");
40481     }
40482 };
40483
40484 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40485     /**
40486      * @cfg {String} format
40487      * The default date format string which can be overriden for localization support.  The format must be
40488      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40489      */
40490     format : "m/d/y",
40491     /**
40492      * @cfg {String} altFormats
40493      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40494      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40495      */
40496     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40497     /**
40498      * @cfg {Array} disabledDays
40499      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40500      */
40501     disabledDays : null,
40502     /**
40503      * @cfg {String} disabledDaysText
40504      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40505      */
40506     disabledDaysText : "Disabled",
40507     /**
40508      * @cfg {Array} disabledDates
40509      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40510      * expression so they are very powerful. Some examples:
40511      * <ul>
40512      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40513      * <li>["03/08", "09/16"] would disable those days for every year</li>
40514      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40515      * <li>["03/../2006"] would disable every day in March 2006</li>
40516      * <li>["^03"] would disable every day in every March</li>
40517      * </ul>
40518      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40519      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40520      */
40521     disabledDates : null,
40522     /**
40523      * @cfg {String} disabledDatesText
40524      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40525      */
40526     disabledDatesText : "Disabled",
40527     /**
40528      * @cfg {Date/String} minValue
40529      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40530      * valid format (defaults to null).
40531      */
40532     minValue : null,
40533     /**
40534      * @cfg {Date/String} maxValue
40535      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40536      * valid format (defaults to null).
40537      */
40538     maxValue : null,
40539     /**
40540      * @cfg {String} minText
40541      * The error text to display when the date in the cell is before minValue (defaults to
40542      * 'The date in this field must be after {minValue}').
40543      */
40544     minText : "The date in this field must be equal to or after {0}",
40545     /**
40546      * @cfg {String} maxText
40547      * The error text to display when the date in the cell is after maxValue (defaults to
40548      * 'The date in this field must be before {maxValue}').
40549      */
40550     maxText : "The date in this field must be equal to or before {0}",
40551     /**
40552      * @cfg {String} invalidText
40553      * The error text to display when the date in the field is invalid (defaults to
40554      * '{value} is not a valid date - it must be in the format {format}').
40555      */
40556     invalidText : "{0} is not a valid date - it must be in the format {1}",
40557     /**
40558      * @cfg {String} triggerClass
40559      * An additional CSS class used to style the trigger button.  The trigger will always get the
40560      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40561      * which displays a calendar icon).
40562      */
40563     triggerClass : 'x-form-date-trigger',
40564     
40565
40566     /**
40567      * @cfg {Boolean} useIso
40568      * if enabled, then the date field will use a hidden field to store the 
40569      * real value as iso formated date. default (false)
40570      */ 
40571     useIso : false,
40572     /**
40573      * @cfg {String/Object} autoCreate
40574      * A DomHelper element spec, or true for a default element spec (defaults to
40575      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40576      */ 
40577     // private
40578     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40579     
40580     // private
40581     hiddenField: false,
40582     
40583     onRender : function(ct, position)
40584     {
40585         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40586         if (this.useIso) {
40587             //this.el.dom.removeAttribute('name'); 
40588             Roo.log("Changing name?");
40589             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40590             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40591                     'before', true);
40592             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40593             // prevent input submission
40594             this.hiddenName = this.name;
40595         }
40596             
40597             
40598     },
40599     
40600     // private
40601     validateValue : function(value)
40602     {
40603         value = this.formatDate(value);
40604         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40605             Roo.log('super failed');
40606             return false;
40607         }
40608         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40609              return true;
40610         }
40611         var svalue = value;
40612         value = this.parseDate(value);
40613         if(!value){
40614             Roo.log('parse date failed' + svalue);
40615             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40616             return false;
40617         }
40618         var time = value.getTime();
40619         if(this.minValue && time < this.minValue.getTime()){
40620             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40621             return false;
40622         }
40623         if(this.maxValue && time > this.maxValue.getTime()){
40624             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40625             return false;
40626         }
40627         if(this.disabledDays){
40628             var day = value.getDay();
40629             for(var i = 0; i < this.disabledDays.length; i++) {
40630                 if(day === this.disabledDays[i]){
40631                     this.markInvalid(this.disabledDaysText);
40632                     return false;
40633                 }
40634             }
40635         }
40636         var fvalue = this.formatDate(value);
40637         if(this.ddMatch && this.ddMatch.test(fvalue)){
40638             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40639             return false;
40640         }
40641         return true;
40642     },
40643
40644     // private
40645     // Provides logic to override the default TriggerField.validateBlur which just returns true
40646     validateBlur : function(){
40647         return !this.menu || !this.menu.isVisible();
40648     },
40649     
40650     getName: function()
40651     {
40652         // returns hidden if it's set..
40653         if (!this.rendered) {return ''};
40654         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40655         
40656     },
40657
40658     /**
40659      * Returns the current date value of the date field.
40660      * @return {Date} The date value
40661      */
40662     getValue : function(){
40663         
40664         return  this.hiddenField ?
40665                 this.hiddenField.value :
40666                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40667     },
40668
40669     /**
40670      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40671      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40672      * (the default format used is "m/d/y").
40673      * <br />Usage:
40674      * <pre><code>
40675 //All of these calls set the same date value (May 4, 2006)
40676
40677 //Pass a date object:
40678 var dt = new Date('5/4/06');
40679 dateField.setValue(dt);
40680
40681 //Pass a date string (default format):
40682 dateField.setValue('5/4/06');
40683
40684 //Pass a date string (custom format):
40685 dateField.format = 'Y-m-d';
40686 dateField.setValue('2006-5-4');
40687 </code></pre>
40688      * @param {String/Date} date The date or valid date string
40689      */
40690     setValue : function(date){
40691         if (this.hiddenField) {
40692             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40693         }
40694         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40695         // make sure the value field is always stored as a date..
40696         this.value = this.parseDate(date);
40697         
40698         
40699     },
40700
40701     // private
40702     parseDate : function(value){
40703         if(!value || value instanceof Date){
40704             return value;
40705         }
40706         var v = Date.parseDate(value, this.format);
40707          if (!v && this.useIso) {
40708             v = Date.parseDate(value, 'Y-m-d');
40709         }
40710         if(!v && this.altFormats){
40711             if(!this.altFormatsArray){
40712                 this.altFormatsArray = this.altFormats.split("|");
40713             }
40714             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40715                 v = Date.parseDate(value, this.altFormatsArray[i]);
40716             }
40717         }
40718         return v;
40719     },
40720
40721     // private
40722     formatDate : function(date, fmt){
40723         return (!date || !(date instanceof Date)) ?
40724                date : date.dateFormat(fmt || this.format);
40725     },
40726
40727     // private
40728     menuListeners : {
40729         select: function(m, d){
40730             
40731             this.setValue(d);
40732             this.fireEvent('select', this, d);
40733         },
40734         show : function(){ // retain focus styling
40735             this.onFocus();
40736         },
40737         hide : function(){
40738             this.focus.defer(10, this);
40739             var ml = this.menuListeners;
40740             this.menu.un("select", ml.select,  this);
40741             this.menu.un("show", ml.show,  this);
40742             this.menu.un("hide", ml.hide,  this);
40743         }
40744     },
40745
40746     // private
40747     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40748     onTriggerClick : function(){
40749         if(this.disabled){
40750             return;
40751         }
40752         if(this.menu == null){
40753             this.menu = new Roo.menu.DateMenu();
40754         }
40755         Roo.apply(this.menu.picker,  {
40756             showClear: this.allowBlank,
40757             minDate : this.minValue,
40758             maxDate : this.maxValue,
40759             disabledDatesRE : this.ddMatch,
40760             disabledDatesText : this.disabledDatesText,
40761             disabledDays : this.disabledDays,
40762             disabledDaysText : this.disabledDaysText,
40763             format : this.useIso ? 'Y-m-d' : this.format,
40764             minText : String.format(this.minText, this.formatDate(this.minValue)),
40765             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40766         });
40767         this.menu.on(Roo.apply({}, this.menuListeners, {
40768             scope:this
40769         }));
40770         this.menu.picker.setValue(this.getValue() || new Date());
40771         this.menu.show(this.el, "tl-bl?");
40772     },
40773
40774     beforeBlur : function(){
40775         var v = this.parseDate(this.getRawValue());
40776         if(v){
40777             this.setValue(v);
40778         }
40779     },
40780
40781     /*@
40782      * overide
40783      * 
40784      */
40785     isDirty : function() {
40786         if(this.disabled) {
40787             return false;
40788         }
40789         
40790         if(typeof(this.startValue) === 'undefined'){
40791             return false;
40792         }
40793         
40794         return String(this.getValue()) !== String(this.startValue);
40795         
40796     },
40797     // @overide
40798     cleanLeadingSpace : function(e)
40799     {
40800        return;
40801     }
40802     
40803 });/*
40804  * Based on:
40805  * Ext JS Library 1.1.1
40806  * Copyright(c) 2006-2007, Ext JS, LLC.
40807  *
40808  * Originally Released Under LGPL - original licence link has changed is not relivant.
40809  *
40810  * Fork - LGPL
40811  * <script type="text/javascript">
40812  */
40813  
40814 /**
40815  * @class Roo.form.MonthField
40816  * @extends Roo.form.TriggerField
40817  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40818 * @constructor
40819 * Create a new MonthField
40820 * @param {Object} config
40821  */
40822 Roo.form.MonthField = function(config){
40823     
40824     Roo.form.MonthField.superclass.constructor.call(this, config);
40825     
40826       this.addEvents({
40827          
40828         /**
40829          * @event select
40830          * Fires when a date is selected
40831              * @param {Roo.form.MonthFieeld} combo This combo box
40832              * @param {Date} date The date selected
40833              */
40834         'select' : true
40835          
40836     });
40837     
40838     
40839     if(typeof this.minValue == "string") {
40840         this.minValue = this.parseDate(this.minValue);
40841     }
40842     if(typeof this.maxValue == "string") {
40843         this.maxValue = this.parseDate(this.maxValue);
40844     }
40845     this.ddMatch = null;
40846     if(this.disabledDates){
40847         var dd = this.disabledDates;
40848         var re = "(?:";
40849         for(var i = 0; i < dd.length; i++){
40850             re += dd[i];
40851             if(i != dd.length-1) {
40852                 re += "|";
40853             }
40854         }
40855         this.ddMatch = new RegExp(re + ")");
40856     }
40857 };
40858
40859 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40860     /**
40861      * @cfg {String} format
40862      * The default date format string which can be overriden for localization support.  The format must be
40863      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40864      */
40865     format : "M Y",
40866     /**
40867      * @cfg {String} altFormats
40868      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40869      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40870      */
40871     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40872     /**
40873      * @cfg {Array} disabledDays
40874      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40875      */
40876     disabledDays : [0,1,2,3,4,5,6],
40877     /**
40878      * @cfg {String} disabledDaysText
40879      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40880      */
40881     disabledDaysText : "Disabled",
40882     /**
40883      * @cfg {Array} disabledDates
40884      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40885      * expression so they are very powerful. Some examples:
40886      * <ul>
40887      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40888      * <li>["03/08", "09/16"] would disable those days for every year</li>
40889      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40890      * <li>["03/../2006"] would disable every day in March 2006</li>
40891      * <li>["^03"] would disable every day in every March</li>
40892      * </ul>
40893      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40894      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40895      */
40896     disabledDates : null,
40897     /**
40898      * @cfg {String} disabledDatesText
40899      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40900      */
40901     disabledDatesText : "Disabled",
40902     /**
40903      * @cfg {Date/String} minValue
40904      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40905      * valid format (defaults to null).
40906      */
40907     minValue : null,
40908     /**
40909      * @cfg {Date/String} maxValue
40910      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40911      * valid format (defaults to null).
40912      */
40913     maxValue : null,
40914     /**
40915      * @cfg {String} minText
40916      * The error text to display when the date in the cell is before minValue (defaults to
40917      * 'The date in this field must be after {minValue}').
40918      */
40919     minText : "The date in this field must be equal to or after {0}",
40920     /**
40921      * @cfg {String} maxTextf
40922      * The error text to display when the date in the cell is after maxValue (defaults to
40923      * 'The date in this field must be before {maxValue}').
40924      */
40925     maxText : "The date in this field must be equal to or before {0}",
40926     /**
40927      * @cfg {String} invalidText
40928      * The error text to display when the date in the field is invalid (defaults to
40929      * '{value} is not a valid date - it must be in the format {format}').
40930      */
40931     invalidText : "{0} is not a valid date - it must be in the format {1}",
40932     /**
40933      * @cfg {String} triggerClass
40934      * An additional CSS class used to style the trigger button.  The trigger will always get the
40935      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40936      * which displays a calendar icon).
40937      */
40938     triggerClass : 'x-form-date-trigger',
40939     
40940
40941     /**
40942      * @cfg {Boolean} useIso
40943      * if enabled, then the date field will use a hidden field to store the 
40944      * real value as iso formated date. default (true)
40945      */ 
40946     useIso : true,
40947     /**
40948      * @cfg {String/Object} autoCreate
40949      * A DomHelper element spec, or true for a default element spec (defaults to
40950      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40951      */ 
40952     // private
40953     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
40954     
40955     // private
40956     hiddenField: false,
40957     
40958     hideMonthPicker : false,
40959     
40960     onRender : function(ct, position)
40961     {
40962         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
40963         if (this.useIso) {
40964             this.el.dom.removeAttribute('name'); 
40965             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40966                     'before', true);
40967             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40968             // prevent input submission
40969             this.hiddenName = this.name;
40970         }
40971             
40972             
40973     },
40974     
40975     // private
40976     validateValue : function(value)
40977     {
40978         value = this.formatDate(value);
40979         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
40980             return false;
40981         }
40982         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40983              return true;
40984         }
40985         var svalue = value;
40986         value = this.parseDate(value);
40987         if(!value){
40988             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40989             return false;
40990         }
40991         var time = value.getTime();
40992         if(this.minValue && time < this.minValue.getTime()){
40993             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40994             return false;
40995         }
40996         if(this.maxValue && time > this.maxValue.getTime()){
40997             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40998             return false;
40999         }
41000         /*if(this.disabledDays){
41001             var day = value.getDay();
41002             for(var i = 0; i < this.disabledDays.length; i++) {
41003                 if(day === this.disabledDays[i]){
41004                     this.markInvalid(this.disabledDaysText);
41005                     return false;
41006                 }
41007             }
41008         }
41009         */
41010         var fvalue = this.formatDate(value);
41011         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41012             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41013             return false;
41014         }
41015         */
41016         return true;
41017     },
41018
41019     // private
41020     // Provides logic to override the default TriggerField.validateBlur which just returns true
41021     validateBlur : function(){
41022         return !this.menu || !this.menu.isVisible();
41023     },
41024
41025     /**
41026      * Returns the current date value of the date field.
41027      * @return {Date} The date value
41028      */
41029     getValue : function(){
41030         
41031         
41032         
41033         return  this.hiddenField ?
41034                 this.hiddenField.value :
41035                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41036     },
41037
41038     /**
41039      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41040      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41041      * (the default format used is "m/d/y").
41042      * <br />Usage:
41043      * <pre><code>
41044 //All of these calls set the same date value (May 4, 2006)
41045
41046 //Pass a date object:
41047 var dt = new Date('5/4/06');
41048 monthField.setValue(dt);
41049
41050 //Pass a date string (default format):
41051 monthField.setValue('5/4/06');
41052
41053 //Pass a date string (custom format):
41054 monthField.format = 'Y-m-d';
41055 monthField.setValue('2006-5-4');
41056 </code></pre>
41057      * @param {String/Date} date The date or valid date string
41058      */
41059     setValue : function(date){
41060         Roo.log('month setValue' + date);
41061         // can only be first of month..
41062         
41063         var val = this.parseDate(date);
41064         
41065         if (this.hiddenField) {
41066             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41067         }
41068         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41069         this.value = this.parseDate(date);
41070     },
41071
41072     // private
41073     parseDate : function(value){
41074         if(!value || value instanceof Date){
41075             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41076             return value;
41077         }
41078         var v = Date.parseDate(value, this.format);
41079         if (!v && this.useIso) {
41080             v = Date.parseDate(value, 'Y-m-d');
41081         }
41082         if (v) {
41083             // 
41084             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41085         }
41086         
41087         
41088         if(!v && this.altFormats){
41089             if(!this.altFormatsArray){
41090                 this.altFormatsArray = this.altFormats.split("|");
41091             }
41092             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41093                 v = Date.parseDate(value, this.altFormatsArray[i]);
41094             }
41095         }
41096         return v;
41097     },
41098
41099     // private
41100     formatDate : function(date, fmt){
41101         return (!date || !(date instanceof Date)) ?
41102                date : date.dateFormat(fmt || this.format);
41103     },
41104
41105     // private
41106     menuListeners : {
41107         select: function(m, d){
41108             this.setValue(d);
41109             this.fireEvent('select', this, d);
41110         },
41111         show : function(){ // retain focus styling
41112             this.onFocus();
41113         },
41114         hide : function(){
41115             this.focus.defer(10, this);
41116             var ml = this.menuListeners;
41117             this.menu.un("select", ml.select,  this);
41118             this.menu.un("show", ml.show,  this);
41119             this.menu.un("hide", ml.hide,  this);
41120         }
41121     },
41122     // private
41123     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41124     onTriggerClick : function(){
41125         if(this.disabled){
41126             return;
41127         }
41128         if(this.menu == null){
41129             this.menu = new Roo.menu.DateMenu();
41130            
41131         }
41132         
41133         Roo.apply(this.menu.picker,  {
41134             
41135             showClear: this.allowBlank,
41136             minDate : this.minValue,
41137             maxDate : this.maxValue,
41138             disabledDatesRE : this.ddMatch,
41139             disabledDatesText : this.disabledDatesText,
41140             
41141             format : this.useIso ? 'Y-m-d' : this.format,
41142             minText : String.format(this.minText, this.formatDate(this.minValue)),
41143             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41144             
41145         });
41146          this.menu.on(Roo.apply({}, this.menuListeners, {
41147             scope:this
41148         }));
41149        
41150         
41151         var m = this.menu;
41152         var p = m.picker;
41153         
41154         // hide month picker get's called when we called by 'before hide';
41155         
41156         var ignorehide = true;
41157         p.hideMonthPicker  = function(disableAnim){
41158             if (ignorehide) {
41159                 return;
41160             }
41161              if(this.monthPicker){
41162                 Roo.log("hideMonthPicker called");
41163                 if(disableAnim === true){
41164                     this.monthPicker.hide();
41165                 }else{
41166                     this.monthPicker.slideOut('t', {duration:.2});
41167                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41168                     p.fireEvent("select", this, this.value);
41169                     m.hide();
41170                 }
41171             }
41172         }
41173         
41174         Roo.log('picker set value');
41175         Roo.log(this.getValue());
41176         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41177         m.show(this.el, 'tl-bl?');
41178         ignorehide  = false;
41179         // this will trigger hideMonthPicker..
41180         
41181         
41182         // hidden the day picker
41183         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41184         
41185         
41186         
41187       
41188         
41189         p.showMonthPicker.defer(100, p);
41190     
41191         
41192        
41193     },
41194
41195     beforeBlur : function(){
41196         var v = this.parseDate(this.getRawValue());
41197         if(v){
41198             this.setValue(v);
41199         }
41200     }
41201
41202     /** @cfg {Boolean} grow @hide */
41203     /** @cfg {Number} growMin @hide */
41204     /** @cfg {Number} growMax @hide */
41205     /**
41206      * @hide
41207      * @method autoSize
41208      */
41209 });/*
41210  * Based on:
41211  * Ext JS Library 1.1.1
41212  * Copyright(c) 2006-2007, Ext JS, LLC.
41213  *
41214  * Originally Released Under LGPL - original licence link has changed is not relivant.
41215  *
41216  * Fork - LGPL
41217  * <script type="text/javascript">
41218  */
41219  
41220
41221 /**
41222  * @class Roo.form.ComboBox
41223  * @extends Roo.form.TriggerField
41224  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41225  * @constructor
41226  * Create a new ComboBox.
41227  * @param {Object} config Configuration options
41228  */
41229 Roo.form.ComboBox = function(config){
41230     Roo.form.ComboBox.superclass.constructor.call(this, config);
41231     this.addEvents({
41232         /**
41233          * @event expand
41234          * Fires when the dropdown list is expanded
41235              * @param {Roo.form.ComboBox} combo This combo box
41236              */
41237         'expand' : true,
41238         /**
41239          * @event collapse
41240          * Fires when the dropdown list is collapsed
41241              * @param {Roo.form.ComboBox} combo This combo box
41242              */
41243         'collapse' : true,
41244         /**
41245          * @event beforeselect
41246          * Fires before a list item is selected. Return false to cancel the selection.
41247              * @param {Roo.form.ComboBox} combo This combo box
41248              * @param {Roo.data.Record} record The data record returned from the underlying store
41249              * @param {Number} index The index of the selected item in the dropdown list
41250              */
41251         'beforeselect' : true,
41252         /**
41253          * @event select
41254          * Fires when a list item is selected
41255              * @param {Roo.form.ComboBox} combo This combo box
41256              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41257              * @param {Number} index The index of the selected item in the dropdown list
41258              */
41259         'select' : true,
41260         /**
41261          * @event beforequery
41262          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41263          * The event object passed has these properties:
41264              * @param {Roo.form.ComboBox} combo This combo box
41265              * @param {String} query The query
41266              * @param {Boolean} forceAll true to force "all" query
41267              * @param {Boolean} cancel true to cancel the query
41268              * @param {Object} e The query event object
41269              */
41270         'beforequery': true,
41271          /**
41272          * @event add
41273          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41274              * @param {Roo.form.ComboBox} combo This combo box
41275              */
41276         'add' : true,
41277         /**
41278          * @event edit
41279          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41280              * @param {Roo.form.ComboBox} combo This combo box
41281              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41282              */
41283         'edit' : true
41284         
41285         
41286     });
41287     if(this.transform){
41288         this.allowDomMove = false;
41289         var s = Roo.getDom(this.transform);
41290         if(!this.hiddenName){
41291             this.hiddenName = s.name;
41292         }
41293         if(!this.store){
41294             this.mode = 'local';
41295             var d = [], opts = s.options;
41296             for(var i = 0, len = opts.length;i < len; i++){
41297                 var o = opts[i];
41298                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41299                 if(o.selected) {
41300                     this.value = value;
41301                 }
41302                 d.push([value, o.text]);
41303             }
41304             this.store = new Roo.data.SimpleStore({
41305                 'id': 0,
41306                 fields: ['value', 'text'],
41307                 data : d
41308             });
41309             this.valueField = 'value';
41310             this.displayField = 'text';
41311         }
41312         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41313         if(!this.lazyRender){
41314             this.target = true;
41315             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41316             s.parentNode.removeChild(s); // remove it
41317             this.render(this.el.parentNode);
41318         }else{
41319             s.parentNode.removeChild(s); // remove it
41320         }
41321
41322     }
41323     if (this.store) {
41324         this.store = Roo.factory(this.store, Roo.data);
41325     }
41326     
41327     this.selectedIndex = -1;
41328     if(this.mode == 'local'){
41329         if(config.queryDelay === undefined){
41330             this.queryDelay = 10;
41331         }
41332         if(config.minChars === undefined){
41333             this.minChars = 0;
41334         }
41335     }
41336 };
41337
41338 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41339     /**
41340      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41341      */
41342     /**
41343      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41344      * rendering into an Roo.Editor, defaults to false)
41345      */
41346     /**
41347      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41348      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41349      */
41350     /**
41351      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41352      */
41353     /**
41354      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41355      * the dropdown list (defaults to undefined, with no header element)
41356      */
41357
41358      /**
41359      * @cfg {String/Roo.Template} tpl The template to use to render the output
41360      */
41361      
41362     // private
41363     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41364     /**
41365      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41366      */
41367     listWidth: undefined,
41368     /**
41369      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41370      * mode = 'remote' or 'text' if mode = 'local')
41371      */
41372     displayField: undefined,
41373     /**
41374      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41375      * mode = 'remote' or 'value' if mode = 'local'). 
41376      * Note: use of a valueField requires the user make a selection
41377      * in order for a value to be mapped.
41378      */
41379     valueField: undefined,
41380     
41381     
41382     /**
41383      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41384      * field's data value (defaults to the underlying DOM element's name)
41385      */
41386     hiddenName: undefined,
41387     /**
41388      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41389      */
41390     listClass: '',
41391     /**
41392      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41393      */
41394     selectedClass: 'x-combo-selected',
41395     /**
41396      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41397      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41398      * which displays a downward arrow icon).
41399      */
41400     triggerClass : 'x-form-arrow-trigger',
41401     /**
41402      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41403      */
41404     shadow:'sides',
41405     /**
41406      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41407      * anchor positions (defaults to 'tl-bl')
41408      */
41409     listAlign: 'tl-bl?',
41410     /**
41411      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41412      */
41413     maxHeight: 300,
41414     /**
41415      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41416      * query specified by the allQuery config option (defaults to 'query')
41417      */
41418     triggerAction: 'query',
41419     /**
41420      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41421      * (defaults to 4, does not apply if editable = false)
41422      */
41423     minChars : 4,
41424     /**
41425      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41426      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41427      */
41428     typeAhead: false,
41429     /**
41430      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41431      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41432      */
41433     queryDelay: 500,
41434     /**
41435      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41436      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41437      */
41438     pageSize: 0,
41439     /**
41440      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41441      * when editable = true (defaults to false)
41442      */
41443     selectOnFocus:false,
41444     /**
41445      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41446      */
41447     queryParam: 'query',
41448     /**
41449      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41450      * when mode = 'remote' (defaults to 'Loading...')
41451      */
41452     loadingText: 'Loading...',
41453     /**
41454      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41455      */
41456     resizable: false,
41457     /**
41458      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41459      */
41460     handleHeight : 8,
41461     /**
41462      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41463      * traditional select (defaults to true)
41464      */
41465     editable: true,
41466     /**
41467      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41468      */
41469     allQuery: '',
41470     /**
41471      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41472      */
41473     mode: 'remote',
41474     /**
41475      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41476      * listWidth has a higher value)
41477      */
41478     minListWidth : 70,
41479     /**
41480      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41481      * allow the user to set arbitrary text into the field (defaults to false)
41482      */
41483     forceSelection:false,
41484     /**
41485      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41486      * if typeAhead = true (defaults to 250)
41487      */
41488     typeAheadDelay : 250,
41489     /**
41490      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41491      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41492      */
41493     valueNotFoundText : undefined,
41494     /**
41495      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41496      */
41497     blockFocus : false,
41498     
41499     /**
41500      * @cfg {Boolean} disableClear Disable showing of clear button.
41501      */
41502     disableClear : false,
41503     /**
41504      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41505      */
41506     alwaysQuery : false,
41507     
41508     //private
41509     addicon : false,
41510     editicon: false,
41511     
41512     // element that contains real text value.. (when hidden is used..)
41513      
41514     // private
41515     onRender : function(ct, position)
41516     {
41517         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41518         
41519         if(this.hiddenName){
41520             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41521                     'before', true);
41522             this.hiddenField.value =
41523                 this.hiddenValue !== undefined ? this.hiddenValue :
41524                 this.value !== undefined ? this.value : '';
41525
41526             // prevent input submission
41527             this.el.dom.removeAttribute('name');
41528              
41529              
41530         }
41531         
41532         if(Roo.isGecko){
41533             this.el.dom.setAttribute('autocomplete', 'off');
41534         }
41535
41536         var cls = 'x-combo-list';
41537
41538         this.list = new Roo.Layer({
41539             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41540         });
41541
41542         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41543         this.list.setWidth(lw);
41544         this.list.swallowEvent('mousewheel');
41545         this.assetHeight = 0;
41546
41547         if(this.title){
41548             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41549             this.assetHeight += this.header.getHeight();
41550         }
41551
41552         this.innerList = this.list.createChild({cls:cls+'-inner'});
41553         this.innerList.on('mouseover', this.onViewOver, this);
41554         this.innerList.on('mousemove', this.onViewMove, this);
41555         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41556         
41557         if(this.allowBlank && !this.pageSize && !this.disableClear){
41558             this.footer = this.list.createChild({cls:cls+'-ft'});
41559             this.pageTb = new Roo.Toolbar(this.footer);
41560            
41561         }
41562         if(this.pageSize){
41563             this.footer = this.list.createChild({cls:cls+'-ft'});
41564             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41565                     {pageSize: this.pageSize});
41566             
41567         }
41568         
41569         if (this.pageTb && this.allowBlank && !this.disableClear) {
41570             var _this = this;
41571             this.pageTb.add(new Roo.Toolbar.Fill(), {
41572                 cls: 'x-btn-icon x-btn-clear',
41573                 text: '&#160;',
41574                 handler: function()
41575                 {
41576                     _this.collapse();
41577                     _this.clearValue();
41578                     _this.onSelect(false, -1);
41579                 }
41580             });
41581         }
41582         if (this.footer) {
41583             this.assetHeight += this.footer.getHeight();
41584         }
41585         
41586
41587         if(!this.tpl){
41588             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41589         }
41590
41591         this.view = new Roo.View(this.innerList, this.tpl, {
41592             singleSelect:true,
41593             store: this.store,
41594             selectedClass: this.selectedClass
41595         });
41596
41597         this.view.on('click', this.onViewClick, this);
41598
41599         this.store.on('beforeload', this.onBeforeLoad, this);
41600         this.store.on('load', this.onLoad, this);
41601         this.store.on('loadexception', this.onLoadException, this);
41602
41603         if(this.resizable){
41604             this.resizer = new Roo.Resizable(this.list,  {
41605                pinned:true, handles:'se'
41606             });
41607             this.resizer.on('resize', function(r, w, h){
41608                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41609                 this.listWidth = w;
41610                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41611                 this.restrictHeight();
41612             }, this);
41613             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41614         }
41615         if(!this.editable){
41616             this.editable = true;
41617             this.setEditable(false);
41618         }  
41619         
41620         
41621         if (typeof(this.events.add.listeners) != 'undefined') {
41622             
41623             this.addicon = this.wrap.createChild(
41624                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41625        
41626             this.addicon.on('click', function(e) {
41627                 this.fireEvent('add', this);
41628             }, this);
41629         }
41630         if (typeof(this.events.edit.listeners) != 'undefined') {
41631             
41632             this.editicon = this.wrap.createChild(
41633                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41634             if (this.addicon) {
41635                 this.editicon.setStyle('margin-left', '40px');
41636             }
41637             this.editicon.on('click', function(e) {
41638                 
41639                 // we fire even  if inothing is selected..
41640                 this.fireEvent('edit', this, this.lastData );
41641                 
41642             }, this);
41643         }
41644         
41645         
41646         
41647     },
41648
41649     // private
41650     initEvents : function(){
41651         Roo.form.ComboBox.superclass.initEvents.call(this);
41652
41653         this.keyNav = new Roo.KeyNav(this.el, {
41654             "up" : function(e){
41655                 this.inKeyMode = true;
41656                 this.selectPrev();
41657             },
41658
41659             "down" : function(e){
41660                 if(!this.isExpanded()){
41661                     this.onTriggerClick();
41662                 }else{
41663                     this.inKeyMode = true;
41664                     this.selectNext();
41665                 }
41666             },
41667
41668             "enter" : function(e){
41669                 this.onViewClick();
41670                 //return true;
41671             },
41672
41673             "esc" : function(e){
41674                 this.collapse();
41675             },
41676
41677             "tab" : function(e){
41678                 this.onViewClick(false);
41679                 this.fireEvent("specialkey", this, e);
41680                 return true;
41681             },
41682
41683             scope : this,
41684
41685             doRelay : function(foo, bar, hname){
41686                 if(hname == 'down' || this.scope.isExpanded()){
41687                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41688                 }
41689                 return true;
41690             },
41691
41692             forceKeyDown: true
41693         });
41694         this.queryDelay = Math.max(this.queryDelay || 10,
41695                 this.mode == 'local' ? 10 : 250);
41696         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41697         if(this.typeAhead){
41698             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41699         }
41700         if(this.editable !== false){
41701             this.el.on("keyup", this.onKeyUp, this);
41702         }
41703         if(this.forceSelection){
41704             this.on('blur', this.doForce, this);
41705         }
41706     },
41707
41708     onDestroy : function(){
41709         if(this.view){
41710             this.view.setStore(null);
41711             this.view.el.removeAllListeners();
41712             this.view.el.remove();
41713             this.view.purgeListeners();
41714         }
41715         if(this.list){
41716             this.list.destroy();
41717         }
41718         if(this.store){
41719             this.store.un('beforeload', this.onBeforeLoad, this);
41720             this.store.un('load', this.onLoad, this);
41721             this.store.un('loadexception', this.onLoadException, this);
41722         }
41723         Roo.form.ComboBox.superclass.onDestroy.call(this);
41724     },
41725
41726     // private
41727     fireKey : function(e){
41728         if(e.isNavKeyPress() && !this.list.isVisible()){
41729             this.fireEvent("specialkey", this, e);
41730         }
41731     },
41732
41733     // private
41734     onResize: function(w, h){
41735         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41736         
41737         if(typeof w != 'number'){
41738             // we do not handle it!?!?
41739             return;
41740         }
41741         var tw = this.trigger.getWidth();
41742         tw += this.addicon ? this.addicon.getWidth() : 0;
41743         tw += this.editicon ? this.editicon.getWidth() : 0;
41744         var x = w - tw;
41745         this.el.setWidth( this.adjustWidth('input', x));
41746             
41747         this.trigger.setStyle('left', x+'px');
41748         
41749         if(this.list && this.listWidth === undefined){
41750             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41751             this.list.setWidth(lw);
41752             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41753         }
41754         
41755     
41756         
41757     },
41758
41759     /**
41760      * Allow or prevent the user from directly editing the field text.  If false is passed,
41761      * the user will only be able to select from the items defined in the dropdown list.  This method
41762      * is the runtime equivalent of setting the 'editable' config option at config time.
41763      * @param {Boolean} value True to allow the user to directly edit the field text
41764      */
41765     setEditable : function(value){
41766         if(value == this.editable){
41767             return;
41768         }
41769         this.editable = value;
41770         if(!value){
41771             this.el.dom.setAttribute('readOnly', true);
41772             this.el.on('mousedown', this.onTriggerClick,  this);
41773             this.el.addClass('x-combo-noedit');
41774         }else{
41775             this.el.dom.setAttribute('readOnly', false);
41776             this.el.un('mousedown', this.onTriggerClick,  this);
41777             this.el.removeClass('x-combo-noedit');
41778         }
41779     },
41780
41781     // private
41782     onBeforeLoad : function(){
41783         if(!this.hasFocus){
41784             return;
41785         }
41786         this.innerList.update(this.loadingText ?
41787                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41788         this.restrictHeight();
41789         this.selectedIndex = -1;
41790     },
41791
41792     // private
41793     onLoad : function(){
41794         if(!this.hasFocus){
41795             return;
41796         }
41797         if(this.store.getCount() > 0){
41798             this.expand();
41799             this.restrictHeight();
41800             if(this.lastQuery == this.allQuery){
41801                 if(this.editable){
41802                     this.el.dom.select();
41803                 }
41804                 if(!this.selectByValue(this.value, true)){
41805                     this.select(0, true);
41806                 }
41807             }else{
41808                 this.selectNext();
41809                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41810                     this.taTask.delay(this.typeAheadDelay);
41811                 }
41812             }
41813         }else{
41814             this.onEmptyResults();
41815         }
41816         //this.el.focus();
41817     },
41818     // private
41819     onLoadException : function()
41820     {
41821         this.collapse();
41822         Roo.log(this.store.reader.jsonData);
41823         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41824             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41825         }
41826         
41827         
41828     },
41829     // private
41830     onTypeAhead : function(){
41831         if(this.store.getCount() > 0){
41832             var r = this.store.getAt(0);
41833             var newValue = r.data[this.displayField];
41834             var len = newValue.length;
41835             var selStart = this.getRawValue().length;
41836             if(selStart != len){
41837                 this.setRawValue(newValue);
41838                 this.selectText(selStart, newValue.length);
41839             }
41840         }
41841     },
41842
41843     // private
41844     onSelect : function(record, index){
41845         if(this.fireEvent('beforeselect', this, record, index) !== false){
41846             this.setFromData(index > -1 ? record.data : false);
41847             this.collapse();
41848             this.fireEvent('select', this, record, index);
41849         }
41850     },
41851
41852     /**
41853      * Returns the currently selected field value or empty string if no value is set.
41854      * @return {String} value The selected value
41855      */
41856     getValue : function(){
41857         if(this.valueField){
41858             return typeof this.value != 'undefined' ? this.value : '';
41859         }
41860         return Roo.form.ComboBox.superclass.getValue.call(this);
41861     },
41862
41863     /**
41864      * Clears any text/value currently set in the field
41865      */
41866     clearValue : function(){
41867         if(this.hiddenField){
41868             this.hiddenField.value = '';
41869         }
41870         this.value = '';
41871         this.setRawValue('');
41872         this.lastSelectionText = '';
41873         
41874     },
41875
41876     /**
41877      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41878      * will be displayed in the field.  If the value does not match the data value of an existing item,
41879      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41880      * Otherwise the field will be blank (although the value will still be set).
41881      * @param {String} value The value to match
41882      */
41883     setValue : function(v){
41884         var text = v;
41885         if(this.valueField){
41886             var r = this.findRecord(this.valueField, v);
41887             if(r){
41888                 text = r.data[this.displayField];
41889             }else if(this.valueNotFoundText !== undefined){
41890                 text = this.valueNotFoundText;
41891             }
41892         }
41893         this.lastSelectionText = text;
41894         if(this.hiddenField){
41895             this.hiddenField.value = v;
41896         }
41897         Roo.form.ComboBox.superclass.setValue.call(this, text);
41898         this.value = v;
41899     },
41900     /**
41901      * @property {Object} the last set data for the element
41902      */
41903     
41904     lastData : false,
41905     /**
41906      * Sets the value of the field based on a object which is related to the record format for the store.
41907      * @param {Object} value the value to set as. or false on reset?
41908      */
41909     setFromData : function(o){
41910         var dv = ''; // display value
41911         var vv = ''; // value value..
41912         this.lastData = o;
41913         if (this.displayField) {
41914             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41915         } else {
41916             // this is an error condition!!!
41917             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41918         }
41919         
41920         if(this.valueField){
41921             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41922         }
41923         if(this.hiddenField){
41924             this.hiddenField.value = vv;
41925             
41926             this.lastSelectionText = dv;
41927             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41928             this.value = vv;
41929             return;
41930         }
41931         // no hidden field.. - we store the value in 'value', but still display
41932         // display field!!!!
41933         this.lastSelectionText = dv;
41934         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41935         this.value = vv;
41936         
41937         
41938     },
41939     // private
41940     reset : function(){
41941         // overridden so that last data is reset..
41942         this.setValue(this.resetValue);
41943         this.originalValue = this.getValue();
41944         this.clearInvalid();
41945         this.lastData = false;
41946         if (this.view) {
41947             this.view.clearSelections();
41948         }
41949     },
41950     // private
41951     findRecord : function(prop, value){
41952         var record;
41953         if(this.store.getCount() > 0){
41954             this.store.each(function(r){
41955                 if(r.data[prop] == value){
41956                     record = r;
41957                     return false;
41958                 }
41959                 return true;
41960             });
41961         }
41962         return record;
41963     },
41964     
41965     getName: function()
41966     {
41967         // returns hidden if it's set..
41968         if (!this.rendered) {return ''};
41969         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
41970         
41971     },
41972     // private
41973     onViewMove : function(e, t){
41974         this.inKeyMode = false;
41975     },
41976
41977     // private
41978     onViewOver : function(e, t){
41979         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
41980             return;
41981         }
41982         var item = this.view.findItemFromChild(t);
41983         if(item){
41984             var index = this.view.indexOf(item);
41985             this.select(index, false);
41986         }
41987     },
41988
41989     // private
41990     onViewClick : function(doFocus)
41991     {
41992         var index = this.view.getSelectedIndexes()[0];
41993         var r = this.store.getAt(index);
41994         if(r){
41995             this.onSelect(r, index);
41996         }
41997         if(doFocus !== false && !this.blockFocus){
41998             this.el.focus();
41999         }
42000     },
42001
42002     // private
42003     restrictHeight : function(){
42004         this.innerList.dom.style.height = '';
42005         var inner = this.innerList.dom;
42006         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42007         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42008         this.list.beginUpdate();
42009         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42010         this.list.alignTo(this.el, this.listAlign);
42011         this.list.endUpdate();
42012     },
42013
42014     // private
42015     onEmptyResults : function(){
42016         this.collapse();
42017     },
42018
42019     /**
42020      * Returns true if the dropdown list is expanded, else false.
42021      */
42022     isExpanded : function(){
42023         return this.list.isVisible();
42024     },
42025
42026     /**
42027      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42028      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42029      * @param {String} value The data value of the item to select
42030      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42031      * selected item if it is not currently in view (defaults to true)
42032      * @return {Boolean} True if the value matched an item in the list, else false
42033      */
42034     selectByValue : function(v, scrollIntoView){
42035         if(v !== undefined && v !== null){
42036             var r = this.findRecord(this.valueField || this.displayField, v);
42037             if(r){
42038                 this.select(this.store.indexOf(r), scrollIntoView);
42039                 return true;
42040             }
42041         }
42042         return false;
42043     },
42044
42045     /**
42046      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42047      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42048      * @param {Number} index The zero-based index of the list item to select
42049      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42050      * selected item if it is not currently in view (defaults to true)
42051      */
42052     select : function(index, scrollIntoView){
42053         this.selectedIndex = index;
42054         this.view.select(index);
42055         if(scrollIntoView !== false){
42056             var el = this.view.getNode(index);
42057             if(el){
42058                 this.innerList.scrollChildIntoView(el, false);
42059             }
42060         }
42061     },
42062
42063     // private
42064     selectNext : function(){
42065         var ct = this.store.getCount();
42066         if(ct > 0){
42067             if(this.selectedIndex == -1){
42068                 this.select(0);
42069             }else if(this.selectedIndex < ct-1){
42070                 this.select(this.selectedIndex+1);
42071             }
42072         }
42073     },
42074
42075     // private
42076     selectPrev : function(){
42077         var ct = this.store.getCount();
42078         if(ct > 0){
42079             if(this.selectedIndex == -1){
42080                 this.select(0);
42081             }else if(this.selectedIndex != 0){
42082                 this.select(this.selectedIndex-1);
42083             }
42084         }
42085     },
42086
42087     // private
42088     onKeyUp : function(e){
42089         if(this.editable !== false && !e.isSpecialKey()){
42090             this.lastKey = e.getKey();
42091             this.dqTask.delay(this.queryDelay);
42092         }
42093     },
42094
42095     // private
42096     validateBlur : function(){
42097         return !this.list || !this.list.isVisible();   
42098     },
42099
42100     // private
42101     initQuery : function(){
42102         this.doQuery(this.getRawValue());
42103     },
42104
42105     // private
42106     doForce : function(){
42107         if(this.el.dom.value.length > 0){
42108             this.el.dom.value =
42109                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42110              
42111         }
42112     },
42113
42114     /**
42115      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42116      * query allowing the query action to be canceled if needed.
42117      * @param {String} query The SQL query to execute
42118      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42119      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42120      * saved in the current store (defaults to false)
42121      */
42122     doQuery : function(q, forceAll){
42123         if(q === undefined || q === null){
42124             q = '';
42125         }
42126         var qe = {
42127             query: q,
42128             forceAll: forceAll,
42129             combo: this,
42130             cancel:false
42131         };
42132         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42133             return false;
42134         }
42135         q = qe.query;
42136         forceAll = qe.forceAll;
42137         if(forceAll === true || (q.length >= this.minChars)){
42138             if(this.lastQuery != q || this.alwaysQuery){
42139                 this.lastQuery = q;
42140                 if(this.mode == 'local'){
42141                     this.selectedIndex = -1;
42142                     if(forceAll){
42143                         this.store.clearFilter();
42144                     }else{
42145                         this.store.filter(this.displayField, q);
42146                     }
42147                     this.onLoad();
42148                 }else{
42149                     this.store.baseParams[this.queryParam] = q;
42150                     this.store.load({
42151                         params: this.getParams(q)
42152                     });
42153                     this.expand();
42154                 }
42155             }else{
42156                 this.selectedIndex = -1;
42157                 this.onLoad();   
42158             }
42159         }
42160     },
42161
42162     // private
42163     getParams : function(q){
42164         var p = {};
42165         //p[this.queryParam] = q;
42166         if(this.pageSize){
42167             p.start = 0;
42168             p.limit = this.pageSize;
42169         }
42170         return p;
42171     },
42172
42173     /**
42174      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42175      */
42176     collapse : function(){
42177         if(!this.isExpanded()){
42178             return;
42179         }
42180         this.list.hide();
42181         Roo.get(document).un('mousedown', this.collapseIf, this);
42182         Roo.get(document).un('mousewheel', this.collapseIf, this);
42183         if (!this.editable) {
42184             Roo.get(document).un('keydown', this.listKeyPress, this);
42185         }
42186         this.fireEvent('collapse', this);
42187     },
42188
42189     // private
42190     collapseIf : function(e){
42191         if(!e.within(this.wrap) && !e.within(this.list)){
42192             this.collapse();
42193         }
42194     },
42195
42196     /**
42197      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42198      */
42199     expand : function(){
42200         if(this.isExpanded() || !this.hasFocus){
42201             return;
42202         }
42203         this.list.alignTo(this.el, this.listAlign);
42204         this.list.show();
42205         Roo.get(document).on('mousedown', this.collapseIf, this);
42206         Roo.get(document).on('mousewheel', this.collapseIf, this);
42207         if (!this.editable) {
42208             Roo.get(document).on('keydown', this.listKeyPress, this);
42209         }
42210         
42211         this.fireEvent('expand', this);
42212     },
42213
42214     // private
42215     // Implements the default empty TriggerField.onTriggerClick function
42216     onTriggerClick : function(){
42217         if(this.disabled){
42218             return;
42219         }
42220         if(this.isExpanded()){
42221             this.collapse();
42222             if (!this.blockFocus) {
42223                 this.el.focus();
42224             }
42225             
42226         }else {
42227             this.hasFocus = true;
42228             if(this.triggerAction == 'all') {
42229                 this.doQuery(this.allQuery, true);
42230             } else {
42231                 this.doQuery(this.getRawValue());
42232             }
42233             if (!this.blockFocus) {
42234                 this.el.focus();
42235             }
42236         }
42237     },
42238     listKeyPress : function(e)
42239     {
42240         //Roo.log('listkeypress');
42241         // scroll to first matching element based on key pres..
42242         if (e.isSpecialKey()) {
42243             return false;
42244         }
42245         var k = String.fromCharCode(e.getKey()).toUpperCase();
42246         //Roo.log(k);
42247         var match  = false;
42248         var csel = this.view.getSelectedNodes();
42249         var cselitem = false;
42250         if (csel.length) {
42251             var ix = this.view.indexOf(csel[0]);
42252             cselitem  = this.store.getAt(ix);
42253             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42254                 cselitem = false;
42255             }
42256             
42257         }
42258         
42259         this.store.each(function(v) { 
42260             if (cselitem) {
42261                 // start at existing selection.
42262                 if (cselitem.id == v.id) {
42263                     cselitem = false;
42264                 }
42265                 return;
42266             }
42267                 
42268             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42269                 match = this.store.indexOf(v);
42270                 return false;
42271             }
42272         }, this);
42273         
42274         if (match === false) {
42275             return true; // no more action?
42276         }
42277         // scroll to?
42278         this.view.select(match);
42279         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42280         sn.scrollIntoView(sn.dom.parentNode, false);
42281     } 
42282
42283     /** 
42284     * @cfg {Boolean} grow 
42285     * @hide 
42286     */
42287     /** 
42288     * @cfg {Number} growMin 
42289     * @hide 
42290     */
42291     /** 
42292     * @cfg {Number} growMax 
42293     * @hide 
42294     */
42295     /**
42296      * @hide
42297      * @method autoSize
42298      */
42299 });/*
42300  * Copyright(c) 2010-2012, Roo J Solutions Limited
42301  *
42302  * Licence LGPL
42303  *
42304  */
42305
42306 /**
42307  * @class Roo.form.ComboBoxArray
42308  * @extends Roo.form.TextField
42309  * A facebook style adder... for lists of email / people / countries  etc...
42310  * pick multiple items from a combo box, and shows each one.
42311  *
42312  *  Fred [x]  Brian [x]  [Pick another |v]
42313  *
42314  *
42315  *  For this to work: it needs various extra information
42316  *    - normal combo problay has
42317  *      name, hiddenName
42318  *    + displayField, valueField
42319  *
42320  *    For our purpose...
42321  *
42322  *
42323  *   If we change from 'extends' to wrapping...
42324  *   
42325  *  
42326  *
42327  
42328  
42329  * @constructor
42330  * Create a new ComboBoxArray.
42331  * @param {Object} config Configuration options
42332  */
42333  
42334
42335 Roo.form.ComboBoxArray = function(config)
42336 {
42337     this.addEvents({
42338         /**
42339          * @event beforeremove
42340          * Fires before remove the value from the list
42341              * @param {Roo.form.ComboBoxArray} _self This combo box array
42342              * @param {Roo.form.ComboBoxArray.Item} item removed item
42343              */
42344         'beforeremove' : true,
42345         /**
42346          * @event remove
42347          * Fires when remove the value from the list
42348              * @param {Roo.form.ComboBoxArray} _self This combo box array
42349              * @param {Roo.form.ComboBoxArray.Item} item removed item
42350              */
42351         'remove' : true
42352         
42353         
42354     });
42355     
42356     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42357     
42358     this.items = new Roo.util.MixedCollection(false);
42359     
42360     // construct the child combo...
42361     
42362     
42363     
42364     
42365    
42366     
42367 }
42368
42369  
42370 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42371
42372     /**
42373      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42374      */
42375     
42376     lastData : false,
42377     
42378     // behavies liek a hiddne field
42379     inputType:      'hidden',
42380     /**
42381      * @cfg {Number} width The width of the box that displays the selected element
42382      */ 
42383     width:          300,
42384
42385     
42386     
42387     /**
42388      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42389      */
42390     name : false,
42391     /**
42392      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42393      */
42394     hiddenName : false,
42395       /**
42396      * @cfg {String} seperator    The value seperator normally ',' 
42397      */
42398     seperator : ',',
42399     
42400     // private the array of items that are displayed..
42401     items  : false,
42402     // private - the hidden field el.
42403     hiddenEl : false,
42404     // private - the filed el..
42405     el : false,
42406     
42407     //validateValue : function() { return true; }, // all values are ok!
42408     //onAddClick: function() { },
42409     
42410     onRender : function(ct, position) 
42411     {
42412         
42413         // create the standard hidden element
42414         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42415         
42416         
42417         // give fake names to child combo;
42418         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42419         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42420         
42421         this.combo = Roo.factory(this.combo, Roo.form);
42422         this.combo.onRender(ct, position);
42423         if (typeof(this.combo.width) != 'undefined') {
42424             this.combo.onResize(this.combo.width,0);
42425         }
42426         
42427         this.combo.initEvents();
42428         
42429         // assigned so form know we need to do this..
42430         this.store          = this.combo.store;
42431         this.valueField     = this.combo.valueField;
42432         this.displayField   = this.combo.displayField ;
42433         
42434         
42435         this.combo.wrap.addClass('x-cbarray-grp');
42436         
42437         var cbwrap = this.combo.wrap.createChild(
42438             {tag: 'div', cls: 'x-cbarray-cb'},
42439             this.combo.el.dom
42440         );
42441         
42442              
42443         this.hiddenEl = this.combo.wrap.createChild({
42444             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42445         });
42446         this.el = this.combo.wrap.createChild({
42447             tag: 'input',  type:'hidden' , name: this.name, value : ''
42448         });
42449          //   this.el.dom.removeAttribute("name");
42450         
42451         
42452         this.outerWrap = this.combo.wrap;
42453         this.wrap = cbwrap;
42454         
42455         this.outerWrap.setWidth(this.width);
42456         this.outerWrap.dom.removeChild(this.el.dom);
42457         
42458         this.wrap.dom.appendChild(this.el.dom);
42459         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42460         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42461         
42462         this.combo.trigger.setStyle('position','relative');
42463         this.combo.trigger.setStyle('left', '0px');
42464         this.combo.trigger.setStyle('top', '2px');
42465         
42466         this.combo.el.setStyle('vertical-align', 'text-bottom');
42467         
42468         //this.trigger.setStyle('vertical-align', 'top');
42469         
42470         // this should use the code from combo really... on('add' ....)
42471         if (this.adder) {
42472             
42473         
42474             this.adder = this.outerWrap.createChild(
42475                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42476             var _t = this;
42477             this.adder.on('click', function(e) {
42478                 _t.fireEvent('adderclick', this, e);
42479             }, _t);
42480         }
42481         //var _t = this;
42482         //this.adder.on('click', this.onAddClick, _t);
42483         
42484         
42485         this.combo.on('select', function(cb, rec, ix) {
42486             this.addItem(rec.data);
42487             
42488             cb.setValue('');
42489             cb.el.dom.value = '';
42490             //cb.lastData = rec.data;
42491             // add to list
42492             
42493         }, this);
42494         
42495         
42496     },
42497     
42498     
42499     getName: function()
42500     {
42501         // returns hidden if it's set..
42502         if (!this.rendered) {return ''};
42503         return  this.hiddenName ? this.hiddenName : this.name;
42504         
42505     },
42506     
42507     
42508     onResize: function(w, h){
42509         
42510         return;
42511         // not sure if this is needed..
42512         //this.combo.onResize(w,h);
42513         
42514         if(typeof w != 'number'){
42515             // we do not handle it!?!?
42516             return;
42517         }
42518         var tw = this.combo.trigger.getWidth();
42519         tw += this.addicon ? this.addicon.getWidth() : 0;
42520         tw += this.editicon ? this.editicon.getWidth() : 0;
42521         var x = w - tw;
42522         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42523             
42524         this.combo.trigger.setStyle('left', '0px');
42525         
42526         if(this.list && this.listWidth === undefined){
42527             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42528             this.list.setWidth(lw);
42529             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42530         }
42531         
42532     
42533         
42534     },
42535     
42536     addItem: function(rec)
42537     {
42538         var valueField = this.combo.valueField;
42539         var displayField = this.combo.displayField;
42540         
42541         if (this.items.indexOfKey(rec[valueField]) > -1) {
42542             //console.log("GOT " + rec.data.id);
42543             return;
42544         }
42545         
42546         var x = new Roo.form.ComboBoxArray.Item({
42547             //id : rec[this.idField],
42548             data : rec,
42549             displayField : displayField ,
42550             tipField : displayField ,
42551             cb : this
42552         });
42553         // use the 
42554         this.items.add(rec[valueField],x);
42555         // add it before the element..
42556         this.updateHiddenEl();
42557         x.render(this.outerWrap, this.wrap.dom);
42558         // add the image handler..
42559     },
42560     
42561     updateHiddenEl : function()
42562     {
42563         this.validate();
42564         if (!this.hiddenEl) {
42565             return;
42566         }
42567         var ar = [];
42568         var idField = this.combo.valueField;
42569         
42570         this.items.each(function(f) {
42571             ar.push(f.data[idField]);
42572         });
42573         this.hiddenEl.dom.value = ar.join(this.seperator);
42574         this.validate();
42575     },
42576     
42577     reset : function()
42578     {
42579         this.items.clear();
42580         
42581         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42582            el.remove();
42583         });
42584         
42585         this.el.dom.value = '';
42586         if (this.hiddenEl) {
42587             this.hiddenEl.dom.value = '';
42588         }
42589         
42590     },
42591     getValue: function()
42592     {
42593         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42594     },
42595     setValue: function(v) // not a valid action - must use addItems..
42596     {
42597         
42598         this.reset();
42599          
42600         if (this.store.isLocal && (typeof(v) == 'string')) {
42601             // then we can use the store to find the values..
42602             // comma seperated at present.. this needs to allow JSON based encoding..
42603             this.hiddenEl.value  = v;
42604             var v_ar = [];
42605             Roo.each(v.split(this.seperator), function(k) {
42606                 Roo.log("CHECK " + this.valueField + ',' + k);
42607                 var li = this.store.query(this.valueField, k);
42608                 if (!li.length) {
42609                     return;
42610                 }
42611                 var add = {};
42612                 add[this.valueField] = k;
42613                 add[this.displayField] = li.item(0).data[this.displayField];
42614                 
42615                 this.addItem(add);
42616             }, this) 
42617              
42618         }
42619         if (typeof(v) == 'object' ) {
42620             // then let's assume it's an array of objects..
42621             Roo.each(v, function(l) {
42622                 var add = l;
42623                 if (typeof(l) == 'string') {
42624                     add = {};
42625                     add[this.valueField] = l;
42626                     add[this.displayField] = l
42627                 }
42628                 this.addItem(add);
42629             }, this);
42630              
42631         }
42632         
42633         
42634     },
42635     setFromData: function(v)
42636     {
42637         // this recieves an object, if setValues is called.
42638         this.reset();
42639         this.el.dom.value = v[this.displayField];
42640         this.hiddenEl.dom.value = v[this.valueField];
42641         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42642             return;
42643         }
42644         var kv = v[this.valueField];
42645         var dv = v[this.displayField];
42646         kv = typeof(kv) != 'string' ? '' : kv;
42647         dv = typeof(dv) != 'string' ? '' : dv;
42648         
42649         
42650         var keys = kv.split(this.seperator);
42651         var display = dv.split(this.seperator);
42652         for (var i = 0 ; i < keys.length; i++) {
42653             add = {};
42654             add[this.valueField] = keys[i];
42655             add[this.displayField] = display[i];
42656             this.addItem(add);
42657         }
42658       
42659         
42660     },
42661     
42662     /**
42663      * Validates the combox array value
42664      * @return {Boolean} True if the value is valid, else false
42665      */
42666     validate : function(){
42667         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42668             this.clearInvalid();
42669             return true;
42670         }
42671         return false;
42672     },
42673     
42674     validateValue : function(value){
42675         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42676         
42677     },
42678     
42679     /*@
42680      * overide
42681      * 
42682      */
42683     isDirty : function() {
42684         if(this.disabled) {
42685             return false;
42686         }
42687         
42688         try {
42689             var d = Roo.decode(String(this.originalValue));
42690         } catch (e) {
42691             return String(this.getValue()) !== String(this.originalValue);
42692         }
42693         
42694         var originalValue = [];
42695         
42696         for (var i = 0; i < d.length; i++){
42697             originalValue.push(d[i][this.valueField]);
42698         }
42699         
42700         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42701         
42702     }
42703     
42704 });
42705
42706
42707
42708 /**
42709  * @class Roo.form.ComboBoxArray.Item
42710  * @extends Roo.BoxComponent
42711  * A selected item in the list
42712  *  Fred [x]  Brian [x]  [Pick another |v]
42713  * 
42714  * @constructor
42715  * Create a new item.
42716  * @param {Object} config Configuration options
42717  */
42718  
42719 Roo.form.ComboBoxArray.Item = function(config) {
42720     config.id = Roo.id();
42721     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42722 }
42723
42724 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42725     data : {},
42726     cb: false,
42727     displayField : false,
42728     tipField : false,
42729     
42730     
42731     defaultAutoCreate : {
42732         tag: 'div',
42733         cls: 'x-cbarray-item',
42734         cn : [ 
42735             { tag: 'div' },
42736             {
42737                 tag: 'img',
42738                 width:16,
42739                 height : 16,
42740                 src : Roo.BLANK_IMAGE_URL ,
42741                 align: 'center'
42742             }
42743         ]
42744         
42745     },
42746     
42747  
42748     onRender : function(ct, position)
42749     {
42750         Roo.form.Field.superclass.onRender.call(this, ct, position);
42751         
42752         if(!this.el){
42753             var cfg = this.getAutoCreate();
42754             this.el = ct.createChild(cfg, position);
42755         }
42756         
42757         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42758         
42759         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42760             this.cb.renderer(this.data) :
42761             String.format('{0}',this.data[this.displayField]);
42762         
42763             
42764         this.el.child('div').dom.setAttribute('qtip',
42765                         String.format('{0}',this.data[this.tipField])
42766         );
42767         
42768         this.el.child('img').on('click', this.remove, this);
42769         
42770     },
42771    
42772     remove : function()
42773     {
42774         if(this.cb.disabled){
42775             return;
42776         }
42777         
42778         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42779             this.cb.items.remove(this);
42780             this.el.child('img').un('click', this.remove, this);
42781             this.el.remove();
42782             this.cb.updateHiddenEl();
42783
42784             this.cb.fireEvent('remove', this.cb, this);
42785         }
42786         
42787     }
42788 });/*
42789  * RooJS Library 1.1.1
42790  * Copyright(c) 2008-2011  Alan Knowles
42791  *
42792  * License - LGPL
42793  */
42794  
42795
42796 /**
42797  * @class Roo.form.ComboNested
42798  * @extends Roo.form.ComboBox
42799  * A combobox for that allows selection of nested items in a list,
42800  * eg.
42801  *
42802  *  Book
42803  *    -> red
42804  *    -> green
42805  *  Table
42806  *    -> square
42807  *      ->red
42808  *      ->green
42809  *    -> rectangle
42810  *      ->green
42811  *      
42812  * 
42813  * @constructor
42814  * Create a new ComboNested
42815  * @param {Object} config Configuration options
42816  */
42817 Roo.form.ComboNested = function(config){
42818     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42819     // should verify some data...
42820     // like
42821     // hiddenName = required..
42822     // displayField = required
42823     // valudField == required
42824     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42825     var _t = this;
42826     Roo.each(req, function(e) {
42827         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42828             throw "Roo.form.ComboNested : missing value for: " + e;
42829         }
42830     });
42831      
42832     
42833 };
42834
42835 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42836    
42837     /*
42838      * @config {Number} max Number of columns to show
42839      */
42840     
42841     maxColumns : 3,
42842    
42843     list : null, // the outermost div..
42844     innerLists : null, // the
42845     views : null,
42846     stores : null,
42847     // private
42848     loadingChildren : false,
42849     
42850     onRender : function(ct, position)
42851     {
42852         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42853         
42854         if(this.hiddenName){
42855             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42856                     'before', true);
42857             this.hiddenField.value =
42858                 this.hiddenValue !== undefined ? this.hiddenValue :
42859                 this.value !== undefined ? this.value : '';
42860
42861             // prevent input submission
42862             this.el.dom.removeAttribute('name');
42863              
42864              
42865         }
42866         
42867         if(Roo.isGecko){
42868             this.el.dom.setAttribute('autocomplete', 'off');
42869         }
42870
42871         var cls = 'x-combo-list';
42872
42873         this.list = new Roo.Layer({
42874             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42875         });
42876
42877         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42878         this.list.setWidth(lw);
42879         this.list.swallowEvent('mousewheel');
42880         this.assetHeight = 0;
42881
42882         if(this.title){
42883             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42884             this.assetHeight += this.header.getHeight();
42885         }
42886         this.innerLists = [];
42887         this.views = [];
42888         this.stores = [];
42889         for (var i =0 ; i < this.maxColumns; i++) {
42890             this.onRenderList( cls, i);
42891         }
42892         
42893         // always needs footer, as we are going to have an 'OK' button.
42894         this.footer = this.list.createChild({cls:cls+'-ft'});
42895         this.pageTb = new Roo.Toolbar(this.footer);  
42896         var _this = this;
42897         this.pageTb.add(  {
42898             
42899             text: 'Done',
42900             handler: function()
42901             {
42902                 _this.collapse();
42903             }
42904         });
42905         
42906         if ( this.allowBlank && !this.disableClear) {
42907             
42908             this.pageTb.add(new Roo.Toolbar.Fill(), {
42909                 cls: 'x-btn-icon x-btn-clear',
42910                 text: '&#160;',
42911                 handler: function()
42912                 {
42913                     _this.collapse();
42914                     _this.clearValue();
42915                     _this.onSelect(false, -1);
42916                 }
42917             });
42918         }
42919         if (this.footer) {
42920             this.assetHeight += this.footer.getHeight();
42921         }
42922         
42923     },
42924     onRenderList : function (  cls, i)
42925     {
42926         
42927         var lw = Math.floor(
42928                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
42929         );
42930         
42931         this.list.setWidth(lw); // default to '1'
42932
42933         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
42934         //il.on('mouseover', this.onViewOver, this, { list:  i });
42935         //il.on('mousemove', this.onViewMove, this, { list:  i });
42936         il.setWidth(lw);
42937         il.setStyle({ 'overflow-x' : 'hidden'});
42938
42939         if(!this.tpl){
42940             this.tpl = new Roo.Template({
42941                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
42942                 isEmpty: function (value, allValues) {
42943                     //Roo.log(value);
42944                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
42945                     return dl ? 'has-children' : 'no-children'
42946                 }
42947             });
42948         }
42949         
42950         var store  = this.store;
42951         if (i > 0) {
42952             store  = new Roo.data.SimpleStore({
42953                 //fields : this.store.reader.meta.fields,
42954                 reader : this.store.reader,
42955                 data : [ ]
42956             });
42957         }
42958         this.stores[i]  = store;
42959                   
42960         var view = this.views[i] = new Roo.View(
42961             il,
42962             this.tpl,
42963             {
42964                 singleSelect:true,
42965                 store: store,
42966                 selectedClass: this.selectedClass
42967             }
42968         );
42969         view.getEl().setWidth(lw);
42970         view.getEl().setStyle({
42971             position: i < 1 ? 'relative' : 'absolute',
42972             top: 0,
42973             left: (i * lw ) + 'px',
42974             display : i > 0 ? 'none' : 'block'
42975         });
42976         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
42977         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
42978         //view.on('click', this.onViewClick, this, { list : i });
42979
42980         store.on('beforeload', this.onBeforeLoad, this);
42981         store.on('load',  this.onLoad, this, { list  : i});
42982         store.on('loadexception', this.onLoadException, this);
42983
42984         // hide the other vies..
42985         
42986         
42987         
42988     },
42989       
42990     restrictHeight : function()
42991     {
42992         var mh = 0;
42993         Roo.each(this.innerLists, function(il,i) {
42994             var el = this.views[i].getEl();
42995             el.dom.style.height = '';
42996             var inner = el.dom;
42997             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
42998             // only adjust heights on other ones..
42999             mh = Math.max(h, mh);
43000             if (i < 1) {
43001                 
43002                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43003                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43004                
43005             }
43006             
43007             
43008         }, this);
43009         
43010         this.list.beginUpdate();
43011         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43012         this.list.alignTo(this.el, this.listAlign);
43013         this.list.endUpdate();
43014         
43015     },
43016      
43017     
43018     // -- store handlers..
43019     // private
43020     onBeforeLoad : function()
43021     {
43022         if(!this.hasFocus){
43023             return;
43024         }
43025         this.innerLists[0].update(this.loadingText ?
43026                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43027         this.restrictHeight();
43028         this.selectedIndex = -1;
43029     },
43030     // private
43031     onLoad : function(a,b,c,d)
43032     {
43033         if (!this.loadingChildren) {
43034             // then we are loading the top level. - hide the children
43035             for (var i = 1;i < this.views.length; i++) {
43036                 this.views[i].getEl().setStyle({ display : 'none' });
43037             }
43038             var lw = Math.floor(
43039                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43040             );
43041         
43042              this.list.setWidth(lw); // default to '1'
43043
43044             
43045         }
43046         if(!this.hasFocus){
43047             return;
43048         }
43049         
43050         if(this.store.getCount() > 0) {
43051             this.expand();
43052             this.restrictHeight();   
43053         } else {
43054             this.onEmptyResults();
43055         }
43056         
43057         if (!this.loadingChildren) {
43058             this.selectActive();
43059         }
43060         /*
43061         this.stores[1].loadData([]);
43062         this.stores[2].loadData([]);
43063         this.views
43064         */    
43065     
43066         //this.el.focus();
43067     },
43068     
43069     
43070     // private
43071     onLoadException : function()
43072     {
43073         this.collapse();
43074         Roo.log(this.store.reader.jsonData);
43075         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43076             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43077         }
43078         
43079         
43080     },
43081     // no cleaning of leading spaces on blur here.
43082     cleanLeadingSpace : function(e) { },
43083     
43084
43085     onSelectChange : function (view, sels, opts )
43086     {
43087         var ix = view.getSelectedIndexes();
43088          
43089         if (opts.list > this.maxColumns - 2) {
43090             if (view.store.getCount()<  1) {
43091                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43092
43093             } else  {
43094                 if (ix.length) {
43095                     // used to clear ?? but if we are loading unselected 
43096                     this.setFromData(view.store.getAt(ix[0]).data);
43097                 }
43098                 
43099             }
43100             
43101             return;
43102         }
43103         
43104         if (!ix.length) {
43105             // this get's fired when trigger opens..
43106            // this.setFromData({});
43107             var str = this.stores[opts.list+1];
43108             str.data.clear(); // removeall wihtout the fire events..
43109             return;
43110         }
43111         
43112         var rec = view.store.getAt(ix[0]);
43113          
43114         this.setFromData(rec.data);
43115         this.fireEvent('select', this, rec, ix[0]);
43116         
43117         var lw = Math.floor(
43118              (
43119                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43120              ) / this.maxColumns
43121         );
43122         this.loadingChildren = true;
43123         this.stores[opts.list+1].loadDataFromChildren( rec );
43124         this.loadingChildren = false;
43125         var dl = this.stores[opts.list+1]. getTotalCount();
43126         
43127         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43128         
43129         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43130         for (var i = opts.list+2; i < this.views.length;i++) {
43131             this.views[i].getEl().setStyle({ display : 'none' });
43132         }
43133         
43134         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43135         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43136         
43137         if (this.isLoading) {
43138            // this.selectActive(opts.list);
43139         }
43140          
43141     },
43142     
43143     
43144     
43145     
43146     onDoubleClick : function()
43147     {
43148         this.collapse(); //??
43149     },
43150     
43151      
43152     
43153     
43154     
43155     // private
43156     recordToStack : function(store, prop, value, stack)
43157     {
43158         var cstore = new Roo.data.SimpleStore({
43159             //fields : this.store.reader.meta.fields, // we need array reader.. for
43160             reader : this.store.reader,
43161             data : [ ]
43162         });
43163         var _this = this;
43164         var record  = false;
43165         var srec = false;
43166         if(store.getCount() < 1){
43167             return false;
43168         }
43169         store.each(function(r){
43170             if(r.data[prop] == value){
43171                 record = r;
43172             srec = r;
43173                 return false;
43174             }
43175             if (r.data.cn && r.data.cn.length) {
43176                 cstore.loadDataFromChildren( r);
43177                 var cret = _this.recordToStack(cstore, prop, value, stack);
43178                 if (cret !== false) {
43179                     record = cret;
43180                     srec = r;
43181                     return false;
43182                 }
43183             }
43184              
43185             return true;
43186         });
43187         if (record == false) {
43188             return false
43189         }
43190         stack.unshift(srec);
43191         return record;
43192     },
43193     
43194     /*
43195      * find the stack of stores that match our value.
43196      *
43197      * 
43198      */
43199     
43200     selectActive : function ()
43201     {
43202         // if store is not loaded, then we will need to wait for that to happen first.
43203         var stack = [];
43204         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43205         for (var i = 0; i < stack.length; i++ ) {
43206             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43207         }
43208         
43209     }
43210         
43211          
43212     
43213     
43214     
43215     
43216 });/*
43217  * Based on:
43218  * Ext JS Library 1.1.1
43219  * Copyright(c) 2006-2007, Ext JS, LLC.
43220  *
43221  * Originally Released Under LGPL - original licence link has changed is not relivant.
43222  *
43223  * Fork - LGPL
43224  * <script type="text/javascript">
43225  */
43226 /**
43227  * @class Roo.form.Checkbox
43228  * @extends Roo.form.Field
43229  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43230  * @constructor
43231  * Creates a new Checkbox
43232  * @param {Object} config Configuration options
43233  */
43234 Roo.form.Checkbox = function(config){
43235     Roo.form.Checkbox.superclass.constructor.call(this, config);
43236     this.addEvents({
43237         /**
43238          * @event check
43239          * Fires when the checkbox is checked or unchecked.
43240              * @param {Roo.form.Checkbox} this This checkbox
43241              * @param {Boolean} checked The new checked value
43242              */
43243         check : true
43244     });
43245 };
43246
43247 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43248     /**
43249      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43250      */
43251     focusClass : undefined,
43252     /**
43253      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43254      */
43255     fieldClass: "x-form-field",
43256     /**
43257      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43258      */
43259     checked: false,
43260     /**
43261      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43262      * {tag: "input", type: "checkbox", autocomplete: "off"})
43263      */
43264     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43265     /**
43266      * @cfg {String} boxLabel The text that appears beside the checkbox
43267      */
43268     boxLabel : "",
43269     /**
43270      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43271      */  
43272     inputValue : '1',
43273     /**
43274      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43275      */
43276      valueOff: '0', // value when not checked..
43277
43278     actionMode : 'viewEl', 
43279     //
43280     // private
43281     itemCls : 'x-menu-check-item x-form-item',
43282     groupClass : 'x-menu-group-item',
43283     inputType : 'hidden',
43284     
43285     
43286     inSetChecked: false, // check that we are not calling self...
43287     
43288     inputElement: false, // real input element?
43289     basedOn: false, // ????
43290     
43291     isFormField: true, // not sure where this is needed!!!!
43292
43293     onResize : function(){
43294         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43295         if(!this.boxLabel){
43296             this.el.alignTo(this.wrap, 'c-c');
43297         }
43298     },
43299
43300     initEvents : function(){
43301         Roo.form.Checkbox.superclass.initEvents.call(this);
43302         this.el.on("click", this.onClick,  this);
43303         this.el.on("change", this.onClick,  this);
43304     },
43305
43306
43307     getResizeEl : function(){
43308         return this.wrap;
43309     },
43310
43311     getPositionEl : function(){
43312         return this.wrap;
43313     },
43314
43315     // private
43316     onRender : function(ct, position){
43317         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43318         /*
43319         if(this.inputValue !== undefined){
43320             this.el.dom.value = this.inputValue;
43321         }
43322         */
43323         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43324         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43325         var viewEl = this.wrap.createChild({ 
43326             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43327         this.viewEl = viewEl;   
43328         this.wrap.on('click', this.onClick,  this); 
43329         
43330         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43331         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43332         
43333         
43334         
43335         if(this.boxLabel){
43336             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43337         //    viewEl.on('click', this.onClick,  this); 
43338         }
43339         //if(this.checked){
43340             this.setChecked(this.checked);
43341         //}else{
43342             //this.checked = this.el.dom;
43343         //}
43344
43345     },
43346
43347     // private
43348     initValue : Roo.emptyFn,
43349
43350     /**
43351      * Returns the checked state of the checkbox.
43352      * @return {Boolean} True if checked, else false
43353      */
43354     getValue : function(){
43355         if(this.el){
43356             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43357         }
43358         return this.valueOff;
43359         
43360     },
43361
43362         // private
43363     onClick : function(){ 
43364         if (this.disabled) {
43365             return;
43366         }
43367         this.setChecked(!this.checked);
43368
43369         //if(this.el.dom.checked != this.checked){
43370         //    this.setValue(this.el.dom.checked);
43371        // }
43372     },
43373
43374     /**
43375      * Sets the checked state of the checkbox.
43376      * On is always based on a string comparison between inputValue and the param.
43377      * @param {Boolean/String} value - the value to set 
43378      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43379      */
43380     setValue : function(v,suppressEvent){
43381         
43382         
43383         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43384         //if(this.el && this.el.dom){
43385         //    this.el.dom.checked = this.checked;
43386         //    this.el.dom.defaultChecked = this.checked;
43387         //}
43388         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43389         //this.fireEvent("check", this, this.checked);
43390     },
43391     // private..
43392     setChecked : function(state,suppressEvent)
43393     {
43394         if (this.inSetChecked) {
43395             this.checked = state;
43396             return;
43397         }
43398         
43399     
43400         if(this.wrap){
43401             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43402         }
43403         this.checked = state;
43404         if(suppressEvent !== true){
43405             this.fireEvent('check', this, state);
43406         }
43407         this.inSetChecked = true;
43408         this.el.dom.value = state ? this.inputValue : this.valueOff;
43409         this.inSetChecked = false;
43410         
43411     },
43412     // handle setting of hidden value by some other method!!?!?
43413     setFromHidden: function()
43414     {
43415         if(!this.el){
43416             return;
43417         }
43418         //console.log("SET FROM HIDDEN");
43419         //alert('setFrom hidden');
43420         this.setValue(this.el.dom.value);
43421     },
43422     
43423     onDestroy : function()
43424     {
43425         if(this.viewEl){
43426             Roo.get(this.viewEl).remove();
43427         }
43428          
43429         Roo.form.Checkbox.superclass.onDestroy.call(this);
43430     },
43431     
43432     setBoxLabel : function(str)
43433     {
43434         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43435     }
43436
43437 });/*
43438  * Based on:
43439  * Ext JS Library 1.1.1
43440  * Copyright(c) 2006-2007, Ext JS, LLC.
43441  *
43442  * Originally Released Under LGPL - original licence link has changed is not relivant.
43443  *
43444  * Fork - LGPL
43445  * <script type="text/javascript">
43446  */
43447  
43448 /**
43449  * @class Roo.form.Radio
43450  * @extends Roo.form.Checkbox
43451  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43452  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43453  * @constructor
43454  * Creates a new Radio
43455  * @param {Object} config Configuration options
43456  */
43457 Roo.form.Radio = function(){
43458     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43459 };
43460 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43461     inputType: 'radio',
43462
43463     /**
43464      * If this radio is part of a group, it will return the selected value
43465      * @return {String}
43466      */
43467     getGroupValue : function(){
43468         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43469     },
43470     
43471     
43472     onRender : function(ct, position){
43473         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43474         
43475         if(this.inputValue !== undefined){
43476             this.el.dom.value = this.inputValue;
43477         }
43478          
43479         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43480         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43481         //var viewEl = this.wrap.createChild({ 
43482         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43483         //this.viewEl = viewEl;   
43484         //this.wrap.on('click', this.onClick,  this); 
43485         
43486         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43487         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43488         
43489         
43490         
43491         if(this.boxLabel){
43492             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43493         //    viewEl.on('click', this.onClick,  this); 
43494         }
43495          if(this.checked){
43496             this.el.dom.checked =   'checked' ;
43497         }
43498          
43499     } 
43500     
43501     
43502 });//<script type="text/javascript">
43503
43504 /*
43505  * Based  Ext JS Library 1.1.1
43506  * Copyright(c) 2006-2007, Ext JS, LLC.
43507  * LGPL
43508  *
43509  */
43510  
43511 /**
43512  * @class Roo.HtmlEditorCore
43513  * @extends Roo.Component
43514  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43515  *
43516  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43517  */
43518
43519 Roo.HtmlEditorCore = function(config){
43520     
43521     
43522     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43523     
43524     
43525     this.addEvents({
43526         /**
43527          * @event initialize
43528          * Fires when the editor is fully initialized (including the iframe)
43529          * @param {Roo.HtmlEditorCore} this
43530          */
43531         initialize: true,
43532         /**
43533          * @event activate
43534          * Fires when the editor is first receives the focus. Any insertion must wait
43535          * until after this event.
43536          * @param {Roo.HtmlEditorCore} this
43537          */
43538         activate: true,
43539          /**
43540          * @event beforesync
43541          * Fires before the textarea is updated with content from the editor iframe. Return false
43542          * to cancel the sync.
43543          * @param {Roo.HtmlEditorCore} this
43544          * @param {String} html
43545          */
43546         beforesync: true,
43547          /**
43548          * @event beforepush
43549          * Fires before the iframe editor is updated with content from the textarea. Return false
43550          * to cancel the push.
43551          * @param {Roo.HtmlEditorCore} this
43552          * @param {String} html
43553          */
43554         beforepush: true,
43555          /**
43556          * @event sync
43557          * Fires when the textarea is updated with content from the editor iframe.
43558          * @param {Roo.HtmlEditorCore} this
43559          * @param {String} html
43560          */
43561         sync: true,
43562          /**
43563          * @event push
43564          * Fires when the iframe editor is updated with content from the textarea.
43565          * @param {Roo.HtmlEditorCore} this
43566          * @param {String} html
43567          */
43568         push: true,
43569         
43570         /**
43571          * @event editorevent
43572          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43573          * @param {Roo.HtmlEditorCore} this
43574          */
43575         editorevent: true
43576         
43577     });
43578     
43579     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43580     
43581     // defaults : white / black...
43582     this.applyBlacklists();
43583     
43584     
43585     
43586 };
43587
43588
43589 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43590
43591
43592      /**
43593      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43594      */
43595     
43596     owner : false,
43597     
43598      /**
43599      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43600      *                        Roo.resizable.
43601      */
43602     resizable : false,
43603      /**
43604      * @cfg {Number} height (in pixels)
43605      */   
43606     height: 300,
43607    /**
43608      * @cfg {Number} width (in pixels)
43609      */   
43610     width: 500,
43611     
43612     /**
43613      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43614      * 
43615      */
43616     stylesheets: false,
43617     
43618     // id of frame..
43619     frameId: false,
43620     
43621     // private properties
43622     validationEvent : false,
43623     deferHeight: true,
43624     initialized : false,
43625     activated : false,
43626     sourceEditMode : false,
43627     onFocus : Roo.emptyFn,
43628     iframePad:3,
43629     hideMode:'offsets',
43630     
43631     clearUp: true,
43632     
43633     // blacklist + whitelisted elements..
43634     black: false,
43635     white: false,
43636      
43637     bodyCls : '',
43638
43639     /**
43640      * Protected method that will not generally be called directly. It
43641      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43642      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43643      */
43644     getDocMarkup : function(){
43645         // body styles..
43646         var st = '';
43647         
43648         // inherit styels from page...?? 
43649         if (this.stylesheets === false) {
43650             
43651             Roo.get(document.head).select('style').each(function(node) {
43652                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43653             });
43654             
43655             Roo.get(document.head).select('link').each(function(node) { 
43656                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43657             });
43658             
43659         } else if (!this.stylesheets.length) {
43660                 // simple..
43661                 st = '<style type="text/css">' +
43662                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43663                    '</style>';
43664         } else {
43665             for (var i in this.stylesheets) { 
43666                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43667             }
43668             
43669         }
43670         
43671         st +=  '<style type="text/css">' +
43672             'IMG { cursor: pointer } ' +
43673         '</style>';
43674
43675         var cls = 'roo-htmleditor-body';
43676         
43677         if(this.bodyCls.length){
43678             cls += ' ' + this.bodyCls;
43679         }
43680         
43681         return '<html><head>' + st  +
43682             //<style type="text/css">' +
43683             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43684             //'</style>' +
43685             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43686     },
43687
43688     // private
43689     onRender : function(ct, position)
43690     {
43691         var _t = this;
43692         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43693         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43694         
43695         
43696         this.el.dom.style.border = '0 none';
43697         this.el.dom.setAttribute('tabIndex', -1);
43698         this.el.addClass('x-hidden hide');
43699         
43700         
43701         
43702         if(Roo.isIE){ // fix IE 1px bogus margin
43703             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43704         }
43705        
43706         
43707         this.frameId = Roo.id();
43708         
43709          
43710         
43711         var iframe = this.owner.wrap.createChild({
43712             tag: 'iframe',
43713             cls: 'form-control', // bootstrap..
43714             id: this.frameId,
43715             name: this.frameId,
43716             frameBorder : 'no',
43717             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43718         }, this.el
43719         );
43720         
43721         
43722         this.iframe = iframe.dom;
43723
43724          this.assignDocWin();
43725         
43726         this.doc.designMode = 'on';
43727        
43728         this.doc.open();
43729         this.doc.write(this.getDocMarkup());
43730         this.doc.close();
43731
43732         
43733         var task = { // must defer to wait for browser to be ready
43734             run : function(){
43735                 //console.log("run task?" + this.doc.readyState);
43736                 this.assignDocWin();
43737                 if(this.doc.body || this.doc.readyState == 'complete'){
43738                     try {
43739                         this.doc.designMode="on";
43740                     } catch (e) {
43741                         return;
43742                     }
43743                     Roo.TaskMgr.stop(task);
43744                     this.initEditor.defer(10, this);
43745                 }
43746             },
43747             interval : 10,
43748             duration: 10000,
43749             scope: this
43750         };
43751         Roo.TaskMgr.start(task);
43752
43753     },
43754
43755     // private
43756     onResize : function(w, h)
43757     {
43758          Roo.log('resize: ' +w + ',' + h );
43759         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43760         if(!this.iframe){
43761             return;
43762         }
43763         if(typeof w == 'number'){
43764             
43765             this.iframe.style.width = w + 'px';
43766         }
43767         if(typeof h == 'number'){
43768             
43769             this.iframe.style.height = h + 'px';
43770             if(this.doc){
43771                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43772             }
43773         }
43774         
43775     },
43776
43777     /**
43778      * Toggles the editor between standard and source edit mode.
43779      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43780      */
43781     toggleSourceEdit : function(sourceEditMode){
43782         
43783         this.sourceEditMode = sourceEditMode === true;
43784         
43785         if(this.sourceEditMode){
43786  
43787             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43788             
43789         }else{
43790             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43791             //this.iframe.className = '';
43792             this.deferFocus();
43793         }
43794         //this.setSize(this.owner.wrap.getSize());
43795         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43796     },
43797
43798     
43799   
43800
43801     /**
43802      * Protected method that will not generally be called directly. If you need/want
43803      * custom HTML cleanup, this is the method you should override.
43804      * @param {String} html The HTML to be cleaned
43805      * return {String} The cleaned HTML
43806      */
43807     cleanHtml : function(html){
43808         html = String(html);
43809         if(html.length > 5){
43810             if(Roo.isSafari){ // strip safari nonsense
43811                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43812             }
43813         }
43814         if(html == '&nbsp;'){
43815             html = '';
43816         }
43817         return html;
43818     },
43819
43820     /**
43821      * HTML Editor -> Textarea
43822      * Protected method that will not generally be called directly. Syncs the contents
43823      * of the editor iframe with the textarea.
43824      */
43825     syncValue : function(){
43826         if(this.initialized){
43827             var bd = (this.doc.body || this.doc.documentElement);
43828             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43829             var html = bd.innerHTML;
43830             if(Roo.isSafari){
43831                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43832                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43833                 if(m && m[1]){
43834                     html = '<div style="'+m[0]+'">' + html + '</div>';
43835                 }
43836             }
43837             html = this.cleanHtml(html);
43838             // fix up the special chars.. normaly like back quotes in word...
43839             // however we do not want to do this with chinese..
43840             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43841                 
43842                 var cc = match.charCodeAt();
43843
43844                 // Get the character value, handling surrogate pairs
43845                 if (match.length == 2) {
43846                     // It's a surrogate pair, calculate the Unicode code point
43847                     var high = match.charCodeAt(0) - 0xD800;
43848                     var low  = match.charCodeAt(1) - 0xDC00;
43849                     cc = (high * 0x400) + low + 0x10000;
43850                 }  else if (
43851                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43852                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43853                     (cc >= 0xf900 && cc < 0xfb00 )
43854                 ) {
43855                         return match;
43856                 }  
43857          
43858                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43859                 return "&#" + cc + ";";
43860                 
43861                 
43862             });
43863             
43864             
43865              
43866             if(this.owner.fireEvent('beforesync', this, html) !== false){
43867                 this.el.dom.value = html;
43868                 this.owner.fireEvent('sync', this, html);
43869             }
43870         }
43871     },
43872
43873     /**
43874      * Protected method that will not generally be called directly. Pushes the value of the textarea
43875      * into the iframe editor.
43876      */
43877     pushValue : function(){
43878         if(this.initialized){
43879             var v = this.el.dom.value.trim();
43880             
43881 //            if(v.length < 1){
43882 //                v = '&#160;';
43883 //            }
43884             
43885             if(this.owner.fireEvent('beforepush', this, v) !== false){
43886                 var d = (this.doc.body || this.doc.documentElement);
43887                 d.innerHTML = v;
43888                 this.cleanUpPaste();
43889                 this.el.dom.value = d.innerHTML;
43890                 this.owner.fireEvent('push', this, v);
43891             }
43892         }
43893     },
43894
43895     // private
43896     deferFocus : function(){
43897         this.focus.defer(10, this);
43898     },
43899
43900     // doc'ed in Field
43901     focus : function(){
43902         if(this.win && !this.sourceEditMode){
43903             this.win.focus();
43904         }else{
43905             this.el.focus();
43906         }
43907     },
43908     
43909     assignDocWin: function()
43910     {
43911         var iframe = this.iframe;
43912         
43913          if(Roo.isIE){
43914             this.doc = iframe.contentWindow.document;
43915             this.win = iframe.contentWindow;
43916         } else {
43917 //            if (!Roo.get(this.frameId)) {
43918 //                return;
43919 //            }
43920 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43921 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43922             
43923             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43924                 return;
43925             }
43926             
43927             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43928             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43929         }
43930     },
43931     
43932     // private
43933     initEditor : function(){
43934         //console.log("INIT EDITOR");
43935         this.assignDocWin();
43936         
43937         
43938         
43939         this.doc.designMode="on";
43940         this.doc.open();
43941         this.doc.write(this.getDocMarkup());
43942         this.doc.close();
43943         
43944         var dbody = (this.doc.body || this.doc.documentElement);
43945         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
43946         // this copies styles from the containing element into thsi one..
43947         // not sure why we need all of this..
43948         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
43949         
43950         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
43951         //ss['background-attachment'] = 'fixed'; // w3c
43952         dbody.bgProperties = 'fixed'; // ie
43953         //Roo.DomHelper.applyStyles(dbody, ss);
43954         Roo.EventManager.on(this.doc, {
43955             //'mousedown': this.onEditorEvent,
43956             'mouseup': this.onEditorEvent,
43957             'dblclick': this.onEditorEvent,
43958             'click': this.onEditorEvent,
43959             'keyup': this.onEditorEvent,
43960             buffer:100,
43961             scope: this
43962         });
43963         if(Roo.isGecko){
43964             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
43965         }
43966         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
43967             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
43968         }
43969         this.initialized = true;
43970
43971         this.owner.fireEvent('initialize', this);
43972         this.pushValue();
43973     },
43974
43975     // private
43976     onDestroy : function(){
43977         
43978         
43979         
43980         if(this.rendered){
43981             
43982             //for (var i =0; i < this.toolbars.length;i++) {
43983             //    // fixme - ask toolbars for heights?
43984             //    this.toolbars[i].onDestroy();
43985            // }
43986             
43987             //this.wrap.dom.innerHTML = '';
43988             //this.wrap.remove();
43989         }
43990     },
43991
43992     // private
43993     onFirstFocus : function(){
43994         
43995         this.assignDocWin();
43996         
43997         
43998         this.activated = true;
43999          
44000     
44001         if(Roo.isGecko){ // prevent silly gecko errors
44002             this.win.focus();
44003             var s = this.win.getSelection();
44004             if(!s.focusNode || s.focusNode.nodeType != 3){
44005                 var r = s.getRangeAt(0);
44006                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44007                 r.collapse(true);
44008                 this.deferFocus();
44009             }
44010             try{
44011                 this.execCmd('useCSS', true);
44012                 this.execCmd('styleWithCSS', false);
44013             }catch(e){}
44014         }
44015         this.owner.fireEvent('activate', this);
44016     },
44017
44018     // private
44019     adjustFont: function(btn){
44020         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44021         //if(Roo.isSafari){ // safari
44022         //    adjust *= 2;
44023        // }
44024         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44025         if(Roo.isSafari){ // safari
44026             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44027             v =  (v < 10) ? 10 : v;
44028             v =  (v > 48) ? 48 : v;
44029             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44030             
44031         }
44032         
44033         
44034         v = Math.max(1, v+adjust);
44035         
44036         this.execCmd('FontSize', v  );
44037     },
44038
44039     onEditorEvent : function(e)
44040     {
44041         this.owner.fireEvent('editorevent', this, e);
44042       //  this.updateToolbar();
44043         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44044     },
44045
44046     insertTag : function(tg)
44047     {
44048         // could be a bit smarter... -> wrap the current selected tRoo..
44049         if (tg.toLowerCase() == 'span' ||
44050             tg.toLowerCase() == 'code' ||
44051             tg.toLowerCase() == 'sup' ||
44052             tg.toLowerCase() == 'sub' 
44053             ) {
44054             
44055             range = this.createRange(this.getSelection());
44056             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44057             wrappingNode.appendChild(range.extractContents());
44058             range.insertNode(wrappingNode);
44059
44060             return;
44061             
44062             
44063             
44064         }
44065         this.execCmd("formatblock",   tg);
44066         
44067     },
44068     
44069     insertText : function(txt)
44070     {
44071         
44072         
44073         var range = this.createRange();
44074         range.deleteContents();
44075                //alert(Sender.getAttribute('label'));
44076                
44077         range.insertNode(this.doc.createTextNode(txt));
44078     } ,
44079     
44080      
44081
44082     /**
44083      * Executes a Midas editor command on the editor document and performs necessary focus and
44084      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44085      * @param {String} cmd The Midas command
44086      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44087      */
44088     relayCmd : function(cmd, value){
44089         this.win.focus();
44090         this.execCmd(cmd, value);
44091         this.owner.fireEvent('editorevent', this);
44092         //this.updateToolbar();
44093         this.owner.deferFocus();
44094     },
44095
44096     /**
44097      * Executes a Midas editor command directly on the editor document.
44098      * For visual commands, you should use {@link #relayCmd} instead.
44099      * <b>This should only be called after the editor is initialized.</b>
44100      * @param {String} cmd The Midas command
44101      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44102      */
44103     execCmd : function(cmd, value){
44104         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44105         this.syncValue();
44106     },
44107  
44108  
44109    
44110     /**
44111      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44112      * to insert tRoo.
44113      * @param {String} text | dom node.. 
44114      */
44115     insertAtCursor : function(text)
44116     {
44117         
44118         if(!this.activated){
44119             return;
44120         }
44121         /*
44122         if(Roo.isIE){
44123             this.win.focus();
44124             var r = this.doc.selection.createRange();
44125             if(r){
44126                 r.collapse(true);
44127                 r.pasteHTML(text);
44128                 this.syncValue();
44129                 this.deferFocus();
44130             
44131             }
44132             return;
44133         }
44134         */
44135         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44136             this.win.focus();
44137             
44138             
44139             // from jquery ui (MIT licenced)
44140             var range, node;
44141             var win = this.win;
44142             
44143             if (win.getSelection && win.getSelection().getRangeAt) {
44144                 range = win.getSelection().getRangeAt(0);
44145                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44146                 range.insertNode(node);
44147             } else if (win.document.selection && win.document.selection.createRange) {
44148                 // no firefox support
44149                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44150                 win.document.selection.createRange().pasteHTML(txt);
44151             } else {
44152                 // no firefox support
44153                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44154                 this.execCmd('InsertHTML', txt);
44155             } 
44156             
44157             this.syncValue();
44158             
44159             this.deferFocus();
44160         }
44161     },
44162  // private
44163     mozKeyPress : function(e){
44164         if(e.ctrlKey){
44165             var c = e.getCharCode(), cmd;
44166           
44167             if(c > 0){
44168                 c = String.fromCharCode(c).toLowerCase();
44169                 switch(c){
44170                     case 'b':
44171                         cmd = 'bold';
44172                         break;
44173                     case 'i':
44174                         cmd = 'italic';
44175                         break;
44176                     
44177                     case 'u':
44178                         cmd = 'underline';
44179                         break;
44180                     
44181                     case 'v':
44182                         this.cleanUpPaste.defer(100, this);
44183                         return;
44184                         
44185                 }
44186                 if(cmd){
44187                     this.win.focus();
44188                     this.execCmd(cmd);
44189                     this.deferFocus();
44190                     e.preventDefault();
44191                 }
44192                 
44193             }
44194         }
44195     },
44196
44197     // private
44198     fixKeys : function(){ // load time branching for fastest keydown performance
44199         if(Roo.isIE){
44200             return function(e){
44201                 var k = e.getKey(), r;
44202                 if(k == e.TAB){
44203                     e.stopEvent();
44204                     r = this.doc.selection.createRange();
44205                     if(r){
44206                         r.collapse(true);
44207                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44208                         this.deferFocus();
44209                     }
44210                     return;
44211                 }
44212                 
44213                 if(k == e.ENTER){
44214                     r = this.doc.selection.createRange();
44215                     if(r){
44216                         var target = r.parentElement();
44217                         if(!target || target.tagName.toLowerCase() != 'li'){
44218                             e.stopEvent();
44219                             r.pasteHTML('<br />');
44220                             r.collapse(false);
44221                             r.select();
44222                         }
44223                     }
44224                 }
44225                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44226                     this.cleanUpPaste.defer(100, this);
44227                     return;
44228                 }
44229                 
44230                 
44231             };
44232         }else if(Roo.isOpera){
44233             return function(e){
44234                 var k = e.getKey();
44235                 if(k == e.TAB){
44236                     e.stopEvent();
44237                     this.win.focus();
44238                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44239                     this.deferFocus();
44240                 }
44241                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44242                     this.cleanUpPaste.defer(100, this);
44243                     return;
44244                 }
44245                 
44246             };
44247         }else if(Roo.isSafari){
44248             return function(e){
44249                 var k = e.getKey();
44250                 
44251                 if(k == e.TAB){
44252                     e.stopEvent();
44253                     this.execCmd('InsertText','\t');
44254                     this.deferFocus();
44255                     return;
44256                 }
44257                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44258                     this.cleanUpPaste.defer(100, this);
44259                     return;
44260                 }
44261                 
44262              };
44263         }
44264     }(),
44265     
44266     getAllAncestors: function()
44267     {
44268         var p = this.getSelectedNode();
44269         var a = [];
44270         if (!p) {
44271             a.push(p); // push blank onto stack..
44272             p = this.getParentElement();
44273         }
44274         
44275         
44276         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44277             a.push(p);
44278             p = p.parentNode;
44279         }
44280         a.push(this.doc.body);
44281         return a;
44282     },
44283     lastSel : false,
44284     lastSelNode : false,
44285     
44286     
44287     getSelection : function() 
44288     {
44289         this.assignDocWin();
44290         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44291     },
44292     
44293     getSelectedNode: function() 
44294     {
44295         // this may only work on Gecko!!!
44296         
44297         // should we cache this!!!!
44298         
44299         
44300         
44301          
44302         var range = this.createRange(this.getSelection()).cloneRange();
44303         
44304         if (Roo.isIE) {
44305             var parent = range.parentElement();
44306             while (true) {
44307                 var testRange = range.duplicate();
44308                 testRange.moveToElementText(parent);
44309                 if (testRange.inRange(range)) {
44310                     break;
44311                 }
44312                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44313                     break;
44314                 }
44315                 parent = parent.parentElement;
44316             }
44317             return parent;
44318         }
44319         
44320         // is ancestor a text element.
44321         var ac =  range.commonAncestorContainer;
44322         if (ac.nodeType == 3) {
44323             ac = ac.parentNode;
44324         }
44325         
44326         var ar = ac.childNodes;
44327          
44328         var nodes = [];
44329         var other_nodes = [];
44330         var has_other_nodes = false;
44331         for (var i=0;i<ar.length;i++) {
44332             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44333                 continue;
44334             }
44335             // fullly contained node.
44336             
44337             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44338                 nodes.push(ar[i]);
44339                 continue;
44340             }
44341             
44342             // probably selected..
44343             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44344                 other_nodes.push(ar[i]);
44345                 continue;
44346             }
44347             // outer..
44348             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44349                 continue;
44350             }
44351             
44352             
44353             has_other_nodes = true;
44354         }
44355         if (!nodes.length && other_nodes.length) {
44356             nodes= other_nodes;
44357         }
44358         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44359             return false;
44360         }
44361         
44362         return nodes[0];
44363     },
44364     createRange: function(sel)
44365     {
44366         // this has strange effects when using with 
44367         // top toolbar - not sure if it's a great idea.
44368         //this.editor.contentWindow.focus();
44369         if (typeof sel != "undefined") {
44370             try {
44371                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44372             } catch(e) {
44373                 return this.doc.createRange();
44374             }
44375         } else {
44376             return this.doc.createRange();
44377         }
44378     },
44379     getParentElement: function()
44380     {
44381         
44382         this.assignDocWin();
44383         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44384         
44385         var range = this.createRange(sel);
44386          
44387         try {
44388             var p = range.commonAncestorContainer;
44389             while (p.nodeType == 3) { // text node
44390                 p = p.parentNode;
44391             }
44392             return p;
44393         } catch (e) {
44394             return null;
44395         }
44396     
44397     },
44398     /***
44399      *
44400      * Range intersection.. the hard stuff...
44401      *  '-1' = before
44402      *  '0' = hits..
44403      *  '1' = after.
44404      *         [ -- selected range --- ]
44405      *   [fail]                        [fail]
44406      *
44407      *    basically..
44408      *      if end is before start or  hits it. fail.
44409      *      if start is after end or hits it fail.
44410      *
44411      *   if either hits (but other is outside. - then it's not 
44412      *   
44413      *    
44414      **/
44415     
44416     
44417     // @see http://www.thismuchiknow.co.uk/?p=64.
44418     rangeIntersectsNode : function(range, node)
44419     {
44420         var nodeRange = node.ownerDocument.createRange();
44421         try {
44422             nodeRange.selectNode(node);
44423         } catch (e) {
44424             nodeRange.selectNodeContents(node);
44425         }
44426     
44427         var rangeStartRange = range.cloneRange();
44428         rangeStartRange.collapse(true);
44429     
44430         var rangeEndRange = range.cloneRange();
44431         rangeEndRange.collapse(false);
44432     
44433         var nodeStartRange = nodeRange.cloneRange();
44434         nodeStartRange.collapse(true);
44435     
44436         var nodeEndRange = nodeRange.cloneRange();
44437         nodeEndRange.collapse(false);
44438     
44439         return rangeStartRange.compareBoundaryPoints(
44440                  Range.START_TO_START, nodeEndRange) == -1 &&
44441                rangeEndRange.compareBoundaryPoints(
44442                  Range.START_TO_START, nodeStartRange) == 1;
44443         
44444          
44445     },
44446     rangeCompareNode : function(range, node)
44447     {
44448         var nodeRange = node.ownerDocument.createRange();
44449         try {
44450             nodeRange.selectNode(node);
44451         } catch (e) {
44452             nodeRange.selectNodeContents(node);
44453         }
44454         
44455         
44456         range.collapse(true);
44457     
44458         nodeRange.collapse(true);
44459      
44460         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44461         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44462          
44463         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44464         
44465         var nodeIsBefore   =  ss == 1;
44466         var nodeIsAfter    = ee == -1;
44467         
44468         if (nodeIsBefore && nodeIsAfter) {
44469             return 0; // outer
44470         }
44471         if (!nodeIsBefore && nodeIsAfter) {
44472             return 1; //right trailed.
44473         }
44474         
44475         if (nodeIsBefore && !nodeIsAfter) {
44476             return 2;  // left trailed.
44477         }
44478         // fully contined.
44479         return 3;
44480     },
44481
44482     // private? - in a new class?
44483     cleanUpPaste :  function()
44484     {
44485         // cleans up the whole document..
44486         Roo.log('cleanuppaste');
44487         
44488         this.cleanUpChildren(this.doc.body);
44489         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44490         if (clean != this.doc.body.innerHTML) {
44491             this.doc.body.innerHTML = clean;
44492         }
44493         
44494     },
44495     
44496     cleanWordChars : function(input) {// change the chars to hex code
44497         var he = Roo.HtmlEditorCore;
44498         
44499         var output = input;
44500         Roo.each(he.swapCodes, function(sw) { 
44501             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44502             
44503             output = output.replace(swapper, sw[1]);
44504         });
44505         
44506         return output;
44507     },
44508     
44509     
44510     cleanUpChildren : function (n)
44511     {
44512         if (!n.childNodes.length) {
44513             return;
44514         }
44515         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44516            this.cleanUpChild(n.childNodes[i]);
44517         }
44518     },
44519     
44520     
44521         
44522     
44523     cleanUpChild : function (node)
44524     {
44525         var ed = this;
44526         //console.log(node);
44527         if (node.nodeName == "#text") {
44528             // clean up silly Windows -- stuff?
44529             return; 
44530         }
44531         if (node.nodeName == "#comment") {
44532             node.parentNode.removeChild(node);
44533             // clean up silly Windows -- stuff?
44534             return; 
44535         }
44536         var lcname = node.tagName.toLowerCase();
44537         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44538         // whitelist of tags..
44539         
44540         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44541             // remove node.
44542             node.parentNode.removeChild(node);
44543             return;
44544             
44545         }
44546         
44547         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44548         
44549         // spans with no attributes - just remove them..
44550         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44551             remove_keep_children = true;
44552         }
44553         
44554         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44555         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44556         
44557         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44558         //    remove_keep_children = true;
44559         //}
44560         
44561         if (remove_keep_children) {
44562             this.cleanUpChildren(node);
44563             // inserts everything just before this node...
44564             while (node.childNodes.length) {
44565                 var cn = node.childNodes[0];
44566                 node.removeChild(cn);
44567                 node.parentNode.insertBefore(cn, node);
44568             }
44569             node.parentNode.removeChild(node);
44570             return;
44571         }
44572         
44573         if (!node.attributes || !node.attributes.length) {
44574             
44575           
44576             
44577             
44578             this.cleanUpChildren(node);
44579             return;
44580         }
44581         
44582         function cleanAttr(n,v)
44583         {
44584             
44585             if (v.match(/^\./) || v.match(/^\//)) {
44586                 return;
44587             }
44588             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44589                 return;
44590             }
44591             if (v.match(/^#/)) {
44592                 return;
44593             }
44594             if (v.match(/^\{/)) { // allow template editing.
44595                 return;
44596             }
44597 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44598             node.removeAttribute(n);
44599             
44600         }
44601         
44602         var cwhite = this.cwhite;
44603         var cblack = this.cblack;
44604             
44605         function cleanStyle(n,v)
44606         {
44607             if (v.match(/expression/)) { //XSS?? should we even bother..
44608                 node.removeAttribute(n);
44609                 return;
44610             }
44611             
44612             var parts = v.split(/;/);
44613             var clean = [];
44614             
44615             Roo.each(parts, function(p) {
44616                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44617                 if (!p.length) {
44618                     return true;
44619                 }
44620                 var l = p.split(':').shift().replace(/\s+/g,'');
44621                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44622                 
44623                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44624 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44625                     //node.removeAttribute(n);
44626                     return true;
44627                 }
44628                 //Roo.log()
44629                 // only allow 'c whitelisted system attributes'
44630                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44631 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44632                     //node.removeAttribute(n);
44633                     return true;
44634                 }
44635                 
44636                 
44637                  
44638                 
44639                 clean.push(p);
44640                 return true;
44641             });
44642             if (clean.length) { 
44643                 node.setAttribute(n, clean.join(';'));
44644             } else {
44645                 node.removeAttribute(n);
44646             }
44647             
44648         }
44649         
44650         
44651         for (var i = node.attributes.length-1; i > -1 ; i--) {
44652             var a = node.attributes[i];
44653             //console.log(a);
44654             
44655             if (a.name.toLowerCase().substr(0,2)=='on')  {
44656                 node.removeAttribute(a.name);
44657                 continue;
44658             }
44659             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44660                 node.removeAttribute(a.name);
44661                 continue;
44662             }
44663             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44664                 cleanAttr(a.name,a.value); // fixme..
44665                 continue;
44666             }
44667             if (a.name == 'style') {
44668                 cleanStyle(a.name,a.value);
44669                 continue;
44670             }
44671             /// clean up MS crap..
44672             // tecnically this should be a list of valid class'es..
44673             
44674             
44675             if (a.name == 'class') {
44676                 if (a.value.match(/^Mso/)) {
44677                     node.removeAttribute('class');
44678                 }
44679                 
44680                 if (a.value.match(/^body$/)) {
44681                     node.removeAttribute('class');
44682                 }
44683                 continue;
44684             }
44685             
44686             // style cleanup!?
44687             // class cleanup?
44688             
44689         }
44690         
44691         
44692         this.cleanUpChildren(node);
44693         
44694         
44695     },
44696     
44697     /**
44698      * Clean up MS wordisms...
44699      */
44700     cleanWord : function(node)
44701     {
44702         if (!node) {
44703             this.cleanWord(this.doc.body);
44704             return;
44705         }
44706         
44707         if(
44708                 node.nodeName == 'SPAN' &&
44709                 !node.hasAttributes() &&
44710                 node.childNodes.length == 1 &&
44711                 node.firstChild.nodeName == "#text"  
44712         ) {
44713             var textNode = node.firstChild;
44714             node.removeChild(textNode);
44715             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44716                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44717             }
44718             node.parentNode.insertBefore(textNode, node);
44719             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44720                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44721             }
44722             node.parentNode.removeChild(node);
44723         }
44724         
44725         if (node.nodeName == "#text") {
44726             // clean up silly Windows -- stuff?
44727             return; 
44728         }
44729         if (node.nodeName == "#comment") {
44730             node.parentNode.removeChild(node);
44731             // clean up silly Windows -- stuff?
44732             return; 
44733         }
44734         
44735         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44736             node.parentNode.removeChild(node);
44737             return;
44738         }
44739         //Roo.log(node.tagName);
44740         // remove - but keep children..
44741         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44742             //Roo.log('-- removed');
44743             while (node.childNodes.length) {
44744                 var cn = node.childNodes[0];
44745                 node.removeChild(cn);
44746                 node.parentNode.insertBefore(cn, node);
44747                 // move node to parent - and clean it..
44748                 this.cleanWord(cn);
44749             }
44750             node.parentNode.removeChild(node);
44751             /// no need to iterate chidlren = it's got none..
44752             //this.iterateChildren(node, this.cleanWord);
44753             return;
44754         }
44755         // clean styles
44756         if (node.className.length) {
44757             
44758             var cn = node.className.split(/\W+/);
44759             var cna = [];
44760             Roo.each(cn, function(cls) {
44761                 if (cls.match(/Mso[a-zA-Z]+/)) {
44762                     return;
44763                 }
44764                 cna.push(cls);
44765             });
44766             node.className = cna.length ? cna.join(' ') : '';
44767             if (!cna.length) {
44768                 node.removeAttribute("class");
44769             }
44770         }
44771         
44772         if (node.hasAttribute("lang")) {
44773             node.removeAttribute("lang");
44774         }
44775         
44776         if (node.hasAttribute("style")) {
44777             
44778             var styles = node.getAttribute("style").split(";");
44779             var nstyle = [];
44780             Roo.each(styles, function(s) {
44781                 if (!s.match(/:/)) {
44782                     return;
44783                 }
44784                 var kv = s.split(":");
44785                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44786                     return;
44787                 }
44788                 // what ever is left... we allow.
44789                 nstyle.push(s);
44790             });
44791             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44792             if (!nstyle.length) {
44793                 node.removeAttribute('style');
44794             }
44795         }
44796         this.iterateChildren(node, this.cleanWord);
44797         
44798         
44799         
44800     },
44801     /**
44802      * iterateChildren of a Node, calling fn each time, using this as the scole..
44803      * @param {DomNode} node node to iterate children of.
44804      * @param {Function} fn method of this class to call on each item.
44805      */
44806     iterateChildren : function(node, fn)
44807     {
44808         if (!node.childNodes.length) {
44809                 return;
44810         }
44811         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44812            fn.call(this, node.childNodes[i])
44813         }
44814     },
44815     
44816     
44817     /**
44818      * cleanTableWidths.
44819      *
44820      * Quite often pasting from word etc.. results in tables with column and widths.
44821      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44822      *
44823      */
44824     cleanTableWidths : function(node)
44825     {
44826          
44827          
44828         if (!node) {
44829             this.cleanTableWidths(this.doc.body);
44830             return;
44831         }
44832         
44833         // ignore list...
44834         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44835             return; 
44836         }
44837         Roo.log(node.tagName);
44838         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44839             this.iterateChildren(node, this.cleanTableWidths);
44840             return;
44841         }
44842         if (node.hasAttribute('width')) {
44843             node.removeAttribute('width');
44844         }
44845         
44846          
44847         if (node.hasAttribute("style")) {
44848             // pretty basic...
44849             
44850             var styles = node.getAttribute("style").split(";");
44851             var nstyle = [];
44852             Roo.each(styles, function(s) {
44853                 if (!s.match(/:/)) {
44854                     return;
44855                 }
44856                 var kv = s.split(":");
44857                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44858                     return;
44859                 }
44860                 // what ever is left... we allow.
44861                 nstyle.push(s);
44862             });
44863             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44864             if (!nstyle.length) {
44865                 node.removeAttribute('style');
44866             }
44867         }
44868         
44869         this.iterateChildren(node, this.cleanTableWidths);
44870         
44871         
44872     },
44873     
44874     
44875     
44876     
44877     domToHTML : function(currentElement, depth, nopadtext) {
44878         
44879         depth = depth || 0;
44880         nopadtext = nopadtext || false;
44881     
44882         if (!currentElement) {
44883             return this.domToHTML(this.doc.body);
44884         }
44885         
44886         //Roo.log(currentElement);
44887         var j;
44888         var allText = false;
44889         var nodeName = currentElement.nodeName;
44890         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44891         
44892         if  (nodeName == '#text') {
44893             
44894             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44895         }
44896         
44897         
44898         var ret = '';
44899         if (nodeName != 'BODY') {
44900              
44901             var i = 0;
44902             // Prints the node tagName, such as <A>, <IMG>, etc
44903             if (tagName) {
44904                 var attr = [];
44905                 for(i = 0; i < currentElement.attributes.length;i++) {
44906                     // quoting?
44907                     var aname = currentElement.attributes.item(i).name;
44908                     if (!currentElement.attributes.item(i).value.length) {
44909                         continue;
44910                     }
44911                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44912                 }
44913                 
44914                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44915             } 
44916             else {
44917                 
44918                 // eack
44919             }
44920         } else {
44921             tagName = false;
44922         }
44923         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44924             return ret;
44925         }
44926         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44927             nopadtext = true;
44928         }
44929         
44930         
44931         // Traverse the tree
44932         i = 0;
44933         var currentElementChild = currentElement.childNodes.item(i);
44934         var allText = true;
44935         var innerHTML  = '';
44936         lastnode = '';
44937         while (currentElementChild) {
44938             // Formatting code (indent the tree so it looks nice on the screen)
44939             var nopad = nopadtext;
44940             if (lastnode == 'SPAN') {
44941                 nopad  = true;
44942             }
44943             // text
44944             if  (currentElementChild.nodeName == '#text') {
44945                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
44946                 toadd = nopadtext ? toadd : toadd.trim();
44947                 if (!nopad && toadd.length > 80) {
44948                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
44949                 }
44950                 innerHTML  += toadd;
44951                 
44952                 i++;
44953                 currentElementChild = currentElement.childNodes.item(i);
44954                 lastNode = '';
44955                 continue;
44956             }
44957             allText = false;
44958             
44959             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
44960                 
44961             // Recursively traverse the tree structure of the child node
44962             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
44963             lastnode = currentElementChild.nodeName;
44964             i++;
44965             currentElementChild=currentElement.childNodes.item(i);
44966         }
44967         
44968         ret += innerHTML;
44969         
44970         if (!allText) {
44971                 // The remaining code is mostly for formatting the tree
44972             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
44973         }
44974         
44975         
44976         if (tagName) {
44977             ret+= "</"+tagName+">";
44978         }
44979         return ret;
44980         
44981     },
44982         
44983     applyBlacklists : function()
44984     {
44985         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
44986         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
44987         
44988         this.white = [];
44989         this.black = [];
44990         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
44991             if (b.indexOf(tag) > -1) {
44992                 return;
44993             }
44994             this.white.push(tag);
44995             
44996         }, this);
44997         
44998         Roo.each(w, function(tag) {
44999             if (b.indexOf(tag) > -1) {
45000                 return;
45001             }
45002             if (this.white.indexOf(tag) > -1) {
45003                 return;
45004             }
45005             this.white.push(tag);
45006             
45007         }, this);
45008         
45009         
45010         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45011             if (w.indexOf(tag) > -1) {
45012                 return;
45013             }
45014             this.black.push(tag);
45015             
45016         }, this);
45017         
45018         Roo.each(b, function(tag) {
45019             if (w.indexOf(tag) > -1) {
45020                 return;
45021             }
45022             if (this.black.indexOf(tag) > -1) {
45023                 return;
45024             }
45025             this.black.push(tag);
45026             
45027         }, this);
45028         
45029         
45030         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45031         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45032         
45033         this.cwhite = [];
45034         this.cblack = [];
45035         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45036             if (b.indexOf(tag) > -1) {
45037                 return;
45038             }
45039             this.cwhite.push(tag);
45040             
45041         }, this);
45042         
45043         Roo.each(w, function(tag) {
45044             if (b.indexOf(tag) > -1) {
45045                 return;
45046             }
45047             if (this.cwhite.indexOf(tag) > -1) {
45048                 return;
45049             }
45050             this.cwhite.push(tag);
45051             
45052         }, this);
45053         
45054         
45055         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45056             if (w.indexOf(tag) > -1) {
45057                 return;
45058             }
45059             this.cblack.push(tag);
45060             
45061         }, this);
45062         
45063         Roo.each(b, function(tag) {
45064             if (w.indexOf(tag) > -1) {
45065                 return;
45066             }
45067             if (this.cblack.indexOf(tag) > -1) {
45068                 return;
45069             }
45070             this.cblack.push(tag);
45071             
45072         }, this);
45073     },
45074     
45075     setStylesheets : function(stylesheets)
45076     {
45077         if(typeof(stylesheets) == 'string'){
45078             Roo.get(this.iframe.contentDocument.head).createChild({
45079                 tag : 'link',
45080                 rel : 'stylesheet',
45081                 type : 'text/css',
45082                 href : stylesheets
45083             });
45084             
45085             return;
45086         }
45087         var _this = this;
45088      
45089         Roo.each(stylesheets, function(s) {
45090             if(!s.length){
45091                 return;
45092             }
45093             
45094             Roo.get(_this.iframe.contentDocument.head).createChild({
45095                 tag : 'link',
45096                 rel : 'stylesheet',
45097                 type : 'text/css',
45098                 href : s
45099             });
45100         });
45101
45102         
45103     },
45104     
45105     removeStylesheets : function()
45106     {
45107         var _this = this;
45108         
45109         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45110             s.remove();
45111         });
45112     },
45113     
45114     setStyle : function(style)
45115     {
45116         Roo.get(this.iframe.contentDocument.head).createChild({
45117             tag : 'style',
45118             type : 'text/css',
45119             html : style
45120         });
45121
45122         return;
45123     }
45124     
45125     // hide stuff that is not compatible
45126     /**
45127      * @event blur
45128      * @hide
45129      */
45130     /**
45131      * @event change
45132      * @hide
45133      */
45134     /**
45135      * @event focus
45136      * @hide
45137      */
45138     /**
45139      * @event specialkey
45140      * @hide
45141      */
45142     /**
45143      * @cfg {String} fieldClass @hide
45144      */
45145     /**
45146      * @cfg {String} focusClass @hide
45147      */
45148     /**
45149      * @cfg {String} autoCreate @hide
45150      */
45151     /**
45152      * @cfg {String} inputType @hide
45153      */
45154     /**
45155      * @cfg {String} invalidClass @hide
45156      */
45157     /**
45158      * @cfg {String} invalidText @hide
45159      */
45160     /**
45161      * @cfg {String} msgFx @hide
45162      */
45163     /**
45164      * @cfg {String} validateOnBlur @hide
45165      */
45166 });
45167
45168 Roo.HtmlEditorCore.white = [
45169         'area', 'br', 'img', 'input', 'hr', 'wbr',
45170         
45171        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45172        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45173        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45174        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45175        'table',   'ul',         'xmp', 
45176        
45177        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45178       'thead',   'tr', 
45179      
45180       'dir', 'menu', 'ol', 'ul', 'dl',
45181        
45182       'embed',  'object'
45183 ];
45184
45185
45186 Roo.HtmlEditorCore.black = [
45187     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45188         'applet', // 
45189         'base',   'basefont', 'bgsound', 'blink',  'body', 
45190         'frame',  'frameset', 'head',    'html',   'ilayer', 
45191         'iframe', 'layer',  'link',     'meta',    'object',   
45192         'script', 'style' ,'title',  'xml' // clean later..
45193 ];
45194 Roo.HtmlEditorCore.clean = [
45195     'script', 'style', 'title', 'xml'
45196 ];
45197 Roo.HtmlEditorCore.remove = [
45198     'font'
45199 ];
45200 // attributes..
45201
45202 Roo.HtmlEditorCore.ablack = [
45203     'on'
45204 ];
45205     
45206 Roo.HtmlEditorCore.aclean = [ 
45207     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45208 ];
45209
45210 // protocols..
45211 Roo.HtmlEditorCore.pwhite= [
45212         'http',  'https',  'mailto'
45213 ];
45214
45215 // white listed style attributes.
45216 Roo.HtmlEditorCore.cwhite= [
45217       //  'text-align', /// default is to allow most things..
45218       
45219          
45220 //        'font-size'//??
45221 ];
45222
45223 // black listed style attributes.
45224 Roo.HtmlEditorCore.cblack= [
45225       //  'font-size' -- this can be set by the project 
45226 ];
45227
45228
45229 Roo.HtmlEditorCore.swapCodes   =[ 
45230     [    8211, "&#8211;" ], 
45231     [    8212, "&#8212;" ], 
45232     [    8216,  "'" ],  
45233     [    8217, "'" ],  
45234     [    8220, '"' ],  
45235     [    8221, '"' ],  
45236     [    8226, "*" ],  
45237     [    8230, "..." ]
45238 ]; 
45239
45240     //<script type="text/javascript">
45241
45242 /*
45243  * Ext JS Library 1.1.1
45244  * Copyright(c) 2006-2007, Ext JS, LLC.
45245  * Licence LGPL
45246  * 
45247  */
45248  
45249  
45250 Roo.form.HtmlEditor = function(config){
45251     
45252     
45253     
45254     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45255     
45256     if (!this.toolbars) {
45257         this.toolbars = [];
45258     }
45259     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45260     
45261     
45262 };
45263
45264 /**
45265  * @class Roo.form.HtmlEditor
45266  * @extends Roo.form.Field
45267  * Provides a lightweight HTML Editor component.
45268  *
45269  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45270  * 
45271  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45272  * supported by this editor.</b><br/><br/>
45273  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45274  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45275  */
45276 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45277     /**
45278      * @cfg {Boolean} clearUp
45279      */
45280     clearUp : true,
45281       /**
45282      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45283      */
45284     toolbars : false,
45285    
45286      /**
45287      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45288      *                        Roo.resizable.
45289      */
45290     resizable : false,
45291      /**
45292      * @cfg {Number} height (in pixels)
45293      */   
45294     height: 300,
45295    /**
45296      * @cfg {Number} width (in pixels)
45297      */   
45298     width: 500,
45299     
45300     /**
45301      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45302      * 
45303      */
45304     stylesheets: false,
45305     
45306     
45307      /**
45308      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45309      * 
45310      */
45311     cblack: false,
45312     /**
45313      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45314      * 
45315      */
45316     cwhite: false,
45317     
45318      /**
45319      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45320      * 
45321      */
45322     black: false,
45323     /**
45324      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45325      * 
45326      */
45327     white: false,
45328     
45329     // id of frame..
45330     frameId: false,
45331     
45332     // private properties
45333     validationEvent : false,
45334     deferHeight: true,
45335     initialized : false,
45336     activated : false,
45337     
45338     onFocus : Roo.emptyFn,
45339     iframePad:3,
45340     hideMode:'offsets',
45341     
45342     actionMode : 'container', // defaults to hiding it...
45343     
45344     defaultAutoCreate : { // modified by initCompnoent..
45345         tag: "textarea",
45346         style:"width:500px;height:300px;",
45347         autocomplete: "new-password"
45348     },
45349
45350     // private
45351     initComponent : function(){
45352         this.addEvents({
45353             /**
45354              * @event initialize
45355              * Fires when the editor is fully initialized (including the iframe)
45356              * @param {HtmlEditor} this
45357              */
45358             initialize: true,
45359             /**
45360              * @event activate
45361              * Fires when the editor is first receives the focus. Any insertion must wait
45362              * until after this event.
45363              * @param {HtmlEditor} this
45364              */
45365             activate: true,
45366              /**
45367              * @event beforesync
45368              * Fires before the textarea is updated with content from the editor iframe. Return false
45369              * to cancel the sync.
45370              * @param {HtmlEditor} this
45371              * @param {String} html
45372              */
45373             beforesync: true,
45374              /**
45375              * @event beforepush
45376              * Fires before the iframe editor is updated with content from the textarea. Return false
45377              * to cancel the push.
45378              * @param {HtmlEditor} this
45379              * @param {String} html
45380              */
45381             beforepush: true,
45382              /**
45383              * @event sync
45384              * Fires when the textarea is updated with content from the editor iframe.
45385              * @param {HtmlEditor} this
45386              * @param {String} html
45387              */
45388             sync: true,
45389              /**
45390              * @event push
45391              * Fires when the iframe editor is updated with content from the textarea.
45392              * @param {HtmlEditor} this
45393              * @param {String} html
45394              */
45395             push: true,
45396              /**
45397              * @event editmodechange
45398              * Fires when the editor switches edit modes
45399              * @param {HtmlEditor} this
45400              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45401              */
45402             editmodechange: true,
45403             /**
45404              * @event editorevent
45405              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45406              * @param {HtmlEditor} this
45407              */
45408             editorevent: true,
45409             /**
45410              * @event firstfocus
45411              * Fires when on first focus - needed by toolbars..
45412              * @param {HtmlEditor} this
45413              */
45414             firstfocus: true,
45415             /**
45416              * @event autosave
45417              * Auto save the htmlEditor value as a file into Events
45418              * @param {HtmlEditor} this
45419              */
45420             autosave: true,
45421             /**
45422              * @event savedpreview
45423              * preview the saved version of htmlEditor
45424              * @param {HtmlEditor} this
45425              */
45426             savedpreview: true,
45427             
45428             /**
45429             * @event stylesheetsclick
45430             * Fires when press the Sytlesheets button
45431             * @param {Roo.HtmlEditorCore} this
45432             */
45433             stylesheetsclick: true
45434         });
45435         this.defaultAutoCreate =  {
45436             tag: "textarea",
45437             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45438             autocomplete: "new-password"
45439         };
45440     },
45441
45442     /**
45443      * Protected method that will not generally be called directly. It
45444      * is called when the editor creates its toolbar. Override this method if you need to
45445      * add custom toolbar buttons.
45446      * @param {HtmlEditor} editor
45447      */
45448     createToolbar : function(editor){
45449         Roo.log("create toolbars");
45450         if (!editor.toolbars || !editor.toolbars.length) {
45451             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45452         }
45453         
45454         for (var i =0 ; i < editor.toolbars.length;i++) {
45455             editor.toolbars[i] = Roo.factory(
45456                     typeof(editor.toolbars[i]) == 'string' ?
45457                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45458                 Roo.form.HtmlEditor);
45459             editor.toolbars[i].init(editor);
45460         }
45461          
45462         
45463     },
45464
45465      
45466     // private
45467     onRender : function(ct, position)
45468     {
45469         var _t = this;
45470         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45471         
45472         this.wrap = this.el.wrap({
45473             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45474         });
45475         
45476         this.editorcore.onRender(ct, position);
45477          
45478         if (this.resizable) {
45479             this.resizeEl = new Roo.Resizable(this.wrap, {
45480                 pinned : true,
45481                 wrap: true,
45482                 dynamic : true,
45483                 minHeight : this.height,
45484                 height: this.height,
45485                 handles : this.resizable,
45486                 width: this.width,
45487                 listeners : {
45488                     resize : function(r, w, h) {
45489                         _t.onResize(w,h); // -something
45490                     }
45491                 }
45492             });
45493             
45494         }
45495         this.createToolbar(this);
45496        
45497         
45498         if(!this.width){
45499             this.setSize(this.wrap.getSize());
45500         }
45501         if (this.resizeEl) {
45502             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45503             // should trigger onReize..
45504         }
45505         
45506         this.keyNav = new Roo.KeyNav(this.el, {
45507             
45508             "tab" : function(e){
45509                 e.preventDefault();
45510                 
45511                 var value = this.getValue();
45512                 
45513                 var start = this.el.dom.selectionStart;
45514                 var end = this.el.dom.selectionEnd;
45515                 
45516                 if(!e.shiftKey){
45517                     
45518                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45519                     this.el.dom.setSelectionRange(end + 1, end + 1);
45520                     return;
45521                 }
45522                 
45523                 var f = value.substring(0, start).split("\t");
45524                 
45525                 if(f.pop().length != 0){
45526                     return;
45527                 }
45528                 
45529                 this.setValue(f.join("\t") + value.substring(end));
45530                 this.el.dom.setSelectionRange(start - 1, start - 1);
45531                 
45532             },
45533             
45534             "home" : function(e){
45535                 e.preventDefault();
45536                 
45537                 var curr = this.el.dom.selectionStart;
45538                 var lines = this.getValue().split("\n");
45539                 
45540                 if(!lines.length){
45541                     return;
45542                 }
45543                 
45544                 if(e.ctrlKey){
45545                     this.el.dom.setSelectionRange(0, 0);
45546                     return;
45547                 }
45548                 
45549                 var pos = 0;
45550                 
45551                 for (var i = 0; i < lines.length;i++) {
45552                     pos += lines[i].length;
45553                     
45554                     if(i != 0){
45555                         pos += 1;
45556                     }
45557                     
45558                     if(pos < curr){
45559                         continue;
45560                     }
45561                     
45562                     pos -= lines[i].length;
45563                     
45564                     break;
45565                 }
45566                 
45567                 if(!e.shiftKey){
45568                     this.el.dom.setSelectionRange(pos, pos);
45569                     return;
45570                 }
45571                 
45572                 this.el.dom.selectionStart = pos;
45573                 this.el.dom.selectionEnd = curr;
45574             },
45575             
45576             "end" : function(e){
45577                 e.preventDefault();
45578                 
45579                 var curr = this.el.dom.selectionStart;
45580                 var lines = this.getValue().split("\n");
45581                 
45582                 if(!lines.length){
45583                     return;
45584                 }
45585                 
45586                 if(e.ctrlKey){
45587                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45588                     return;
45589                 }
45590                 
45591                 var pos = 0;
45592                 
45593                 for (var i = 0; i < lines.length;i++) {
45594                     
45595                     pos += lines[i].length;
45596                     
45597                     if(i != 0){
45598                         pos += 1;
45599                     }
45600                     
45601                     if(pos < curr){
45602                         continue;
45603                     }
45604                     
45605                     break;
45606                 }
45607                 
45608                 if(!e.shiftKey){
45609                     this.el.dom.setSelectionRange(pos, pos);
45610                     return;
45611                 }
45612                 
45613                 this.el.dom.selectionStart = curr;
45614                 this.el.dom.selectionEnd = pos;
45615             },
45616
45617             scope : this,
45618
45619             doRelay : function(foo, bar, hname){
45620                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45621             },
45622
45623             forceKeyDown: true
45624         });
45625         
45626 //        if(this.autosave && this.w){
45627 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45628 //        }
45629     },
45630
45631     // private
45632     onResize : function(w, h)
45633     {
45634         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45635         var ew = false;
45636         var eh = false;
45637         
45638         if(this.el ){
45639             if(typeof w == 'number'){
45640                 var aw = w - this.wrap.getFrameWidth('lr');
45641                 this.el.setWidth(this.adjustWidth('textarea', aw));
45642                 ew = aw;
45643             }
45644             if(typeof h == 'number'){
45645                 var tbh = 0;
45646                 for (var i =0; i < this.toolbars.length;i++) {
45647                     // fixme - ask toolbars for heights?
45648                     tbh += this.toolbars[i].tb.el.getHeight();
45649                     if (this.toolbars[i].footer) {
45650                         tbh += this.toolbars[i].footer.el.getHeight();
45651                     }
45652                 }
45653                 
45654                 
45655                 
45656                 
45657                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45658                 ah -= 5; // knock a few pixes off for look..
45659 //                Roo.log(ah);
45660                 this.el.setHeight(this.adjustWidth('textarea', ah));
45661                 var eh = ah;
45662             }
45663         }
45664         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45665         this.editorcore.onResize(ew,eh);
45666         
45667     },
45668
45669     /**
45670      * Toggles the editor between standard and source edit mode.
45671      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45672      */
45673     toggleSourceEdit : function(sourceEditMode)
45674     {
45675         this.editorcore.toggleSourceEdit(sourceEditMode);
45676         
45677         if(this.editorcore.sourceEditMode){
45678             Roo.log('editor - showing textarea');
45679             
45680 //            Roo.log('in');
45681 //            Roo.log(this.syncValue());
45682             this.editorcore.syncValue();
45683             this.el.removeClass('x-hidden');
45684             this.el.dom.removeAttribute('tabIndex');
45685             this.el.focus();
45686             
45687             for (var i = 0; i < this.toolbars.length; i++) {
45688                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45689                     this.toolbars[i].tb.hide();
45690                     this.toolbars[i].footer.hide();
45691                 }
45692             }
45693             
45694         }else{
45695             Roo.log('editor - hiding textarea');
45696 //            Roo.log('out')
45697 //            Roo.log(this.pushValue()); 
45698             this.editorcore.pushValue();
45699             
45700             this.el.addClass('x-hidden');
45701             this.el.dom.setAttribute('tabIndex', -1);
45702             
45703             for (var i = 0; i < this.toolbars.length; i++) {
45704                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45705                     this.toolbars[i].tb.show();
45706                     this.toolbars[i].footer.show();
45707                 }
45708             }
45709             
45710             //this.deferFocus();
45711         }
45712         
45713         this.setSize(this.wrap.getSize());
45714         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45715         
45716         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45717     },
45718  
45719     // private (for BoxComponent)
45720     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45721
45722     // private (for BoxComponent)
45723     getResizeEl : function(){
45724         return this.wrap;
45725     },
45726
45727     // private (for BoxComponent)
45728     getPositionEl : function(){
45729         return this.wrap;
45730     },
45731
45732     // private
45733     initEvents : function(){
45734         this.originalValue = this.getValue();
45735     },
45736
45737     /**
45738      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45739      * @method
45740      */
45741     markInvalid : Roo.emptyFn,
45742     /**
45743      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45744      * @method
45745      */
45746     clearInvalid : Roo.emptyFn,
45747
45748     setValue : function(v){
45749         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45750         this.editorcore.pushValue();
45751     },
45752
45753      
45754     // private
45755     deferFocus : function(){
45756         this.focus.defer(10, this);
45757     },
45758
45759     // doc'ed in Field
45760     focus : function(){
45761         this.editorcore.focus();
45762         
45763     },
45764       
45765
45766     // private
45767     onDestroy : function(){
45768         
45769         
45770         
45771         if(this.rendered){
45772             
45773             for (var i =0; i < this.toolbars.length;i++) {
45774                 // fixme - ask toolbars for heights?
45775                 this.toolbars[i].onDestroy();
45776             }
45777             
45778             this.wrap.dom.innerHTML = '';
45779             this.wrap.remove();
45780         }
45781     },
45782
45783     // private
45784     onFirstFocus : function(){
45785         //Roo.log("onFirstFocus");
45786         this.editorcore.onFirstFocus();
45787          for (var i =0; i < this.toolbars.length;i++) {
45788             this.toolbars[i].onFirstFocus();
45789         }
45790         
45791     },
45792     
45793     // private
45794     syncValue : function()
45795     {
45796         this.editorcore.syncValue();
45797     },
45798     
45799     pushValue : function()
45800     {
45801         this.editorcore.pushValue();
45802     },
45803     
45804     setStylesheets : function(stylesheets)
45805     {
45806         this.editorcore.setStylesheets(stylesheets);
45807     },
45808     
45809     removeStylesheets : function()
45810     {
45811         this.editorcore.removeStylesheets();
45812     }
45813      
45814     
45815     // hide stuff that is not compatible
45816     /**
45817      * @event blur
45818      * @hide
45819      */
45820     /**
45821      * @event change
45822      * @hide
45823      */
45824     /**
45825      * @event focus
45826      * @hide
45827      */
45828     /**
45829      * @event specialkey
45830      * @hide
45831      */
45832     /**
45833      * @cfg {String} fieldClass @hide
45834      */
45835     /**
45836      * @cfg {String} focusClass @hide
45837      */
45838     /**
45839      * @cfg {String} autoCreate @hide
45840      */
45841     /**
45842      * @cfg {String} inputType @hide
45843      */
45844     /**
45845      * @cfg {String} invalidClass @hide
45846      */
45847     /**
45848      * @cfg {String} invalidText @hide
45849      */
45850     /**
45851      * @cfg {String} msgFx @hide
45852      */
45853     /**
45854      * @cfg {String} validateOnBlur @hide
45855      */
45856 });
45857  
45858     // <script type="text/javascript">
45859 /*
45860  * Based on
45861  * Ext JS Library 1.1.1
45862  * Copyright(c) 2006-2007, Ext JS, LLC.
45863  *  
45864  
45865  */
45866
45867 /**
45868  * @class Roo.form.HtmlEditorToolbar1
45869  * Basic Toolbar
45870  * 
45871  * Usage:
45872  *
45873  new Roo.form.HtmlEditor({
45874     ....
45875     toolbars : [
45876         new Roo.form.HtmlEditorToolbar1({
45877             disable : { fonts: 1 , format: 1, ..., ... , ...],
45878             btns : [ .... ]
45879         })
45880     }
45881      
45882  * 
45883  * @cfg {Object} disable List of elements to disable..
45884  * @cfg {Array} btns List of additional buttons.
45885  * 
45886  * 
45887  * NEEDS Extra CSS? 
45888  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45889  */
45890  
45891 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45892 {
45893     
45894     Roo.apply(this, config);
45895     
45896     // default disabled, based on 'good practice'..
45897     this.disable = this.disable || {};
45898     Roo.applyIf(this.disable, {
45899         fontSize : true,
45900         colors : true,
45901         specialElements : true
45902     });
45903     
45904     
45905     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45906     // dont call parent... till later.
45907 }
45908
45909 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45910     
45911     tb: false,
45912     
45913     rendered: false,
45914     
45915     editor : false,
45916     editorcore : false,
45917     /**
45918      * @cfg {Object} disable  List of toolbar elements to disable
45919          
45920      */
45921     disable : false,
45922     
45923     
45924      /**
45925      * @cfg {String} createLinkText The default text for the create link prompt
45926      */
45927     createLinkText : 'Please enter the URL for the link:',
45928     /**
45929      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45930      */
45931     defaultLinkValue : 'http:/'+'/',
45932    
45933     
45934       /**
45935      * @cfg {Array} fontFamilies An array of available font families
45936      */
45937     fontFamilies : [
45938         'Arial',
45939         'Courier New',
45940         'Tahoma',
45941         'Times New Roman',
45942         'Verdana'
45943     ],
45944     
45945     specialChars : [
45946            "&#169;",
45947           "&#174;",     
45948           "&#8482;",    
45949           "&#163;" ,    
45950          // "&#8212;",    
45951           "&#8230;",    
45952           "&#247;" ,    
45953         //  "&#225;" ,     ?? a acute?
45954            "&#8364;"    , //Euro
45955        //   "&#8220;"    ,
45956         //  "&#8221;"    ,
45957         //  "&#8226;"    ,
45958           "&#176;"  //   , // degrees
45959
45960          // "&#233;"     , // e ecute
45961          // "&#250;"     , // u ecute?
45962     ],
45963     
45964     specialElements : [
45965         {
45966             text: "Insert Table",
45967             xtype: 'MenuItem',
45968             xns : Roo.Menu,
45969             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
45970                 
45971         },
45972         {    
45973             text: "Insert Image",
45974             xtype: 'MenuItem',
45975             xns : Roo.Menu,
45976             ihtml : '<img src="about:blank"/>'
45977             
45978         }
45979         
45980          
45981     ],
45982     
45983     
45984     inputElements : [ 
45985             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
45986             "input:submit", "input:button", "select", "textarea", "label" ],
45987     formats : [
45988         ["p"] ,  
45989         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
45990         ["pre"],[ "code"], 
45991         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
45992         ['div'],['span'],
45993         ['sup'],['sub']
45994     ],
45995     
45996     cleanStyles : [
45997         "font-size"
45998     ],
45999      /**
46000      * @cfg {String} defaultFont default font to use.
46001      */
46002     defaultFont: 'tahoma',
46003    
46004     fontSelect : false,
46005     
46006     
46007     formatCombo : false,
46008     
46009     init : function(editor)
46010     {
46011         this.editor = editor;
46012         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46013         var editorcore = this.editorcore;
46014         
46015         var _t = this;
46016         
46017         var fid = editorcore.frameId;
46018         var etb = this;
46019         function btn(id, toggle, handler){
46020             var xid = fid + '-'+ id ;
46021             return {
46022                 id : xid,
46023                 cmd : id,
46024                 cls : 'x-btn-icon x-edit-'+id,
46025                 enableToggle:toggle !== false,
46026                 scope: _t, // was editor...
46027                 handler:handler||_t.relayBtnCmd,
46028                 clickEvent:'mousedown',
46029                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46030                 tabIndex:-1
46031             };
46032         }
46033         
46034         
46035         
46036         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46037         this.tb = tb;
46038          // stop form submits
46039         tb.el.on('click', function(e){
46040             e.preventDefault(); // what does this do?
46041         });
46042
46043         if(!this.disable.font) { // && !Roo.isSafari){
46044             /* why no safari for fonts 
46045             editor.fontSelect = tb.el.createChild({
46046                 tag:'select',
46047                 tabIndex: -1,
46048                 cls:'x-font-select',
46049                 html: this.createFontOptions()
46050             });
46051             
46052             editor.fontSelect.on('change', function(){
46053                 var font = editor.fontSelect.dom.value;
46054                 editor.relayCmd('fontname', font);
46055                 editor.deferFocus();
46056             }, editor);
46057             
46058             tb.add(
46059                 editor.fontSelect.dom,
46060                 '-'
46061             );
46062             */
46063             
46064         };
46065         if(!this.disable.formats){
46066             this.formatCombo = new Roo.form.ComboBox({
46067                 store: new Roo.data.SimpleStore({
46068                     id : 'tag',
46069                     fields: ['tag'],
46070                     data : this.formats // from states.js
46071                 }),
46072                 blockFocus : true,
46073                 name : '',
46074                 //autoCreate : {tag: "div",  size: "20"},
46075                 displayField:'tag',
46076                 typeAhead: false,
46077                 mode: 'local',
46078                 editable : false,
46079                 triggerAction: 'all',
46080                 emptyText:'Add tag',
46081                 selectOnFocus:true,
46082                 width:135,
46083                 listeners : {
46084                     'select': function(c, r, i) {
46085                         editorcore.insertTag(r.get('tag'));
46086                         editor.focus();
46087                     }
46088                 }
46089
46090             });
46091             tb.addField(this.formatCombo);
46092             
46093         }
46094         
46095         if(!this.disable.format){
46096             tb.add(
46097                 btn('bold'),
46098                 btn('italic'),
46099                 btn('underline'),
46100                 btn('strikethrough')
46101             );
46102         };
46103         if(!this.disable.fontSize){
46104             tb.add(
46105                 '-',
46106                 
46107                 
46108                 btn('increasefontsize', false, editorcore.adjustFont),
46109                 btn('decreasefontsize', false, editorcore.adjustFont)
46110             );
46111         };
46112         
46113         
46114         if(!this.disable.colors){
46115             tb.add(
46116                 '-', {
46117                     id:editorcore.frameId +'-forecolor',
46118                     cls:'x-btn-icon x-edit-forecolor',
46119                     clickEvent:'mousedown',
46120                     tooltip: this.buttonTips['forecolor'] || undefined,
46121                     tabIndex:-1,
46122                     menu : new Roo.menu.ColorMenu({
46123                         allowReselect: true,
46124                         focus: Roo.emptyFn,
46125                         value:'000000',
46126                         plain:true,
46127                         selectHandler: function(cp, color){
46128                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46129                             editor.deferFocus();
46130                         },
46131                         scope: editorcore,
46132                         clickEvent:'mousedown'
46133                     })
46134                 }, {
46135                     id:editorcore.frameId +'backcolor',
46136                     cls:'x-btn-icon x-edit-backcolor',
46137                     clickEvent:'mousedown',
46138                     tooltip: this.buttonTips['backcolor'] || undefined,
46139                     tabIndex:-1,
46140                     menu : new Roo.menu.ColorMenu({
46141                         focus: Roo.emptyFn,
46142                         value:'FFFFFF',
46143                         plain:true,
46144                         allowReselect: true,
46145                         selectHandler: function(cp, color){
46146                             if(Roo.isGecko){
46147                                 editorcore.execCmd('useCSS', false);
46148                                 editorcore.execCmd('hilitecolor', color);
46149                                 editorcore.execCmd('useCSS', true);
46150                                 editor.deferFocus();
46151                             }else{
46152                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46153                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46154                                 editor.deferFocus();
46155                             }
46156                         },
46157                         scope:editorcore,
46158                         clickEvent:'mousedown'
46159                     })
46160                 }
46161             );
46162         };
46163         // now add all the items...
46164         
46165
46166         if(!this.disable.alignments){
46167             tb.add(
46168                 '-',
46169                 btn('justifyleft'),
46170                 btn('justifycenter'),
46171                 btn('justifyright')
46172             );
46173         };
46174
46175         //if(!Roo.isSafari){
46176             if(!this.disable.links){
46177                 tb.add(
46178                     '-',
46179                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46180                 );
46181             };
46182
46183             if(!this.disable.lists){
46184                 tb.add(
46185                     '-',
46186                     btn('insertorderedlist'),
46187                     btn('insertunorderedlist')
46188                 );
46189             }
46190             if(!this.disable.sourceEdit){
46191                 tb.add(
46192                     '-',
46193                     btn('sourceedit', true, function(btn){
46194                         this.toggleSourceEdit(btn.pressed);
46195                     })
46196                 );
46197             }
46198         //}
46199         
46200         var smenu = { };
46201         // special menu.. - needs to be tidied up..
46202         if (!this.disable.special) {
46203             smenu = {
46204                 text: "&#169;",
46205                 cls: 'x-edit-none',
46206                 
46207                 menu : {
46208                     items : []
46209                 }
46210             };
46211             for (var i =0; i < this.specialChars.length; i++) {
46212                 smenu.menu.items.push({
46213                     
46214                     html: this.specialChars[i],
46215                     handler: function(a,b) {
46216                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46217                         //editor.insertAtCursor(a.html);
46218                         
46219                     },
46220                     tabIndex:-1
46221                 });
46222             }
46223             
46224             
46225             tb.add(smenu);
46226             
46227             
46228         }
46229         
46230         var cmenu = { };
46231         if (!this.disable.cleanStyles) {
46232             cmenu = {
46233                 cls: 'x-btn-icon x-btn-clear',
46234                 
46235                 menu : {
46236                     items : []
46237                 }
46238             };
46239             for (var i =0; i < this.cleanStyles.length; i++) {
46240                 cmenu.menu.items.push({
46241                     actiontype : this.cleanStyles[i],
46242                     html: 'Remove ' + this.cleanStyles[i],
46243                     handler: function(a,b) {
46244 //                        Roo.log(a);
46245 //                        Roo.log(b);
46246                         var c = Roo.get(editorcore.doc.body);
46247                         c.select('[style]').each(function(s) {
46248                             s.dom.style.removeProperty(a.actiontype);
46249                         });
46250                         editorcore.syncValue();
46251                     },
46252                     tabIndex:-1
46253                 });
46254             }
46255              cmenu.menu.items.push({
46256                 actiontype : 'tablewidths',
46257                 html: 'Remove Table Widths',
46258                 handler: function(a,b) {
46259                     editorcore.cleanTableWidths();
46260                     editorcore.syncValue();
46261                 },
46262                 tabIndex:-1
46263             });
46264             cmenu.menu.items.push({
46265                 actiontype : 'word',
46266                 html: 'Remove MS Word Formating',
46267                 handler: function(a,b) {
46268                     editorcore.cleanWord();
46269                     editorcore.syncValue();
46270                 },
46271                 tabIndex:-1
46272             });
46273             
46274             cmenu.menu.items.push({
46275                 actiontype : 'all',
46276                 html: 'Remove All Styles',
46277                 handler: function(a,b) {
46278                     
46279                     var c = Roo.get(editorcore.doc.body);
46280                     c.select('[style]').each(function(s) {
46281                         s.dom.removeAttribute('style');
46282                     });
46283                     editorcore.syncValue();
46284                 },
46285                 tabIndex:-1
46286             });
46287             
46288             cmenu.menu.items.push({
46289                 actiontype : 'all',
46290                 html: 'Remove All CSS Classes',
46291                 handler: function(a,b) {
46292                     
46293                     var c = Roo.get(editorcore.doc.body);
46294                     c.select('[class]').each(function(s) {
46295                         s.dom.removeAttribute('class');
46296                     });
46297                     editorcore.cleanWord();
46298                     editorcore.syncValue();
46299                 },
46300                 tabIndex:-1
46301             });
46302             
46303              cmenu.menu.items.push({
46304                 actiontype : 'tidy',
46305                 html: 'Tidy HTML Source',
46306                 handler: function(a,b) {
46307                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46308                     editorcore.syncValue();
46309                 },
46310                 tabIndex:-1
46311             });
46312             
46313             
46314             tb.add(cmenu);
46315         }
46316          
46317         if (!this.disable.specialElements) {
46318             var semenu = {
46319                 text: "Other;",
46320                 cls: 'x-edit-none',
46321                 menu : {
46322                     items : []
46323                 }
46324             };
46325             for (var i =0; i < this.specialElements.length; i++) {
46326                 semenu.menu.items.push(
46327                     Roo.apply({ 
46328                         handler: function(a,b) {
46329                             editor.insertAtCursor(this.ihtml);
46330                         }
46331                     }, this.specialElements[i])
46332                 );
46333                     
46334             }
46335             
46336             tb.add(semenu);
46337             
46338             
46339         }
46340          
46341         
46342         if (this.btns) {
46343             for(var i =0; i< this.btns.length;i++) {
46344                 var b = Roo.factory(this.btns[i],Roo.form);
46345                 b.cls =  'x-edit-none';
46346                 
46347                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46348                     b.cls += ' x-init-enable';
46349                 }
46350                 
46351                 b.scope = editorcore;
46352                 tb.add(b);
46353             }
46354         
46355         }
46356         
46357         
46358         
46359         // disable everything...
46360         
46361         this.tb.items.each(function(item){
46362             
46363            if(
46364                 item.id != editorcore.frameId+ '-sourceedit' && 
46365                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46366             ){
46367                 
46368                 item.disable();
46369             }
46370         });
46371         this.rendered = true;
46372         
46373         // the all the btns;
46374         editor.on('editorevent', this.updateToolbar, this);
46375         // other toolbars need to implement this..
46376         //editor.on('editmodechange', this.updateToolbar, this);
46377     },
46378     
46379     
46380     relayBtnCmd : function(btn) {
46381         this.editorcore.relayCmd(btn.cmd);
46382     },
46383     // private used internally
46384     createLink : function(){
46385         Roo.log("create link?");
46386         var url = prompt(this.createLinkText, this.defaultLinkValue);
46387         if(url && url != 'http:/'+'/'){
46388             this.editorcore.relayCmd('createlink', url);
46389         }
46390     },
46391
46392     
46393     /**
46394      * Protected method that will not generally be called directly. It triggers
46395      * a toolbar update by reading the markup state of the current selection in the editor.
46396      */
46397     updateToolbar: function(){
46398
46399         if(!this.editorcore.activated){
46400             this.editor.onFirstFocus();
46401             return;
46402         }
46403
46404         var btns = this.tb.items.map, 
46405             doc = this.editorcore.doc,
46406             frameId = this.editorcore.frameId;
46407
46408         if(!this.disable.font && !Roo.isSafari){
46409             /*
46410             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46411             if(name != this.fontSelect.dom.value){
46412                 this.fontSelect.dom.value = name;
46413             }
46414             */
46415         }
46416         if(!this.disable.format){
46417             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46418             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46419             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46420             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46421         }
46422         if(!this.disable.alignments){
46423             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46424             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46425             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46426         }
46427         if(!Roo.isSafari && !this.disable.lists){
46428             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46429             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46430         }
46431         
46432         var ans = this.editorcore.getAllAncestors();
46433         if (this.formatCombo) {
46434             
46435             
46436             var store = this.formatCombo.store;
46437             this.formatCombo.setValue("");
46438             for (var i =0; i < ans.length;i++) {
46439                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46440                     // select it..
46441                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46442                     break;
46443                 }
46444             }
46445         }
46446         
46447         
46448         
46449         // hides menus... - so this cant be on a menu...
46450         Roo.menu.MenuMgr.hideAll();
46451
46452         //this.editorsyncValue();
46453     },
46454    
46455     
46456     createFontOptions : function(){
46457         var buf = [], fs = this.fontFamilies, ff, lc;
46458         
46459         
46460         
46461         for(var i = 0, len = fs.length; i< len; i++){
46462             ff = fs[i];
46463             lc = ff.toLowerCase();
46464             buf.push(
46465                 '<option value="',lc,'" style="font-family:',ff,';"',
46466                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46467                     ff,
46468                 '</option>'
46469             );
46470         }
46471         return buf.join('');
46472     },
46473     
46474     toggleSourceEdit : function(sourceEditMode){
46475         
46476         Roo.log("toolbar toogle");
46477         if(sourceEditMode === undefined){
46478             sourceEditMode = !this.sourceEditMode;
46479         }
46480         this.sourceEditMode = sourceEditMode === true;
46481         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46482         // just toggle the button?
46483         if(btn.pressed !== this.sourceEditMode){
46484             btn.toggle(this.sourceEditMode);
46485             return;
46486         }
46487         
46488         if(sourceEditMode){
46489             Roo.log("disabling buttons");
46490             this.tb.items.each(function(item){
46491                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46492                     item.disable();
46493                 }
46494             });
46495           
46496         }else{
46497             Roo.log("enabling buttons");
46498             if(this.editorcore.initialized){
46499                 this.tb.items.each(function(item){
46500                     item.enable();
46501                 });
46502             }
46503             
46504         }
46505         Roo.log("calling toggole on editor");
46506         // tell the editor that it's been pressed..
46507         this.editor.toggleSourceEdit(sourceEditMode);
46508        
46509     },
46510      /**
46511      * Object collection of toolbar tooltips for the buttons in the editor. The key
46512      * is the command id associated with that button and the value is a valid QuickTips object.
46513      * For example:
46514 <pre><code>
46515 {
46516     bold : {
46517         title: 'Bold (Ctrl+B)',
46518         text: 'Make the selected text bold.',
46519         cls: 'x-html-editor-tip'
46520     },
46521     italic : {
46522         title: 'Italic (Ctrl+I)',
46523         text: 'Make the selected text italic.',
46524         cls: 'x-html-editor-tip'
46525     },
46526     ...
46527 </code></pre>
46528     * @type Object
46529      */
46530     buttonTips : {
46531         bold : {
46532             title: 'Bold (Ctrl+B)',
46533             text: 'Make the selected text bold.',
46534             cls: 'x-html-editor-tip'
46535         },
46536         italic : {
46537             title: 'Italic (Ctrl+I)',
46538             text: 'Make the selected text italic.',
46539             cls: 'x-html-editor-tip'
46540         },
46541         underline : {
46542             title: 'Underline (Ctrl+U)',
46543             text: 'Underline the selected text.',
46544             cls: 'x-html-editor-tip'
46545         },
46546         strikethrough : {
46547             title: 'Strikethrough',
46548             text: 'Strikethrough the selected text.',
46549             cls: 'x-html-editor-tip'
46550         },
46551         increasefontsize : {
46552             title: 'Grow Text',
46553             text: 'Increase the font size.',
46554             cls: 'x-html-editor-tip'
46555         },
46556         decreasefontsize : {
46557             title: 'Shrink Text',
46558             text: 'Decrease the font size.',
46559             cls: 'x-html-editor-tip'
46560         },
46561         backcolor : {
46562             title: 'Text Highlight Color',
46563             text: 'Change the background color of the selected text.',
46564             cls: 'x-html-editor-tip'
46565         },
46566         forecolor : {
46567             title: 'Font Color',
46568             text: 'Change the color of the selected text.',
46569             cls: 'x-html-editor-tip'
46570         },
46571         justifyleft : {
46572             title: 'Align Text Left',
46573             text: 'Align text to the left.',
46574             cls: 'x-html-editor-tip'
46575         },
46576         justifycenter : {
46577             title: 'Center Text',
46578             text: 'Center text in the editor.',
46579             cls: 'x-html-editor-tip'
46580         },
46581         justifyright : {
46582             title: 'Align Text Right',
46583             text: 'Align text to the right.',
46584             cls: 'x-html-editor-tip'
46585         },
46586         insertunorderedlist : {
46587             title: 'Bullet List',
46588             text: 'Start a bulleted list.',
46589             cls: 'x-html-editor-tip'
46590         },
46591         insertorderedlist : {
46592             title: 'Numbered List',
46593             text: 'Start a numbered list.',
46594             cls: 'x-html-editor-tip'
46595         },
46596         createlink : {
46597             title: 'Hyperlink',
46598             text: 'Make the selected text a hyperlink.',
46599             cls: 'x-html-editor-tip'
46600         },
46601         sourceedit : {
46602             title: 'Source Edit',
46603             text: 'Switch to source editing mode.',
46604             cls: 'x-html-editor-tip'
46605         }
46606     },
46607     // private
46608     onDestroy : function(){
46609         if(this.rendered){
46610             
46611             this.tb.items.each(function(item){
46612                 if(item.menu){
46613                     item.menu.removeAll();
46614                     if(item.menu.el){
46615                         item.menu.el.destroy();
46616                     }
46617                 }
46618                 item.destroy();
46619             });
46620              
46621         }
46622     },
46623     onFirstFocus: function() {
46624         this.tb.items.each(function(item){
46625            item.enable();
46626         });
46627     }
46628 });
46629
46630
46631
46632
46633 // <script type="text/javascript">
46634 /*
46635  * Based on
46636  * Ext JS Library 1.1.1
46637  * Copyright(c) 2006-2007, Ext JS, LLC.
46638  *  
46639  
46640  */
46641
46642  
46643 /**
46644  * @class Roo.form.HtmlEditor.ToolbarContext
46645  * Context Toolbar
46646  * 
46647  * Usage:
46648  *
46649  new Roo.form.HtmlEditor({
46650     ....
46651     toolbars : [
46652         { xtype: 'ToolbarStandard', styles : {} }
46653         { xtype: 'ToolbarContext', disable : {} }
46654     ]
46655 })
46656
46657      
46658  * 
46659  * @config : {Object} disable List of elements to disable.. (not done yet.)
46660  * @config : {Object} styles  Map of styles available.
46661  * 
46662  */
46663
46664 Roo.form.HtmlEditor.ToolbarContext = function(config)
46665 {
46666     
46667     Roo.apply(this, config);
46668     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46669     // dont call parent... till later.
46670     this.styles = this.styles || {};
46671 }
46672
46673  
46674
46675 Roo.form.HtmlEditor.ToolbarContext.types = {
46676     'IMG' : {
46677         width : {
46678             title: "Width",
46679             width: 40
46680         },
46681         height:  {
46682             title: "Height",
46683             width: 40
46684         },
46685         align: {
46686             title: "Align",
46687             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46688             width : 80
46689             
46690         },
46691         border: {
46692             title: "Border",
46693             width: 40
46694         },
46695         alt: {
46696             title: "Alt",
46697             width: 120
46698         },
46699         src : {
46700             title: "Src",
46701             width: 220
46702         }
46703         
46704     },
46705     'A' : {
46706         name : {
46707             title: "Name",
46708             width: 50
46709         },
46710         target:  {
46711             title: "Target",
46712             width: 120
46713         },
46714         href:  {
46715             title: "Href",
46716             width: 220
46717         } // border?
46718         
46719     },
46720     'TABLE' : {
46721         rows : {
46722             title: "Rows",
46723             width: 20
46724         },
46725         cols : {
46726             title: "Cols",
46727             width: 20
46728         },
46729         width : {
46730             title: "Width",
46731             width: 40
46732         },
46733         height : {
46734             title: "Height",
46735             width: 40
46736         },
46737         border : {
46738             title: "Border",
46739             width: 20
46740         }
46741     },
46742     'TD' : {
46743         width : {
46744             title: "Width",
46745             width: 40
46746         },
46747         height : {
46748             title: "Height",
46749             width: 40
46750         },   
46751         align: {
46752             title: "Align",
46753             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46754             width: 80
46755         },
46756         valign: {
46757             title: "Valign",
46758             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46759             width: 80
46760         },
46761         colspan: {
46762             title: "Colspan",
46763             width: 20
46764             
46765         },
46766          'font-family'  : {
46767             title : "Font",
46768             style : 'fontFamily',
46769             displayField: 'display',
46770             optname : 'font-family',
46771             width: 140
46772         }
46773     },
46774     'INPUT' : {
46775         name : {
46776             title: "name",
46777             width: 120
46778         },
46779         value : {
46780             title: "Value",
46781             width: 120
46782         },
46783         width : {
46784             title: "Width",
46785             width: 40
46786         }
46787     },
46788     'LABEL' : {
46789         'for' : {
46790             title: "For",
46791             width: 120
46792         }
46793     },
46794     'TEXTAREA' : {
46795           name : {
46796             title: "name",
46797             width: 120
46798         },
46799         rows : {
46800             title: "Rows",
46801             width: 20
46802         },
46803         cols : {
46804             title: "Cols",
46805             width: 20
46806         }
46807     },
46808     'SELECT' : {
46809         name : {
46810             title: "name",
46811             width: 120
46812         },
46813         selectoptions : {
46814             title: "Options",
46815             width: 200
46816         }
46817     },
46818     
46819     // should we really allow this??
46820     // should this just be 
46821     'BODY' : {
46822         title : {
46823             title: "Title",
46824             width: 200,
46825             disabled : true
46826         }
46827     },
46828     'SPAN' : {
46829         'font-family'  : {
46830             title : "Font",
46831             style : 'fontFamily',
46832             displayField: 'display',
46833             optname : 'font-family',
46834             width: 140
46835         }
46836     },
46837     'DIV' : {
46838         'font-family'  : {
46839             title : "Font",
46840             style : 'fontFamily',
46841             displayField: 'display',
46842             optname : 'font-family',
46843             width: 140
46844         }
46845     },
46846      'P' : {
46847         'font-family'  : {
46848             title : "Font",
46849             style : 'fontFamily',
46850             displayField: 'display',
46851             optname : 'font-family',
46852             width: 140
46853         }
46854     },
46855     
46856     '*' : {
46857         // empty..
46858     }
46859
46860 };
46861
46862 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46863 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46864
46865 Roo.form.HtmlEditor.ToolbarContext.options = {
46866         'font-family'  : [ 
46867                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46868                 [ 'Courier New', 'Courier New'],
46869                 [ 'Tahoma', 'Tahoma'],
46870                 [ 'Times New Roman,serif', 'Times'],
46871                 [ 'Verdana','Verdana' ]
46872         ]
46873 };
46874
46875 // fixme - these need to be configurable..
46876  
46877
46878 //Roo.form.HtmlEditor.ToolbarContext.types
46879
46880
46881 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46882     
46883     tb: false,
46884     
46885     rendered: false,
46886     
46887     editor : false,
46888     editorcore : false,
46889     /**
46890      * @cfg {Object} disable  List of toolbar elements to disable
46891          
46892      */
46893     disable : false,
46894     /**
46895      * @cfg {Object} styles List of styles 
46896      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46897      *
46898      * These must be defined in the page, so they get rendered correctly..
46899      * .headline { }
46900      * TD.underline { }
46901      * 
46902      */
46903     styles : false,
46904     
46905     options: false,
46906     
46907     toolbars : false,
46908     
46909     init : function(editor)
46910     {
46911         this.editor = editor;
46912         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46913         var editorcore = this.editorcore;
46914         
46915         var fid = editorcore.frameId;
46916         var etb = this;
46917         function btn(id, toggle, handler){
46918             var xid = fid + '-'+ id ;
46919             return {
46920                 id : xid,
46921                 cmd : id,
46922                 cls : 'x-btn-icon x-edit-'+id,
46923                 enableToggle:toggle !== false,
46924                 scope: editorcore, // was editor...
46925                 handler:handler||editorcore.relayBtnCmd,
46926                 clickEvent:'mousedown',
46927                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46928                 tabIndex:-1
46929             };
46930         }
46931         // create a new element.
46932         var wdiv = editor.wrap.createChild({
46933                 tag: 'div'
46934             }, editor.wrap.dom.firstChild.nextSibling, true);
46935         
46936         // can we do this more than once??
46937         
46938          // stop form submits
46939       
46940  
46941         // disable everything...
46942         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46943         this.toolbars = {};
46944            
46945         for (var i in  ty) {
46946           
46947             this.toolbars[i] = this.buildToolbar(ty[i],i);
46948         }
46949         this.tb = this.toolbars.BODY;
46950         this.tb.el.show();
46951         this.buildFooter();
46952         this.footer.show();
46953         editor.on('hide', function( ) { this.footer.hide() }, this);
46954         editor.on('show', function( ) { this.footer.show() }, this);
46955         
46956          
46957         this.rendered = true;
46958         
46959         // the all the btns;
46960         editor.on('editorevent', this.updateToolbar, this);
46961         // other toolbars need to implement this..
46962         //editor.on('editmodechange', this.updateToolbar, this);
46963     },
46964     
46965     
46966     
46967     /**
46968      * Protected method that will not generally be called directly. It triggers
46969      * a toolbar update by reading the markup state of the current selection in the editor.
46970      *
46971      * Note you can force an update by calling on('editorevent', scope, false)
46972      */
46973     updateToolbar: function(editor,ev,sel){
46974
46975         //Roo.log(ev);
46976         // capture mouse up - this is handy for selecting images..
46977         // perhaps should go somewhere else...
46978         if(!this.editorcore.activated){
46979              this.editor.onFirstFocus();
46980             return;
46981         }
46982         
46983         
46984         
46985         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
46986         // selectNode - might want to handle IE?
46987         if (ev &&
46988             (ev.type == 'mouseup' || ev.type == 'click' ) &&
46989             ev.target && ev.target.tagName == 'IMG') {
46990             // they have click on an image...
46991             // let's see if we can change the selection...
46992             sel = ev.target;
46993          
46994               var nodeRange = sel.ownerDocument.createRange();
46995             try {
46996                 nodeRange.selectNode(sel);
46997             } catch (e) {
46998                 nodeRange.selectNodeContents(sel);
46999             }
47000             //nodeRange.collapse(true);
47001             var s = this.editorcore.win.getSelection();
47002             s.removeAllRanges();
47003             s.addRange(nodeRange);
47004         }  
47005         
47006       
47007         var updateFooter = sel ? false : true;
47008         
47009         
47010         var ans = this.editorcore.getAllAncestors();
47011         
47012         // pick
47013         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47014         
47015         if (!sel) { 
47016             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47017             sel = sel ? sel : this.editorcore.doc.body;
47018             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47019             
47020         }
47021         // pick a menu that exists..
47022         var tn = sel.tagName.toUpperCase();
47023         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47024         
47025         tn = sel.tagName.toUpperCase();
47026         
47027         var lastSel = this.tb.selectedNode;
47028         
47029         this.tb.selectedNode = sel;
47030         
47031         // if current menu does not match..
47032         
47033         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47034                 
47035             this.tb.el.hide();
47036             ///console.log("show: " + tn);
47037             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47038             this.tb.el.show();
47039             // update name
47040             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47041             
47042             
47043             // update attributes
47044             if (this.tb.fields) {
47045                 this.tb.fields.each(function(e) {
47046                     if (e.stylename) {
47047                         e.setValue(sel.style[e.stylename]);
47048                         return;
47049                     } 
47050                    e.setValue(sel.getAttribute(e.attrname));
47051                 });
47052             }
47053             
47054             var hasStyles = false;
47055             for(var i in this.styles) {
47056                 hasStyles = true;
47057                 break;
47058             }
47059             
47060             // update styles
47061             if (hasStyles) { 
47062                 var st = this.tb.fields.item(0);
47063                 
47064                 st.store.removeAll();
47065                
47066                 
47067                 var cn = sel.className.split(/\s+/);
47068                 
47069                 var avs = [];
47070                 if (this.styles['*']) {
47071                     
47072                     Roo.each(this.styles['*'], function(v) {
47073                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47074                     });
47075                 }
47076                 if (this.styles[tn]) { 
47077                     Roo.each(this.styles[tn], function(v) {
47078                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47079                     });
47080                 }
47081                 
47082                 st.store.loadData(avs);
47083                 st.collapse();
47084                 st.setValue(cn);
47085             }
47086             // flag our selected Node.
47087             this.tb.selectedNode = sel;
47088            
47089            
47090             Roo.menu.MenuMgr.hideAll();
47091
47092         }
47093         
47094         if (!updateFooter) {
47095             //this.footDisp.dom.innerHTML = ''; 
47096             return;
47097         }
47098         // update the footer
47099         //
47100         var html = '';
47101         
47102         this.footerEls = ans.reverse();
47103         Roo.each(this.footerEls, function(a,i) {
47104             if (!a) { return; }
47105             html += html.length ? ' &gt; '  :  '';
47106             
47107             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47108             
47109         });
47110        
47111         // 
47112         var sz = this.footDisp.up('td').getSize();
47113         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47114         this.footDisp.dom.style.marginLeft = '5px';
47115         
47116         this.footDisp.dom.style.overflow = 'hidden';
47117         
47118         this.footDisp.dom.innerHTML = html;
47119             
47120         //this.editorsyncValue();
47121     },
47122      
47123     
47124    
47125        
47126     // private
47127     onDestroy : function(){
47128         if(this.rendered){
47129             
47130             this.tb.items.each(function(item){
47131                 if(item.menu){
47132                     item.menu.removeAll();
47133                     if(item.menu.el){
47134                         item.menu.el.destroy();
47135                     }
47136                 }
47137                 item.destroy();
47138             });
47139              
47140         }
47141     },
47142     onFirstFocus: function() {
47143         // need to do this for all the toolbars..
47144         this.tb.items.each(function(item){
47145            item.enable();
47146         });
47147     },
47148     buildToolbar: function(tlist, nm)
47149     {
47150         var editor = this.editor;
47151         var editorcore = this.editorcore;
47152          // create a new element.
47153         var wdiv = editor.wrap.createChild({
47154                 tag: 'div'
47155             }, editor.wrap.dom.firstChild.nextSibling, true);
47156         
47157        
47158         var tb = new Roo.Toolbar(wdiv);
47159         // add the name..
47160         
47161         tb.add(nm+ ":&nbsp;");
47162         
47163         var styles = [];
47164         for(var i in this.styles) {
47165             styles.push(i);
47166         }
47167         
47168         // styles...
47169         if (styles && styles.length) {
47170             
47171             // this needs a multi-select checkbox...
47172             tb.addField( new Roo.form.ComboBox({
47173                 store: new Roo.data.SimpleStore({
47174                     id : 'val',
47175                     fields: ['val', 'selected'],
47176                     data : [] 
47177                 }),
47178                 name : '-roo-edit-className',
47179                 attrname : 'className',
47180                 displayField: 'val',
47181                 typeAhead: false,
47182                 mode: 'local',
47183                 editable : false,
47184                 triggerAction: 'all',
47185                 emptyText:'Select Style',
47186                 selectOnFocus:true,
47187                 width: 130,
47188                 listeners : {
47189                     'select': function(c, r, i) {
47190                         // initial support only for on class per el..
47191                         tb.selectedNode.className =  r ? r.get('val') : '';
47192                         editorcore.syncValue();
47193                     }
47194                 }
47195     
47196             }));
47197         }
47198         
47199         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47200         var tbops = tbc.options;
47201         
47202         for (var i in tlist) {
47203             
47204             var item = tlist[i];
47205             tb.add(item.title + ":&nbsp;");
47206             
47207             
47208             //optname == used so you can configure the options available..
47209             var opts = item.opts ? item.opts : false;
47210             if (item.optname) {
47211                 opts = tbops[item.optname];
47212            
47213             }
47214             
47215             if (opts) {
47216                 // opts == pulldown..
47217                 tb.addField( new Roo.form.ComboBox({
47218                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47219                         id : 'val',
47220                         fields: ['val', 'display'],
47221                         data : opts  
47222                     }),
47223                     name : '-roo-edit-' + i,
47224                     attrname : i,
47225                     stylename : item.style ? item.style : false,
47226                     displayField: item.displayField ? item.displayField : 'val',
47227                     valueField :  'val',
47228                     typeAhead: false,
47229                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47230                     editable : false,
47231                     triggerAction: 'all',
47232                     emptyText:'Select',
47233                     selectOnFocus:true,
47234                     width: item.width ? item.width  : 130,
47235                     listeners : {
47236                         'select': function(c, r, i) {
47237                             if (c.stylename) {
47238                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47239                                 return;
47240                             }
47241                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47242                         }
47243                     }
47244
47245                 }));
47246                 continue;
47247                     
47248                  
47249                 
47250                 tb.addField( new Roo.form.TextField({
47251                     name: i,
47252                     width: 100,
47253                     //allowBlank:false,
47254                     value: ''
47255                 }));
47256                 continue;
47257             }
47258             tb.addField( new Roo.form.TextField({
47259                 name: '-roo-edit-' + i,
47260                 attrname : i,
47261                 
47262                 width: item.width,
47263                 //allowBlank:true,
47264                 value: '',
47265                 listeners: {
47266                     'change' : function(f, nv, ov) {
47267                         tb.selectedNode.setAttribute(f.attrname, nv);
47268                         editorcore.syncValue();
47269                     }
47270                 }
47271             }));
47272              
47273         }
47274         
47275         var _this = this;
47276         
47277         if(nm == 'BODY'){
47278             tb.addSeparator();
47279         
47280             tb.addButton( {
47281                 text: 'Stylesheets',
47282
47283                 listeners : {
47284                     click : function ()
47285                     {
47286                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47287                     }
47288                 }
47289             });
47290         }
47291         
47292         tb.addFill();
47293         tb.addButton( {
47294             text: 'Remove Tag',
47295     
47296             listeners : {
47297                 click : function ()
47298                 {
47299                     // remove
47300                     // undo does not work.
47301                      
47302                     var sn = tb.selectedNode;
47303                     
47304                     var pn = sn.parentNode;
47305                     
47306                     var stn =  sn.childNodes[0];
47307                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47308                     while (sn.childNodes.length) {
47309                         var node = sn.childNodes[0];
47310                         sn.removeChild(node);
47311                         //Roo.log(node);
47312                         pn.insertBefore(node, sn);
47313                         
47314                     }
47315                     pn.removeChild(sn);
47316                     var range = editorcore.createRange();
47317         
47318                     range.setStart(stn,0);
47319                     range.setEnd(en,0); //????
47320                     //range.selectNode(sel);
47321                     
47322                     
47323                     var selection = editorcore.getSelection();
47324                     selection.removeAllRanges();
47325                     selection.addRange(range);
47326                     
47327                     
47328                     
47329                     //_this.updateToolbar(null, null, pn);
47330                     _this.updateToolbar(null, null, null);
47331                     _this.footDisp.dom.innerHTML = ''; 
47332                 }
47333             }
47334             
47335                     
47336                 
47337             
47338         });
47339         
47340         
47341         tb.el.on('click', function(e){
47342             e.preventDefault(); // what does this do?
47343         });
47344         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47345         tb.el.hide();
47346         tb.name = nm;
47347         // dont need to disable them... as they will get hidden
47348         return tb;
47349          
47350         
47351     },
47352     buildFooter : function()
47353     {
47354         
47355         var fel = this.editor.wrap.createChild();
47356         this.footer = new Roo.Toolbar(fel);
47357         // toolbar has scrolly on left / right?
47358         var footDisp= new Roo.Toolbar.Fill();
47359         var _t = this;
47360         this.footer.add(
47361             {
47362                 text : '&lt;',
47363                 xtype: 'Button',
47364                 handler : function() {
47365                     _t.footDisp.scrollTo('left',0,true)
47366                 }
47367             }
47368         );
47369         this.footer.add( footDisp );
47370         this.footer.add( 
47371             {
47372                 text : '&gt;',
47373                 xtype: 'Button',
47374                 handler : function() {
47375                     // no animation..
47376                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47377                 }
47378             }
47379         );
47380         var fel = Roo.get(footDisp.el);
47381         fel.addClass('x-editor-context');
47382         this.footDispWrap = fel; 
47383         this.footDispWrap.overflow  = 'hidden';
47384         
47385         this.footDisp = fel.createChild();
47386         this.footDispWrap.on('click', this.onContextClick, this)
47387         
47388         
47389     },
47390     onContextClick : function (ev,dom)
47391     {
47392         ev.preventDefault();
47393         var  cn = dom.className;
47394         //Roo.log(cn);
47395         if (!cn.match(/x-ed-loc-/)) {
47396             return;
47397         }
47398         var n = cn.split('-').pop();
47399         var ans = this.footerEls;
47400         var sel = ans[n];
47401         
47402          // pick
47403         var range = this.editorcore.createRange();
47404         
47405         range.selectNodeContents(sel);
47406         //range.selectNode(sel);
47407         
47408         
47409         var selection = this.editorcore.getSelection();
47410         selection.removeAllRanges();
47411         selection.addRange(range);
47412         
47413         
47414         
47415         this.updateToolbar(null, null, sel);
47416         
47417         
47418     }
47419     
47420     
47421     
47422     
47423     
47424 });
47425
47426
47427
47428
47429
47430 /*
47431  * Based on:
47432  * Ext JS Library 1.1.1
47433  * Copyright(c) 2006-2007, Ext JS, LLC.
47434  *
47435  * Originally Released Under LGPL - original licence link has changed is not relivant.
47436  *
47437  * Fork - LGPL
47438  * <script type="text/javascript">
47439  */
47440  
47441 /**
47442  * @class Roo.form.BasicForm
47443  * @extends Roo.util.Observable
47444  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47445  * @constructor
47446  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47447  * @param {Object} config Configuration options
47448  */
47449 Roo.form.BasicForm = function(el, config){
47450     this.allItems = [];
47451     this.childForms = [];
47452     Roo.apply(this, config);
47453     /*
47454      * The Roo.form.Field items in this form.
47455      * @type MixedCollection
47456      */
47457      
47458      
47459     this.items = new Roo.util.MixedCollection(false, function(o){
47460         return o.id || (o.id = Roo.id());
47461     });
47462     this.addEvents({
47463         /**
47464          * @event beforeaction
47465          * Fires before any action is performed. Return false to cancel the action.
47466          * @param {Form} this
47467          * @param {Action} action The action to be performed
47468          */
47469         beforeaction: true,
47470         /**
47471          * @event actionfailed
47472          * Fires when an action fails.
47473          * @param {Form} this
47474          * @param {Action} action The action that failed
47475          */
47476         actionfailed : true,
47477         /**
47478          * @event actioncomplete
47479          * Fires when an action is completed.
47480          * @param {Form} this
47481          * @param {Action} action The action that completed
47482          */
47483         actioncomplete : true
47484     });
47485     if(el){
47486         this.initEl(el);
47487     }
47488     Roo.form.BasicForm.superclass.constructor.call(this);
47489     
47490     Roo.form.BasicForm.popover.apply();
47491 };
47492
47493 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47494     /**
47495      * @cfg {String} method
47496      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47497      */
47498     /**
47499      * @cfg {DataReader} reader
47500      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47501      * This is optional as there is built-in support for processing JSON.
47502      */
47503     /**
47504      * @cfg {DataReader} errorReader
47505      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47506      * This is completely optional as there is built-in support for processing JSON.
47507      */
47508     /**
47509      * @cfg {String} url
47510      * The URL to use for form actions if one isn't supplied in the action options.
47511      */
47512     /**
47513      * @cfg {Boolean} fileUpload
47514      * Set to true if this form is a file upload.
47515      */
47516      
47517     /**
47518      * @cfg {Object} baseParams
47519      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47520      */
47521      /**
47522      
47523     /**
47524      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47525      */
47526     timeout: 30,
47527
47528     // private
47529     activeAction : null,
47530
47531     /**
47532      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47533      * or setValues() data instead of when the form was first created.
47534      */
47535     trackResetOnLoad : false,
47536     
47537     
47538     /**
47539      * childForms - used for multi-tab forms
47540      * @type {Array}
47541      */
47542     childForms : false,
47543     
47544     /**
47545      * allItems - full list of fields.
47546      * @type {Array}
47547      */
47548     allItems : false,
47549     
47550     /**
47551      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47552      * element by passing it or its id or mask the form itself by passing in true.
47553      * @type Mixed
47554      */
47555     waitMsgTarget : false,
47556     
47557     /**
47558      * @type Boolean
47559      */
47560     disableMask : false,
47561     
47562     /**
47563      * @cfg {Boolean} errorMask (true|false) default false
47564      */
47565     errorMask : false,
47566     
47567     /**
47568      * @cfg {Number} maskOffset Default 100
47569      */
47570     maskOffset : 100,
47571
47572     // private
47573     initEl : function(el){
47574         this.el = Roo.get(el);
47575         this.id = this.el.id || Roo.id();
47576         this.el.on('submit', this.onSubmit, this);
47577         this.el.addClass('x-form');
47578     },
47579
47580     // private
47581     onSubmit : function(e){
47582         e.stopEvent();
47583     },
47584
47585     /**
47586      * Returns true if client-side validation on the form is successful.
47587      * @return Boolean
47588      */
47589     isValid : function(){
47590         var valid = true;
47591         var target = false;
47592         this.items.each(function(f){
47593             if(f.validate()){
47594                 return;
47595             }
47596             
47597             valid = false;
47598                 
47599             if(!target && f.el.isVisible(true)){
47600                 target = f;
47601             }
47602         });
47603         
47604         if(this.errorMask && !valid){
47605             Roo.form.BasicForm.popover.mask(this, target);
47606         }
47607         
47608         return valid;
47609     },
47610     /**
47611      * Returns array of invalid form fields.
47612      * @return Array
47613      */
47614     
47615     invalidFields : function()
47616     {
47617         var ret = [];
47618         this.items.each(function(f){
47619             if(f.validate()){
47620                 return;
47621             }
47622             ret.push(f);
47623             
47624         });
47625         
47626         return ret;
47627     },
47628     
47629     
47630     /**
47631      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47632      * @return Boolean
47633      */
47634     isDirty : function(){
47635         var dirty = false;
47636         this.items.each(function(f){
47637            if(f.isDirty()){
47638                dirty = true;
47639                return false;
47640            }
47641         });
47642         return dirty;
47643     },
47644     
47645     /**
47646      * Returns true if any fields in this form have changed since their original load. (New version)
47647      * @return Boolean
47648      */
47649     
47650     hasChanged : function()
47651     {
47652         var dirty = false;
47653         this.items.each(function(f){
47654            if(f.hasChanged()){
47655                dirty = true;
47656                return false;
47657            }
47658         });
47659         return dirty;
47660         
47661     },
47662     /**
47663      * Resets all hasChanged to 'false' -
47664      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47665      * So hasChanged storage is only to be used for this purpose
47666      * @return Boolean
47667      */
47668     resetHasChanged : function()
47669     {
47670         this.items.each(function(f){
47671            f.resetHasChanged();
47672         });
47673         
47674     },
47675     
47676     
47677     /**
47678      * Performs a predefined action (submit or load) or custom actions you define on this form.
47679      * @param {String} actionName The name of the action type
47680      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47681      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47682      * accept other config options):
47683      * <pre>
47684 Property          Type             Description
47685 ----------------  ---------------  ----------------------------------------------------------------------------------
47686 url               String           The url for the action (defaults to the form's url)
47687 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47688 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47689 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47690                                    validate the form on the client (defaults to false)
47691      * </pre>
47692      * @return {BasicForm} this
47693      */
47694     doAction : function(action, options){
47695         if(typeof action == 'string'){
47696             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47697         }
47698         if(this.fireEvent('beforeaction', this, action) !== false){
47699             this.beforeAction(action);
47700             action.run.defer(100, action);
47701         }
47702         return this;
47703     },
47704
47705     /**
47706      * Shortcut to do a submit action.
47707      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47708      * @return {BasicForm} this
47709      */
47710     submit : function(options){
47711         this.doAction('submit', options);
47712         return this;
47713     },
47714
47715     /**
47716      * Shortcut to do a load action.
47717      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47718      * @return {BasicForm} this
47719      */
47720     load : function(options){
47721         this.doAction('load', options);
47722         return this;
47723     },
47724
47725     /**
47726      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47727      * @param {Record} record The record to edit
47728      * @return {BasicForm} this
47729      */
47730     updateRecord : function(record){
47731         record.beginEdit();
47732         var fs = record.fields;
47733         fs.each(function(f){
47734             var field = this.findField(f.name);
47735             if(field){
47736                 record.set(f.name, field.getValue());
47737             }
47738         }, this);
47739         record.endEdit();
47740         return this;
47741     },
47742
47743     /**
47744      * Loads an Roo.data.Record into this form.
47745      * @param {Record} record The record to load
47746      * @return {BasicForm} this
47747      */
47748     loadRecord : function(record){
47749         this.setValues(record.data);
47750         return this;
47751     },
47752
47753     // private
47754     beforeAction : function(action){
47755         var o = action.options;
47756         
47757         if(!this.disableMask) {
47758             if(this.waitMsgTarget === true){
47759                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47760             }else if(this.waitMsgTarget){
47761                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47762                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47763             }else {
47764                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47765             }
47766         }
47767         
47768          
47769     },
47770
47771     // private
47772     afterAction : function(action, success){
47773         this.activeAction = null;
47774         var o = action.options;
47775         
47776         if(!this.disableMask) {
47777             if(this.waitMsgTarget === true){
47778                 this.el.unmask();
47779             }else if(this.waitMsgTarget){
47780                 this.waitMsgTarget.unmask();
47781             }else{
47782                 Roo.MessageBox.updateProgress(1);
47783                 Roo.MessageBox.hide();
47784             }
47785         }
47786         
47787         if(success){
47788             if(o.reset){
47789                 this.reset();
47790             }
47791             Roo.callback(o.success, o.scope, [this, action]);
47792             this.fireEvent('actioncomplete', this, action);
47793             
47794         }else{
47795             
47796             // failure condition..
47797             // we have a scenario where updates need confirming.
47798             // eg. if a locking scenario exists..
47799             // we look for { errors : { needs_confirm : true }} in the response.
47800             if (
47801                 (typeof(action.result) != 'undefined')  &&
47802                 (typeof(action.result.errors) != 'undefined')  &&
47803                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47804            ){
47805                 var _t = this;
47806                 Roo.MessageBox.confirm(
47807                     "Change requires confirmation",
47808                     action.result.errorMsg,
47809                     function(r) {
47810                         if (r != 'yes') {
47811                             return;
47812                         }
47813                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47814                     }
47815                     
47816                 );
47817                 
47818                 
47819                 
47820                 return;
47821             }
47822             
47823             Roo.callback(o.failure, o.scope, [this, action]);
47824             // show an error message if no failed handler is set..
47825             if (!this.hasListener('actionfailed')) {
47826                 Roo.MessageBox.alert("Error",
47827                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47828                         action.result.errorMsg :
47829                         "Saving Failed, please check your entries or try again"
47830                 );
47831             }
47832             
47833             this.fireEvent('actionfailed', this, action);
47834         }
47835         
47836     },
47837
47838     /**
47839      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47840      * @param {String} id The value to search for
47841      * @return Field
47842      */
47843     findField : function(id){
47844         var field = this.items.get(id);
47845         if(!field){
47846             this.items.each(function(f){
47847                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47848                     field = f;
47849                     return false;
47850                 }
47851             });
47852         }
47853         return field || null;
47854     },
47855
47856     /**
47857      * Add a secondary form to this one, 
47858      * Used to provide tabbed forms. One form is primary, with hidden values 
47859      * which mirror the elements from the other forms.
47860      * 
47861      * @param {Roo.form.Form} form to add.
47862      * 
47863      */
47864     addForm : function(form)
47865     {
47866        
47867         if (this.childForms.indexOf(form) > -1) {
47868             // already added..
47869             return;
47870         }
47871         this.childForms.push(form);
47872         var n = '';
47873         Roo.each(form.allItems, function (fe) {
47874             
47875             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47876             if (this.findField(n)) { // already added..
47877                 return;
47878             }
47879             var add = new Roo.form.Hidden({
47880                 name : n
47881             });
47882             add.render(this.el);
47883             
47884             this.add( add );
47885         }, this);
47886         
47887     },
47888     /**
47889      * Mark fields in this form invalid in bulk.
47890      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47891      * @return {BasicForm} this
47892      */
47893     markInvalid : function(errors){
47894         if(errors instanceof Array){
47895             for(var i = 0, len = errors.length; i < len; i++){
47896                 var fieldError = errors[i];
47897                 var f = this.findField(fieldError.id);
47898                 if(f){
47899                     f.markInvalid(fieldError.msg);
47900                 }
47901             }
47902         }else{
47903             var field, id;
47904             for(id in errors){
47905                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47906                     field.markInvalid(errors[id]);
47907                 }
47908             }
47909         }
47910         Roo.each(this.childForms || [], function (f) {
47911             f.markInvalid(errors);
47912         });
47913         
47914         return this;
47915     },
47916
47917     /**
47918      * Set values for fields in this form in bulk.
47919      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
47920      * @return {BasicForm} this
47921      */
47922     setValues : function(values){
47923         if(values instanceof Array){ // array of objects
47924             for(var i = 0, len = values.length; i < len; i++){
47925                 var v = values[i];
47926                 var f = this.findField(v.id);
47927                 if(f){
47928                     f.setValue(v.value);
47929                     if(this.trackResetOnLoad){
47930                         f.originalValue = f.getValue();
47931                     }
47932                 }
47933             }
47934         }else{ // object hash
47935             var field, id;
47936             for(id in values){
47937                 if(typeof values[id] != 'function' && (field = this.findField(id))){
47938                     
47939                     if (field.setFromData && 
47940                         field.valueField && 
47941                         field.displayField &&
47942                         // combos' with local stores can 
47943                         // be queried via setValue()
47944                         // to set their value..
47945                         (field.store && !field.store.isLocal)
47946                         ) {
47947                         // it's a combo
47948                         var sd = { };
47949                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
47950                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
47951                         field.setFromData(sd);
47952                         
47953                     } else {
47954                         field.setValue(values[id]);
47955                     }
47956                     
47957                     
47958                     if(this.trackResetOnLoad){
47959                         field.originalValue = field.getValue();
47960                     }
47961                 }
47962             }
47963         }
47964         this.resetHasChanged();
47965         
47966         
47967         Roo.each(this.childForms || [], function (f) {
47968             f.setValues(values);
47969             f.resetHasChanged();
47970         });
47971                 
47972         return this;
47973     },
47974  
47975     /**
47976      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
47977      * they are returned as an array.
47978      * @param {Boolean} asString
47979      * @return {Object}
47980      */
47981     getValues : function(asString){
47982         if (this.childForms) {
47983             // copy values from the child forms
47984             Roo.each(this.childForms, function (f) {
47985                 this.setValues(f.getValues());
47986             }, this);
47987         }
47988         
47989         // use formdata
47990         if (typeof(FormData) != 'undefined' && asString !== true) {
47991             // this relies on a 'recent' version of chrome apparently...
47992             try {
47993                 var fd = (new FormData(this.el.dom)).entries();
47994                 var ret = {};
47995                 var ent = fd.next();
47996                 while (!ent.done) {
47997                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
47998                     ent = fd.next();
47999                 };
48000                 return ret;
48001             } catch(e) {
48002                 
48003             }
48004             
48005         }
48006         
48007         
48008         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48009         if(asString === true){
48010             return fs;
48011         }
48012         return Roo.urlDecode(fs);
48013     },
48014     
48015     /**
48016      * Returns the fields in this form as an object with key/value pairs. 
48017      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48018      * @return {Object}
48019      */
48020     getFieldValues : function(with_hidden)
48021     {
48022         if (this.childForms) {
48023             // copy values from the child forms
48024             // should this call getFieldValues - probably not as we do not currently copy
48025             // hidden fields when we generate..
48026             Roo.each(this.childForms, function (f) {
48027                 this.setValues(f.getValues());
48028             }, this);
48029         }
48030         
48031         var ret = {};
48032         this.items.each(function(f){
48033             if (!f.getName()) {
48034                 return;
48035             }
48036             var v = f.getValue();
48037             if (f.inputType =='radio') {
48038                 if (typeof(ret[f.getName()]) == 'undefined') {
48039                     ret[f.getName()] = ''; // empty..
48040                 }
48041                 
48042                 if (!f.el.dom.checked) {
48043                     return;
48044                     
48045                 }
48046                 v = f.el.dom.value;
48047                 
48048             }
48049             
48050             // not sure if this supported any more..
48051             if ((typeof(v) == 'object') && f.getRawValue) {
48052                 v = f.getRawValue() ; // dates..
48053             }
48054             // combo boxes where name != hiddenName...
48055             if (f.name != f.getName()) {
48056                 ret[f.name] = f.getRawValue();
48057             }
48058             ret[f.getName()] = v;
48059         });
48060         
48061         return ret;
48062     },
48063
48064     /**
48065      * Clears all invalid messages in this form.
48066      * @return {BasicForm} this
48067      */
48068     clearInvalid : function(){
48069         this.items.each(function(f){
48070            f.clearInvalid();
48071         });
48072         
48073         Roo.each(this.childForms || [], function (f) {
48074             f.clearInvalid();
48075         });
48076         
48077         
48078         return this;
48079     },
48080
48081     /**
48082      * Resets this form.
48083      * @return {BasicForm} this
48084      */
48085     reset : function(){
48086         this.items.each(function(f){
48087             f.reset();
48088         });
48089         
48090         Roo.each(this.childForms || [], function (f) {
48091             f.reset();
48092         });
48093         this.resetHasChanged();
48094         
48095         return this;
48096     },
48097
48098     /**
48099      * Add Roo.form components to this form.
48100      * @param {Field} field1
48101      * @param {Field} field2 (optional)
48102      * @param {Field} etc (optional)
48103      * @return {BasicForm} this
48104      */
48105     add : function(){
48106         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48107         return this;
48108     },
48109
48110
48111     /**
48112      * Removes a field from the items collection (does NOT remove its markup).
48113      * @param {Field} field
48114      * @return {BasicForm} this
48115      */
48116     remove : function(field){
48117         this.items.remove(field);
48118         return this;
48119     },
48120
48121     /**
48122      * Looks at the fields in this form, checks them for an id attribute,
48123      * and calls applyTo on the existing dom element with that id.
48124      * @return {BasicForm} this
48125      */
48126     render : function(){
48127         this.items.each(function(f){
48128             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48129                 f.applyTo(f.id);
48130             }
48131         });
48132         return this;
48133     },
48134
48135     /**
48136      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48137      * @param {Object} values
48138      * @return {BasicForm} this
48139      */
48140     applyToFields : function(o){
48141         this.items.each(function(f){
48142            Roo.apply(f, o);
48143         });
48144         return this;
48145     },
48146
48147     /**
48148      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48149      * @param {Object} values
48150      * @return {BasicForm} this
48151      */
48152     applyIfToFields : function(o){
48153         this.items.each(function(f){
48154            Roo.applyIf(f, o);
48155         });
48156         return this;
48157     }
48158 });
48159
48160 // back compat
48161 Roo.BasicForm = Roo.form.BasicForm;
48162
48163 Roo.apply(Roo.form.BasicForm, {
48164     
48165     popover : {
48166         
48167         padding : 5,
48168         
48169         isApplied : false,
48170         
48171         isMasked : false,
48172         
48173         form : false,
48174         
48175         target : false,
48176         
48177         intervalID : false,
48178         
48179         maskEl : false,
48180         
48181         apply : function()
48182         {
48183             if(this.isApplied){
48184                 return;
48185             }
48186             
48187             this.maskEl = {
48188                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48189                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48190                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48191                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48192             };
48193             
48194             this.maskEl.top.enableDisplayMode("block");
48195             this.maskEl.left.enableDisplayMode("block");
48196             this.maskEl.bottom.enableDisplayMode("block");
48197             this.maskEl.right.enableDisplayMode("block");
48198             
48199             Roo.get(document.body).on('click', function(){
48200                 this.unmask();
48201             }, this);
48202             
48203             Roo.get(document.body).on('touchstart', function(){
48204                 this.unmask();
48205             }, this);
48206             
48207             this.isApplied = true
48208         },
48209         
48210         mask : function(form, target)
48211         {
48212             this.form = form;
48213             
48214             this.target = target;
48215             
48216             if(!this.form.errorMask || !target.el){
48217                 return;
48218             }
48219             
48220             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48221             
48222             var ot = this.target.el.calcOffsetsTo(scrollable);
48223             
48224             var scrollTo = ot[1] - this.form.maskOffset;
48225             
48226             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48227             
48228             scrollable.scrollTo('top', scrollTo);
48229             
48230             var el = this.target.wrap || this.target.el;
48231             
48232             var box = el.getBox();
48233             
48234             this.maskEl.top.setStyle('position', 'absolute');
48235             this.maskEl.top.setStyle('z-index', 10000);
48236             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48237             this.maskEl.top.setLeft(0);
48238             this.maskEl.top.setTop(0);
48239             this.maskEl.top.show();
48240             
48241             this.maskEl.left.setStyle('position', 'absolute');
48242             this.maskEl.left.setStyle('z-index', 10000);
48243             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48244             this.maskEl.left.setLeft(0);
48245             this.maskEl.left.setTop(box.y - this.padding);
48246             this.maskEl.left.show();
48247
48248             this.maskEl.bottom.setStyle('position', 'absolute');
48249             this.maskEl.bottom.setStyle('z-index', 10000);
48250             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48251             this.maskEl.bottom.setLeft(0);
48252             this.maskEl.bottom.setTop(box.bottom + this.padding);
48253             this.maskEl.bottom.show();
48254
48255             this.maskEl.right.setStyle('position', 'absolute');
48256             this.maskEl.right.setStyle('z-index', 10000);
48257             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48258             this.maskEl.right.setLeft(box.right + this.padding);
48259             this.maskEl.right.setTop(box.y - this.padding);
48260             this.maskEl.right.show();
48261
48262             this.intervalID = window.setInterval(function() {
48263                 Roo.form.BasicForm.popover.unmask();
48264             }, 10000);
48265
48266             window.onwheel = function(){ return false;};
48267             
48268             (function(){ this.isMasked = true; }).defer(500, this);
48269             
48270         },
48271         
48272         unmask : function()
48273         {
48274             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48275                 return;
48276             }
48277             
48278             this.maskEl.top.setStyle('position', 'absolute');
48279             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48280             this.maskEl.top.hide();
48281
48282             this.maskEl.left.setStyle('position', 'absolute');
48283             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48284             this.maskEl.left.hide();
48285
48286             this.maskEl.bottom.setStyle('position', 'absolute');
48287             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48288             this.maskEl.bottom.hide();
48289
48290             this.maskEl.right.setStyle('position', 'absolute');
48291             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48292             this.maskEl.right.hide();
48293             
48294             window.onwheel = function(){ return true;};
48295             
48296             if(this.intervalID){
48297                 window.clearInterval(this.intervalID);
48298                 this.intervalID = false;
48299             }
48300             
48301             this.isMasked = false;
48302             
48303         }
48304         
48305     }
48306     
48307 });/*
48308  * Based on:
48309  * Ext JS Library 1.1.1
48310  * Copyright(c) 2006-2007, Ext JS, LLC.
48311  *
48312  * Originally Released Under LGPL - original licence link has changed is not relivant.
48313  *
48314  * Fork - LGPL
48315  * <script type="text/javascript">
48316  */
48317
48318 /**
48319  * @class Roo.form.Form
48320  * @extends Roo.form.BasicForm
48321  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48322  * @constructor
48323  * @param {Object} config Configuration options
48324  */
48325 Roo.form.Form = function(config){
48326     var xitems =  [];
48327     if (config.items) {
48328         xitems = config.items;
48329         delete config.items;
48330     }
48331    
48332     
48333     Roo.form.Form.superclass.constructor.call(this, null, config);
48334     this.url = this.url || this.action;
48335     if(!this.root){
48336         this.root = new Roo.form.Layout(Roo.applyIf({
48337             id: Roo.id()
48338         }, config));
48339     }
48340     this.active = this.root;
48341     /**
48342      * Array of all the buttons that have been added to this form via {@link addButton}
48343      * @type Array
48344      */
48345     this.buttons = [];
48346     this.allItems = [];
48347     this.addEvents({
48348         /**
48349          * @event clientvalidation
48350          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48351          * @param {Form} this
48352          * @param {Boolean} valid true if the form has passed client-side validation
48353          */
48354         clientvalidation: true,
48355         /**
48356          * @event rendered
48357          * Fires when the form is rendered
48358          * @param {Roo.form.Form} form
48359          */
48360         rendered : true
48361     });
48362     
48363     if (this.progressUrl) {
48364             // push a hidden field onto the list of fields..
48365             this.addxtype( {
48366                     xns: Roo.form, 
48367                     xtype : 'Hidden', 
48368                     name : 'UPLOAD_IDENTIFIER' 
48369             });
48370         }
48371         
48372     
48373     Roo.each(xitems, this.addxtype, this);
48374     
48375 };
48376
48377 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48378     /**
48379      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48380      */
48381     /**
48382      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48383      */
48384     /**
48385      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48386      */
48387     buttonAlign:'center',
48388
48389     /**
48390      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48391      */
48392     minButtonWidth:75,
48393
48394     /**
48395      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48396      * This property cascades to child containers if not set.
48397      */
48398     labelAlign:'left',
48399
48400     /**
48401      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48402      * fires a looping event with that state. This is required to bind buttons to the valid
48403      * state using the config value formBind:true on the button.
48404      */
48405     monitorValid : false,
48406
48407     /**
48408      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48409      */
48410     monitorPoll : 200,
48411     
48412     /**
48413      * @cfg {String} progressUrl - Url to return progress data 
48414      */
48415     
48416     progressUrl : false,
48417     /**
48418      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48419      * sending a formdata with extra parameters - eg uploaded elements.
48420      */
48421     
48422     formData : false,
48423     
48424     /**
48425      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48426      * fields are added and the column is closed. If no fields are passed the column remains open
48427      * until end() is called.
48428      * @param {Object} config The config to pass to the column
48429      * @param {Field} field1 (optional)
48430      * @param {Field} field2 (optional)
48431      * @param {Field} etc (optional)
48432      * @return Column The column container object
48433      */
48434     column : function(c){
48435         var col = new Roo.form.Column(c);
48436         this.start(col);
48437         if(arguments.length > 1){ // duplicate code required because of Opera
48438             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48439             this.end();
48440         }
48441         return col;
48442     },
48443
48444     /**
48445      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48446      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48447      * until end() is called.
48448      * @param {Object} config The config to pass to the fieldset
48449      * @param {Field} field1 (optional)
48450      * @param {Field} field2 (optional)
48451      * @param {Field} etc (optional)
48452      * @return FieldSet The fieldset container object
48453      */
48454     fieldset : function(c){
48455         var fs = new Roo.form.FieldSet(c);
48456         this.start(fs);
48457         if(arguments.length > 1){ // duplicate code required because of Opera
48458             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48459             this.end();
48460         }
48461         return fs;
48462     },
48463
48464     /**
48465      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48466      * fields are added and the container is closed. If no fields are passed the container remains open
48467      * until end() is called.
48468      * @param {Object} config The config to pass to the Layout
48469      * @param {Field} field1 (optional)
48470      * @param {Field} field2 (optional)
48471      * @param {Field} etc (optional)
48472      * @return Layout The container object
48473      */
48474     container : function(c){
48475         var l = new Roo.form.Layout(c);
48476         this.start(l);
48477         if(arguments.length > 1){ // duplicate code required because of Opera
48478             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48479             this.end();
48480         }
48481         return l;
48482     },
48483
48484     /**
48485      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48486      * @param {Object} container A Roo.form.Layout or subclass of Layout
48487      * @return {Form} this
48488      */
48489     start : function(c){
48490         // cascade label info
48491         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48492         this.active.stack.push(c);
48493         c.ownerCt = this.active;
48494         this.active = c;
48495         return this;
48496     },
48497
48498     /**
48499      * Closes the current open container
48500      * @return {Form} this
48501      */
48502     end : function(){
48503         if(this.active == this.root){
48504             return this;
48505         }
48506         this.active = this.active.ownerCt;
48507         return this;
48508     },
48509
48510     /**
48511      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48512      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48513      * as the label of the field.
48514      * @param {Field} field1
48515      * @param {Field} field2 (optional)
48516      * @param {Field} etc. (optional)
48517      * @return {Form} this
48518      */
48519     add : function(){
48520         this.active.stack.push.apply(this.active.stack, arguments);
48521         this.allItems.push.apply(this.allItems,arguments);
48522         var r = [];
48523         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48524             if(a[i].isFormField){
48525                 r.push(a[i]);
48526             }
48527         }
48528         if(r.length > 0){
48529             Roo.form.Form.superclass.add.apply(this, r);
48530         }
48531         return this;
48532     },
48533     
48534
48535     
48536     
48537     
48538      /**
48539      * Find any element that has been added to a form, using it's ID or name
48540      * This can include framesets, columns etc. along with regular fields..
48541      * @param {String} id - id or name to find.
48542      
48543      * @return {Element} e - or false if nothing found.
48544      */
48545     findbyId : function(id)
48546     {
48547         var ret = false;
48548         if (!id) {
48549             return ret;
48550         }
48551         Roo.each(this.allItems, function(f){
48552             if (f.id == id || f.name == id ){
48553                 ret = f;
48554                 return false;
48555             }
48556         });
48557         return ret;
48558     },
48559
48560     
48561     
48562     /**
48563      * Render this form into the passed container. This should only be called once!
48564      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48565      * @return {Form} this
48566      */
48567     render : function(ct)
48568     {
48569         
48570         
48571         
48572         ct = Roo.get(ct);
48573         var o = this.autoCreate || {
48574             tag: 'form',
48575             method : this.method || 'POST',
48576             id : this.id || Roo.id()
48577         };
48578         this.initEl(ct.createChild(o));
48579
48580         this.root.render(this.el);
48581         
48582        
48583              
48584         this.items.each(function(f){
48585             f.render('x-form-el-'+f.id);
48586         });
48587
48588         if(this.buttons.length > 0){
48589             // tables are required to maintain order and for correct IE layout
48590             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48591                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48592                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48593             }}, null, true);
48594             var tr = tb.getElementsByTagName('tr')[0];
48595             for(var i = 0, len = this.buttons.length; i < len; i++) {
48596                 var b = this.buttons[i];
48597                 var td = document.createElement('td');
48598                 td.className = 'x-form-btn-td';
48599                 b.render(tr.appendChild(td));
48600             }
48601         }
48602         if(this.monitorValid){ // initialize after render
48603             this.startMonitoring();
48604         }
48605         this.fireEvent('rendered', this);
48606         return this;
48607     },
48608
48609     /**
48610      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48611      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48612      * object or a valid Roo.DomHelper element config
48613      * @param {Function} handler The function called when the button is clicked
48614      * @param {Object} scope (optional) The scope of the handler function
48615      * @return {Roo.Button}
48616      */
48617     addButton : function(config, handler, scope){
48618         var bc = {
48619             handler: handler,
48620             scope: scope,
48621             minWidth: this.minButtonWidth,
48622             hideParent:true
48623         };
48624         if(typeof config == "string"){
48625             bc.text = config;
48626         }else{
48627             Roo.apply(bc, config);
48628         }
48629         var btn = new Roo.Button(null, bc);
48630         this.buttons.push(btn);
48631         return btn;
48632     },
48633
48634      /**
48635      * Adds a series of form elements (using the xtype property as the factory method.
48636      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48637      * @param {Object} config 
48638      */
48639     
48640     addxtype : function()
48641     {
48642         var ar = Array.prototype.slice.call(arguments, 0);
48643         var ret = false;
48644         for(var i = 0; i < ar.length; i++) {
48645             if (!ar[i]) {
48646                 continue; // skip -- if this happends something invalid got sent, we 
48647                 // should ignore it, as basically that interface element will not show up
48648                 // and that should be pretty obvious!!
48649             }
48650             
48651             if (Roo.form[ar[i].xtype]) {
48652                 ar[i].form = this;
48653                 var fe = Roo.factory(ar[i], Roo.form);
48654                 if (!ret) {
48655                     ret = fe;
48656                 }
48657                 fe.form = this;
48658                 if (fe.store) {
48659                     fe.store.form = this;
48660                 }
48661                 if (fe.isLayout) {  
48662                          
48663                     this.start(fe);
48664                     this.allItems.push(fe);
48665                     if (fe.items && fe.addxtype) {
48666                         fe.addxtype.apply(fe, fe.items);
48667                         delete fe.items;
48668                     }
48669                      this.end();
48670                     continue;
48671                 }
48672                 
48673                 
48674                  
48675                 this.add(fe);
48676               //  console.log('adding ' + ar[i].xtype);
48677             }
48678             if (ar[i].xtype == 'Button') {  
48679                 //console.log('adding button');
48680                 //console.log(ar[i]);
48681                 this.addButton(ar[i]);
48682                 this.allItems.push(fe);
48683                 continue;
48684             }
48685             
48686             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48687                 alert('end is not supported on xtype any more, use items');
48688             //    this.end();
48689             //    //console.log('adding end');
48690             }
48691             
48692         }
48693         return ret;
48694     },
48695     
48696     /**
48697      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48698      * option "monitorValid"
48699      */
48700     startMonitoring : function(){
48701         if(!this.bound){
48702             this.bound = true;
48703             Roo.TaskMgr.start({
48704                 run : this.bindHandler,
48705                 interval : this.monitorPoll || 200,
48706                 scope: this
48707             });
48708         }
48709     },
48710
48711     /**
48712      * Stops monitoring of the valid state of this form
48713      */
48714     stopMonitoring : function(){
48715         this.bound = false;
48716     },
48717
48718     // private
48719     bindHandler : function(){
48720         if(!this.bound){
48721             return false; // stops binding
48722         }
48723         var valid = true;
48724         this.items.each(function(f){
48725             if(!f.isValid(true)){
48726                 valid = false;
48727                 return false;
48728             }
48729         });
48730         for(var i = 0, len = this.buttons.length; i < len; i++){
48731             var btn = this.buttons[i];
48732             if(btn.formBind === true && btn.disabled === valid){
48733                 btn.setDisabled(!valid);
48734             }
48735         }
48736         this.fireEvent('clientvalidation', this, valid);
48737     }
48738     
48739     
48740     
48741     
48742     
48743     
48744     
48745     
48746 });
48747
48748
48749 // back compat
48750 Roo.Form = Roo.form.Form;
48751 /*
48752  * Based on:
48753  * Ext JS Library 1.1.1
48754  * Copyright(c) 2006-2007, Ext JS, LLC.
48755  *
48756  * Originally Released Under LGPL - original licence link has changed is not relivant.
48757  *
48758  * Fork - LGPL
48759  * <script type="text/javascript">
48760  */
48761
48762 // as we use this in bootstrap.
48763 Roo.namespace('Roo.form');
48764  /**
48765  * @class Roo.form.Action
48766  * Internal Class used to handle form actions
48767  * @constructor
48768  * @param {Roo.form.BasicForm} el The form element or its id
48769  * @param {Object} config Configuration options
48770  */
48771
48772  
48773  
48774 // define the action interface
48775 Roo.form.Action = function(form, options){
48776     this.form = form;
48777     this.options = options || {};
48778 };
48779 /**
48780  * Client Validation Failed
48781  * @const 
48782  */
48783 Roo.form.Action.CLIENT_INVALID = 'client';
48784 /**
48785  * Server Validation Failed
48786  * @const 
48787  */
48788 Roo.form.Action.SERVER_INVALID = 'server';
48789  /**
48790  * Connect to Server Failed
48791  * @const 
48792  */
48793 Roo.form.Action.CONNECT_FAILURE = 'connect';
48794 /**
48795  * Reading Data from Server Failed
48796  * @const 
48797  */
48798 Roo.form.Action.LOAD_FAILURE = 'load';
48799
48800 Roo.form.Action.prototype = {
48801     type : 'default',
48802     failureType : undefined,
48803     response : undefined,
48804     result : undefined,
48805
48806     // interface method
48807     run : function(options){
48808
48809     },
48810
48811     // interface method
48812     success : function(response){
48813
48814     },
48815
48816     // interface method
48817     handleResponse : function(response){
48818
48819     },
48820
48821     // default connection failure
48822     failure : function(response){
48823         
48824         this.response = response;
48825         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48826         this.form.afterAction(this, false);
48827     },
48828
48829     processResponse : function(response){
48830         this.response = response;
48831         if(!response.responseText){
48832             return true;
48833         }
48834         this.result = this.handleResponse(response);
48835         return this.result;
48836     },
48837
48838     // utility functions used internally
48839     getUrl : function(appendParams){
48840         var url = this.options.url || this.form.url || this.form.el.dom.action;
48841         if(appendParams){
48842             var p = this.getParams();
48843             if(p){
48844                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48845             }
48846         }
48847         return url;
48848     },
48849
48850     getMethod : function(){
48851         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48852     },
48853
48854     getParams : function(){
48855         var bp = this.form.baseParams;
48856         var p = this.options.params;
48857         if(p){
48858             if(typeof p == "object"){
48859                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48860             }else if(typeof p == 'string' && bp){
48861                 p += '&' + Roo.urlEncode(bp);
48862             }
48863         }else if(bp){
48864             p = Roo.urlEncode(bp);
48865         }
48866         return p;
48867     },
48868
48869     createCallback : function(){
48870         return {
48871             success: this.success,
48872             failure: this.failure,
48873             scope: this,
48874             timeout: (this.form.timeout*1000),
48875             upload: this.form.fileUpload ? this.success : undefined
48876         };
48877     }
48878 };
48879
48880 Roo.form.Action.Submit = function(form, options){
48881     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48882 };
48883
48884 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48885     type : 'submit',
48886
48887     haveProgress : false,
48888     uploadComplete : false,
48889     
48890     // uploadProgress indicator.
48891     uploadProgress : function()
48892     {
48893         if (!this.form.progressUrl) {
48894             return;
48895         }
48896         
48897         if (!this.haveProgress) {
48898             Roo.MessageBox.progress("Uploading", "Uploading");
48899         }
48900         if (this.uploadComplete) {
48901            Roo.MessageBox.hide();
48902            return;
48903         }
48904         
48905         this.haveProgress = true;
48906    
48907         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
48908         
48909         var c = new Roo.data.Connection();
48910         c.request({
48911             url : this.form.progressUrl,
48912             params: {
48913                 id : uid
48914             },
48915             method: 'GET',
48916             success : function(req){
48917                //console.log(data);
48918                 var rdata = false;
48919                 var edata;
48920                 try  {
48921                    rdata = Roo.decode(req.responseText)
48922                 } catch (e) {
48923                     Roo.log("Invalid data from server..");
48924                     Roo.log(edata);
48925                     return;
48926                 }
48927                 if (!rdata || !rdata.success) {
48928                     Roo.log(rdata);
48929                     Roo.MessageBox.alert(Roo.encode(rdata));
48930                     return;
48931                 }
48932                 var data = rdata.data;
48933                 
48934                 if (this.uploadComplete) {
48935                    Roo.MessageBox.hide();
48936                    return;
48937                 }
48938                    
48939                 if (data){
48940                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
48941                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
48942                     );
48943                 }
48944                 this.uploadProgress.defer(2000,this);
48945             },
48946        
48947             failure: function(data) {
48948                 Roo.log('progress url failed ');
48949                 Roo.log(data);
48950             },
48951             scope : this
48952         });
48953            
48954     },
48955     
48956     
48957     run : function()
48958     {
48959         // run get Values on the form, so it syncs any secondary forms.
48960         this.form.getValues();
48961         
48962         var o = this.options;
48963         var method = this.getMethod();
48964         var isPost = method == 'POST';
48965         if(o.clientValidation === false || this.form.isValid()){
48966             
48967             if (this.form.progressUrl) {
48968                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
48969                     (new Date() * 1) + '' + Math.random());
48970                     
48971             } 
48972             
48973             
48974             Roo.Ajax.request(Roo.apply(this.createCallback(), {
48975                 form:this.form.el.dom,
48976                 url:this.getUrl(!isPost),
48977                 method: method,
48978                 params:isPost ? this.getParams() : null,
48979                 isUpload: this.form.fileUpload,
48980                 formData : this.form.formData
48981             }));
48982             
48983             this.uploadProgress();
48984
48985         }else if (o.clientValidation !== false){ // client validation failed
48986             this.failureType = Roo.form.Action.CLIENT_INVALID;
48987             this.form.afterAction(this, false);
48988         }
48989     },
48990
48991     success : function(response)
48992     {
48993         this.uploadComplete= true;
48994         if (this.haveProgress) {
48995             Roo.MessageBox.hide();
48996         }
48997         
48998         
48999         var result = this.processResponse(response);
49000         if(result === true || result.success){
49001             this.form.afterAction(this, true);
49002             return;
49003         }
49004         if(result.errors){
49005             this.form.markInvalid(result.errors);
49006             this.failureType = Roo.form.Action.SERVER_INVALID;
49007         }
49008         this.form.afterAction(this, false);
49009     },
49010     failure : function(response)
49011     {
49012         this.uploadComplete= true;
49013         if (this.haveProgress) {
49014             Roo.MessageBox.hide();
49015         }
49016         
49017         this.response = response;
49018         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49019         this.form.afterAction(this, false);
49020     },
49021     
49022     handleResponse : function(response){
49023         if(this.form.errorReader){
49024             var rs = this.form.errorReader.read(response);
49025             var errors = [];
49026             if(rs.records){
49027                 for(var i = 0, len = rs.records.length; i < len; i++) {
49028                     var r = rs.records[i];
49029                     errors[i] = r.data;
49030                 }
49031             }
49032             if(errors.length < 1){
49033                 errors = null;
49034             }
49035             return {
49036                 success : rs.success,
49037                 errors : errors
49038             };
49039         }
49040         var ret = false;
49041         try {
49042             ret = Roo.decode(response.responseText);
49043         } catch (e) {
49044             ret = {
49045                 success: false,
49046                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49047                 errors : []
49048             };
49049         }
49050         return ret;
49051         
49052     }
49053 });
49054
49055
49056 Roo.form.Action.Load = function(form, options){
49057     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49058     this.reader = this.form.reader;
49059 };
49060
49061 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49062     type : 'load',
49063
49064     run : function(){
49065         
49066         Roo.Ajax.request(Roo.apply(
49067                 this.createCallback(), {
49068                     method:this.getMethod(),
49069                     url:this.getUrl(false),
49070                     params:this.getParams()
49071         }));
49072     },
49073
49074     success : function(response){
49075         
49076         var result = this.processResponse(response);
49077         if(result === true || !result.success || !result.data){
49078             this.failureType = Roo.form.Action.LOAD_FAILURE;
49079             this.form.afterAction(this, false);
49080             return;
49081         }
49082         this.form.clearInvalid();
49083         this.form.setValues(result.data);
49084         this.form.afterAction(this, true);
49085     },
49086
49087     handleResponse : function(response){
49088         if(this.form.reader){
49089             var rs = this.form.reader.read(response);
49090             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49091             return {
49092                 success : rs.success,
49093                 data : data
49094             };
49095         }
49096         return Roo.decode(response.responseText);
49097     }
49098 });
49099
49100 Roo.form.Action.ACTION_TYPES = {
49101     'load' : Roo.form.Action.Load,
49102     'submit' : Roo.form.Action.Submit
49103 };/*
49104  * Based on:
49105  * Ext JS Library 1.1.1
49106  * Copyright(c) 2006-2007, Ext JS, LLC.
49107  *
49108  * Originally Released Under LGPL - original licence link has changed is not relivant.
49109  *
49110  * Fork - LGPL
49111  * <script type="text/javascript">
49112  */
49113  
49114 /**
49115  * @class Roo.form.Layout
49116  * @extends Roo.Component
49117  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49118  * @constructor
49119  * @param {Object} config Configuration options
49120  */
49121 Roo.form.Layout = function(config){
49122     var xitems = [];
49123     if (config.items) {
49124         xitems = config.items;
49125         delete config.items;
49126     }
49127     Roo.form.Layout.superclass.constructor.call(this, config);
49128     this.stack = [];
49129     Roo.each(xitems, this.addxtype, this);
49130      
49131 };
49132
49133 Roo.extend(Roo.form.Layout, Roo.Component, {
49134     /**
49135      * @cfg {String/Object} autoCreate
49136      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49137      */
49138     /**
49139      * @cfg {String/Object/Function} style
49140      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49141      * a function which returns such a specification.
49142      */
49143     /**
49144      * @cfg {String} labelAlign
49145      * Valid values are "left," "top" and "right" (defaults to "left")
49146      */
49147     /**
49148      * @cfg {Number} labelWidth
49149      * Fixed width in pixels of all field labels (defaults to undefined)
49150      */
49151     /**
49152      * @cfg {Boolean} clear
49153      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49154      */
49155     clear : true,
49156     /**
49157      * @cfg {String} labelSeparator
49158      * The separator to use after field labels (defaults to ':')
49159      */
49160     labelSeparator : ':',
49161     /**
49162      * @cfg {Boolean} hideLabels
49163      * True to suppress the display of field labels in this layout (defaults to false)
49164      */
49165     hideLabels : false,
49166
49167     // private
49168     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49169     
49170     isLayout : true,
49171     
49172     // private
49173     onRender : function(ct, position){
49174         if(this.el){ // from markup
49175             this.el = Roo.get(this.el);
49176         }else {  // generate
49177             var cfg = this.getAutoCreate();
49178             this.el = ct.createChild(cfg, position);
49179         }
49180         if(this.style){
49181             this.el.applyStyles(this.style);
49182         }
49183         if(this.labelAlign){
49184             this.el.addClass('x-form-label-'+this.labelAlign);
49185         }
49186         if(this.hideLabels){
49187             this.labelStyle = "display:none";
49188             this.elementStyle = "padding-left:0;";
49189         }else{
49190             if(typeof this.labelWidth == 'number'){
49191                 this.labelStyle = "width:"+this.labelWidth+"px;";
49192                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49193             }
49194             if(this.labelAlign == 'top'){
49195                 this.labelStyle = "width:auto;";
49196                 this.elementStyle = "padding-left:0;";
49197             }
49198         }
49199         var stack = this.stack;
49200         var slen = stack.length;
49201         if(slen > 0){
49202             if(!this.fieldTpl){
49203                 var t = new Roo.Template(
49204                     '<div class="x-form-item {5}">',
49205                         '<label for="{0}" style="{2}">{1}{4}</label>',
49206                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49207                         '</div>',
49208                     '</div><div class="x-form-clear-left"></div>'
49209                 );
49210                 t.disableFormats = true;
49211                 t.compile();
49212                 Roo.form.Layout.prototype.fieldTpl = t;
49213             }
49214             for(var i = 0; i < slen; i++) {
49215                 if(stack[i].isFormField){
49216                     this.renderField(stack[i]);
49217                 }else{
49218                     this.renderComponent(stack[i]);
49219                 }
49220             }
49221         }
49222         if(this.clear){
49223             this.el.createChild({cls:'x-form-clear'});
49224         }
49225     },
49226
49227     // private
49228     renderField : function(f){
49229         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49230                f.id, //0
49231                f.fieldLabel, //1
49232                f.labelStyle||this.labelStyle||'', //2
49233                this.elementStyle||'', //3
49234                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49235                f.itemCls||this.itemCls||''  //5
49236        ], true).getPrevSibling());
49237     },
49238
49239     // private
49240     renderComponent : function(c){
49241         c.render(c.isLayout ? this.el : this.el.createChild());    
49242     },
49243     /**
49244      * Adds a object form elements (using the xtype property as the factory method.)
49245      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49246      * @param {Object} config 
49247      */
49248     addxtype : function(o)
49249     {
49250         // create the lement.
49251         o.form = this.form;
49252         var fe = Roo.factory(o, Roo.form);
49253         this.form.allItems.push(fe);
49254         this.stack.push(fe);
49255         
49256         if (fe.isFormField) {
49257             this.form.items.add(fe);
49258         }
49259          
49260         return fe;
49261     }
49262 });
49263
49264 /**
49265  * @class Roo.form.Column
49266  * @extends Roo.form.Layout
49267  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49268  * @constructor
49269  * @param {Object} config Configuration options
49270  */
49271 Roo.form.Column = function(config){
49272     Roo.form.Column.superclass.constructor.call(this, config);
49273 };
49274
49275 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49276     /**
49277      * @cfg {Number/String} width
49278      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49279      */
49280     /**
49281      * @cfg {String/Object} autoCreate
49282      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49283      */
49284
49285     // private
49286     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49287
49288     // private
49289     onRender : function(ct, position){
49290         Roo.form.Column.superclass.onRender.call(this, ct, position);
49291         if(this.width){
49292             this.el.setWidth(this.width);
49293         }
49294     }
49295 });
49296
49297
49298 /**
49299  * @class Roo.form.Row
49300  * @extends Roo.form.Layout
49301  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49302  * @constructor
49303  * @param {Object} config Configuration options
49304  */
49305
49306  
49307 Roo.form.Row = function(config){
49308     Roo.form.Row.superclass.constructor.call(this, config);
49309 };
49310  
49311 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49312       /**
49313      * @cfg {Number/String} width
49314      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49315      */
49316     /**
49317      * @cfg {Number/String} height
49318      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49319      */
49320     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49321     
49322     padWidth : 20,
49323     // private
49324     onRender : function(ct, position){
49325         //console.log('row render');
49326         if(!this.rowTpl){
49327             var t = new Roo.Template(
49328                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49329                     '<label for="{0}" style="{2}">{1}{4}</label>',
49330                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49331                     '</div>',
49332                 '</div>'
49333             );
49334             t.disableFormats = true;
49335             t.compile();
49336             Roo.form.Layout.prototype.rowTpl = t;
49337         }
49338         this.fieldTpl = this.rowTpl;
49339         
49340         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49341         var labelWidth = 100;
49342         
49343         if ((this.labelAlign != 'top')) {
49344             if (typeof this.labelWidth == 'number') {
49345                 labelWidth = this.labelWidth
49346             }
49347             this.padWidth =  20 + labelWidth;
49348             
49349         }
49350         
49351         Roo.form.Column.superclass.onRender.call(this, ct, position);
49352         if(this.width){
49353             this.el.setWidth(this.width);
49354         }
49355         if(this.height){
49356             this.el.setHeight(this.height);
49357         }
49358     },
49359     
49360     // private
49361     renderField : function(f){
49362         f.fieldEl = this.fieldTpl.append(this.el, [
49363                f.id, f.fieldLabel,
49364                f.labelStyle||this.labelStyle||'',
49365                this.elementStyle||'',
49366                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49367                f.itemCls||this.itemCls||'',
49368                f.width ? f.width + this.padWidth : 160 + this.padWidth
49369        ],true);
49370     }
49371 });
49372  
49373
49374 /**
49375  * @class Roo.form.FieldSet
49376  * @extends Roo.form.Layout
49377  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49378  * @constructor
49379  * @param {Object} config Configuration options
49380  */
49381 Roo.form.FieldSet = function(config){
49382     Roo.form.FieldSet.superclass.constructor.call(this, config);
49383 };
49384
49385 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49386     /**
49387      * @cfg {String} legend
49388      * The text to display as the legend for the FieldSet (defaults to '')
49389      */
49390     /**
49391      * @cfg {String/Object} autoCreate
49392      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49393      */
49394
49395     // private
49396     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49397
49398     // private
49399     onRender : function(ct, position){
49400         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49401         if(this.legend){
49402             this.setLegend(this.legend);
49403         }
49404     },
49405
49406     // private
49407     setLegend : function(text){
49408         if(this.rendered){
49409             this.el.child('legend').update(text);
49410         }
49411     }
49412 });/*
49413  * Based on:
49414  * Ext JS Library 1.1.1
49415  * Copyright(c) 2006-2007, Ext JS, LLC.
49416  *
49417  * Originally Released Under LGPL - original licence link has changed is not relivant.
49418  *
49419  * Fork - LGPL
49420  * <script type="text/javascript">
49421  */
49422 /**
49423  * @class Roo.form.VTypes
49424  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49425  * @singleton
49426  */
49427 Roo.form.VTypes = function(){
49428     // closure these in so they are only created once.
49429     var alpha = /^[a-zA-Z_]+$/;
49430     var alphanum = /^[a-zA-Z0-9_]+$/;
49431     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49432     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49433
49434     // All these messages and functions are configurable
49435     return {
49436         /**
49437          * The function used to validate email addresses
49438          * @param {String} value The email address
49439          */
49440         'email' : function(v){
49441             return email.test(v);
49442         },
49443         /**
49444          * The error text to display when the email validation function returns false
49445          * @type String
49446          */
49447         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49448         /**
49449          * The keystroke filter mask to be applied on email input
49450          * @type RegExp
49451          */
49452         'emailMask' : /[a-z0-9_\.\-@]/i,
49453
49454         /**
49455          * The function used to validate URLs
49456          * @param {String} value The URL
49457          */
49458         'url' : function(v){
49459             return url.test(v);
49460         },
49461         /**
49462          * The error text to display when the url validation function returns false
49463          * @type String
49464          */
49465         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49466         
49467         /**
49468          * The function used to validate alpha values
49469          * @param {String} value The value
49470          */
49471         'alpha' : function(v){
49472             return alpha.test(v);
49473         },
49474         /**
49475          * The error text to display when the alpha validation function returns false
49476          * @type String
49477          */
49478         'alphaText' : 'This field should only contain letters and _',
49479         /**
49480          * The keystroke filter mask to be applied on alpha input
49481          * @type RegExp
49482          */
49483         'alphaMask' : /[a-z_]/i,
49484
49485         /**
49486          * The function used to validate alphanumeric values
49487          * @param {String} value The value
49488          */
49489         'alphanum' : function(v){
49490             return alphanum.test(v);
49491         },
49492         /**
49493          * The error text to display when the alphanumeric validation function returns false
49494          * @type String
49495          */
49496         'alphanumText' : 'This field should only contain letters, numbers and _',
49497         /**
49498          * The keystroke filter mask to be applied on alphanumeric input
49499          * @type RegExp
49500          */
49501         'alphanumMask' : /[a-z0-9_]/i
49502     };
49503 }();//<script type="text/javascript">
49504
49505 /**
49506  * @class Roo.form.FCKeditor
49507  * @extends Roo.form.TextArea
49508  * Wrapper around the FCKEditor http://www.fckeditor.net
49509  * @constructor
49510  * Creates a new FCKeditor
49511  * @param {Object} config Configuration options
49512  */
49513 Roo.form.FCKeditor = function(config){
49514     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49515     this.addEvents({
49516          /**
49517          * @event editorinit
49518          * Fired when the editor is initialized - you can add extra handlers here..
49519          * @param {FCKeditor} this
49520          * @param {Object} the FCK object.
49521          */
49522         editorinit : true
49523     });
49524     
49525     
49526 };
49527 Roo.form.FCKeditor.editors = { };
49528 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49529 {
49530     //defaultAutoCreate : {
49531     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49532     //},
49533     // private
49534     /**
49535      * @cfg {Object} fck options - see fck manual for details.
49536      */
49537     fckconfig : false,
49538     
49539     /**
49540      * @cfg {Object} fck toolbar set (Basic or Default)
49541      */
49542     toolbarSet : 'Basic',
49543     /**
49544      * @cfg {Object} fck BasePath
49545      */ 
49546     basePath : '/fckeditor/',
49547     
49548     
49549     frame : false,
49550     
49551     value : '',
49552     
49553    
49554     onRender : function(ct, position)
49555     {
49556         if(!this.el){
49557             this.defaultAutoCreate = {
49558                 tag: "textarea",
49559                 style:"width:300px;height:60px;",
49560                 autocomplete: "new-password"
49561             };
49562         }
49563         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49564         /*
49565         if(this.grow){
49566             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49567             if(this.preventScrollbars){
49568                 this.el.setStyle("overflow", "hidden");
49569             }
49570             this.el.setHeight(this.growMin);
49571         }
49572         */
49573         //console.log('onrender' + this.getId() );
49574         Roo.form.FCKeditor.editors[this.getId()] = this;
49575          
49576
49577         this.replaceTextarea() ;
49578         
49579     },
49580     
49581     getEditor : function() {
49582         return this.fckEditor;
49583     },
49584     /**
49585      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49586      * @param {Mixed} value The value to set
49587      */
49588     
49589     
49590     setValue : function(value)
49591     {
49592         //console.log('setValue: ' + value);
49593         
49594         if(typeof(value) == 'undefined') { // not sure why this is happending...
49595             return;
49596         }
49597         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49598         
49599         //if(!this.el || !this.getEditor()) {
49600         //    this.value = value;
49601             //this.setValue.defer(100,this,[value]);    
49602         //    return;
49603         //} 
49604         
49605         if(!this.getEditor()) {
49606             return;
49607         }
49608         
49609         this.getEditor().SetData(value);
49610         
49611         //
49612
49613     },
49614
49615     /**
49616      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49617      * @return {Mixed} value The field value
49618      */
49619     getValue : function()
49620     {
49621         
49622         if (this.frame && this.frame.dom.style.display == 'none') {
49623             return Roo.form.FCKeditor.superclass.getValue.call(this);
49624         }
49625         
49626         if(!this.el || !this.getEditor()) {
49627            
49628            // this.getValue.defer(100,this); 
49629             return this.value;
49630         }
49631        
49632         
49633         var value=this.getEditor().GetData();
49634         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49635         return Roo.form.FCKeditor.superclass.getValue.call(this);
49636         
49637
49638     },
49639
49640     /**
49641      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49642      * @return {Mixed} value The field value
49643      */
49644     getRawValue : function()
49645     {
49646         if (this.frame && this.frame.dom.style.display == 'none') {
49647             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49648         }
49649         
49650         if(!this.el || !this.getEditor()) {
49651             //this.getRawValue.defer(100,this); 
49652             return this.value;
49653             return;
49654         }
49655         
49656         
49657         
49658         var value=this.getEditor().GetData();
49659         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49660         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49661          
49662     },
49663     
49664     setSize : function(w,h) {
49665         
49666         
49667         
49668         //if (this.frame && this.frame.dom.style.display == 'none') {
49669         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49670         //    return;
49671         //}
49672         //if(!this.el || !this.getEditor()) {
49673         //    this.setSize.defer(100,this, [w,h]); 
49674         //    return;
49675         //}
49676         
49677         
49678         
49679         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49680         
49681         this.frame.dom.setAttribute('width', w);
49682         this.frame.dom.setAttribute('height', h);
49683         this.frame.setSize(w,h);
49684         
49685     },
49686     
49687     toggleSourceEdit : function(value) {
49688         
49689       
49690          
49691         this.el.dom.style.display = value ? '' : 'none';
49692         this.frame.dom.style.display = value ?  'none' : '';
49693         
49694     },
49695     
49696     
49697     focus: function(tag)
49698     {
49699         if (this.frame.dom.style.display == 'none') {
49700             return Roo.form.FCKeditor.superclass.focus.call(this);
49701         }
49702         if(!this.el || !this.getEditor()) {
49703             this.focus.defer(100,this, [tag]); 
49704             return;
49705         }
49706         
49707         
49708         
49709         
49710         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49711         this.getEditor().Focus();
49712         if (tgs.length) {
49713             if (!this.getEditor().Selection.GetSelection()) {
49714                 this.focus.defer(100,this, [tag]); 
49715                 return;
49716             }
49717             
49718             
49719             var r = this.getEditor().EditorDocument.createRange();
49720             r.setStart(tgs[0],0);
49721             r.setEnd(tgs[0],0);
49722             this.getEditor().Selection.GetSelection().removeAllRanges();
49723             this.getEditor().Selection.GetSelection().addRange(r);
49724             this.getEditor().Focus();
49725         }
49726         
49727     },
49728     
49729     
49730     
49731     replaceTextarea : function()
49732     {
49733         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49734             return ;
49735         }
49736         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49737         //{
49738             // We must check the elements firstly using the Id and then the name.
49739         var oTextarea = document.getElementById( this.getId() );
49740         
49741         var colElementsByName = document.getElementsByName( this.getId() ) ;
49742          
49743         oTextarea.style.display = 'none' ;
49744
49745         if ( oTextarea.tabIndex ) {            
49746             this.TabIndex = oTextarea.tabIndex ;
49747         }
49748         
49749         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49750         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49751         this.frame = Roo.get(this.getId() + '___Frame')
49752     },
49753     
49754     _getConfigHtml : function()
49755     {
49756         var sConfig = '' ;
49757
49758         for ( var o in this.fckconfig ) {
49759             sConfig += sConfig.length > 0  ? '&amp;' : '';
49760             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49761         }
49762
49763         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49764     },
49765     
49766     
49767     _getIFrameHtml : function()
49768     {
49769         var sFile = 'fckeditor.html' ;
49770         /* no idea what this is about..
49771         try
49772         {
49773             if ( (/fcksource=true/i).test( window.top.location.search ) )
49774                 sFile = 'fckeditor.original.html' ;
49775         }
49776         catch (e) { 
49777         */
49778
49779         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49780         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49781         
49782         
49783         var html = '<iframe id="' + this.getId() +
49784             '___Frame" src="' + sLink +
49785             '" width="' + this.width +
49786             '" height="' + this.height + '"' +
49787             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49788             ' frameborder="0" scrolling="no"></iframe>' ;
49789
49790         return html ;
49791     },
49792     
49793     _insertHtmlBefore : function( html, element )
49794     {
49795         if ( element.insertAdjacentHTML )       {
49796             // IE
49797             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49798         } else { // Gecko
49799             var oRange = document.createRange() ;
49800             oRange.setStartBefore( element ) ;
49801             var oFragment = oRange.createContextualFragment( html );
49802             element.parentNode.insertBefore( oFragment, element ) ;
49803         }
49804     }
49805     
49806     
49807   
49808     
49809     
49810     
49811     
49812
49813 });
49814
49815 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49816
49817 function FCKeditor_OnComplete(editorInstance){
49818     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49819     f.fckEditor = editorInstance;
49820     //console.log("loaded");
49821     f.fireEvent('editorinit', f, editorInstance);
49822
49823   
49824
49825  
49826
49827
49828
49829
49830
49831
49832
49833
49834
49835
49836
49837
49838
49839
49840
49841 //<script type="text/javascript">
49842 /**
49843  * @class Roo.form.GridField
49844  * @extends Roo.form.Field
49845  * Embed a grid (or editable grid into a form)
49846  * STATUS ALPHA
49847  * 
49848  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49849  * it needs 
49850  * xgrid.store = Roo.data.Store
49851  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49852  * xgrid.store.reader = Roo.data.JsonReader 
49853  * 
49854  * 
49855  * @constructor
49856  * Creates a new GridField
49857  * @param {Object} config Configuration options
49858  */
49859 Roo.form.GridField = function(config){
49860     Roo.form.GridField.superclass.constructor.call(this, config);
49861      
49862 };
49863
49864 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49865     /**
49866      * @cfg {Number} width  - used to restrict width of grid..
49867      */
49868     width : 100,
49869     /**
49870      * @cfg {Number} height - used to restrict height of grid..
49871      */
49872     height : 50,
49873      /**
49874      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49875          * 
49876          *}
49877      */
49878     xgrid : false, 
49879     /**
49880      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49881      * {tag: "input", type: "checkbox", autocomplete: "off"})
49882      */
49883    // defaultAutoCreate : { tag: 'div' },
49884     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49885     /**
49886      * @cfg {String} addTitle Text to include for adding a title.
49887      */
49888     addTitle : false,
49889     //
49890     onResize : function(){
49891         Roo.form.Field.superclass.onResize.apply(this, arguments);
49892     },
49893
49894     initEvents : function(){
49895         // Roo.form.Checkbox.superclass.initEvents.call(this);
49896         // has no events...
49897        
49898     },
49899
49900
49901     getResizeEl : function(){
49902         return this.wrap;
49903     },
49904
49905     getPositionEl : function(){
49906         return this.wrap;
49907     },
49908
49909     // private
49910     onRender : function(ct, position){
49911         
49912         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
49913         var style = this.style;
49914         delete this.style;
49915         
49916         Roo.form.GridField.superclass.onRender.call(this, ct, position);
49917         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
49918         this.viewEl = this.wrap.createChild({ tag: 'div' });
49919         if (style) {
49920             this.viewEl.applyStyles(style);
49921         }
49922         if (this.width) {
49923             this.viewEl.setWidth(this.width);
49924         }
49925         if (this.height) {
49926             this.viewEl.setHeight(this.height);
49927         }
49928         //if(this.inputValue !== undefined){
49929         //this.setValue(this.value);
49930         
49931         
49932         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
49933         
49934         
49935         this.grid.render();
49936         this.grid.getDataSource().on('remove', this.refreshValue, this);
49937         this.grid.getDataSource().on('update', this.refreshValue, this);
49938         this.grid.on('afteredit', this.refreshValue, this);
49939  
49940     },
49941      
49942     
49943     /**
49944      * Sets the value of the item. 
49945      * @param {String} either an object  or a string..
49946      */
49947     setValue : function(v){
49948         //this.value = v;
49949         v = v || []; // empty set..
49950         // this does not seem smart - it really only affects memoryproxy grids..
49951         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
49952             var ds = this.grid.getDataSource();
49953             // assumes a json reader..
49954             var data = {}
49955             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
49956             ds.loadData( data);
49957         }
49958         // clear selection so it does not get stale.
49959         if (this.grid.sm) { 
49960             this.grid.sm.clearSelections();
49961         }
49962         
49963         Roo.form.GridField.superclass.setValue.call(this, v);
49964         this.refreshValue();
49965         // should load data in the grid really....
49966     },
49967     
49968     // private
49969     refreshValue: function() {
49970          var val = [];
49971         this.grid.getDataSource().each(function(r) {
49972             val.push(r.data);
49973         });
49974         this.el.dom.value = Roo.encode(val);
49975     }
49976     
49977      
49978     
49979     
49980 });/*
49981  * Based on:
49982  * Ext JS Library 1.1.1
49983  * Copyright(c) 2006-2007, Ext JS, LLC.
49984  *
49985  * Originally Released Under LGPL - original licence link has changed is not relivant.
49986  *
49987  * Fork - LGPL
49988  * <script type="text/javascript">
49989  */
49990 /**
49991  * @class Roo.form.DisplayField
49992  * @extends Roo.form.Field
49993  * A generic Field to display non-editable data.
49994  * @cfg {Boolean} closable (true|false) default false
49995  * @constructor
49996  * Creates a new Display Field item.
49997  * @param {Object} config Configuration options
49998  */
49999 Roo.form.DisplayField = function(config){
50000     Roo.form.DisplayField.superclass.constructor.call(this, config);
50001     
50002     this.addEvents({
50003         /**
50004          * @event close
50005          * Fires after the click the close btn
50006              * @param {Roo.form.DisplayField} this
50007              */
50008         close : true
50009     });
50010 };
50011
50012 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50013     inputType:      'hidden',
50014     allowBlank:     true,
50015     readOnly:         true,
50016     
50017  
50018     /**
50019      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50020      */
50021     focusClass : undefined,
50022     /**
50023      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50024      */
50025     fieldClass: 'x-form-field',
50026     
50027      /**
50028      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50029      */
50030     valueRenderer: undefined,
50031     
50032     width: 100,
50033     /**
50034      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50035      * {tag: "input", type: "checkbox", autocomplete: "off"})
50036      */
50037      
50038  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50039  
50040     closable : false,
50041     
50042     onResize : function(){
50043         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50044         
50045     },
50046
50047     initEvents : function(){
50048         // Roo.form.Checkbox.superclass.initEvents.call(this);
50049         // has no events...
50050         
50051         if(this.closable){
50052             this.closeEl.on('click', this.onClose, this);
50053         }
50054        
50055     },
50056
50057
50058     getResizeEl : function(){
50059         return this.wrap;
50060     },
50061
50062     getPositionEl : function(){
50063         return this.wrap;
50064     },
50065
50066     // private
50067     onRender : function(ct, position){
50068         
50069         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50070         //if(this.inputValue !== undefined){
50071         this.wrap = this.el.wrap();
50072         
50073         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50074         
50075         if(this.closable){
50076             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50077         }
50078         
50079         if (this.bodyStyle) {
50080             this.viewEl.applyStyles(this.bodyStyle);
50081         }
50082         //this.viewEl.setStyle('padding', '2px');
50083         
50084         this.setValue(this.value);
50085         
50086     },
50087 /*
50088     // private
50089     initValue : Roo.emptyFn,
50090
50091   */
50092
50093         // private
50094     onClick : function(){
50095         
50096     },
50097
50098     /**
50099      * Sets the checked state of the checkbox.
50100      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50101      */
50102     setValue : function(v){
50103         this.value = v;
50104         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50105         // this might be called before we have a dom element..
50106         if (!this.viewEl) {
50107             return;
50108         }
50109         this.viewEl.dom.innerHTML = html;
50110         Roo.form.DisplayField.superclass.setValue.call(this, v);
50111
50112     },
50113     
50114     onClose : function(e)
50115     {
50116         e.preventDefault();
50117         
50118         this.fireEvent('close', this);
50119     }
50120 });/*
50121  * 
50122  * Licence- LGPL
50123  * 
50124  */
50125
50126 /**
50127  * @class Roo.form.DayPicker
50128  * @extends Roo.form.Field
50129  * A Day picker show [M] [T] [W] ....
50130  * @constructor
50131  * Creates a new Day Picker
50132  * @param {Object} config Configuration options
50133  */
50134 Roo.form.DayPicker= function(config){
50135     Roo.form.DayPicker.superclass.constructor.call(this, config);
50136      
50137 };
50138
50139 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50140     /**
50141      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50142      */
50143     focusClass : undefined,
50144     /**
50145      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50146      */
50147     fieldClass: "x-form-field",
50148    
50149     /**
50150      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50151      * {tag: "input", type: "checkbox", autocomplete: "off"})
50152      */
50153     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50154     
50155    
50156     actionMode : 'viewEl', 
50157     //
50158     // private
50159  
50160     inputType : 'hidden',
50161     
50162      
50163     inputElement: false, // real input element?
50164     basedOn: false, // ????
50165     
50166     isFormField: true, // not sure where this is needed!!!!
50167
50168     onResize : function(){
50169         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50170         if(!this.boxLabel){
50171             this.el.alignTo(this.wrap, 'c-c');
50172         }
50173     },
50174
50175     initEvents : function(){
50176         Roo.form.Checkbox.superclass.initEvents.call(this);
50177         this.el.on("click", this.onClick,  this);
50178         this.el.on("change", this.onClick,  this);
50179     },
50180
50181
50182     getResizeEl : function(){
50183         return this.wrap;
50184     },
50185
50186     getPositionEl : function(){
50187         return this.wrap;
50188     },
50189
50190     
50191     // private
50192     onRender : function(ct, position){
50193         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50194        
50195         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50196         
50197         var r1 = '<table><tr>';
50198         var r2 = '<tr class="x-form-daypick-icons">';
50199         for (var i=0; i < 7; i++) {
50200             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50201             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50202         }
50203         
50204         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50205         viewEl.select('img').on('click', this.onClick, this);
50206         this.viewEl = viewEl;   
50207         
50208         
50209         // this will not work on Chrome!!!
50210         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50211         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50212         
50213         
50214           
50215
50216     },
50217
50218     // private
50219     initValue : Roo.emptyFn,
50220
50221     /**
50222      * Returns the checked state of the checkbox.
50223      * @return {Boolean} True if checked, else false
50224      */
50225     getValue : function(){
50226         return this.el.dom.value;
50227         
50228     },
50229
50230         // private
50231     onClick : function(e){ 
50232         //this.setChecked(!this.checked);
50233         Roo.get(e.target).toggleClass('x-menu-item-checked');
50234         this.refreshValue();
50235         //if(this.el.dom.checked != this.checked){
50236         //    this.setValue(this.el.dom.checked);
50237        // }
50238     },
50239     
50240     // private
50241     refreshValue : function()
50242     {
50243         var val = '';
50244         this.viewEl.select('img',true).each(function(e,i,n)  {
50245             val += e.is(".x-menu-item-checked") ? String(n) : '';
50246         });
50247         this.setValue(val, true);
50248     },
50249
50250     /**
50251      * Sets the checked state of the checkbox.
50252      * On is always based on a string comparison between inputValue and the param.
50253      * @param {Boolean/String} value - the value to set 
50254      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50255      */
50256     setValue : function(v,suppressEvent){
50257         if (!this.el.dom) {
50258             return;
50259         }
50260         var old = this.el.dom.value ;
50261         this.el.dom.value = v;
50262         if (suppressEvent) {
50263             return ;
50264         }
50265          
50266         // update display..
50267         this.viewEl.select('img',true).each(function(e,i,n)  {
50268             
50269             var on = e.is(".x-menu-item-checked");
50270             var newv = v.indexOf(String(n)) > -1;
50271             if (on != newv) {
50272                 e.toggleClass('x-menu-item-checked');
50273             }
50274             
50275         });
50276         
50277         
50278         this.fireEvent('change', this, v, old);
50279         
50280         
50281     },
50282    
50283     // handle setting of hidden value by some other method!!?!?
50284     setFromHidden: function()
50285     {
50286         if(!this.el){
50287             return;
50288         }
50289         //console.log("SET FROM HIDDEN");
50290         //alert('setFrom hidden');
50291         this.setValue(this.el.dom.value);
50292     },
50293     
50294     onDestroy : function()
50295     {
50296         if(this.viewEl){
50297             Roo.get(this.viewEl).remove();
50298         }
50299          
50300         Roo.form.DayPicker.superclass.onDestroy.call(this);
50301     }
50302
50303 });/*
50304  * RooJS Library 1.1.1
50305  * Copyright(c) 2008-2011  Alan Knowles
50306  *
50307  * License - LGPL
50308  */
50309  
50310
50311 /**
50312  * @class Roo.form.ComboCheck
50313  * @extends Roo.form.ComboBox
50314  * A combobox for multiple select items.
50315  *
50316  * FIXME - could do with a reset button..
50317  * 
50318  * @constructor
50319  * Create a new ComboCheck
50320  * @param {Object} config Configuration options
50321  */
50322 Roo.form.ComboCheck = function(config){
50323     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50324     // should verify some data...
50325     // like
50326     // hiddenName = required..
50327     // displayField = required
50328     // valudField == required
50329     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50330     var _t = this;
50331     Roo.each(req, function(e) {
50332         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50333             throw "Roo.form.ComboCheck : missing value for: " + e;
50334         }
50335     });
50336     
50337     
50338 };
50339
50340 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50341      
50342      
50343     editable : false,
50344      
50345     selectedClass: 'x-menu-item-checked', 
50346     
50347     // private
50348     onRender : function(ct, position){
50349         var _t = this;
50350         
50351         
50352         
50353         if(!this.tpl){
50354             var cls = 'x-combo-list';
50355
50356             
50357             this.tpl =  new Roo.Template({
50358                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50359                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50360                    '<span>{' + this.displayField + '}</span>' +
50361                     '</div>' 
50362                 
50363             });
50364         }
50365  
50366         
50367         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50368         this.view.singleSelect = false;
50369         this.view.multiSelect = true;
50370         this.view.toggleSelect = true;
50371         this.pageTb.add(new Roo.Toolbar.Fill(), {
50372             
50373             text: 'Done',
50374             handler: function()
50375             {
50376                 _t.collapse();
50377             }
50378         });
50379     },
50380     
50381     onViewOver : function(e, t){
50382         // do nothing...
50383         return;
50384         
50385     },
50386     
50387     onViewClick : function(doFocus,index){
50388         return;
50389         
50390     },
50391     select: function () {
50392         //Roo.log("SELECT CALLED");
50393     },
50394      
50395     selectByValue : function(xv, scrollIntoView){
50396         var ar = this.getValueArray();
50397         var sels = [];
50398         
50399         Roo.each(ar, function(v) {
50400             if(v === undefined || v === null){
50401                 return;
50402             }
50403             var r = this.findRecord(this.valueField, v);
50404             if(r){
50405                 sels.push(this.store.indexOf(r))
50406                 
50407             }
50408         },this);
50409         this.view.select(sels);
50410         return false;
50411     },
50412     
50413     
50414     
50415     onSelect : function(record, index){
50416        // Roo.log("onselect Called");
50417        // this is only called by the clear button now..
50418         this.view.clearSelections();
50419         this.setValue('[]');
50420         if (this.value != this.valueBefore) {
50421             this.fireEvent('change', this, this.value, this.valueBefore);
50422             this.valueBefore = this.value;
50423         }
50424     },
50425     getValueArray : function()
50426     {
50427         var ar = [] ;
50428         
50429         try {
50430             //Roo.log(this.value);
50431             if (typeof(this.value) == 'undefined') {
50432                 return [];
50433             }
50434             var ar = Roo.decode(this.value);
50435             return  ar instanceof Array ? ar : []; //?? valid?
50436             
50437         } catch(e) {
50438             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50439             return [];
50440         }
50441          
50442     },
50443     expand : function ()
50444     {
50445         
50446         Roo.form.ComboCheck.superclass.expand.call(this);
50447         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50448         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50449         
50450
50451     },
50452     
50453     collapse : function(){
50454         Roo.form.ComboCheck.superclass.collapse.call(this);
50455         var sl = this.view.getSelectedIndexes();
50456         var st = this.store;
50457         var nv = [];
50458         var tv = [];
50459         var r;
50460         Roo.each(sl, function(i) {
50461             r = st.getAt(i);
50462             nv.push(r.get(this.valueField));
50463         },this);
50464         this.setValue(Roo.encode(nv));
50465         if (this.value != this.valueBefore) {
50466
50467             this.fireEvent('change', this, this.value, this.valueBefore);
50468             this.valueBefore = this.value;
50469         }
50470         
50471     },
50472     
50473     setValue : function(v){
50474         // Roo.log(v);
50475         this.value = v;
50476         
50477         var vals = this.getValueArray();
50478         var tv = [];
50479         Roo.each(vals, function(k) {
50480             var r = this.findRecord(this.valueField, k);
50481             if(r){
50482                 tv.push(r.data[this.displayField]);
50483             }else if(this.valueNotFoundText !== undefined){
50484                 tv.push( this.valueNotFoundText );
50485             }
50486         },this);
50487        // Roo.log(tv);
50488         
50489         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50490         this.hiddenField.value = v;
50491         this.value = v;
50492     }
50493     
50494 });/*
50495  * Based on:
50496  * Ext JS Library 1.1.1
50497  * Copyright(c) 2006-2007, Ext JS, LLC.
50498  *
50499  * Originally Released Under LGPL - original licence link has changed is not relivant.
50500  *
50501  * Fork - LGPL
50502  * <script type="text/javascript">
50503  */
50504  
50505 /**
50506  * @class Roo.form.Signature
50507  * @extends Roo.form.Field
50508  * Signature field.  
50509  * @constructor
50510  * 
50511  * @param {Object} config Configuration options
50512  */
50513
50514 Roo.form.Signature = function(config){
50515     Roo.form.Signature.superclass.constructor.call(this, config);
50516     
50517     this.addEvents({// not in used??
50518          /**
50519          * @event confirm
50520          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50521              * @param {Roo.form.Signature} combo This combo box
50522              */
50523         'confirm' : true,
50524         /**
50525          * @event reset
50526          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50527              * @param {Roo.form.ComboBox} combo This combo box
50528              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50529              */
50530         'reset' : true
50531     });
50532 };
50533
50534 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50535     /**
50536      * @cfg {Object} labels Label to use when rendering a form.
50537      * defaults to 
50538      * labels : { 
50539      *      clear : "Clear",
50540      *      confirm : "Confirm"
50541      *  }
50542      */
50543     labels : { 
50544         clear : "Clear",
50545         confirm : "Confirm"
50546     },
50547     /**
50548      * @cfg {Number} width The signature panel width (defaults to 300)
50549      */
50550     width: 300,
50551     /**
50552      * @cfg {Number} height The signature panel height (defaults to 100)
50553      */
50554     height : 100,
50555     /**
50556      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50557      */
50558     allowBlank : false,
50559     
50560     //private
50561     // {Object} signPanel The signature SVG panel element (defaults to {})
50562     signPanel : {},
50563     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50564     isMouseDown : false,
50565     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50566     isConfirmed : false,
50567     // {String} signatureTmp SVG mapping string (defaults to empty string)
50568     signatureTmp : '',
50569     
50570     
50571     defaultAutoCreate : { // modified by initCompnoent..
50572         tag: "input",
50573         type:"hidden"
50574     },
50575
50576     // private
50577     onRender : function(ct, position){
50578         
50579         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50580         
50581         this.wrap = this.el.wrap({
50582             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50583         });
50584         
50585         this.createToolbar(this);
50586         this.signPanel = this.wrap.createChild({
50587                 tag: 'div',
50588                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50589             }, this.el
50590         );
50591             
50592         this.svgID = Roo.id();
50593         this.svgEl = this.signPanel.createChild({
50594               xmlns : 'http://www.w3.org/2000/svg',
50595               tag : 'svg',
50596               id : this.svgID + "-svg",
50597               width: this.width,
50598               height: this.height,
50599               viewBox: '0 0 '+this.width+' '+this.height,
50600               cn : [
50601                 {
50602                     tag: "rect",
50603                     id: this.svgID + "-svg-r",
50604                     width: this.width,
50605                     height: this.height,
50606                     fill: "#ffa"
50607                 },
50608                 {
50609                     tag: "line",
50610                     id: this.svgID + "-svg-l",
50611                     x1: "0", // start
50612                     y1: (this.height*0.8), // start set the line in 80% of height
50613                     x2: this.width, // end
50614                     y2: (this.height*0.8), // end set the line in 80% of height
50615                     'stroke': "#666",
50616                     'stroke-width': "1",
50617                     'stroke-dasharray': "3",
50618                     'shape-rendering': "crispEdges",
50619                     'pointer-events': "none"
50620                 },
50621                 {
50622                     tag: "path",
50623                     id: this.svgID + "-svg-p",
50624                     'stroke': "navy",
50625                     'stroke-width': "3",
50626                     'fill': "none",
50627                     'pointer-events': 'none'
50628                 }
50629               ]
50630         });
50631         this.createSVG();
50632         this.svgBox = this.svgEl.dom.getScreenCTM();
50633     },
50634     createSVG : function(){ 
50635         var svg = this.signPanel;
50636         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50637         var t = this;
50638
50639         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50640         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50641         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50642         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50643         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50644         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50645         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50646         
50647     },
50648     isTouchEvent : function(e){
50649         return e.type.match(/^touch/);
50650     },
50651     getCoords : function (e) {
50652         var pt    = this.svgEl.dom.createSVGPoint();
50653         pt.x = e.clientX; 
50654         pt.y = e.clientY;
50655         if (this.isTouchEvent(e)) {
50656             pt.x =  e.targetTouches[0].clientX;
50657             pt.y = e.targetTouches[0].clientY;
50658         }
50659         var a = this.svgEl.dom.getScreenCTM();
50660         var b = a.inverse();
50661         var mx = pt.matrixTransform(b);
50662         return mx.x + ',' + mx.y;
50663     },
50664     //mouse event headler 
50665     down : function (e) {
50666         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50667         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50668         
50669         this.isMouseDown = true;
50670         
50671         e.preventDefault();
50672     },
50673     move : function (e) {
50674         if (this.isMouseDown) {
50675             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50676             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50677         }
50678         
50679         e.preventDefault();
50680     },
50681     up : function (e) {
50682         this.isMouseDown = false;
50683         var sp = this.signatureTmp.split(' ');
50684         
50685         if(sp.length > 1){
50686             if(!sp[sp.length-2].match(/^L/)){
50687                 sp.pop();
50688                 sp.pop();
50689                 sp.push("");
50690                 this.signatureTmp = sp.join(" ");
50691             }
50692         }
50693         if(this.getValue() != this.signatureTmp){
50694             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50695             this.isConfirmed = false;
50696         }
50697         e.preventDefault();
50698     },
50699     
50700     /**
50701      * Protected method that will not generally be called directly. It
50702      * is called when the editor creates its toolbar. Override this method if you need to
50703      * add custom toolbar buttons.
50704      * @param {HtmlEditor} editor
50705      */
50706     createToolbar : function(editor){
50707          function btn(id, toggle, handler){
50708             var xid = fid + '-'+ id ;
50709             return {
50710                 id : xid,
50711                 cmd : id,
50712                 cls : 'x-btn-icon x-edit-'+id,
50713                 enableToggle:toggle !== false,
50714                 scope: editor, // was editor...
50715                 handler:handler||editor.relayBtnCmd,
50716                 clickEvent:'mousedown',
50717                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50718                 tabIndex:-1
50719             };
50720         }
50721         
50722         
50723         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50724         this.tb = tb;
50725         this.tb.add(
50726            {
50727                 cls : ' x-signature-btn x-signature-'+id,
50728                 scope: editor, // was editor...
50729                 handler: this.reset,
50730                 clickEvent:'mousedown',
50731                 text: this.labels.clear
50732             },
50733             {
50734                  xtype : 'Fill',
50735                  xns: Roo.Toolbar
50736             }, 
50737             {
50738                 cls : '  x-signature-btn x-signature-'+id,
50739                 scope: editor, // was editor...
50740                 handler: this.confirmHandler,
50741                 clickEvent:'mousedown',
50742                 text: this.labels.confirm
50743             }
50744         );
50745     
50746     },
50747     //public
50748     /**
50749      * when user is clicked confirm then show this image.....
50750      * 
50751      * @return {String} Image Data URI
50752      */
50753     getImageDataURI : function(){
50754         var svg = this.svgEl.dom.parentNode.innerHTML;
50755         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50756         return src; 
50757     },
50758     /**
50759      * 
50760      * @return {Boolean} this.isConfirmed
50761      */
50762     getConfirmed : function(){
50763         return this.isConfirmed;
50764     },
50765     /**
50766      * 
50767      * @return {Number} this.width
50768      */
50769     getWidth : function(){
50770         return this.width;
50771     },
50772     /**
50773      * 
50774      * @return {Number} this.height
50775      */
50776     getHeight : function(){
50777         return this.height;
50778     },
50779     // private
50780     getSignature : function(){
50781         return this.signatureTmp;
50782     },
50783     // private
50784     reset : function(){
50785         this.signatureTmp = '';
50786         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50787         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50788         this.isConfirmed = false;
50789         Roo.form.Signature.superclass.reset.call(this);
50790     },
50791     setSignature : function(s){
50792         this.signatureTmp = s;
50793         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50794         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50795         this.setValue(s);
50796         this.isConfirmed = false;
50797         Roo.form.Signature.superclass.reset.call(this);
50798     }, 
50799     test : function(){
50800 //        Roo.log(this.signPanel.dom.contentWindow.up())
50801     },
50802     //private
50803     setConfirmed : function(){
50804         
50805         
50806         
50807 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50808     },
50809     // private
50810     confirmHandler : function(){
50811         if(!this.getSignature()){
50812             return;
50813         }
50814         
50815         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50816         this.setValue(this.getSignature());
50817         this.isConfirmed = true;
50818         
50819         this.fireEvent('confirm', this);
50820     },
50821     // private
50822     // Subclasses should provide the validation implementation by overriding this
50823     validateValue : function(value){
50824         if(this.allowBlank){
50825             return true;
50826         }
50827         
50828         if(this.isConfirmed){
50829             return true;
50830         }
50831         return false;
50832     }
50833 });/*
50834  * Based on:
50835  * Ext JS Library 1.1.1
50836  * Copyright(c) 2006-2007, Ext JS, LLC.
50837  *
50838  * Originally Released Under LGPL - original licence link has changed is not relivant.
50839  *
50840  * Fork - LGPL
50841  * <script type="text/javascript">
50842  */
50843  
50844
50845 /**
50846  * @class Roo.form.ComboBox
50847  * @extends Roo.form.TriggerField
50848  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50849  * @constructor
50850  * Create a new ComboBox.
50851  * @param {Object} config Configuration options
50852  */
50853 Roo.form.Select = function(config){
50854     Roo.form.Select.superclass.constructor.call(this, config);
50855      
50856 };
50857
50858 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50859     /**
50860      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50861      */
50862     /**
50863      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50864      * rendering into an Roo.Editor, defaults to false)
50865      */
50866     /**
50867      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50868      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50869      */
50870     /**
50871      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50872      */
50873     /**
50874      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50875      * the dropdown list (defaults to undefined, with no header element)
50876      */
50877
50878      /**
50879      * @cfg {String/Roo.Template} tpl The template to use to render the output
50880      */
50881      
50882     // private
50883     defaultAutoCreate : {tag: "select"  },
50884     /**
50885      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50886      */
50887     listWidth: undefined,
50888     /**
50889      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50890      * mode = 'remote' or 'text' if mode = 'local')
50891      */
50892     displayField: undefined,
50893     /**
50894      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50895      * mode = 'remote' or 'value' if mode = 'local'). 
50896      * Note: use of a valueField requires the user make a selection
50897      * in order for a value to be mapped.
50898      */
50899     valueField: undefined,
50900     
50901     
50902     /**
50903      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
50904      * field's data value (defaults to the underlying DOM element's name)
50905      */
50906     hiddenName: undefined,
50907     /**
50908      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
50909      */
50910     listClass: '',
50911     /**
50912      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
50913      */
50914     selectedClass: 'x-combo-selected',
50915     /**
50916      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
50917      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
50918      * which displays a downward arrow icon).
50919      */
50920     triggerClass : 'x-form-arrow-trigger',
50921     /**
50922      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
50923      */
50924     shadow:'sides',
50925     /**
50926      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
50927      * anchor positions (defaults to 'tl-bl')
50928      */
50929     listAlign: 'tl-bl?',
50930     /**
50931      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
50932      */
50933     maxHeight: 300,
50934     /**
50935      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
50936      * query specified by the allQuery config option (defaults to 'query')
50937      */
50938     triggerAction: 'query',
50939     /**
50940      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
50941      * (defaults to 4, does not apply if editable = false)
50942      */
50943     minChars : 4,
50944     /**
50945      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
50946      * delay (typeAheadDelay) if it matches a known value (defaults to false)
50947      */
50948     typeAhead: false,
50949     /**
50950      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
50951      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
50952      */
50953     queryDelay: 500,
50954     /**
50955      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
50956      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
50957      */
50958     pageSize: 0,
50959     /**
50960      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
50961      * when editable = true (defaults to false)
50962      */
50963     selectOnFocus:false,
50964     /**
50965      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
50966      */
50967     queryParam: 'query',
50968     /**
50969      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
50970      * when mode = 'remote' (defaults to 'Loading...')
50971      */
50972     loadingText: 'Loading...',
50973     /**
50974      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
50975      */
50976     resizable: false,
50977     /**
50978      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
50979      */
50980     handleHeight : 8,
50981     /**
50982      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
50983      * traditional select (defaults to true)
50984      */
50985     editable: true,
50986     /**
50987      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
50988      */
50989     allQuery: '',
50990     /**
50991      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
50992      */
50993     mode: 'remote',
50994     /**
50995      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
50996      * listWidth has a higher value)
50997      */
50998     minListWidth : 70,
50999     /**
51000      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51001      * allow the user to set arbitrary text into the field (defaults to false)
51002      */
51003     forceSelection:false,
51004     /**
51005      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51006      * if typeAhead = true (defaults to 250)
51007      */
51008     typeAheadDelay : 250,
51009     /**
51010      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51011      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51012      */
51013     valueNotFoundText : undefined,
51014     
51015     /**
51016      * @cfg {String} defaultValue The value displayed after loading the store.
51017      */
51018     defaultValue: '',
51019     
51020     /**
51021      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51022      */
51023     blockFocus : false,
51024     
51025     /**
51026      * @cfg {Boolean} disableClear Disable showing of clear button.
51027      */
51028     disableClear : false,
51029     /**
51030      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51031      */
51032     alwaysQuery : false,
51033     
51034     //private
51035     addicon : false,
51036     editicon: false,
51037     
51038     // element that contains real text value.. (when hidden is used..)
51039      
51040     // private
51041     onRender : function(ct, position){
51042         Roo.form.Field.prototype.onRender.call(this, ct, position);
51043         
51044         if(this.store){
51045             this.store.on('beforeload', this.onBeforeLoad, this);
51046             this.store.on('load', this.onLoad, this);
51047             this.store.on('loadexception', this.onLoadException, this);
51048             this.store.load({});
51049         }
51050         
51051         
51052         
51053     },
51054
51055     // private
51056     initEvents : function(){
51057         //Roo.form.ComboBox.superclass.initEvents.call(this);
51058  
51059     },
51060
51061     onDestroy : function(){
51062        
51063         if(this.store){
51064             this.store.un('beforeload', this.onBeforeLoad, this);
51065             this.store.un('load', this.onLoad, this);
51066             this.store.un('loadexception', this.onLoadException, this);
51067         }
51068         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51069     },
51070
51071     // private
51072     fireKey : function(e){
51073         if(e.isNavKeyPress() && !this.list.isVisible()){
51074             this.fireEvent("specialkey", this, e);
51075         }
51076     },
51077
51078     // private
51079     onResize: function(w, h){
51080         
51081         return; 
51082     
51083         
51084     },
51085
51086     /**
51087      * Allow or prevent the user from directly editing the field text.  If false is passed,
51088      * the user will only be able to select from the items defined in the dropdown list.  This method
51089      * is the runtime equivalent of setting the 'editable' config option at config time.
51090      * @param {Boolean} value True to allow the user to directly edit the field text
51091      */
51092     setEditable : function(value){
51093          
51094     },
51095
51096     // private
51097     onBeforeLoad : function(){
51098         
51099         Roo.log("Select before load");
51100         return;
51101     
51102         this.innerList.update(this.loadingText ?
51103                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51104         //this.restrictHeight();
51105         this.selectedIndex = -1;
51106     },
51107
51108     // private
51109     onLoad : function(){
51110
51111     
51112         var dom = this.el.dom;
51113         dom.innerHTML = '';
51114          var od = dom.ownerDocument;
51115          
51116         if (this.emptyText) {
51117             var op = od.createElement('option');
51118             op.setAttribute('value', '');
51119             op.innerHTML = String.format('{0}', this.emptyText);
51120             dom.appendChild(op);
51121         }
51122         if(this.store.getCount() > 0){
51123            
51124             var vf = this.valueField;
51125             var df = this.displayField;
51126             this.store.data.each(function(r) {
51127                 // which colmsn to use... testing - cdoe / title..
51128                 var op = od.createElement('option');
51129                 op.setAttribute('value', r.data[vf]);
51130                 op.innerHTML = String.format('{0}', r.data[df]);
51131                 dom.appendChild(op);
51132             });
51133             if (typeof(this.defaultValue != 'undefined')) {
51134                 this.setValue(this.defaultValue);
51135             }
51136             
51137              
51138         }else{
51139             //this.onEmptyResults();
51140         }
51141         //this.el.focus();
51142     },
51143     // private
51144     onLoadException : function()
51145     {
51146         dom.innerHTML = '';
51147             
51148         Roo.log("Select on load exception");
51149         return;
51150     
51151         this.collapse();
51152         Roo.log(this.store.reader.jsonData);
51153         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51154             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51155         }
51156         
51157         
51158     },
51159     // private
51160     onTypeAhead : function(){
51161          
51162     },
51163
51164     // private
51165     onSelect : function(record, index){
51166         Roo.log('on select?');
51167         return;
51168         if(this.fireEvent('beforeselect', this, record, index) !== false){
51169             this.setFromData(index > -1 ? record.data : false);
51170             this.collapse();
51171             this.fireEvent('select', this, record, index);
51172         }
51173     },
51174
51175     /**
51176      * Returns the currently selected field value or empty string if no value is set.
51177      * @return {String} value The selected value
51178      */
51179     getValue : function(){
51180         var dom = this.el.dom;
51181         this.value = dom.options[dom.selectedIndex].value;
51182         return this.value;
51183         
51184     },
51185
51186     /**
51187      * Clears any text/value currently set in the field
51188      */
51189     clearValue : function(){
51190         this.value = '';
51191         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51192         
51193     },
51194
51195     /**
51196      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51197      * will be displayed in the field.  If the value does not match the data value of an existing item,
51198      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51199      * Otherwise the field will be blank (although the value will still be set).
51200      * @param {String} value The value to match
51201      */
51202     setValue : function(v){
51203         var d = this.el.dom;
51204         for (var i =0; i < d.options.length;i++) {
51205             if (v == d.options[i].value) {
51206                 d.selectedIndex = i;
51207                 this.value = v;
51208                 return;
51209             }
51210         }
51211         this.clearValue();
51212     },
51213     /**
51214      * @property {Object} the last set data for the element
51215      */
51216     
51217     lastData : false,
51218     /**
51219      * Sets the value of the field based on a object which is related to the record format for the store.
51220      * @param {Object} value the value to set as. or false on reset?
51221      */
51222     setFromData : function(o){
51223         Roo.log('setfrom data?');
51224          
51225         
51226         
51227     },
51228     // private
51229     reset : function(){
51230         this.clearValue();
51231     },
51232     // private
51233     findRecord : function(prop, value){
51234         
51235         return false;
51236     
51237         var record;
51238         if(this.store.getCount() > 0){
51239             this.store.each(function(r){
51240                 if(r.data[prop] == value){
51241                     record = r;
51242                     return false;
51243                 }
51244                 return true;
51245             });
51246         }
51247         return record;
51248     },
51249     
51250     getName: function()
51251     {
51252         // returns hidden if it's set..
51253         if (!this.rendered) {return ''};
51254         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51255         
51256     },
51257      
51258
51259     
51260
51261     // private
51262     onEmptyResults : function(){
51263         Roo.log('empty results');
51264         //this.collapse();
51265     },
51266
51267     /**
51268      * Returns true if the dropdown list is expanded, else false.
51269      */
51270     isExpanded : function(){
51271         return false;
51272     },
51273
51274     /**
51275      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51276      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51277      * @param {String} value The data value of the item to select
51278      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51279      * selected item if it is not currently in view (defaults to true)
51280      * @return {Boolean} True if the value matched an item in the list, else false
51281      */
51282     selectByValue : function(v, scrollIntoView){
51283         Roo.log('select By Value');
51284         return false;
51285     
51286         if(v !== undefined && v !== null){
51287             var r = this.findRecord(this.valueField || this.displayField, v);
51288             if(r){
51289                 this.select(this.store.indexOf(r), scrollIntoView);
51290                 return true;
51291             }
51292         }
51293         return false;
51294     },
51295
51296     /**
51297      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51298      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51299      * @param {Number} index The zero-based index of the list item to select
51300      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51301      * selected item if it is not currently in view (defaults to true)
51302      */
51303     select : function(index, scrollIntoView){
51304         Roo.log('select ');
51305         return  ;
51306         
51307         this.selectedIndex = index;
51308         this.view.select(index);
51309         if(scrollIntoView !== false){
51310             var el = this.view.getNode(index);
51311             if(el){
51312                 this.innerList.scrollChildIntoView(el, false);
51313             }
51314         }
51315     },
51316
51317       
51318
51319     // private
51320     validateBlur : function(){
51321         
51322         return;
51323         
51324     },
51325
51326     // private
51327     initQuery : function(){
51328         this.doQuery(this.getRawValue());
51329     },
51330
51331     // private
51332     doForce : function(){
51333         if(this.el.dom.value.length > 0){
51334             this.el.dom.value =
51335                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51336              
51337         }
51338     },
51339
51340     /**
51341      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51342      * query allowing the query action to be canceled if needed.
51343      * @param {String} query The SQL query to execute
51344      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51345      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51346      * saved in the current store (defaults to false)
51347      */
51348     doQuery : function(q, forceAll){
51349         
51350         Roo.log('doQuery?');
51351         if(q === undefined || q === null){
51352             q = '';
51353         }
51354         var qe = {
51355             query: q,
51356             forceAll: forceAll,
51357             combo: this,
51358             cancel:false
51359         };
51360         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51361             return false;
51362         }
51363         q = qe.query;
51364         forceAll = qe.forceAll;
51365         if(forceAll === true || (q.length >= this.minChars)){
51366             if(this.lastQuery != q || this.alwaysQuery){
51367                 this.lastQuery = q;
51368                 if(this.mode == 'local'){
51369                     this.selectedIndex = -1;
51370                     if(forceAll){
51371                         this.store.clearFilter();
51372                     }else{
51373                         this.store.filter(this.displayField, q);
51374                     }
51375                     this.onLoad();
51376                 }else{
51377                     this.store.baseParams[this.queryParam] = q;
51378                     this.store.load({
51379                         params: this.getParams(q)
51380                     });
51381                     this.expand();
51382                 }
51383             }else{
51384                 this.selectedIndex = -1;
51385                 this.onLoad();   
51386             }
51387         }
51388     },
51389
51390     // private
51391     getParams : function(q){
51392         var p = {};
51393         //p[this.queryParam] = q;
51394         if(this.pageSize){
51395             p.start = 0;
51396             p.limit = this.pageSize;
51397         }
51398         return p;
51399     },
51400
51401     /**
51402      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51403      */
51404     collapse : function(){
51405         
51406     },
51407
51408     // private
51409     collapseIf : function(e){
51410         
51411     },
51412
51413     /**
51414      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51415      */
51416     expand : function(){
51417         
51418     } ,
51419
51420     // private
51421      
51422
51423     /** 
51424     * @cfg {Boolean} grow 
51425     * @hide 
51426     */
51427     /** 
51428     * @cfg {Number} growMin 
51429     * @hide 
51430     */
51431     /** 
51432     * @cfg {Number} growMax 
51433     * @hide 
51434     */
51435     /**
51436      * @hide
51437      * @method autoSize
51438      */
51439     
51440     setWidth : function()
51441     {
51442         
51443     },
51444     getResizeEl : function(){
51445         return this.el;
51446     }
51447 });//<script type="text/javasscript">
51448  
51449
51450 /**
51451  * @class Roo.DDView
51452  * A DnD enabled version of Roo.View.
51453  * @param {Element/String} container The Element in which to create the View.
51454  * @param {String} tpl The template string used to create the markup for each element of the View
51455  * @param {Object} config The configuration properties. These include all the config options of
51456  * {@link Roo.View} plus some specific to this class.<br>
51457  * <p>
51458  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51459  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51460  * <p>
51461  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51462 .x-view-drag-insert-above {
51463         border-top:1px dotted #3366cc;
51464 }
51465 .x-view-drag-insert-below {
51466         border-bottom:1px dotted #3366cc;
51467 }
51468 </code></pre>
51469  * 
51470  */
51471  
51472 Roo.DDView = function(container, tpl, config) {
51473     Roo.DDView.superclass.constructor.apply(this, arguments);
51474     this.getEl().setStyle("outline", "0px none");
51475     this.getEl().unselectable();
51476     if (this.dragGroup) {
51477         this.setDraggable(this.dragGroup.split(","));
51478     }
51479     if (this.dropGroup) {
51480         this.setDroppable(this.dropGroup.split(","));
51481     }
51482     if (this.deletable) {
51483         this.setDeletable();
51484     }
51485     this.isDirtyFlag = false;
51486         this.addEvents({
51487                 "drop" : true
51488         });
51489 };
51490
51491 Roo.extend(Roo.DDView, Roo.View, {
51492 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51493 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51494 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51495 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51496
51497         isFormField: true,
51498
51499         reset: Roo.emptyFn,
51500         
51501         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51502
51503         validate: function() {
51504                 return true;
51505         },
51506         
51507         destroy: function() {
51508                 this.purgeListeners();
51509                 this.getEl.removeAllListeners();
51510                 this.getEl().remove();
51511                 if (this.dragZone) {
51512                         if (this.dragZone.destroy) {
51513                                 this.dragZone.destroy();
51514                         }
51515                 }
51516                 if (this.dropZone) {
51517                         if (this.dropZone.destroy) {
51518                                 this.dropZone.destroy();
51519                         }
51520                 }
51521         },
51522
51523 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51524         getName: function() {
51525                 return this.name;
51526         },
51527
51528 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51529         setValue: function(v) {
51530                 if (!this.store) {
51531                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51532                 }
51533                 var data = {};
51534                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51535                 this.store.proxy = new Roo.data.MemoryProxy(data);
51536                 this.store.load();
51537         },
51538
51539 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51540         getValue: function() {
51541                 var result = '(';
51542                 this.store.each(function(rec) {
51543                         result += rec.id + ',';
51544                 });
51545                 return result.substr(0, result.length - 1) + ')';
51546         },
51547         
51548         getIds: function() {
51549                 var i = 0, result = new Array(this.store.getCount());
51550                 this.store.each(function(rec) {
51551                         result[i++] = rec.id;
51552                 });
51553                 return result;
51554         },
51555         
51556         isDirty: function() {
51557                 return this.isDirtyFlag;
51558         },
51559
51560 /**
51561  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51562  *      whole Element becomes the target, and this causes the drop gesture to append.
51563  */
51564     getTargetFromEvent : function(e) {
51565                 var target = e.getTarget();
51566                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51567                 target = target.parentNode;
51568                 }
51569                 if (!target) {
51570                         target = this.el.dom.lastChild || this.el.dom;
51571                 }
51572                 return target;
51573     },
51574
51575 /**
51576  *      Create the drag data which consists of an object which has the property "ddel" as
51577  *      the drag proxy element. 
51578  */
51579     getDragData : function(e) {
51580         var target = this.findItemFromChild(e.getTarget());
51581                 if(target) {
51582                         this.handleSelection(e);
51583                         var selNodes = this.getSelectedNodes();
51584             var dragData = {
51585                 source: this,
51586                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51587                 nodes: selNodes,
51588                 records: []
51589                         };
51590                         var selectedIndices = this.getSelectedIndexes();
51591                         for (var i = 0; i < selectedIndices.length; i++) {
51592                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51593                         }
51594                         if (selNodes.length == 1) {
51595                                 dragData.ddel = target.cloneNode(true); // the div element
51596                         } else {
51597                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51598                                 div.className = 'multi-proxy';
51599                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51600                                         div.appendChild(selNodes[i].cloneNode(true));
51601                                 }
51602                                 dragData.ddel = div;
51603                         }
51604             //console.log(dragData)
51605             //console.log(dragData.ddel.innerHTML)
51606                         return dragData;
51607                 }
51608         //console.log('nodragData')
51609                 return false;
51610     },
51611     
51612 /**     Specify to which ddGroup items in this DDView may be dragged. */
51613     setDraggable: function(ddGroup) {
51614         if (ddGroup instanceof Array) {
51615                 Roo.each(ddGroup, this.setDraggable, this);
51616                 return;
51617         }
51618         if (this.dragZone) {
51619                 this.dragZone.addToGroup(ddGroup);
51620         } else {
51621                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51622                                 containerScroll: true,
51623                                 ddGroup: ddGroup 
51624
51625                         });
51626 //                      Draggability implies selection. DragZone's mousedown selects the element.
51627                         if (!this.multiSelect) { this.singleSelect = true; }
51628
51629 //                      Wire the DragZone's handlers up to methods in *this*
51630                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51631                 }
51632     },
51633
51634 /**     Specify from which ddGroup this DDView accepts drops. */
51635     setDroppable: function(ddGroup) {
51636         if (ddGroup instanceof Array) {
51637                 Roo.each(ddGroup, this.setDroppable, this);
51638                 return;
51639         }
51640         if (this.dropZone) {
51641                 this.dropZone.addToGroup(ddGroup);
51642         } else {
51643                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51644                                 containerScroll: true,
51645                                 ddGroup: ddGroup
51646                         });
51647
51648 //                      Wire the DropZone's handlers up to methods in *this*
51649                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51650                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51651                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51652                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51653                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51654                 }
51655     },
51656
51657 /**     Decide whether to drop above or below a View node. */
51658     getDropPoint : function(e, n, dd){
51659         if (n == this.el.dom) { return "above"; }
51660                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51661                 var c = t + (b - t) / 2;
51662                 var y = Roo.lib.Event.getPageY(e);
51663                 if(y <= c) {
51664                         return "above";
51665                 }else{
51666                         return "below";
51667                 }
51668     },
51669
51670     onNodeEnter : function(n, dd, e, data){
51671                 return false;
51672     },
51673     
51674     onNodeOver : function(n, dd, e, data){
51675                 var pt = this.getDropPoint(e, n, dd);
51676                 // set the insert point style on the target node
51677                 var dragElClass = this.dropNotAllowed;
51678                 if (pt) {
51679                         var targetElClass;
51680                         if (pt == "above"){
51681                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51682                                 targetElClass = "x-view-drag-insert-above";
51683                         } else {
51684                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51685                                 targetElClass = "x-view-drag-insert-below";
51686                         }
51687                         if (this.lastInsertClass != targetElClass){
51688                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51689                                 this.lastInsertClass = targetElClass;
51690                         }
51691                 }
51692                 return dragElClass;
51693         },
51694
51695     onNodeOut : function(n, dd, e, data){
51696                 this.removeDropIndicators(n);
51697     },
51698
51699     onNodeDrop : function(n, dd, e, data){
51700         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51701                 return false;
51702         }
51703         var pt = this.getDropPoint(e, n, dd);
51704                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51705                 if (pt == "below") { insertAt++; }
51706                 for (var i = 0; i < data.records.length; i++) {
51707                         var r = data.records[i];
51708                         var dup = this.store.getById(r.id);
51709                         if (dup && (dd != this.dragZone)) {
51710                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51711                         } else {
51712                                 if (data.copy) {
51713                                         this.store.insert(insertAt++, r.copy());
51714                                 } else {
51715                                         data.source.isDirtyFlag = true;
51716                                         r.store.remove(r);
51717                                         this.store.insert(insertAt++, r);
51718                                 }
51719                                 this.isDirtyFlag = true;
51720                         }
51721                 }
51722                 this.dragZone.cachedTarget = null;
51723                 return true;
51724     },
51725
51726     removeDropIndicators : function(n){
51727                 if(n){
51728                         Roo.fly(n).removeClass([
51729                                 "x-view-drag-insert-above",
51730                                 "x-view-drag-insert-below"]);
51731                         this.lastInsertClass = "_noclass";
51732                 }
51733     },
51734
51735 /**
51736  *      Utility method. Add a delete option to the DDView's context menu.
51737  *      @param {String} imageUrl The URL of the "delete" icon image.
51738  */
51739         setDeletable: function(imageUrl) {
51740                 if (!this.singleSelect && !this.multiSelect) {
51741                         this.singleSelect = true;
51742                 }
51743                 var c = this.getContextMenu();
51744                 this.contextMenu.on("itemclick", function(item) {
51745                         switch (item.id) {
51746                                 case "delete":
51747                                         this.remove(this.getSelectedIndexes());
51748                                         break;
51749                         }
51750                 }, this);
51751                 this.contextMenu.add({
51752                         icon: imageUrl,
51753                         id: "delete",
51754                         text: 'Delete'
51755                 });
51756         },
51757         
51758 /**     Return the context menu for this DDView. */
51759         getContextMenu: function() {
51760                 if (!this.contextMenu) {
51761 //                      Create the View's context menu
51762                         this.contextMenu = new Roo.menu.Menu({
51763                                 id: this.id + "-contextmenu"
51764                         });
51765                         this.el.on("contextmenu", this.showContextMenu, this);
51766                 }
51767                 return this.contextMenu;
51768         },
51769         
51770         disableContextMenu: function() {
51771                 if (this.contextMenu) {
51772                         this.el.un("contextmenu", this.showContextMenu, this);
51773                 }
51774         },
51775
51776         showContextMenu: function(e, item) {
51777         item = this.findItemFromChild(e.getTarget());
51778                 if (item) {
51779                         e.stopEvent();
51780                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51781                         this.contextMenu.showAt(e.getXY());
51782             }
51783     },
51784
51785 /**
51786  *      Remove {@link Roo.data.Record}s at the specified indices.
51787  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51788  */
51789     remove: function(selectedIndices) {
51790                 selectedIndices = [].concat(selectedIndices);
51791                 for (var i = 0; i < selectedIndices.length; i++) {
51792                         var rec = this.store.getAt(selectedIndices[i]);
51793                         this.store.remove(rec);
51794                 }
51795     },
51796
51797 /**
51798  *      Double click fires the event, but also, if this is draggable, and there is only one other
51799  *      related DropZone, it transfers the selected node.
51800  */
51801     onDblClick : function(e){
51802         var item = this.findItemFromChild(e.getTarget());
51803         if(item){
51804             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51805                 return false;
51806             }
51807             if (this.dragGroup) {
51808                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51809                     while (targets.indexOf(this.dropZone) > -1) {
51810                             targets.remove(this.dropZone);
51811                                 }
51812                     if (targets.length == 1) {
51813                                         this.dragZone.cachedTarget = null;
51814                         var el = Roo.get(targets[0].getEl());
51815                         var box = el.getBox(true);
51816                         targets[0].onNodeDrop(el.dom, {
51817                                 target: el.dom,
51818                                 xy: [box.x, box.y + box.height - 1]
51819                         }, null, this.getDragData(e));
51820                     }
51821                 }
51822         }
51823     },
51824     
51825     handleSelection: function(e) {
51826                 this.dragZone.cachedTarget = null;
51827         var item = this.findItemFromChild(e.getTarget());
51828         if (!item) {
51829                 this.clearSelections(true);
51830                 return;
51831         }
51832                 if (item && (this.multiSelect || this.singleSelect)){
51833                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51834                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51835                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51836                                 this.unselect(item);
51837                         } else {
51838                                 this.select(item, this.multiSelect && e.ctrlKey);
51839                                 this.lastSelection = item;
51840                         }
51841                 }
51842     },
51843
51844     onItemClick : function(item, index, e){
51845                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51846                         return false;
51847                 }
51848                 return true;
51849     },
51850
51851     unselect : function(nodeInfo, suppressEvent){
51852                 var node = this.getNode(nodeInfo);
51853                 if(node && this.isSelected(node)){
51854                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51855                                 Roo.fly(node).removeClass(this.selectedClass);
51856                                 this.selections.remove(node);
51857                                 if(!suppressEvent){
51858                                         this.fireEvent("selectionchange", this, this.selections);
51859                                 }
51860                         }
51861                 }
51862     }
51863 });
51864 /*
51865  * Based on:
51866  * Ext JS Library 1.1.1
51867  * Copyright(c) 2006-2007, Ext JS, LLC.
51868  *
51869  * Originally Released Under LGPL - original licence link has changed is not relivant.
51870  *
51871  * Fork - LGPL
51872  * <script type="text/javascript">
51873  */
51874  
51875 /**
51876  * @class Roo.LayoutManager
51877  * @extends Roo.util.Observable
51878  * Base class for layout managers.
51879  */
51880 Roo.LayoutManager = function(container, config){
51881     Roo.LayoutManager.superclass.constructor.call(this);
51882     this.el = Roo.get(container);
51883     // ie scrollbar fix
51884     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51885         document.body.scroll = "no";
51886     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51887         this.el.position('relative');
51888     }
51889     this.id = this.el.id;
51890     this.el.addClass("x-layout-container");
51891     /** false to disable window resize monitoring @type Boolean */
51892     this.monitorWindowResize = true;
51893     this.regions = {};
51894     this.addEvents({
51895         /**
51896          * @event layout
51897          * Fires when a layout is performed. 
51898          * @param {Roo.LayoutManager} this
51899          */
51900         "layout" : true,
51901         /**
51902          * @event regionresized
51903          * Fires when the user resizes a region. 
51904          * @param {Roo.LayoutRegion} region The resized region
51905          * @param {Number} newSize The new size (width for east/west, height for north/south)
51906          */
51907         "regionresized" : true,
51908         /**
51909          * @event regioncollapsed
51910          * Fires when a region is collapsed. 
51911          * @param {Roo.LayoutRegion} region The collapsed region
51912          */
51913         "regioncollapsed" : true,
51914         /**
51915          * @event regionexpanded
51916          * Fires when a region is expanded.  
51917          * @param {Roo.LayoutRegion} region The expanded region
51918          */
51919         "regionexpanded" : true
51920     });
51921     this.updating = false;
51922     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
51923 };
51924
51925 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
51926     /**
51927      * Returns true if this layout is currently being updated
51928      * @return {Boolean}
51929      */
51930     isUpdating : function(){
51931         return this.updating; 
51932     },
51933     
51934     /**
51935      * Suspend the LayoutManager from doing auto-layouts while
51936      * making multiple add or remove calls
51937      */
51938     beginUpdate : function(){
51939         this.updating = true;    
51940     },
51941     
51942     /**
51943      * Restore auto-layouts and optionally disable the manager from performing a layout
51944      * @param {Boolean} noLayout true to disable a layout update 
51945      */
51946     endUpdate : function(noLayout){
51947         this.updating = false;
51948         if(!noLayout){
51949             this.layout();
51950         }    
51951     },
51952     
51953     layout: function(){
51954         
51955     },
51956     
51957     onRegionResized : function(region, newSize){
51958         this.fireEvent("regionresized", region, newSize);
51959         this.layout();
51960     },
51961     
51962     onRegionCollapsed : function(region){
51963         this.fireEvent("regioncollapsed", region);
51964     },
51965     
51966     onRegionExpanded : function(region){
51967         this.fireEvent("regionexpanded", region);
51968     },
51969         
51970     /**
51971      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
51972      * performs box-model adjustments.
51973      * @return {Object} The size as an object {width: (the width), height: (the height)}
51974      */
51975     getViewSize : function(){
51976         var size;
51977         if(this.el.dom != document.body){
51978             size = this.el.getSize();
51979         }else{
51980             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
51981         }
51982         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
51983         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
51984         return size;
51985     },
51986     
51987     /**
51988      * Returns the Element this layout is bound to.
51989      * @return {Roo.Element}
51990      */
51991     getEl : function(){
51992         return this.el;
51993     },
51994     
51995     /**
51996      * Returns the specified region.
51997      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
51998      * @return {Roo.LayoutRegion}
51999      */
52000     getRegion : function(target){
52001         return this.regions[target.toLowerCase()];
52002     },
52003     
52004     onWindowResize : function(){
52005         if(this.monitorWindowResize){
52006             this.layout();
52007         }
52008     }
52009 });/*
52010  * Based on:
52011  * Ext JS Library 1.1.1
52012  * Copyright(c) 2006-2007, Ext JS, LLC.
52013  *
52014  * Originally Released Under LGPL - original licence link has changed is not relivant.
52015  *
52016  * Fork - LGPL
52017  * <script type="text/javascript">
52018  */
52019 /**
52020  * @class Roo.BorderLayout
52021  * @extends Roo.LayoutManager
52022  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52023  * please see: <br><br>
52024  * <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>
52025  * <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>
52026  * Example:
52027  <pre><code>
52028  var layout = new Roo.BorderLayout(document.body, {
52029     north: {
52030         initialSize: 25,
52031         titlebar: false
52032     },
52033     west: {
52034         split:true,
52035         initialSize: 200,
52036         minSize: 175,
52037         maxSize: 400,
52038         titlebar: true,
52039         collapsible: true
52040     },
52041     east: {
52042         split:true,
52043         initialSize: 202,
52044         minSize: 175,
52045         maxSize: 400,
52046         titlebar: true,
52047         collapsible: true
52048     },
52049     south: {
52050         split:true,
52051         initialSize: 100,
52052         minSize: 100,
52053         maxSize: 200,
52054         titlebar: true,
52055         collapsible: true
52056     },
52057     center: {
52058         titlebar: true,
52059         autoScroll:true,
52060         resizeTabs: true,
52061         minTabWidth: 50,
52062         preferredTabWidth: 150
52063     }
52064 });
52065
52066 // shorthand
52067 var CP = Roo.ContentPanel;
52068
52069 layout.beginUpdate();
52070 layout.add("north", new CP("north", "North"));
52071 layout.add("south", new CP("south", {title: "South", closable: true}));
52072 layout.add("west", new CP("west", {title: "West"}));
52073 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52074 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52075 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52076 layout.getRegion("center").showPanel("center1");
52077 layout.endUpdate();
52078 </code></pre>
52079
52080 <b>The container the layout is rendered into can be either the body element or any other element.
52081 If it is not the body element, the container needs to either be an absolute positioned element,
52082 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52083 the container size if it is not the body element.</b>
52084
52085 * @constructor
52086 * Create a new BorderLayout
52087 * @param {String/HTMLElement/Element} container The container this layout is bound to
52088 * @param {Object} config Configuration options
52089  */
52090 Roo.BorderLayout = function(container, config){
52091     config = config || {};
52092     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52093     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52094     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52095         var target = this.factory.validRegions[i];
52096         if(config[target]){
52097             this.addRegion(target, config[target]);
52098         }
52099     }
52100 };
52101
52102 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52103     /**
52104      * Creates and adds a new region if it doesn't already exist.
52105      * @param {String} target The target region key (north, south, east, west or center).
52106      * @param {Object} config The regions config object
52107      * @return {BorderLayoutRegion} The new region
52108      */
52109     addRegion : function(target, config){
52110         if(!this.regions[target]){
52111             var r = this.factory.create(target, this, config);
52112             this.bindRegion(target, r);
52113         }
52114         return this.regions[target];
52115     },
52116
52117     // private (kinda)
52118     bindRegion : function(name, r){
52119         this.regions[name] = r;
52120         r.on("visibilitychange", this.layout, this);
52121         r.on("paneladded", this.layout, this);
52122         r.on("panelremoved", this.layout, this);
52123         r.on("invalidated", this.layout, this);
52124         r.on("resized", this.onRegionResized, this);
52125         r.on("collapsed", this.onRegionCollapsed, this);
52126         r.on("expanded", this.onRegionExpanded, this);
52127     },
52128
52129     /**
52130      * Performs a layout update.
52131      */
52132     layout : function(){
52133         if(this.updating) {
52134             return;
52135         }
52136         var size = this.getViewSize();
52137         var w = size.width;
52138         var h = size.height;
52139         var centerW = w;
52140         var centerH = h;
52141         var centerY = 0;
52142         var centerX = 0;
52143         //var x = 0, y = 0;
52144
52145         var rs = this.regions;
52146         var north = rs["north"];
52147         var south = rs["south"]; 
52148         var west = rs["west"];
52149         var east = rs["east"];
52150         var center = rs["center"];
52151         //if(this.hideOnLayout){ // not supported anymore
52152             //c.el.setStyle("display", "none");
52153         //}
52154         if(north && north.isVisible()){
52155             var b = north.getBox();
52156             var m = north.getMargins();
52157             b.width = w - (m.left+m.right);
52158             b.x = m.left;
52159             b.y = m.top;
52160             centerY = b.height + b.y + m.bottom;
52161             centerH -= centerY;
52162             north.updateBox(this.safeBox(b));
52163         }
52164         if(south && south.isVisible()){
52165             var b = south.getBox();
52166             var m = south.getMargins();
52167             b.width = w - (m.left+m.right);
52168             b.x = m.left;
52169             var totalHeight = (b.height + m.top + m.bottom);
52170             b.y = h - totalHeight + m.top;
52171             centerH -= totalHeight;
52172             south.updateBox(this.safeBox(b));
52173         }
52174         if(west && west.isVisible()){
52175             var b = west.getBox();
52176             var m = west.getMargins();
52177             b.height = centerH - (m.top+m.bottom);
52178             b.x = m.left;
52179             b.y = centerY + m.top;
52180             var totalWidth = (b.width + m.left + m.right);
52181             centerX += totalWidth;
52182             centerW -= totalWidth;
52183             west.updateBox(this.safeBox(b));
52184         }
52185         if(east && east.isVisible()){
52186             var b = east.getBox();
52187             var m = east.getMargins();
52188             b.height = centerH - (m.top+m.bottom);
52189             var totalWidth = (b.width + m.left + m.right);
52190             b.x = w - totalWidth + m.left;
52191             b.y = centerY + m.top;
52192             centerW -= totalWidth;
52193             east.updateBox(this.safeBox(b));
52194         }
52195         if(center){
52196             var m = center.getMargins();
52197             var centerBox = {
52198                 x: centerX + m.left,
52199                 y: centerY + m.top,
52200                 width: centerW - (m.left+m.right),
52201                 height: centerH - (m.top+m.bottom)
52202             };
52203             //if(this.hideOnLayout){
52204                 //center.el.setStyle("display", "block");
52205             //}
52206             center.updateBox(this.safeBox(centerBox));
52207         }
52208         this.el.repaint();
52209         this.fireEvent("layout", this);
52210     },
52211
52212     // private
52213     safeBox : function(box){
52214         box.width = Math.max(0, box.width);
52215         box.height = Math.max(0, box.height);
52216         return box;
52217     },
52218
52219     /**
52220      * Adds a ContentPanel (or subclass) to this layout.
52221      * @param {String} target The target region key (north, south, east, west or center).
52222      * @param {Roo.ContentPanel} panel The panel to add
52223      * @return {Roo.ContentPanel} The added panel
52224      */
52225     add : function(target, panel){
52226          
52227         target = target.toLowerCase();
52228         return this.regions[target].add(panel);
52229     },
52230
52231     /**
52232      * Remove a ContentPanel (or subclass) to this layout.
52233      * @param {String} target The target region key (north, south, east, west or center).
52234      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52235      * @return {Roo.ContentPanel} The removed panel
52236      */
52237     remove : function(target, panel){
52238         target = target.toLowerCase();
52239         return this.regions[target].remove(panel);
52240     },
52241
52242     /**
52243      * Searches all regions for a panel with the specified id
52244      * @param {String} panelId
52245      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52246      */
52247     findPanel : function(panelId){
52248         var rs = this.regions;
52249         for(var target in rs){
52250             if(typeof rs[target] != "function"){
52251                 var p = rs[target].getPanel(panelId);
52252                 if(p){
52253                     return p;
52254                 }
52255             }
52256         }
52257         return null;
52258     },
52259
52260     /**
52261      * Searches all regions for a panel with the specified id and activates (shows) it.
52262      * @param {String/ContentPanel} panelId The panels id or the panel itself
52263      * @return {Roo.ContentPanel} The shown panel or null
52264      */
52265     showPanel : function(panelId) {
52266       var rs = this.regions;
52267       for(var target in rs){
52268          var r = rs[target];
52269          if(typeof r != "function"){
52270             if(r.hasPanel(panelId)){
52271                return r.showPanel(panelId);
52272             }
52273          }
52274       }
52275       return null;
52276    },
52277
52278    /**
52279      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52280      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52281      */
52282     restoreState : function(provider){
52283         if(!provider){
52284             provider = Roo.state.Manager;
52285         }
52286         var sm = new Roo.LayoutStateManager();
52287         sm.init(this, provider);
52288     },
52289
52290     /**
52291      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52292      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52293      * a valid ContentPanel config object.  Example:
52294      * <pre><code>
52295 // Create the main layout
52296 var layout = new Roo.BorderLayout('main-ct', {
52297     west: {
52298         split:true,
52299         minSize: 175,
52300         titlebar: true
52301     },
52302     center: {
52303         title:'Components'
52304     }
52305 }, 'main-ct');
52306
52307 // Create and add multiple ContentPanels at once via configs
52308 layout.batchAdd({
52309    west: {
52310        id: 'source-files',
52311        autoCreate:true,
52312        title:'Ext Source Files',
52313        autoScroll:true,
52314        fitToFrame:true
52315    },
52316    center : {
52317        el: cview,
52318        autoScroll:true,
52319        fitToFrame:true,
52320        toolbar: tb,
52321        resizeEl:'cbody'
52322    }
52323 });
52324 </code></pre>
52325      * @param {Object} regions An object containing ContentPanel configs by region name
52326      */
52327     batchAdd : function(regions){
52328         this.beginUpdate();
52329         for(var rname in regions){
52330             var lr = this.regions[rname];
52331             if(lr){
52332                 this.addTypedPanels(lr, regions[rname]);
52333             }
52334         }
52335         this.endUpdate();
52336     },
52337
52338     // private
52339     addTypedPanels : function(lr, ps){
52340         if(typeof ps == 'string'){
52341             lr.add(new Roo.ContentPanel(ps));
52342         }
52343         else if(ps instanceof Array){
52344             for(var i =0, len = ps.length; i < len; i++){
52345                 this.addTypedPanels(lr, ps[i]);
52346             }
52347         }
52348         else if(!ps.events){ // raw config?
52349             var el = ps.el;
52350             delete ps.el; // prevent conflict
52351             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52352         }
52353         else {  // panel object assumed!
52354             lr.add(ps);
52355         }
52356     },
52357     /**
52358      * Adds a xtype elements to the layout.
52359      * <pre><code>
52360
52361 layout.addxtype({
52362        xtype : 'ContentPanel',
52363        region: 'west',
52364        items: [ .... ]
52365    }
52366 );
52367
52368 layout.addxtype({
52369         xtype : 'NestedLayoutPanel',
52370         region: 'west',
52371         layout: {
52372            center: { },
52373            west: { }   
52374         },
52375         items : [ ... list of content panels or nested layout panels.. ]
52376    }
52377 );
52378 </code></pre>
52379      * @param {Object} cfg Xtype definition of item to add.
52380      */
52381     addxtype : function(cfg)
52382     {
52383         // basically accepts a pannel...
52384         // can accept a layout region..!?!?
52385         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52386         
52387         if (!cfg.xtype.match(/Panel$/)) {
52388             return false;
52389         }
52390         var ret = false;
52391         
52392         if (typeof(cfg.region) == 'undefined') {
52393             Roo.log("Failed to add Panel, region was not set");
52394             Roo.log(cfg);
52395             return false;
52396         }
52397         var region = cfg.region;
52398         delete cfg.region;
52399         
52400           
52401         var xitems = [];
52402         if (cfg.items) {
52403             xitems = cfg.items;
52404             delete cfg.items;
52405         }
52406         var nb = false;
52407         
52408         switch(cfg.xtype) 
52409         {
52410             case 'ContentPanel':  // ContentPanel (el, cfg)
52411             case 'ScrollPanel':  // ContentPanel (el, cfg)
52412             case 'ViewPanel': 
52413                 if(cfg.autoCreate) {
52414                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52415                 } else {
52416                     var el = this.el.createChild();
52417                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52418                 }
52419                 
52420                 this.add(region, ret);
52421                 break;
52422             
52423             
52424             case 'TreePanel': // our new panel!
52425                 cfg.el = this.el.createChild();
52426                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52427                 this.add(region, ret);
52428                 break;
52429             
52430             case 'NestedLayoutPanel': 
52431                 // create a new Layout (which is  a Border Layout...
52432                 var el = this.el.createChild();
52433                 var clayout = cfg.layout;
52434                 delete cfg.layout;
52435                 clayout.items   = clayout.items  || [];
52436                 // replace this exitems with the clayout ones..
52437                 xitems = clayout.items;
52438                  
52439                 
52440                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52441                     cfg.background = false;
52442                 }
52443                 var layout = new Roo.BorderLayout(el, clayout);
52444                 
52445                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52446                 //console.log('adding nested layout panel '  + cfg.toSource());
52447                 this.add(region, ret);
52448                 nb = {}; /// find first...
52449                 break;
52450                 
52451             case 'GridPanel': 
52452             
52453                 // needs grid and region
52454                 
52455                 //var el = this.getRegion(region).el.createChild();
52456                 var el = this.el.createChild();
52457                 // create the grid first...
52458                 
52459                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52460                 delete cfg.grid;
52461                 if (region == 'center' && this.active ) {
52462                     cfg.background = false;
52463                 }
52464                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52465                 
52466                 this.add(region, ret);
52467                 if (cfg.background) {
52468                     ret.on('activate', function(gp) {
52469                         if (!gp.grid.rendered) {
52470                             gp.grid.render();
52471                         }
52472                     });
52473                 } else {
52474                     grid.render();
52475                 }
52476                 break;
52477            
52478            
52479            
52480                 
52481                 
52482                 
52483             default:
52484                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52485                     
52486                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52487                     this.add(region, ret);
52488                 } else {
52489                 
52490                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52491                     return null;
52492                 }
52493                 
52494              // GridPanel (grid, cfg)
52495             
52496         }
52497         this.beginUpdate();
52498         // add children..
52499         var region = '';
52500         var abn = {};
52501         Roo.each(xitems, function(i)  {
52502             region = nb && i.region ? i.region : false;
52503             
52504             var add = ret.addxtype(i);
52505            
52506             if (region) {
52507                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52508                 if (!i.background) {
52509                     abn[region] = nb[region] ;
52510                 }
52511             }
52512             
52513         });
52514         this.endUpdate();
52515
52516         // make the last non-background panel active..
52517         //if (nb) { Roo.log(abn); }
52518         if (nb) {
52519             
52520             for(var r in abn) {
52521                 region = this.getRegion(r);
52522                 if (region) {
52523                     // tried using nb[r], but it does not work..
52524                      
52525                     region.showPanel(abn[r]);
52526                    
52527                 }
52528             }
52529         }
52530         return ret;
52531         
52532     }
52533 });
52534
52535 /**
52536  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52537  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52538  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52539  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52540  * <pre><code>
52541 // shorthand
52542 var CP = Roo.ContentPanel;
52543
52544 var layout = Roo.BorderLayout.create({
52545     north: {
52546         initialSize: 25,
52547         titlebar: false,
52548         panels: [new CP("north", "North")]
52549     },
52550     west: {
52551         split:true,
52552         initialSize: 200,
52553         minSize: 175,
52554         maxSize: 400,
52555         titlebar: true,
52556         collapsible: true,
52557         panels: [new CP("west", {title: "West"})]
52558     },
52559     east: {
52560         split:true,
52561         initialSize: 202,
52562         minSize: 175,
52563         maxSize: 400,
52564         titlebar: true,
52565         collapsible: true,
52566         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52567     },
52568     south: {
52569         split:true,
52570         initialSize: 100,
52571         minSize: 100,
52572         maxSize: 200,
52573         titlebar: true,
52574         collapsible: true,
52575         panels: [new CP("south", {title: "South", closable: true})]
52576     },
52577     center: {
52578         titlebar: true,
52579         autoScroll:true,
52580         resizeTabs: true,
52581         minTabWidth: 50,
52582         preferredTabWidth: 150,
52583         panels: [
52584             new CP("center1", {title: "Close Me", closable: true}),
52585             new CP("center2", {title: "Center Panel", closable: false})
52586         ]
52587     }
52588 }, document.body);
52589
52590 layout.getRegion("center").showPanel("center1");
52591 </code></pre>
52592  * @param config
52593  * @param targetEl
52594  */
52595 Roo.BorderLayout.create = function(config, targetEl){
52596     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52597     layout.beginUpdate();
52598     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52599     for(var j = 0, jlen = regions.length; j < jlen; j++){
52600         var lr = regions[j];
52601         if(layout.regions[lr] && config[lr].panels){
52602             var r = layout.regions[lr];
52603             var ps = config[lr].panels;
52604             layout.addTypedPanels(r, ps);
52605         }
52606     }
52607     layout.endUpdate();
52608     return layout;
52609 };
52610
52611 // private
52612 Roo.BorderLayout.RegionFactory = {
52613     // private
52614     validRegions : ["north","south","east","west","center"],
52615
52616     // private
52617     create : function(target, mgr, config){
52618         target = target.toLowerCase();
52619         if(config.lightweight || config.basic){
52620             return new Roo.BasicLayoutRegion(mgr, config, target);
52621         }
52622         switch(target){
52623             case "north":
52624                 return new Roo.NorthLayoutRegion(mgr, config);
52625             case "south":
52626                 return new Roo.SouthLayoutRegion(mgr, config);
52627             case "east":
52628                 return new Roo.EastLayoutRegion(mgr, config);
52629             case "west":
52630                 return new Roo.WestLayoutRegion(mgr, config);
52631             case "center":
52632                 return new Roo.CenterLayoutRegion(mgr, config);
52633         }
52634         throw 'Layout region "'+target+'" not supported.';
52635     }
52636 };/*
52637  * Based on:
52638  * Ext JS Library 1.1.1
52639  * Copyright(c) 2006-2007, Ext JS, LLC.
52640  *
52641  * Originally Released Under LGPL - original licence link has changed is not relivant.
52642  *
52643  * Fork - LGPL
52644  * <script type="text/javascript">
52645  */
52646  
52647 /**
52648  * @class Roo.BasicLayoutRegion
52649  * @extends Roo.util.Observable
52650  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52651  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52652  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52653  */
52654 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52655     this.mgr = mgr;
52656     this.position  = pos;
52657     this.events = {
52658         /**
52659          * @scope Roo.BasicLayoutRegion
52660          */
52661         
52662         /**
52663          * @event beforeremove
52664          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52665          * @param {Roo.LayoutRegion} this
52666          * @param {Roo.ContentPanel} panel The panel
52667          * @param {Object} e The cancel event object
52668          */
52669         "beforeremove" : true,
52670         /**
52671          * @event invalidated
52672          * Fires when the layout for this region is changed.
52673          * @param {Roo.LayoutRegion} this
52674          */
52675         "invalidated" : true,
52676         /**
52677          * @event visibilitychange
52678          * Fires when this region is shown or hidden 
52679          * @param {Roo.LayoutRegion} this
52680          * @param {Boolean} visibility true or false
52681          */
52682         "visibilitychange" : true,
52683         /**
52684          * @event paneladded
52685          * Fires when a panel is added. 
52686          * @param {Roo.LayoutRegion} this
52687          * @param {Roo.ContentPanel} panel The panel
52688          */
52689         "paneladded" : true,
52690         /**
52691          * @event panelremoved
52692          * Fires when a panel is removed. 
52693          * @param {Roo.LayoutRegion} this
52694          * @param {Roo.ContentPanel} panel The panel
52695          */
52696         "panelremoved" : true,
52697         /**
52698          * @event beforecollapse
52699          * Fires when this region before collapse.
52700          * @param {Roo.LayoutRegion} this
52701          */
52702         "beforecollapse" : true,
52703         /**
52704          * @event collapsed
52705          * Fires when this region is collapsed.
52706          * @param {Roo.LayoutRegion} this
52707          */
52708         "collapsed" : true,
52709         /**
52710          * @event expanded
52711          * Fires when this region is expanded.
52712          * @param {Roo.LayoutRegion} this
52713          */
52714         "expanded" : true,
52715         /**
52716          * @event slideshow
52717          * Fires when this region is slid into view.
52718          * @param {Roo.LayoutRegion} this
52719          */
52720         "slideshow" : true,
52721         /**
52722          * @event slidehide
52723          * Fires when this region slides out of view. 
52724          * @param {Roo.LayoutRegion} this
52725          */
52726         "slidehide" : true,
52727         /**
52728          * @event panelactivated
52729          * Fires when a panel is activated. 
52730          * @param {Roo.LayoutRegion} this
52731          * @param {Roo.ContentPanel} panel The activated panel
52732          */
52733         "panelactivated" : true,
52734         /**
52735          * @event resized
52736          * Fires when the user resizes this region. 
52737          * @param {Roo.LayoutRegion} this
52738          * @param {Number} newSize The new size (width for east/west, height for north/south)
52739          */
52740         "resized" : true
52741     };
52742     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52743     this.panels = new Roo.util.MixedCollection();
52744     this.panels.getKey = this.getPanelId.createDelegate(this);
52745     this.box = null;
52746     this.activePanel = null;
52747     // ensure listeners are added...
52748     
52749     if (config.listeners || config.events) {
52750         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52751             listeners : config.listeners || {},
52752             events : config.events || {}
52753         });
52754     }
52755     
52756     if(skipConfig !== true){
52757         this.applyConfig(config);
52758     }
52759 };
52760
52761 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52762     getPanelId : function(p){
52763         return p.getId();
52764     },
52765     
52766     applyConfig : function(config){
52767         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52768         this.config = config;
52769         
52770     },
52771     
52772     /**
52773      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52774      * the width, for horizontal (north, south) the height.
52775      * @param {Number} newSize The new width or height
52776      */
52777     resizeTo : function(newSize){
52778         var el = this.el ? this.el :
52779                  (this.activePanel ? this.activePanel.getEl() : null);
52780         if(el){
52781             switch(this.position){
52782                 case "east":
52783                 case "west":
52784                     el.setWidth(newSize);
52785                     this.fireEvent("resized", this, newSize);
52786                 break;
52787                 case "north":
52788                 case "south":
52789                     el.setHeight(newSize);
52790                     this.fireEvent("resized", this, newSize);
52791                 break;                
52792             }
52793         }
52794     },
52795     
52796     getBox : function(){
52797         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52798     },
52799     
52800     getMargins : function(){
52801         return this.margins;
52802     },
52803     
52804     updateBox : function(box){
52805         this.box = box;
52806         var el = this.activePanel.getEl();
52807         el.dom.style.left = box.x + "px";
52808         el.dom.style.top = box.y + "px";
52809         this.activePanel.setSize(box.width, box.height);
52810     },
52811     
52812     /**
52813      * Returns the container element for this region.
52814      * @return {Roo.Element}
52815      */
52816     getEl : function(){
52817         return this.activePanel;
52818     },
52819     
52820     /**
52821      * Returns true if this region is currently visible.
52822      * @return {Boolean}
52823      */
52824     isVisible : function(){
52825         return this.activePanel ? true : false;
52826     },
52827     
52828     setActivePanel : function(panel){
52829         panel = this.getPanel(panel);
52830         if(this.activePanel && this.activePanel != panel){
52831             this.activePanel.setActiveState(false);
52832             this.activePanel.getEl().setLeftTop(-10000,-10000);
52833         }
52834         this.activePanel = panel;
52835         panel.setActiveState(true);
52836         if(this.box){
52837             panel.setSize(this.box.width, this.box.height);
52838         }
52839         this.fireEvent("panelactivated", this, panel);
52840         this.fireEvent("invalidated");
52841     },
52842     
52843     /**
52844      * Show the specified panel.
52845      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52846      * @return {Roo.ContentPanel} The shown panel or null
52847      */
52848     showPanel : function(panel){
52849         if(panel = this.getPanel(panel)){
52850             this.setActivePanel(panel);
52851         }
52852         return panel;
52853     },
52854     
52855     /**
52856      * Get the active panel for this region.
52857      * @return {Roo.ContentPanel} The active panel or null
52858      */
52859     getActivePanel : function(){
52860         return this.activePanel;
52861     },
52862     
52863     /**
52864      * Add the passed ContentPanel(s)
52865      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52866      * @return {Roo.ContentPanel} The panel added (if only one was added)
52867      */
52868     add : function(panel){
52869         if(arguments.length > 1){
52870             for(var i = 0, len = arguments.length; i < len; i++) {
52871                 this.add(arguments[i]);
52872             }
52873             return null;
52874         }
52875         if(this.hasPanel(panel)){
52876             this.showPanel(panel);
52877             return panel;
52878         }
52879         var el = panel.getEl();
52880         if(el.dom.parentNode != this.mgr.el.dom){
52881             this.mgr.el.dom.appendChild(el.dom);
52882         }
52883         if(panel.setRegion){
52884             panel.setRegion(this);
52885         }
52886         this.panels.add(panel);
52887         el.setStyle("position", "absolute");
52888         if(!panel.background){
52889             this.setActivePanel(panel);
52890             if(this.config.initialSize && this.panels.getCount()==1){
52891                 this.resizeTo(this.config.initialSize);
52892             }
52893         }
52894         this.fireEvent("paneladded", this, panel);
52895         return panel;
52896     },
52897     
52898     /**
52899      * Returns true if the panel is in this region.
52900      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52901      * @return {Boolean}
52902      */
52903     hasPanel : function(panel){
52904         if(typeof panel == "object"){ // must be panel obj
52905             panel = panel.getId();
52906         }
52907         return this.getPanel(panel) ? true : false;
52908     },
52909     
52910     /**
52911      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52912      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52913      * @param {Boolean} preservePanel Overrides the config preservePanel option
52914      * @return {Roo.ContentPanel} The panel that was removed
52915      */
52916     remove : function(panel, preservePanel){
52917         panel = this.getPanel(panel);
52918         if(!panel){
52919             return null;
52920         }
52921         var e = {};
52922         this.fireEvent("beforeremove", this, panel, e);
52923         if(e.cancel === true){
52924             return null;
52925         }
52926         var panelId = panel.getId();
52927         this.panels.removeKey(panelId);
52928         return panel;
52929     },
52930     
52931     /**
52932      * Returns the panel specified or null if it's not in this region.
52933      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52934      * @return {Roo.ContentPanel}
52935      */
52936     getPanel : function(id){
52937         if(typeof id == "object"){ // must be panel obj
52938             return id;
52939         }
52940         return this.panels.get(id);
52941     },
52942     
52943     /**
52944      * Returns this regions position (north/south/east/west/center).
52945      * @return {String} 
52946      */
52947     getPosition: function(){
52948         return this.position;    
52949     }
52950 });/*
52951  * Based on:
52952  * Ext JS Library 1.1.1
52953  * Copyright(c) 2006-2007, Ext JS, LLC.
52954  *
52955  * Originally Released Under LGPL - original licence link has changed is not relivant.
52956  *
52957  * Fork - LGPL
52958  * <script type="text/javascript">
52959  */
52960  
52961 /**
52962  * @class Roo.LayoutRegion
52963  * @extends Roo.BasicLayoutRegion
52964  * This class represents a region in a layout manager.
52965  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
52966  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
52967  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
52968  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
52969  * @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})
52970  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
52971  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
52972  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
52973  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
52974  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
52975  * @cfg {String}    title           The title for the region (overrides panel titles)
52976  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
52977  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
52978  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
52979  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
52980  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
52981  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
52982  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
52983  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
52984  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
52985  * @cfg {Boolean}   showPin         True to show a pin button
52986  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
52987  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
52988  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
52989  * @cfg {Number}    width           For East/West panels
52990  * @cfg {Number}    height          For North/South panels
52991  * @cfg {Boolean}   split           To show the splitter
52992  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
52993  */
52994 Roo.LayoutRegion = function(mgr, config, pos){
52995     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
52996     var dh = Roo.DomHelper;
52997     /** This region's container element 
52998     * @type Roo.Element */
52999     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53000     /** This region's title element 
53001     * @type Roo.Element */
53002
53003     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53004         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53005         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53006     ]}, true);
53007     this.titleEl.enableDisplayMode();
53008     /** This region's title text element 
53009     * @type HTMLElement */
53010     this.titleTextEl = this.titleEl.dom.firstChild;
53011     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53012     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53013     this.closeBtn.enableDisplayMode();
53014     this.closeBtn.on("click", this.closeClicked, this);
53015     this.closeBtn.hide();
53016
53017     this.createBody(config);
53018     this.visible = true;
53019     this.collapsed = false;
53020
53021     if(config.hideWhenEmpty){
53022         this.hide();
53023         this.on("paneladded", this.validateVisibility, this);
53024         this.on("panelremoved", this.validateVisibility, this);
53025     }
53026     this.applyConfig(config);
53027 };
53028
53029 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53030
53031     createBody : function(){
53032         /** This region's body element 
53033         * @type Roo.Element */
53034         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53035     },
53036
53037     applyConfig : function(c){
53038         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53039             var dh = Roo.DomHelper;
53040             if(c.titlebar !== false){
53041                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53042                 this.collapseBtn.on("click", this.collapse, this);
53043                 this.collapseBtn.enableDisplayMode();
53044
53045                 if(c.showPin === true || this.showPin){
53046                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53047                     this.stickBtn.enableDisplayMode();
53048                     this.stickBtn.on("click", this.expand, this);
53049                     this.stickBtn.hide();
53050                 }
53051             }
53052             /** This region's collapsed element
53053             * @type Roo.Element */
53054             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53055                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53056             ]}, true);
53057             if(c.floatable !== false){
53058                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53059                this.collapsedEl.on("click", this.collapseClick, this);
53060             }
53061
53062             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53063                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53064                    id: "message", unselectable: "on", style:{"float":"left"}});
53065                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53066              }
53067             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53068             this.expandBtn.on("click", this.expand, this);
53069         }
53070         if(this.collapseBtn){
53071             this.collapseBtn.setVisible(c.collapsible == true);
53072         }
53073         this.cmargins = c.cmargins || this.cmargins ||
53074                          (this.position == "west" || this.position == "east" ?
53075                              {top: 0, left: 2, right:2, bottom: 0} :
53076                              {top: 2, left: 0, right:0, bottom: 2});
53077         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53078         this.bottomTabs = c.tabPosition != "top";
53079         this.autoScroll = c.autoScroll || false;
53080         if(this.autoScroll){
53081             this.bodyEl.setStyle("overflow", "auto");
53082         }else{
53083             this.bodyEl.setStyle("overflow", "hidden");
53084         }
53085         //if(c.titlebar !== false){
53086             if((!c.titlebar && !c.title) || c.titlebar === false){
53087                 this.titleEl.hide();
53088             }else{
53089                 this.titleEl.show();
53090                 if(c.title){
53091                     this.titleTextEl.innerHTML = c.title;
53092                 }
53093             }
53094         //}
53095         this.duration = c.duration || .30;
53096         this.slideDuration = c.slideDuration || .45;
53097         this.config = c;
53098         if(c.collapsed){
53099             this.collapse(true);
53100         }
53101         if(c.hidden){
53102             this.hide();
53103         }
53104     },
53105     /**
53106      * Returns true if this region is currently visible.
53107      * @return {Boolean}
53108      */
53109     isVisible : function(){
53110         return this.visible;
53111     },
53112
53113     /**
53114      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53115      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53116      */
53117     setCollapsedTitle : function(title){
53118         title = title || "&#160;";
53119         if(this.collapsedTitleTextEl){
53120             this.collapsedTitleTextEl.innerHTML = title;
53121         }
53122     },
53123
53124     getBox : function(){
53125         var b;
53126         if(!this.collapsed){
53127             b = this.el.getBox(false, true);
53128         }else{
53129             b = this.collapsedEl.getBox(false, true);
53130         }
53131         return b;
53132     },
53133
53134     getMargins : function(){
53135         return this.collapsed ? this.cmargins : this.margins;
53136     },
53137
53138     highlight : function(){
53139         this.el.addClass("x-layout-panel-dragover");
53140     },
53141
53142     unhighlight : function(){
53143         this.el.removeClass("x-layout-panel-dragover");
53144     },
53145
53146     updateBox : function(box){
53147         this.box = box;
53148         if(!this.collapsed){
53149             this.el.dom.style.left = box.x + "px";
53150             this.el.dom.style.top = box.y + "px";
53151             this.updateBody(box.width, box.height);
53152         }else{
53153             this.collapsedEl.dom.style.left = box.x + "px";
53154             this.collapsedEl.dom.style.top = box.y + "px";
53155             this.collapsedEl.setSize(box.width, box.height);
53156         }
53157         if(this.tabs){
53158             this.tabs.autoSizeTabs();
53159         }
53160     },
53161
53162     updateBody : function(w, h){
53163         if(w !== null){
53164             this.el.setWidth(w);
53165             w -= this.el.getBorderWidth("rl");
53166             if(this.config.adjustments){
53167                 w += this.config.adjustments[0];
53168             }
53169         }
53170         if(h !== null){
53171             this.el.setHeight(h);
53172             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53173             h -= this.el.getBorderWidth("tb");
53174             if(this.config.adjustments){
53175                 h += this.config.adjustments[1];
53176             }
53177             this.bodyEl.setHeight(h);
53178             if(this.tabs){
53179                 h = this.tabs.syncHeight(h);
53180             }
53181         }
53182         if(this.panelSize){
53183             w = w !== null ? w : this.panelSize.width;
53184             h = h !== null ? h : this.panelSize.height;
53185         }
53186         if(this.activePanel){
53187             var el = this.activePanel.getEl();
53188             w = w !== null ? w : el.getWidth();
53189             h = h !== null ? h : el.getHeight();
53190             this.panelSize = {width: w, height: h};
53191             this.activePanel.setSize(w, h);
53192         }
53193         if(Roo.isIE && this.tabs){
53194             this.tabs.el.repaint();
53195         }
53196     },
53197
53198     /**
53199      * Returns the container element for this region.
53200      * @return {Roo.Element}
53201      */
53202     getEl : function(){
53203         return this.el;
53204     },
53205
53206     /**
53207      * Hides this region.
53208      */
53209     hide : function(){
53210         if(!this.collapsed){
53211             this.el.dom.style.left = "-2000px";
53212             this.el.hide();
53213         }else{
53214             this.collapsedEl.dom.style.left = "-2000px";
53215             this.collapsedEl.hide();
53216         }
53217         this.visible = false;
53218         this.fireEvent("visibilitychange", this, false);
53219     },
53220
53221     /**
53222      * Shows this region if it was previously hidden.
53223      */
53224     show : function(){
53225         if(!this.collapsed){
53226             this.el.show();
53227         }else{
53228             this.collapsedEl.show();
53229         }
53230         this.visible = true;
53231         this.fireEvent("visibilitychange", this, true);
53232     },
53233
53234     closeClicked : function(){
53235         if(this.activePanel){
53236             this.remove(this.activePanel);
53237         }
53238     },
53239
53240     collapseClick : function(e){
53241         if(this.isSlid){
53242            e.stopPropagation();
53243            this.slideIn();
53244         }else{
53245            e.stopPropagation();
53246            this.slideOut();
53247         }
53248     },
53249
53250     /**
53251      * Collapses this region.
53252      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53253      */
53254     collapse : function(skipAnim, skipCheck){
53255         if(this.collapsed) {
53256             return;
53257         }
53258         
53259         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53260             
53261             this.collapsed = true;
53262             if(this.split){
53263                 this.split.el.hide();
53264             }
53265             if(this.config.animate && skipAnim !== true){
53266                 this.fireEvent("invalidated", this);
53267                 this.animateCollapse();
53268             }else{
53269                 this.el.setLocation(-20000,-20000);
53270                 this.el.hide();
53271                 this.collapsedEl.show();
53272                 this.fireEvent("collapsed", this);
53273                 this.fireEvent("invalidated", this);
53274             }
53275         }
53276         
53277     },
53278
53279     animateCollapse : function(){
53280         // overridden
53281     },
53282
53283     /**
53284      * Expands this region if it was previously collapsed.
53285      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53286      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53287      */
53288     expand : function(e, skipAnim){
53289         if(e) {
53290             e.stopPropagation();
53291         }
53292         if(!this.collapsed || this.el.hasActiveFx()) {
53293             return;
53294         }
53295         if(this.isSlid){
53296             this.afterSlideIn();
53297             skipAnim = true;
53298         }
53299         this.collapsed = false;
53300         if(this.config.animate && skipAnim !== true){
53301             this.animateExpand();
53302         }else{
53303             this.el.show();
53304             if(this.split){
53305                 this.split.el.show();
53306             }
53307             this.collapsedEl.setLocation(-2000,-2000);
53308             this.collapsedEl.hide();
53309             this.fireEvent("invalidated", this);
53310             this.fireEvent("expanded", this);
53311         }
53312     },
53313
53314     animateExpand : function(){
53315         // overridden
53316     },
53317
53318     initTabs : function()
53319     {
53320         this.bodyEl.setStyle("overflow", "hidden");
53321         var ts = new Roo.TabPanel(
53322                 this.bodyEl.dom,
53323                 {
53324                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53325                     disableTooltips: this.config.disableTabTips,
53326                     toolbar : this.config.toolbar
53327                 }
53328         );
53329         if(this.config.hideTabs){
53330             ts.stripWrap.setDisplayed(false);
53331         }
53332         this.tabs = ts;
53333         ts.resizeTabs = this.config.resizeTabs === true;
53334         ts.minTabWidth = this.config.minTabWidth || 40;
53335         ts.maxTabWidth = this.config.maxTabWidth || 250;
53336         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53337         ts.monitorResize = false;
53338         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53339         ts.bodyEl.addClass('x-layout-tabs-body');
53340         this.panels.each(this.initPanelAsTab, this);
53341     },
53342
53343     initPanelAsTab : function(panel){
53344         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53345                     this.config.closeOnTab && panel.isClosable());
53346         if(panel.tabTip !== undefined){
53347             ti.setTooltip(panel.tabTip);
53348         }
53349         ti.on("activate", function(){
53350               this.setActivePanel(panel);
53351         }, this);
53352         if(this.config.closeOnTab){
53353             ti.on("beforeclose", function(t, e){
53354                 e.cancel = true;
53355                 this.remove(panel);
53356             }, this);
53357         }
53358         return ti;
53359     },
53360
53361     updatePanelTitle : function(panel, title){
53362         if(this.activePanel == panel){
53363             this.updateTitle(title);
53364         }
53365         if(this.tabs){
53366             var ti = this.tabs.getTab(panel.getEl().id);
53367             ti.setText(title);
53368             if(panel.tabTip !== undefined){
53369                 ti.setTooltip(panel.tabTip);
53370             }
53371         }
53372     },
53373
53374     updateTitle : function(title){
53375         if(this.titleTextEl && !this.config.title){
53376             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53377         }
53378     },
53379
53380     setActivePanel : function(panel){
53381         panel = this.getPanel(panel);
53382         if(this.activePanel && this.activePanel != panel){
53383             this.activePanel.setActiveState(false);
53384         }
53385         this.activePanel = panel;
53386         panel.setActiveState(true);
53387         if(this.panelSize){
53388             panel.setSize(this.panelSize.width, this.panelSize.height);
53389         }
53390         if(this.closeBtn){
53391             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53392         }
53393         this.updateTitle(panel.getTitle());
53394         if(this.tabs){
53395             this.fireEvent("invalidated", this);
53396         }
53397         this.fireEvent("panelactivated", this, panel);
53398     },
53399
53400     /**
53401      * Shows the specified panel.
53402      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53403      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53404      */
53405     showPanel : function(panel)
53406     {
53407         panel = this.getPanel(panel);
53408         if(panel){
53409             if(this.tabs){
53410                 var tab = this.tabs.getTab(panel.getEl().id);
53411                 if(tab.isHidden()){
53412                     this.tabs.unhideTab(tab.id);
53413                 }
53414                 tab.activate();
53415             }else{
53416                 this.setActivePanel(panel);
53417             }
53418         }
53419         return panel;
53420     },
53421
53422     /**
53423      * Get the active panel for this region.
53424      * @return {Roo.ContentPanel} The active panel or null
53425      */
53426     getActivePanel : function(){
53427         return this.activePanel;
53428     },
53429
53430     validateVisibility : function(){
53431         if(this.panels.getCount() < 1){
53432             this.updateTitle("&#160;");
53433             this.closeBtn.hide();
53434             this.hide();
53435         }else{
53436             if(!this.isVisible()){
53437                 this.show();
53438             }
53439         }
53440     },
53441
53442     /**
53443      * Adds the passed ContentPanel(s) to this region.
53444      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53445      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53446      */
53447     add : function(panel){
53448         if(arguments.length > 1){
53449             for(var i = 0, len = arguments.length; i < len; i++) {
53450                 this.add(arguments[i]);
53451             }
53452             return null;
53453         }
53454         if(this.hasPanel(panel)){
53455             this.showPanel(panel);
53456             return panel;
53457         }
53458         panel.setRegion(this);
53459         this.panels.add(panel);
53460         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53461             this.bodyEl.dom.appendChild(panel.getEl().dom);
53462             if(panel.background !== true){
53463                 this.setActivePanel(panel);
53464             }
53465             this.fireEvent("paneladded", this, panel);
53466             return panel;
53467         }
53468         if(!this.tabs){
53469             this.initTabs();
53470         }else{
53471             this.initPanelAsTab(panel);
53472         }
53473         if(panel.background !== true){
53474             this.tabs.activate(panel.getEl().id);
53475         }
53476         this.fireEvent("paneladded", this, panel);
53477         return panel;
53478     },
53479
53480     /**
53481      * Hides the tab for the specified panel.
53482      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53483      */
53484     hidePanel : function(panel){
53485         if(this.tabs && (panel = this.getPanel(panel))){
53486             this.tabs.hideTab(panel.getEl().id);
53487         }
53488     },
53489
53490     /**
53491      * Unhides the tab for a previously hidden panel.
53492      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53493      */
53494     unhidePanel : function(panel){
53495         if(this.tabs && (panel = this.getPanel(panel))){
53496             this.tabs.unhideTab(panel.getEl().id);
53497         }
53498     },
53499
53500     clearPanels : function(){
53501         while(this.panels.getCount() > 0){
53502              this.remove(this.panels.first());
53503         }
53504     },
53505
53506     /**
53507      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53508      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53509      * @param {Boolean} preservePanel Overrides the config preservePanel option
53510      * @return {Roo.ContentPanel} The panel that was removed
53511      */
53512     remove : function(panel, preservePanel){
53513         panel = this.getPanel(panel);
53514         if(!panel){
53515             return null;
53516         }
53517         var e = {};
53518         this.fireEvent("beforeremove", this, panel, e);
53519         if(e.cancel === true){
53520             return null;
53521         }
53522         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53523         var panelId = panel.getId();
53524         this.panels.removeKey(panelId);
53525         if(preservePanel){
53526             document.body.appendChild(panel.getEl().dom);
53527         }
53528         if(this.tabs){
53529             this.tabs.removeTab(panel.getEl().id);
53530         }else if (!preservePanel){
53531             this.bodyEl.dom.removeChild(panel.getEl().dom);
53532         }
53533         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53534             var p = this.panels.first();
53535             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53536             tempEl.appendChild(p.getEl().dom);
53537             this.bodyEl.update("");
53538             this.bodyEl.dom.appendChild(p.getEl().dom);
53539             tempEl = null;
53540             this.updateTitle(p.getTitle());
53541             this.tabs = null;
53542             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53543             this.setActivePanel(p);
53544         }
53545         panel.setRegion(null);
53546         if(this.activePanel == panel){
53547             this.activePanel = null;
53548         }
53549         if(this.config.autoDestroy !== false && preservePanel !== true){
53550             try{panel.destroy();}catch(e){}
53551         }
53552         this.fireEvent("panelremoved", this, panel);
53553         return panel;
53554     },
53555
53556     /**
53557      * Returns the TabPanel component used by this region
53558      * @return {Roo.TabPanel}
53559      */
53560     getTabs : function(){
53561         return this.tabs;
53562     },
53563
53564     createTool : function(parentEl, className){
53565         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53566             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53567         btn.addClassOnOver("x-layout-tools-button-over");
53568         return btn;
53569     }
53570 });/*
53571  * Based on:
53572  * Ext JS Library 1.1.1
53573  * Copyright(c) 2006-2007, Ext JS, LLC.
53574  *
53575  * Originally Released Under LGPL - original licence link has changed is not relivant.
53576  *
53577  * Fork - LGPL
53578  * <script type="text/javascript">
53579  */
53580  
53581
53582
53583 /**
53584  * @class Roo.SplitLayoutRegion
53585  * @extends Roo.LayoutRegion
53586  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53587  */
53588 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53589     this.cursor = cursor;
53590     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53591 };
53592
53593 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53594     splitTip : "Drag to resize.",
53595     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53596     useSplitTips : false,
53597
53598     applyConfig : function(config){
53599         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53600         if(config.split){
53601             if(!this.split){
53602                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53603                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53604                 /** The SplitBar for this region 
53605                 * @type Roo.SplitBar */
53606                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53607                 this.split.on("moved", this.onSplitMove, this);
53608                 this.split.useShim = config.useShim === true;
53609                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53610                 if(this.useSplitTips){
53611                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53612                 }
53613                 if(config.collapsible){
53614                     this.split.el.on("dblclick", this.collapse,  this);
53615                 }
53616             }
53617             if(typeof config.minSize != "undefined"){
53618                 this.split.minSize = config.minSize;
53619             }
53620             if(typeof config.maxSize != "undefined"){
53621                 this.split.maxSize = config.maxSize;
53622             }
53623             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53624                 this.hideSplitter();
53625             }
53626         }
53627     },
53628
53629     getHMaxSize : function(){
53630          var cmax = this.config.maxSize || 10000;
53631          var center = this.mgr.getRegion("center");
53632          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53633     },
53634
53635     getVMaxSize : function(){
53636          var cmax = this.config.maxSize || 10000;
53637          var center = this.mgr.getRegion("center");
53638          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53639     },
53640
53641     onSplitMove : function(split, newSize){
53642         this.fireEvent("resized", this, newSize);
53643     },
53644     
53645     /** 
53646      * Returns the {@link Roo.SplitBar} for this region.
53647      * @return {Roo.SplitBar}
53648      */
53649     getSplitBar : function(){
53650         return this.split;
53651     },
53652     
53653     hide : function(){
53654         this.hideSplitter();
53655         Roo.SplitLayoutRegion.superclass.hide.call(this);
53656     },
53657
53658     hideSplitter : function(){
53659         if(this.split){
53660             this.split.el.setLocation(-2000,-2000);
53661             this.split.el.hide();
53662         }
53663     },
53664
53665     show : function(){
53666         if(this.split){
53667             this.split.el.show();
53668         }
53669         Roo.SplitLayoutRegion.superclass.show.call(this);
53670     },
53671     
53672     beforeSlide: function(){
53673         if(Roo.isGecko){// firefox overflow auto bug workaround
53674             this.bodyEl.clip();
53675             if(this.tabs) {
53676                 this.tabs.bodyEl.clip();
53677             }
53678             if(this.activePanel){
53679                 this.activePanel.getEl().clip();
53680                 
53681                 if(this.activePanel.beforeSlide){
53682                     this.activePanel.beforeSlide();
53683                 }
53684             }
53685         }
53686     },
53687     
53688     afterSlide : function(){
53689         if(Roo.isGecko){// firefox overflow auto bug workaround
53690             this.bodyEl.unclip();
53691             if(this.tabs) {
53692                 this.tabs.bodyEl.unclip();
53693             }
53694             if(this.activePanel){
53695                 this.activePanel.getEl().unclip();
53696                 if(this.activePanel.afterSlide){
53697                     this.activePanel.afterSlide();
53698                 }
53699             }
53700         }
53701     },
53702
53703     initAutoHide : function(){
53704         if(this.autoHide !== false){
53705             if(!this.autoHideHd){
53706                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53707                 this.autoHideHd = {
53708                     "mouseout": function(e){
53709                         if(!e.within(this.el, true)){
53710                             st.delay(500);
53711                         }
53712                     },
53713                     "mouseover" : function(e){
53714                         st.cancel();
53715                     },
53716                     scope : this
53717                 };
53718             }
53719             this.el.on(this.autoHideHd);
53720         }
53721     },
53722
53723     clearAutoHide : function(){
53724         if(this.autoHide !== false){
53725             this.el.un("mouseout", this.autoHideHd.mouseout);
53726             this.el.un("mouseover", this.autoHideHd.mouseover);
53727         }
53728     },
53729
53730     clearMonitor : function(){
53731         Roo.get(document).un("click", this.slideInIf, this);
53732     },
53733
53734     // these names are backwards but not changed for compat
53735     slideOut : function(){
53736         if(this.isSlid || this.el.hasActiveFx()){
53737             return;
53738         }
53739         this.isSlid = true;
53740         if(this.collapseBtn){
53741             this.collapseBtn.hide();
53742         }
53743         this.closeBtnState = this.closeBtn.getStyle('display');
53744         this.closeBtn.hide();
53745         if(this.stickBtn){
53746             this.stickBtn.show();
53747         }
53748         this.el.show();
53749         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53750         this.beforeSlide();
53751         this.el.setStyle("z-index", 10001);
53752         this.el.slideIn(this.getSlideAnchor(), {
53753             callback: function(){
53754                 this.afterSlide();
53755                 this.initAutoHide();
53756                 Roo.get(document).on("click", this.slideInIf, this);
53757                 this.fireEvent("slideshow", this);
53758             },
53759             scope: this,
53760             block: true
53761         });
53762     },
53763
53764     afterSlideIn : function(){
53765         this.clearAutoHide();
53766         this.isSlid = false;
53767         this.clearMonitor();
53768         this.el.setStyle("z-index", "");
53769         if(this.collapseBtn){
53770             this.collapseBtn.show();
53771         }
53772         this.closeBtn.setStyle('display', this.closeBtnState);
53773         if(this.stickBtn){
53774             this.stickBtn.hide();
53775         }
53776         this.fireEvent("slidehide", this);
53777     },
53778
53779     slideIn : function(cb){
53780         if(!this.isSlid || this.el.hasActiveFx()){
53781             Roo.callback(cb);
53782             return;
53783         }
53784         this.isSlid = false;
53785         this.beforeSlide();
53786         this.el.slideOut(this.getSlideAnchor(), {
53787             callback: function(){
53788                 this.el.setLeftTop(-10000, -10000);
53789                 this.afterSlide();
53790                 this.afterSlideIn();
53791                 Roo.callback(cb);
53792             },
53793             scope: this,
53794             block: true
53795         });
53796     },
53797     
53798     slideInIf : function(e){
53799         if(!e.within(this.el)){
53800             this.slideIn();
53801         }
53802     },
53803
53804     animateCollapse : function(){
53805         this.beforeSlide();
53806         this.el.setStyle("z-index", 20000);
53807         var anchor = this.getSlideAnchor();
53808         this.el.slideOut(anchor, {
53809             callback : function(){
53810                 this.el.setStyle("z-index", "");
53811                 this.collapsedEl.slideIn(anchor, {duration:.3});
53812                 this.afterSlide();
53813                 this.el.setLocation(-10000,-10000);
53814                 this.el.hide();
53815                 this.fireEvent("collapsed", this);
53816             },
53817             scope: this,
53818             block: true
53819         });
53820     },
53821
53822     animateExpand : function(){
53823         this.beforeSlide();
53824         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53825         this.el.setStyle("z-index", 20000);
53826         this.collapsedEl.hide({
53827             duration:.1
53828         });
53829         this.el.slideIn(this.getSlideAnchor(), {
53830             callback : function(){
53831                 this.el.setStyle("z-index", "");
53832                 this.afterSlide();
53833                 if(this.split){
53834                     this.split.el.show();
53835                 }
53836                 this.fireEvent("invalidated", this);
53837                 this.fireEvent("expanded", this);
53838             },
53839             scope: this,
53840             block: true
53841         });
53842     },
53843
53844     anchors : {
53845         "west" : "left",
53846         "east" : "right",
53847         "north" : "top",
53848         "south" : "bottom"
53849     },
53850
53851     sanchors : {
53852         "west" : "l",
53853         "east" : "r",
53854         "north" : "t",
53855         "south" : "b"
53856     },
53857
53858     canchors : {
53859         "west" : "tl-tr",
53860         "east" : "tr-tl",
53861         "north" : "tl-bl",
53862         "south" : "bl-tl"
53863     },
53864
53865     getAnchor : function(){
53866         return this.anchors[this.position];
53867     },
53868
53869     getCollapseAnchor : function(){
53870         return this.canchors[this.position];
53871     },
53872
53873     getSlideAnchor : function(){
53874         return this.sanchors[this.position];
53875     },
53876
53877     getAlignAdj : function(){
53878         var cm = this.cmargins;
53879         switch(this.position){
53880             case "west":
53881                 return [0, 0];
53882             break;
53883             case "east":
53884                 return [0, 0];
53885             break;
53886             case "north":
53887                 return [0, 0];
53888             break;
53889             case "south":
53890                 return [0, 0];
53891             break;
53892         }
53893     },
53894
53895     getExpandAdj : function(){
53896         var c = this.collapsedEl, cm = this.cmargins;
53897         switch(this.position){
53898             case "west":
53899                 return [-(cm.right+c.getWidth()+cm.left), 0];
53900             break;
53901             case "east":
53902                 return [cm.right+c.getWidth()+cm.left, 0];
53903             break;
53904             case "north":
53905                 return [0, -(cm.top+cm.bottom+c.getHeight())];
53906             break;
53907             case "south":
53908                 return [0, cm.top+cm.bottom+c.getHeight()];
53909             break;
53910         }
53911     }
53912 });/*
53913  * Based on:
53914  * Ext JS Library 1.1.1
53915  * Copyright(c) 2006-2007, Ext JS, LLC.
53916  *
53917  * Originally Released Under LGPL - original licence link has changed is not relivant.
53918  *
53919  * Fork - LGPL
53920  * <script type="text/javascript">
53921  */
53922 /*
53923  * These classes are private internal classes
53924  */
53925 Roo.CenterLayoutRegion = function(mgr, config){
53926     Roo.LayoutRegion.call(this, mgr, config, "center");
53927     this.visible = true;
53928     this.minWidth = config.minWidth || 20;
53929     this.minHeight = config.minHeight || 20;
53930 };
53931
53932 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
53933     hide : function(){
53934         // center panel can't be hidden
53935     },
53936     
53937     show : function(){
53938         // center panel can't be hidden
53939     },
53940     
53941     getMinWidth: function(){
53942         return this.minWidth;
53943     },
53944     
53945     getMinHeight: function(){
53946         return this.minHeight;
53947     }
53948 });
53949
53950
53951 Roo.NorthLayoutRegion = function(mgr, config){
53952     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
53953     if(this.split){
53954         this.split.placement = Roo.SplitBar.TOP;
53955         this.split.orientation = Roo.SplitBar.VERTICAL;
53956         this.split.el.addClass("x-layout-split-v");
53957     }
53958     var size = config.initialSize || config.height;
53959     if(typeof size != "undefined"){
53960         this.el.setHeight(size);
53961     }
53962 };
53963 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
53964     orientation: Roo.SplitBar.VERTICAL,
53965     getBox : function(){
53966         if(this.collapsed){
53967             return this.collapsedEl.getBox();
53968         }
53969         var box = this.el.getBox();
53970         if(this.split){
53971             box.height += this.split.el.getHeight();
53972         }
53973         return box;
53974     },
53975     
53976     updateBox : function(box){
53977         if(this.split && !this.collapsed){
53978             box.height -= this.split.el.getHeight();
53979             this.split.el.setLeft(box.x);
53980             this.split.el.setTop(box.y+box.height);
53981             this.split.el.setWidth(box.width);
53982         }
53983         if(this.collapsed){
53984             this.updateBody(box.width, null);
53985         }
53986         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53987     }
53988 });
53989
53990 Roo.SouthLayoutRegion = function(mgr, config){
53991     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
53992     if(this.split){
53993         this.split.placement = Roo.SplitBar.BOTTOM;
53994         this.split.orientation = Roo.SplitBar.VERTICAL;
53995         this.split.el.addClass("x-layout-split-v");
53996     }
53997     var size = config.initialSize || config.height;
53998     if(typeof size != "undefined"){
53999         this.el.setHeight(size);
54000     }
54001 };
54002 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54003     orientation: Roo.SplitBar.VERTICAL,
54004     getBox : function(){
54005         if(this.collapsed){
54006             return this.collapsedEl.getBox();
54007         }
54008         var box = this.el.getBox();
54009         if(this.split){
54010             var sh = this.split.el.getHeight();
54011             box.height += sh;
54012             box.y -= sh;
54013         }
54014         return box;
54015     },
54016     
54017     updateBox : function(box){
54018         if(this.split && !this.collapsed){
54019             var sh = this.split.el.getHeight();
54020             box.height -= sh;
54021             box.y += sh;
54022             this.split.el.setLeft(box.x);
54023             this.split.el.setTop(box.y-sh);
54024             this.split.el.setWidth(box.width);
54025         }
54026         if(this.collapsed){
54027             this.updateBody(box.width, null);
54028         }
54029         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54030     }
54031 });
54032
54033 Roo.EastLayoutRegion = function(mgr, config){
54034     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54035     if(this.split){
54036         this.split.placement = Roo.SplitBar.RIGHT;
54037         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54038         this.split.el.addClass("x-layout-split-h");
54039     }
54040     var size = config.initialSize || config.width;
54041     if(typeof size != "undefined"){
54042         this.el.setWidth(size);
54043     }
54044 };
54045 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54046     orientation: Roo.SplitBar.HORIZONTAL,
54047     getBox : function(){
54048         if(this.collapsed){
54049             return this.collapsedEl.getBox();
54050         }
54051         var box = this.el.getBox();
54052         if(this.split){
54053             var sw = this.split.el.getWidth();
54054             box.width += sw;
54055             box.x -= sw;
54056         }
54057         return box;
54058     },
54059
54060     updateBox : function(box){
54061         if(this.split && !this.collapsed){
54062             var sw = this.split.el.getWidth();
54063             box.width -= sw;
54064             this.split.el.setLeft(box.x);
54065             this.split.el.setTop(box.y);
54066             this.split.el.setHeight(box.height);
54067             box.x += sw;
54068         }
54069         if(this.collapsed){
54070             this.updateBody(null, box.height);
54071         }
54072         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54073     }
54074 });
54075
54076 Roo.WestLayoutRegion = function(mgr, config){
54077     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54078     if(this.split){
54079         this.split.placement = Roo.SplitBar.LEFT;
54080         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54081         this.split.el.addClass("x-layout-split-h");
54082     }
54083     var size = config.initialSize || config.width;
54084     if(typeof size != "undefined"){
54085         this.el.setWidth(size);
54086     }
54087 };
54088 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54089     orientation: Roo.SplitBar.HORIZONTAL,
54090     getBox : function(){
54091         if(this.collapsed){
54092             return this.collapsedEl.getBox();
54093         }
54094         var box = this.el.getBox();
54095         if(this.split){
54096             box.width += this.split.el.getWidth();
54097         }
54098         return box;
54099     },
54100     
54101     updateBox : function(box){
54102         if(this.split && !this.collapsed){
54103             var sw = this.split.el.getWidth();
54104             box.width -= sw;
54105             this.split.el.setLeft(box.x+box.width);
54106             this.split.el.setTop(box.y);
54107             this.split.el.setHeight(box.height);
54108         }
54109         if(this.collapsed){
54110             this.updateBody(null, box.height);
54111         }
54112         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54113     }
54114 });
54115 /*
54116  * Based on:
54117  * Ext JS Library 1.1.1
54118  * Copyright(c) 2006-2007, Ext JS, LLC.
54119  *
54120  * Originally Released Under LGPL - original licence link has changed is not relivant.
54121  *
54122  * Fork - LGPL
54123  * <script type="text/javascript">
54124  */
54125  
54126  
54127 /*
54128  * Private internal class for reading and applying state
54129  */
54130 Roo.LayoutStateManager = function(layout){
54131      // default empty state
54132      this.state = {
54133         north: {},
54134         south: {},
54135         east: {},
54136         west: {}       
54137     };
54138 };
54139
54140 Roo.LayoutStateManager.prototype = {
54141     init : function(layout, provider){
54142         this.provider = provider;
54143         var state = provider.get(layout.id+"-layout-state");
54144         if(state){
54145             var wasUpdating = layout.isUpdating();
54146             if(!wasUpdating){
54147                 layout.beginUpdate();
54148             }
54149             for(var key in state){
54150                 if(typeof state[key] != "function"){
54151                     var rstate = state[key];
54152                     var r = layout.getRegion(key);
54153                     if(r && rstate){
54154                         if(rstate.size){
54155                             r.resizeTo(rstate.size);
54156                         }
54157                         if(rstate.collapsed == true){
54158                             r.collapse(true);
54159                         }else{
54160                             r.expand(null, true);
54161                         }
54162                     }
54163                 }
54164             }
54165             if(!wasUpdating){
54166                 layout.endUpdate();
54167             }
54168             this.state = state; 
54169         }
54170         this.layout = layout;
54171         layout.on("regionresized", this.onRegionResized, this);
54172         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54173         layout.on("regionexpanded", this.onRegionExpanded, this);
54174     },
54175     
54176     storeState : function(){
54177         this.provider.set(this.layout.id+"-layout-state", this.state);
54178     },
54179     
54180     onRegionResized : function(region, newSize){
54181         this.state[region.getPosition()].size = newSize;
54182         this.storeState();
54183     },
54184     
54185     onRegionCollapsed : function(region){
54186         this.state[region.getPosition()].collapsed = true;
54187         this.storeState();
54188     },
54189     
54190     onRegionExpanded : function(region){
54191         this.state[region.getPosition()].collapsed = false;
54192         this.storeState();
54193     }
54194 };/*
54195  * Based on:
54196  * Ext JS Library 1.1.1
54197  * Copyright(c) 2006-2007, Ext JS, LLC.
54198  *
54199  * Originally Released Under LGPL - original licence link has changed is not relivant.
54200  *
54201  * Fork - LGPL
54202  * <script type="text/javascript">
54203  */
54204 /**
54205  * @class Roo.ContentPanel
54206  * @extends Roo.util.Observable
54207  * A basic ContentPanel element.
54208  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54209  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54210  * @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
54211  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54212  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54213  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54214  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54215  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54216  * @cfg {String} title          The title for this panel
54217  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54218  * @cfg {String} url            Calls {@link #setUrl} with this value
54219  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54220  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54221  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54222  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54223  * @cfg {String}    style  Extra style to add to the content panel 
54224
54225  * @constructor
54226  * Create a new ContentPanel.
54227  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54228  * @param {String/Object} config A string to set only the title or a config object
54229  * @param {String} content (optional) Set the HTML content for this panel
54230  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54231  */
54232 Roo.ContentPanel = function(el, config, content){
54233     
54234      
54235     /*
54236     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54237         config = el;
54238         el = Roo.id();
54239     }
54240     if (config && config.parentLayout) { 
54241         el = config.parentLayout.el.createChild(); 
54242     }
54243     */
54244     if(el.autoCreate){ // xtype is available if this is called from factory
54245         config = el;
54246         el = Roo.id();
54247     }
54248     this.el = Roo.get(el);
54249     if(!this.el && config && config.autoCreate){
54250         if(typeof config.autoCreate == "object"){
54251             if(!config.autoCreate.id){
54252                 config.autoCreate.id = config.id||el;
54253             }
54254             this.el = Roo.DomHelper.append(document.body,
54255                         config.autoCreate, true);
54256         }else{
54257             this.el = Roo.DomHelper.append(document.body,
54258                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54259         }
54260     }
54261     
54262     
54263     this.closable = false;
54264     this.loaded = false;
54265     this.active = false;
54266     if(typeof config == "string"){
54267         this.title = config;
54268     }else{
54269         Roo.apply(this, config);
54270     }
54271     
54272     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54273         this.wrapEl = this.el.wrap();
54274         this.toolbar.container = this.el.insertSibling(false, 'before');
54275         this.toolbar = new Roo.Toolbar(this.toolbar);
54276     }
54277     
54278     // xtype created footer. - not sure if will work as we normally have to render first..
54279     if (this.footer && !this.footer.el && this.footer.xtype) {
54280         if (!this.wrapEl) {
54281             this.wrapEl = this.el.wrap();
54282         }
54283     
54284         this.footer.container = this.wrapEl.createChild();
54285          
54286         this.footer = Roo.factory(this.footer, Roo);
54287         
54288     }
54289     
54290     if(this.resizeEl){
54291         this.resizeEl = Roo.get(this.resizeEl, true);
54292     }else{
54293         this.resizeEl = this.el;
54294     }
54295     // handle view.xtype
54296     
54297  
54298     
54299     
54300     this.addEvents({
54301         /**
54302          * @event activate
54303          * Fires when this panel is activated. 
54304          * @param {Roo.ContentPanel} this
54305          */
54306         "activate" : true,
54307         /**
54308          * @event deactivate
54309          * Fires when this panel is activated. 
54310          * @param {Roo.ContentPanel} this
54311          */
54312         "deactivate" : true,
54313
54314         /**
54315          * @event resize
54316          * Fires when this panel is resized if fitToFrame is true.
54317          * @param {Roo.ContentPanel} this
54318          * @param {Number} width The width after any component adjustments
54319          * @param {Number} height The height after any component adjustments
54320          */
54321         "resize" : true,
54322         
54323          /**
54324          * @event render
54325          * Fires when this tab is created
54326          * @param {Roo.ContentPanel} this
54327          */
54328         "render" : true
54329          
54330         
54331     });
54332     
54333
54334     
54335     
54336     if(this.autoScroll){
54337         this.resizeEl.setStyle("overflow", "auto");
54338     } else {
54339         // fix randome scrolling
54340         this.el.on('scroll', function() {
54341             Roo.log('fix random scolling');
54342             this.scrollTo('top',0); 
54343         });
54344     }
54345     content = content || this.content;
54346     if(content){
54347         this.setContent(content);
54348     }
54349     if(config && config.url){
54350         this.setUrl(this.url, this.params, this.loadOnce);
54351     }
54352     
54353     
54354     
54355     Roo.ContentPanel.superclass.constructor.call(this);
54356     
54357     if (this.view && typeof(this.view.xtype) != 'undefined') {
54358         this.view.el = this.el.appendChild(document.createElement("div"));
54359         this.view = Roo.factory(this.view); 
54360         this.view.render  &&  this.view.render(false, '');  
54361     }
54362     
54363     
54364     this.fireEvent('render', this);
54365 };
54366
54367 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54368     tabTip:'',
54369     setRegion : function(region){
54370         this.region = region;
54371         if(region){
54372            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54373         }else{
54374            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54375         } 
54376     },
54377     
54378     /**
54379      * Returns the toolbar for this Panel if one was configured. 
54380      * @return {Roo.Toolbar} 
54381      */
54382     getToolbar : function(){
54383         return this.toolbar;
54384     },
54385     
54386     setActiveState : function(active){
54387         this.active = active;
54388         if(!active){
54389             this.fireEvent("deactivate", this);
54390         }else{
54391             this.fireEvent("activate", this);
54392         }
54393     },
54394     /**
54395      * Updates this panel's element
54396      * @param {String} content The new content
54397      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54398     */
54399     setContent : function(content, loadScripts){
54400         this.el.update(content, loadScripts);
54401     },
54402
54403     ignoreResize : function(w, h){
54404         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54405             return true;
54406         }else{
54407             this.lastSize = {width: w, height: h};
54408             return false;
54409         }
54410     },
54411     /**
54412      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54413      * @return {Roo.UpdateManager} The UpdateManager
54414      */
54415     getUpdateManager : function(){
54416         return this.el.getUpdateManager();
54417     },
54418      /**
54419      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54420      * @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:
54421 <pre><code>
54422 panel.load({
54423     url: "your-url.php",
54424     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54425     callback: yourFunction,
54426     scope: yourObject, //(optional scope)
54427     discardUrl: false,
54428     nocache: false,
54429     text: "Loading...",
54430     timeout: 30,
54431     scripts: false
54432 });
54433 </code></pre>
54434      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54435      * 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.
54436      * @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}
54437      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54438      * @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.
54439      * @return {Roo.ContentPanel} this
54440      */
54441     load : function(){
54442         var um = this.el.getUpdateManager();
54443         um.update.apply(um, arguments);
54444         return this;
54445     },
54446
54447
54448     /**
54449      * 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.
54450      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54451      * @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)
54452      * @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)
54453      * @return {Roo.UpdateManager} The UpdateManager
54454      */
54455     setUrl : function(url, params, loadOnce){
54456         if(this.refreshDelegate){
54457             this.removeListener("activate", this.refreshDelegate);
54458         }
54459         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54460         this.on("activate", this.refreshDelegate);
54461         return this.el.getUpdateManager();
54462     },
54463     
54464     _handleRefresh : function(url, params, loadOnce){
54465         if(!loadOnce || !this.loaded){
54466             var updater = this.el.getUpdateManager();
54467             updater.update(url, params, this._setLoaded.createDelegate(this));
54468         }
54469     },
54470     
54471     _setLoaded : function(){
54472         this.loaded = true;
54473     }, 
54474     
54475     /**
54476      * Returns this panel's id
54477      * @return {String} 
54478      */
54479     getId : function(){
54480         return this.el.id;
54481     },
54482     
54483     /** 
54484      * Returns this panel's element - used by regiosn to add.
54485      * @return {Roo.Element} 
54486      */
54487     getEl : function(){
54488         return this.wrapEl || this.el;
54489     },
54490     
54491     adjustForComponents : function(width, height)
54492     {
54493         //Roo.log('adjustForComponents ');
54494         if(this.resizeEl != this.el){
54495             width -= this.el.getFrameWidth('lr');
54496             height -= this.el.getFrameWidth('tb');
54497         }
54498         if(this.toolbar){
54499             var te = this.toolbar.getEl();
54500             height -= te.getHeight();
54501             te.setWidth(width);
54502         }
54503         if(this.footer){
54504             var te = this.footer.getEl();
54505             //Roo.log("footer:" + te.getHeight());
54506             
54507             height -= te.getHeight();
54508             te.setWidth(width);
54509         }
54510         
54511         
54512         if(this.adjustments){
54513             width += this.adjustments[0];
54514             height += this.adjustments[1];
54515         }
54516         return {"width": width, "height": height};
54517     },
54518     
54519     setSize : function(width, height){
54520         if(this.fitToFrame && !this.ignoreResize(width, height)){
54521             if(this.fitContainer && this.resizeEl != this.el){
54522                 this.el.setSize(width, height);
54523             }
54524             var size = this.adjustForComponents(width, height);
54525             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54526             this.fireEvent('resize', this, size.width, size.height);
54527         }
54528     },
54529     
54530     /**
54531      * Returns this panel's title
54532      * @return {String} 
54533      */
54534     getTitle : function(){
54535         return this.title;
54536     },
54537     
54538     /**
54539      * Set this panel's title
54540      * @param {String} title
54541      */
54542     setTitle : function(title){
54543         this.title = title;
54544         if(this.region){
54545             this.region.updatePanelTitle(this, title);
54546         }
54547     },
54548     
54549     /**
54550      * Returns true is this panel was configured to be closable
54551      * @return {Boolean} 
54552      */
54553     isClosable : function(){
54554         return this.closable;
54555     },
54556     
54557     beforeSlide : function(){
54558         this.el.clip();
54559         this.resizeEl.clip();
54560     },
54561     
54562     afterSlide : function(){
54563         this.el.unclip();
54564         this.resizeEl.unclip();
54565     },
54566     
54567     /**
54568      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54569      *   Will fail silently if the {@link #setUrl} method has not been called.
54570      *   This does not activate the panel, just updates its content.
54571      */
54572     refresh : function(){
54573         if(this.refreshDelegate){
54574            this.loaded = false;
54575            this.refreshDelegate();
54576         }
54577     },
54578     
54579     /**
54580      * Destroys this panel
54581      */
54582     destroy : function(){
54583         this.el.removeAllListeners();
54584         var tempEl = document.createElement("span");
54585         tempEl.appendChild(this.el.dom);
54586         tempEl.innerHTML = "";
54587         this.el.remove();
54588         this.el = null;
54589     },
54590     
54591     /**
54592      * form - if the content panel contains a form - this is a reference to it.
54593      * @type {Roo.form.Form}
54594      */
54595     form : false,
54596     /**
54597      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54598      *    This contains a reference to it.
54599      * @type {Roo.View}
54600      */
54601     view : false,
54602     
54603       /**
54604      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54605      * <pre><code>
54606
54607 layout.addxtype({
54608        xtype : 'Form',
54609        items: [ .... ]
54610    }
54611 );
54612
54613 </code></pre>
54614      * @param {Object} cfg Xtype definition of item to add.
54615      */
54616     
54617     addxtype : function(cfg) {
54618         // add form..
54619         if (cfg.xtype.match(/^Form$/)) {
54620             
54621             var el;
54622             //if (this.footer) {
54623             //    el = this.footer.container.insertSibling(false, 'before');
54624             //} else {
54625                 el = this.el.createChild();
54626             //}
54627
54628             this.form = new  Roo.form.Form(cfg);
54629             
54630             
54631             if ( this.form.allItems.length) {
54632                 this.form.render(el.dom);
54633             }
54634             return this.form;
54635         }
54636         // should only have one of theses..
54637         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54638             // views.. should not be just added - used named prop 'view''
54639             
54640             cfg.el = this.el.appendChild(document.createElement("div"));
54641             // factory?
54642             
54643             var ret = new Roo.factory(cfg);
54644              
54645              ret.render && ret.render(false, ''); // render blank..
54646             this.view = ret;
54647             return ret;
54648         }
54649         return false;
54650     }
54651 });
54652
54653 /**
54654  * @class Roo.GridPanel
54655  * @extends Roo.ContentPanel
54656  * @constructor
54657  * Create a new GridPanel.
54658  * @param {Roo.grid.Grid} grid The grid for this panel
54659  * @param {String/Object} config A string to set only the panel's title, or a config object
54660  */
54661 Roo.GridPanel = function(grid, config){
54662     
54663   
54664     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54665         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54666         
54667     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54668     
54669     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54670     
54671     if(this.toolbar){
54672         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54673     }
54674     // xtype created footer. - not sure if will work as we normally have to render first..
54675     if (this.footer && !this.footer.el && this.footer.xtype) {
54676         
54677         this.footer.container = this.grid.getView().getFooterPanel(true);
54678         this.footer.dataSource = this.grid.dataSource;
54679         this.footer = Roo.factory(this.footer, Roo);
54680         
54681     }
54682     
54683     grid.monitorWindowResize = false; // turn off autosizing
54684     grid.autoHeight = false;
54685     grid.autoWidth = false;
54686     this.grid = grid;
54687     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54688 };
54689
54690 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54691     getId : function(){
54692         return this.grid.id;
54693     },
54694     
54695     /**
54696      * Returns the grid for this panel
54697      * @return {Roo.grid.Grid} 
54698      */
54699     getGrid : function(){
54700         return this.grid;    
54701     },
54702     
54703     setSize : function(width, height){
54704         if(!this.ignoreResize(width, height)){
54705             var grid = this.grid;
54706             var size = this.adjustForComponents(width, height);
54707             grid.getGridEl().setSize(size.width, size.height);
54708             grid.autoSize();
54709         }
54710     },
54711     
54712     beforeSlide : function(){
54713         this.grid.getView().scroller.clip();
54714     },
54715     
54716     afterSlide : function(){
54717         this.grid.getView().scroller.unclip();
54718     },
54719     
54720     destroy : function(){
54721         this.grid.destroy();
54722         delete this.grid;
54723         Roo.GridPanel.superclass.destroy.call(this); 
54724     }
54725 });
54726
54727
54728 /**
54729  * @class Roo.NestedLayoutPanel
54730  * @extends Roo.ContentPanel
54731  * @constructor
54732  * Create a new NestedLayoutPanel.
54733  * 
54734  * 
54735  * @param {Roo.BorderLayout} layout The layout for this panel
54736  * @param {String/Object} config A string to set only the title or a config object
54737  */
54738 Roo.NestedLayoutPanel = function(layout, config)
54739 {
54740     // construct with only one argument..
54741     /* FIXME - implement nicer consturctors
54742     if (layout.layout) {
54743         config = layout;
54744         layout = config.layout;
54745         delete config.layout;
54746     }
54747     if (layout.xtype && !layout.getEl) {
54748         // then layout needs constructing..
54749         layout = Roo.factory(layout, Roo);
54750     }
54751     */
54752     
54753     
54754     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54755     
54756     layout.monitorWindowResize = false; // turn off autosizing
54757     this.layout = layout;
54758     this.layout.getEl().addClass("x-layout-nested-layout");
54759     
54760     
54761     
54762     
54763 };
54764
54765 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54766
54767     setSize : function(width, height){
54768         if(!this.ignoreResize(width, height)){
54769             var size = this.adjustForComponents(width, height);
54770             var el = this.layout.getEl();
54771             el.setSize(size.width, size.height);
54772             var touch = el.dom.offsetWidth;
54773             this.layout.layout();
54774             // ie requires a double layout on the first pass
54775             if(Roo.isIE && !this.initialized){
54776                 this.initialized = true;
54777                 this.layout.layout();
54778             }
54779         }
54780     },
54781     
54782     // activate all subpanels if not currently active..
54783     
54784     setActiveState : function(active){
54785         this.active = active;
54786         if(!active){
54787             this.fireEvent("deactivate", this);
54788             return;
54789         }
54790         
54791         this.fireEvent("activate", this);
54792         // not sure if this should happen before or after..
54793         if (!this.layout) {
54794             return; // should not happen..
54795         }
54796         var reg = false;
54797         for (var r in this.layout.regions) {
54798             reg = this.layout.getRegion(r);
54799             if (reg.getActivePanel()) {
54800                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54801                 reg.setActivePanel(reg.getActivePanel());
54802                 continue;
54803             }
54804             if (!reg.panels.length) {
54805                 continue;
54806             }
54807             reg.showPanel(reg.getPanel(0));
54808         }
54809         
54810         
54811         
54812         
54813     },
54814     
54815     /**
54816      * Returns the nested BorderLayout for this panel
54817      * @return {Roo.BorderLayout} 
54818      */
54819     getLayout : function(){
54820         return this.layout;
54821     },
54822     
54823      /**
54824      * Adds a xtype elements to the layout of the nested panel
54825      * <pre><code>
54826
54827 panel.addxtype({
54828        xtype : 'ContentPanel',
54829        region: 'west',
54830        items: [ .... ]
54831    }
54832 );
54833
54834 panel.addxtype({
54835         xtype : 'NestedLayoutPanel',
54836         region: 'west',
54837         layout: {
54838            center: { },
54839            west: { }   
54840         },
54841         items : [ ... list of content panels or nested layout panels.. ]
54842    }
54843 );
54844 </code></pre>
54845      * @param {Object} cfg Xtype definition of item to add.
54846      */
54847     addxtype : function(cfg) {
54848         return this.layout.addxtype(cfg);
54849     
54850     }
54851 });
54852
54853 Roo.ScrollPanel = function(el, config, content){
54854     config = config || {};
54855     config.fitToFrame = true;
54856     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54857     
54858     this.el.dom.style.overflow = "hidden";
54859     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54860     this.el.removeClass("x-layout-inactive-content");
54861     this.el.on("mousewheel", this.onWheel, this);
54862
54863     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54864     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54865     up.unselectable(); down.unselectable();
54866     up.on("click", this.scrollUp, this);
54867     down.on("click", this.scrollDown, this);
54868     up.addClassOnOver("x-scroller-btn-over");
54869     down.addClassOnOver("x-scroller-btn-over");
54870     up.addClassOnClick("x-scroller-btn-click");
54871     down.addClassOnClick("x-scroller-btn-click");
54872     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54873
54874     this.resizeEl = this.el;
54875     this.el = wrap; this.up = up; this.down = down;
54876 };
54877
54878 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54879     increment : 100,
54880     wheelIncrement : 5,
54881     scrollUp : function(){
54882         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54883     },
54884
54885     scrollDown : function(){
54886         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54887     },
54888
54889     afterScroll : function(){
54890         var el = this.resizeEl;
54891         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54892         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54893         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54894     },
54895
54896     setSize : function(){
54897         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54898         this.afterScroll();
54899     },
54900
54901     onWheel : function(e){
54902         var d = e.getWheelDelta();
54903         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
54904         this.afterScroll();
54905         e.stopEvent();
54906     },
54907
54908     setContent : function(content, loadScripts){
54909         this.resizeEl.update(content, loadScripts);
54910     }
54911
54912 });
54913
54914
54915
54916
54917
54918
54919
54920
54921
54922 /**
54923  * @class Roo.TreePanel
54924  * @extends Roo.ContentPanel
54925  * @constructor
54926  * Create a new TreePanel. - defaults to fit/scoll contents.
54927  * @param {String/Object} config A string to set only the panel's title, or a config object
54928  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
54929  */
54930 Roo.TreePanel = function(config){
54931     var el = config.el;
54932     var tree = config.tree;
54933     delete config.tree; 
54934     delete config.el; // hopefull!
54935     
54936     // wrapper for IE7 strict & safari scroll issue
54937     
54938     var treeEl = el.createChild();
54939     config.resizeEl = treeEl;
54940     
54941     
54942     
54943     Roo.TreePanel.superclass.constructor.call(this, el, config);
54944  
54945  
54946     this.tree = new Roo.tree.TreePanel(treeEl , tree);
54947     //console.log(tree);
54948     this.on('activate', function()
54949     {
54950         if (this.tree.rendered) {
54951             return;
54952         }
54953         //console.log('render tree');
54954         this.tree.render();
54955     });
54956     // this should not be needed.. - it's actually the 'el' that resizes?
54957     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
54958     
54959     //this.on('resize',  function (cp, w, h) {
54960     //        this.tree.innerCt.setWidth(w);
54961     //        this.tree.innerCt.setHeight(h);
54962     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
54963     //});
54964
54965         
54966     
54967 };
54968
54969 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
54970     fitToFrame : true,
54971     autoScroll : true
54972 });
54973
54974
54975
54976
54977
54978
54979
54980
54981
54982
54983
54984 /*
54985  * Based on:
54986  * Ext JS Library 1.1.1
54987  * Copyright(c) 2006-2007, Ext JS, LLC.
54988  *
54989  * Originally Released Under LGPL - original licence link has changed is not relivant.
54990  *
54991  * Fork - LGPL
54992  * <script type="text/javascript">
54993  */
54994  
54995
54996 /**
54997  * @class Roo.ReaderLayout
54998  * @extends Roo.BorderLayout
54999  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55000  * center region containing two nested regions (a top one for a list view and one for item preview below),
55001  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55002  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55003  * expedites the setup of the overall layout and regions for this common application style.
55004  * Example:
55005  <pre><code>
55006 var reader = new Roo.ReaderLayout();
55007 var CP = Roo.ContentPanel;  // shortcut for adding
55008
55009 reader.beginUpdate();
55010 reader.add("north", new CP("north", "North"));
55011 reader.add("west", new CP("west", {title: "West"}));
55012 reader.add("east", new CP("east", {title: "East"}));
55013
55014 reader.regions.listView.add(new CP("listView", "List"));
55015 reader.regions.preview.add(new CP("preview", "Preview"));
55016 reader.endUpdate();
55017 </code></pre>
55018 * @constructor
55019 * Create a new ReaderLayout
55020 * @param {Object} config Configuration options
55021 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55022 * document.body if omitted)
55023 */
55024 Roo.ReaderLayout = function(config, renderTo){
55025     var c = config || {size:{}};
55026     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55027         north: c.north !== false ? Roo.apply({
55028             split:false,
55029             initialSize: 32,
55030             titlebar: false
55031         }, c.north) : false,
55032         west: c.west !== false ? Roo.apply({
55033             split:true,
55034             initialSize: 200,
55035             minSize: 175,
55036             maxSize: 400,
55037             titlebar: true,
55038             collapsible: true,
55039             animate: true,
55040             margins:{left:5,right:0,bottom:5,top:5},
55041             cmargins:{left:5,right:5,bottom:5,top:5}
55042         }, c.west) : false,
55043         east: c.east !== false ? Roo.apply({
55044             split:true,
55045             initialSize: 200,
55046             minSize: 175,
55047             maxSize: 400,
55048             titlebar: true,
55049             collapsible: true,
55050             animate: true,
55051             margins:{left:0,right:5,bottom:5,top:5},
55052             cmargins:{left:5,right:5,bottom:5,top:5}
55053         }, c.east) : false,
55054         center: Roo.apply({
55055             tabPosition: 'top',
55056             autoScroll:false,
55057             closeOnTab: true,
55058             titlebar:false,
55059             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55060         }, c.center)
55061     });
55062
55063     this.el.addClass('x-reader');
55064
55065     this.beginUpdate();
55066
55067     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55068         south: c.preview !== false ? Roo.apply({
55069             split:true,
55070             initialSize: 200,
55071             minSize: 100,
55072             autoScroll:true,
55073             collapsible:true,
55074             titlebar: true,
55075             cmargins:{top:5,left:0, right:0, bottom:0}
55076         }, c.preview) : false,
55077         center: Roo.apply({
55078             autoScroll:false,
55079             titlebar:false,
55080             minHeight:200
55081         }, c.listView)
55082     });
55083     this.add('center', new Roo.NestedLayoutPanel(inner,
55084             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55085
55086     this.endUpdate();
55087
55088     this.regions.preview = inner.getRegion('south');
55089     this.regions.listView = inner.getRegion('center');
55090 };
55091
55092 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55093  * Based on:
55094  * Ext JS Library 1.1.1
55095  * Copyright(c) 2006-2007, Ext JS, LLC.
55096  *
55097  * Originally Released Under LGPL - original licence link has changed is not relivant.
55098  *
55099  * Fork - LGPL
55100  * <script type="text/javascript">
55101  */
55102  
55103 /**
55104  * @class Roo.grid.Grid
55105  * @extends Roo.util.Observable
55106  * This class represents the primary interface of a component based grid control.
55107  * <br><br>Usage:<pre><code>
55108  var grid = new Roo.grid.Grid("my-container-id", {
55109      ds: myDataStore,
55110      cm: myColModel,
55111      selModel: mySelectionModel,
55112      autoSizeColumns: true,
55113      monitorWindowResize: false,
55114      trackMouseOver: true
55115  });
55116  // set any options
55117  grid.render();
55118  * </code></pre>
55119  * <b>Common Problems:</b><br/>
55120  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55121  * element will correct this<br/>
55122  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55123  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55124  * are unpredictable.<br/>
55125  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55126  * grid to calculate dimensions/offsets.<br/>
55127   * @constructor
55128  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55129  * The container MUST have some type of size defined for the grid to fill. The container will be
55130  * automatically set to position relative if it isn't already.
55131  * @param {Object} config A config object that sets properties on this grid.
55132  */
55133 Roo.grid.Grid = function(container, config){
55134         // initialize the container
55135         this.container = Roo.get(container);
55136         this.container.update("");
55137         this.container.setStyle("overflow", "hidden");
55138     this.container.addClass('x-grid-container');
55139
55140     this.id = this.container.id;
55141
55142     Roo.apply(this, config);
55143     // check and correct shorthanded configs
55144     if(this.ds){
55145         this.dataSource = this.ds;
55146         delete this.ds;
55147     }
55148     if(this.cm){
55149         this.colModel = this.cm;
55150         delete this.cm;
55151     }
55152     if(this.sm){
55153         this.selModel = this.sm;
55154         delete this.sm;
55155     }
55156
55157     if (this.selModel) {
55158         this.selModel = Roo.factory(this.selModel, Roo.grid);
55159         this.sm = this.selModel;
55160         this.sm.xmodule = this.xmodule || false;
55161     }
55162     if (typeof(this.colModel.config) == 'undefined') {
55163         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55164         this.cm = this.colModel;
55165         this.cm.xmodule = this.xmodule || false;
55166     }
55167     if (this.dataSource) {
55168         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55169         this.ds = this.dataSource;
55170         this.ds.xmodule = this.xmodule || false;
55171          
55172     }
55173     
55174     
55175     
55176     if(this.width){
55177         this.container.setWidth(this.width);
55178     }
55179
55180     if(this.height){
55181         this.container.setHeight(this.height);
55182     }
55183     /** @private */
55184         this.addEvents({
55185         // raw events
55186         /**
55187          * @event click
55188          * The raw click event for the entire grid.
55189          * @param {Roo.EventObject} e
55190          */
55191         "click" : true,
55192         /**
55193          * @event dblclick
55194          * The raw dblclick event for the entire grid.
55195          * @param {Roo.EventObject} e
55196          */
55197         "dblclick" : true,
55198         /**
55199          * @event contextmenu
55200          * The raw contextmenu event for the entire grid.
55201          * @param {Roo.EventObject} e
55202          */
55203         "contextmenu" : true,
55204         /**
55205          * @event mousedown
55206          * The raw mousedown event for the entire grid.
55207          * @param {Roo.EventObject} e
55208          */
55209         "mousedown" : true,
55210         /**
55211          * @event mouseup
55212          * The raw mouseup event for the entire grid.
55213          * @param {Roo.EventObject} e
55214          */
55215         "mouseup" : true,
55216         /**
55217          * @event mouseover
55218          * The raw mouseover event for the entire grid.
55219          * @param {Roo.EventObject} e
55220          */
55221         "mouseover" : true,
55222         /**
55223          * @event mouseout
55224          * The raw mouseout event for the entire grid.
55225          * @param {Roo.EventObject} e
55226          */
55227         "mouseout" : true,
55228         /**
55229          * @event keypress
55230          * The raw keypress event for the entire grid.
55231          * @param {Roo.EventObject} e
55232          */
55233         "keypress" : true,
55234         /**
55235          * @event keydown
55236          * The raw keydown event for the entire grid.
55237          * @param {Roo.EventObject} e
55238          */
55239         "keydown" : true,
55240
55241         // custom events
55242
55243         /**
55244          * @event cellclick
55245          * Fires when a cell is clicked
55246          * @param {Grid} this
55247          * @param {Number} rowIndex
55248          * @param {Number} columnIndex
55249          * @param {Roo.EventObject} e
55250          */
55251         "cellclick" : true,
55252         /**
55253          * @event celldblclick
55254          * Fires when a cell is double clicked
55255          * @param {Grid} this
55256          * @param {Number} rowIndex
55257          * @param {Number} columnIndex
55258          * @param {Roo.EventObject} e
55259          */
55260         "celldblclick" : true,
55261         /**
55262          * @event rowclick
55263          * Fires when a row is clicked
55264          * @param {Grid} this
55265          * @param {Number} rowIndex
55266          * @param {Roo.EventObject} e
55267          */
55268         "rowclick" : true,
55269         /**
55270          * @event rowdblclick
55271          * Fires when a row is double clicked
55272          * @param {Grid} this
55273          * @param {Number} rowIndex
55274          * @param {Roo.EventObject} e
55275          */
55276         "rowdblclick" : true,
55277         /**
55278          * @event headerclick
55279          * Fires when a header is clicked
55280          * @param {Grid} this
55281          * @param {Number} columnIndex
55282          * @param {Roo.EventObject} e
55283          */
55284         "headerclick" : true,
55285         /**
55286          * @event headerdblclick
55287          * Fires when a header cell is double clicked
55288          * @param {Grid} this
55289          * @param {Number} columnIndex
55290          * @param {Roo.EventObject} e
55291          */
55292         "headerdblclick" : true,
55293         /**
55294          * @event rowcontextmenu
55295          * Fires when a row is right clicked
55296          * @param {Grid} this
55297          * @param {Number} rowIndex
55298          * @param {Roo.EventObject} e
55299          */
55300         "rowcontextmenu" : true,
55301         /**
55302          * @event cellcontextmenu
55303          * Fires when a cell is right clicked
55304          * @param {Grid} this
55305          * @param {Number} rowIndex
55306          * @param {Number} cellIndex
55307          * @param {Roo.EventObject} e
55308          */
55309          "cellcontextmenu" : true,
55310         /**
55311          * @event headercontextmenu
55312          * Fires when a header is right clicked
55313          * @param {Grid} this
55314          * @param {Number} columnIndex
55315          * @param {Roo.EventObject} e
55316          */
55317         "headercontextmenu" : true,
55318         /**
55319          * @event bodyscroll
55320          * Fires when the body element is scrolled
55321          * @param {Number} scrollLeft
55322          * @param {Number} scrollTop
55323          */
55324         "bodyscroll" : true,
55325         /**
55326          * @event columnresize
55327          * Fires when the user resizes a column
55328          * @param {Number} columnIndex
55329          * @param {Number} newSize
55330          */
55331         "columnresize" : true,
55332         /**
55333          * @event columnmove
55334          * Fires when the user moves a column
55335          * @param {Number} oldIndex
55336          * @param {Number} newIndex
55337          */
55338         "columnmove" : true,
55339         /**
55340          * @event startdrag
55341          * Fires when row(s) start being dragged
55342          * @param {Grid} this
55343          * @param {Roo.GridDD} dd The drag drop object
55344          * @param {event} e The raw browser event
55345          */
55346         "startdrag" : true,
55347         /**
55348          * @event enddrag
55349          * Fires when a drag operation is complete
55350          * @param {Grid} this
55351          * @param {Roo.GridDD} dd The drag drop object
55352          * @param {event} e The raw browser event
55353          */
55354         "enddrag" : true,
55355         /**
55356          * @event dragdrop
55357          * Fires when dragged row(s) are dropped on a valid DD target
55358          * @param {Grid} this
55359          * @param {Roo.GridDD} dd The drag drop object
55360          * @param {String} targetId The target drag drop object
55361          * @param {event} e The raw browser event
55362          */
55363         "dragdrop" : true,
55364         /**
55365          * @event dragover
55366          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55367          * @param {Grid} this
55368          * @param {Roo.GridDD} dd The drag drop object
55369          * @param {String} targetId The target drag drop object
55370          * @param {event} e The raw browser event
55371          */
55372         "dragover" : true,
55373         /**
55374          * @event dragenter
55375          *  Fires when the dragged row(s) first cross another DD target while being dragged
55376          * @param {Grid} this
55377          * @param {Roo.GridDD} dd The drag drop object
55378          * @param {String} targetId The target drag drop object
55379          * @param {event} e The raw browser event
55380          */
55381         "dragenter" : true,
55382         /**
55383          * @event dragout
55384          * Fires when the dragged row(s) leave another DD target while being dragged
55385          * @param {Grid} this
55386          * @param {Roo.GridDD} dd The drag drop object
55387          * @param {String} targetId The target drag drop object
55388          * @param {event} e The raw browser event
55389          */
55390         "dragout" : true,
55391         /**
55392          * @event rowclass
55393          * Fires when a row is rendered, so you can change add a style to it.
55394          * @param {GridView} gridview   The grid view
55395          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55396          */
55397         'rowclass' : true,
55398
55399         /**
55400          * @event render
55401          * Fires when the grid is rendered
55402          * @param {Grid} grid
55403          */
55404         'render' : true
55405     });
55406
55407     Roo.grid.Grid.superclass.constructor.call(this);
55408 };
55409 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55410     
55411     /**
55412      * @cfg {String} ddGroup - drag drop group.
55413      */
55414       /**
55415      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55416      */
55417
55418     /**
55419      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55420      */
55421     minColumnWidth : 25,
55422
55423     /**
55424      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55425      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55426      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55427      */
55428     autoSizeColumns : false,
55429
55430     /**
55431      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55432      */
55433     autoSizeHeaders : true,
55434
55435     /**
55436      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55437      */
55438     monitorWindowResize : true,
55439
55440     /**
55441      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55442      * rows measured to get a columns size. Default is 0 (all rows).
55443      */
55444     maxRowsToMeasure : 0,
55445
55446     /**
55447      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55448      */
55449     trackMouseOver : true,
55450
55451     /**
55452     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55453     */
55454       /**
55455     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55456     */
55457     
55458     /**
55459     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55460     */
55461     enableDragDrop : false,
55462     
55463     /**
55464     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55465     */
55466     enableColumnMove : true,
55467     
55468     /**
55469     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55470     */
55471     enableColumnHide : true,
55472     
55473     /**
55474     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55475     */
55476     enableRowHeightSync : false,
55477     
55478     /**
55479     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55480     */
55481     stripeRows : true,
55482     
55483     /**
55484     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55485     */
55486     autoHeight : false,
55487
55488     /**
55489      * @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.
55490      */
55491     autoExpandColumn : false,
55492
55493     /**
55494     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55495     * Default is 50.
55496     */
55497     autoExpandMin : 50,
55498
55499     /**
55500     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55501     */
55502     autoExpandMax : 1000,
55503
55504     /**
55505     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55506     */
55507     view : null,
55508
55509     /**
55510     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55511     */
55512     loadMask : false,
55513     /**
55514     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55515     */
55516     dropTarget: false,
55517     
55518    
55519     
55520     // private
55521     rendered : false,
55522
55523     /**
55524     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55525     * of a fixed width. Default is false.
55526     */
55527     /**
55528     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55529     */
55530     
55531     
55532     /**
55533     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55534     * %0 is replaced with the number of selected rows.
55535     */
55536     ddText : "{0} selected row{1}",
55537     
55538     
55539     /**
55540      * Called once after all setup has been completed and the grid is ready to be rendered.
55541      * @return {Roo.grid.Grid} this
55542      */
55543     render : function()
55544     {
55545         var c = this.container;
55546         // try to detect autoHeight/width mode
55547         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55548             this.autoHeight = true;
55549         }
55550         var view = this.getView();
55551         view.init(this);
55552
55553         c.on("click", this.onClick, this);
55554         c.on("dblclick", this.onDblClick, this);
55555         c.on("contextmenu", this.onContextMenu, this);
55556         c.on("keydown", this.onKeyDown, this);
55557         if (Roo.isTouch) {
55558             c.on("touchstart", this.onTouchStart, this);
55559         }
55560
55561         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55562
55563         this.getSelectionModel().init(this);
55564
55565         view.render();
55566
55567         if(this.loadMask){
55568             this.loadMask = new Roo.LoadMask(this.container,
55569                     Roo.apply({store:this.dataSource}, this.loadMask));
55570         }
55571         
55572         
55573         if (this.toolbar && this.toolbar.xtype) {
55574             this.toolbar.container = this.getView().getHeaderPanel(true);
55575             this.toolbar = new Roo.Toolbar(this.toolbar);
55576         }
55577         if (this.footer && this.footer.xtype) {
55578             this.footer.dataSource = this.getDataSource();
55579             this.footer.container = this.getView().getFooterPanel(true);
55580             this.footer = Roo.factory(this.footer, Roo);
55581         }
55582         if (this.dropTarget && this.dropTarget.xtype) {
55583             delete this.dropTarget.xtype;
55584             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55585         }
55586         
55587         
55588         this.rendered = true;
55589         this.fireEvent('render', this);
55590         return this;
55591     },
55592
55593     /**
55594      * Reconfigures the grid to use a different Store and Column Model.
55595      * The View will be bound to the new objects and refreshed.
55596      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55597      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55598      */
55599     reconfigure : function(dataSource, colModel){
55600         if(this.loadMask){
55601             this.loadMask.destroy();
55602             this.loadMask = new Roo.LoadMask(this.container,
55603                     Roo.apply({store:dataSource}, this.loadMask));
55604         }
55605         this.view.bind(dataSource, colModel);
55606         this.dataSource = dataSource;
55607         this.colModel = colModel;
55608         this.view.refresh(true);
55609     },
55610     /**
55611      * addColumns
55612      * Add's a column, default at the end..
55613      
55614      * @param {int} position to add (default end)
55615      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55616      */
55617     addColumns : function(pos, ar)
55618     {
55619         
55620         for (var i =0;i< ar.length;i++) {
55621             var cfg = ar[i];
55622             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55623             this.cm.lookup[cfg.id] = cfg;
55624         }
55625         
55626         
55627         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55628             pos = this.cm.config.length; //this.cm.config.push(cfg);
55629         } 
55630         pos = Math.max(0,pos);
55631         ar.unshift(0);
55632         ar.unshift(pos);
55633         this.cm.config.splice.apply(this.cm.config, ar);
55634         
55635         
55636         
55637         this.view.generateRules(this.cm);
55638         this.view.refresh(true);
55639         
55640     },
55641     
55642     
55643     
55644     
55645     // private
55646     onKeyDown : function(e){
55647         this.fireEvent("keydown", e);
55648     },
55649
55650     /**
55651      * Destroy this grid.
55652      * @param {Boolean} removeEl True to remove the element
55653      */
55654     destroy : function(removeEl, keepListeners){
55655         if(this.loadMask){
55656             this.loadMask.destroy();
55657         }
55658         var c = this.container;
55659         c.removeAllListeners();
55660         this.view.destroy();
55661         this.colModel.purgeListeners();
55662         if(!keepListeners){
55663             this.purgeListeners();
55664         }
55665         c.update("");
55666         if(removeEl === true){
55667             c.remove();
55668         }
55669     },
55670
55671     // private
55672     processEvent : function(name, e){
55673         // does this fire select???
55674         //Roo.log('grid:processEvent '  + name);
55675         
55676         if (name != 'touchstart' ) {
55677             this.fireEvent(name, e);    
55678         }
55679         
55680         var t = e.getTarget();
55681         var v = this.view;
55682         var header = v.findHeaderIndex(t);
55683         if(header !== false){
55684             var ename = name == 'touchstart' ? 'click' : name;
55685              
55686             this.fireEvent("header" + ename, this, header, e);
55687         }else{
55688             var row = v.findRowIndex(t);
55689             var cell = v.findCellIndex(t);
55690             if (name == 'touchstart') {
55691                 // first touch is always a click.
55692                 // hopefull this happens after selection is updated.?
55693                 name = false;
55694                 
55695                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55696                     var cs = this.selModel.getSelectedCell();
55697                     if (row == cs[0] && cell == cs[1]){
55698                         name = 'dblclick';
55699                     }
55700                 }
55701                 if (typeof(this.selModel.getSelections) != 'undefined') {
55702                     var cs = this.selModel.getSelections();
55703                     var ds = this.dataSource;
55704                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55705                         name = 'dblclick';
55706                     }
55707                 }
55708                 if (!name) {
55709                     return;
55710                 }
55711             }
55712             
55713             
55714             if(row !== false){
55715                 this.fireEvent("row" + name, this, row, e);
55716                 if(cell !== false){
55717                     this.fireEvent("cell" + name, this, row, cell, e);
55718                 }
55719             }
55720         }
55721     },
55722
55723     // private
55724     onClick : function(e){
55725         this.processEvent("click", e);
55726     },
55727    // private
55728     onTouchStart : function(e){
55729         this.processEvent("touchstart", e);
55730     },
55731
55732     // private
55733     onContextMenu : function(e, t){
55734         this.processEvent("contextmenu", e);
55735     },
55736
55737     // private
55738     onDblClick : function(e){
55739         this.processEvent("dblclick", e);
55740     },
55741
55742     // private
55743     walkCells : function(row, col, step, fn, scope){
55744         var cm = this.colModel, clen = cm.getColumnCount();
55745         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55746         if(step < 0){
55747             if(col < 0){
55748                 row--;
55749                 first = false;
55750             }
55751             while(row >= 0){
55752                 if(!first){
55753                     col = clen-1;
55754                 }
55755                 first = false;
55756                 while(col >= 0){
55757                     if(fn.call(scope || this, row, col, cm) === true){
55758                         return [row, col];
55759                     }
55760                     col--;
55761                 }
55762                 row--;
55763             }
55764         } else {
55765             if(col >= clen){
55766                 row++;
55767                 first = false;
55768             }
55769             while(row < rlen){
55770                 if(!first){
55771                     col = 0;
55772                 }
55773                 first = false;
55774                 while(col < clen){
55775                     if(fn.call(scope || this, row, col, cm) === true){
55776                         return [row, col];
55777                     }
55778                     col++;
55779                 }
55780                 row++;
55781             }
55782         }
55783         return null;
55784     },
55785
55786     // private
55787     getSelections : function(){
55788         return this.selModel.getSelections();
55789     },
55790
55791     /**
55792      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55793      * but if manual update is required this method will initiate it.
55794      */
55795     autoSize : function(){
55796         if(this.rendered){
55797             this.view.layout();
55798             if(this.view.adjustForScroll){
55799                 this.view.adjustForScroll();
55800             }
55801         }
55802     },
55803
55804     /**
55805      * Returns the grid's underlying element.
55806      * @return {Element} The element
55807      */
55808     getGridEl : function(){
55809         return this.container;
55810     },
55811
55812     // private for compatibility, overridden by editor grid
55813     stopEditing : function(){},
55814
55815     /**
55816      * Returns the grid's SelectionModel.
55817      * @return {SelectionModel}
55818      */
55819     getSelectionModel : function(){
55820         if(!this.selModel){
55821             this.selModel = new Roo.grid.RowSelectionModel();
55822         }
55823         return this.selModel;
55824     },
55825
55826     /**
55827      * Returns the grid's DataSource.
55828      * @return {DataSource}
55829      */
55830     getDataSource : function(){
55831         return this.dataSource;
55832     },
55833
55834     /**
55835      * Returns the grid's ColumnModel.
55836      * @return {ColumnModel}
55837      */
55838     getColumnModel : function(){
55839         return this.colModel;
55840     },
55841
55842     /**
55843      * Returns the grid's GridView object.
55844      * @return {GridView}
55845      */
55846     getView : function(){
55847         if(!this.view){
55848             this.view = new Roo.grid.GridView(this.viewConfig);
55849             this.relayEvents(this.view, [
55850                 "beforerowremoved", "beforerowsinserted",
55851                 "beforerefresh", "rowremoved",
55852                 "rowsinserted", "rowupdated" ,"refresh"
55853             ]);
55854         }
55855         return this.view;
55856     },
55857     /**
55858      * Called to get grid's drag proxy text, by default returns this.ddText.
55859      * Override this to put something different in the dragged text.
55860      * @return {String}
55861      */
55862     getDragDropText : function(){
55863         var count = this.selModel.getCount();
55864         return String.format(this.ddText, count, count == 1 ? '' : 's');
55865     }
55866 });
55867 /*
55868  * Based on:
55869  * Ext JS Library 1.1.1
55870  * Copyright(c) 2006-2007, Ext JS, LLC.
55871  *
55872  * Originally Released Under LGPL - original licence link has changed is not relivant.
55873  *
55874  * Fork - LGPL
55875  * <script type="text/javascript">
55876  */
55877  
55878 Roo.grid.AbstractGridView = function(){
55879         this.grid = null;
55880         
55881         this.events = {
55882             "beforerowremoved" : true,
55883             "beforerowsinserted" : true,
55884             "beforerefresh" : true,
55885             "rowremoved" : true,
55886             "rowsinserted" : true,
55887             "rowupdated" : true,
55888             "refresh" : true
55889         };
55890     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55891 };
55892
55893 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55894     rowClass : "x-grid-row",
55895     cellClass : "x-grid-cell",
55896     tdClass : "x-grid-td",
55897     hdClass : "x-grid-hd",
55898     splitClass : "x-grid-hd-split",
55899     
55900     init: function(grid){
55901         this.grid = grid;
55902                 var cid = this.grid.getGridEl().id;
55903         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
55904         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
55905         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
55906         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
55907         },
55908         
55909     getColumnRenderers : function(){
55910         var renderers = [];
55911         var cm = this.grid.colModel;
55912         var colCount = cm.getColumnCount();
55913         for(var i = 0; i < colCount; i++){
55914             renderers[i] = cm.getRenderer(i);
55915         }
55916         return renderers;
55917     },
55918     
55919     getColumnIds : function(){
55920         var ids = [];
55921         var cm = this.grid.colModel;
55922         var colCount = cm.getColumnCount();
55923         for(var i = 0; i < colCount; i++){
55924             ids[i] = cm.getColumnId(i);
55925         }
55926         return ids;
55927     },
55928     
55929     getDataIndexes : function(){
55930         if(!this.indexMap){
55931             this.indexMap = this.buildIndexMap();
55932         }
55933         return this.indexMap.colToData;
55934     },
55935     
55936     getColumnIndexByDataIndex : function(dataIndex){
55937         if(!this.indexMap){
55938             this.indexMap = this.buildIndexMap();
55939         }
55940         return this.indexMap.dataToCol[dataIndex];
55941     },
55942     
55943     /**
55944      * Set a css style for a column dynamically. 
55945      * @param {Number} colIndex The index of the column
55946      * @param {String} name The css property name
55947      * @param {String} value The css value
55948      */
55949     setCSSStyle : function(colIndex, name, value){
55950         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
55951         Roo.util.CSS.updateRule(selector, name, value);
55952     },
55953     
55954     generateRules : function(cm){
55955         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
55956         Roo.util.CSS.removeStyleSheet(rulesId);
55957         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55958             var cid = cm.getColumnId(i);
55959             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
55960                          this.tdSelector, cid, " {\n}\n",
55961                          this.hdSelector, cid, " {\n}\n",
55962                          this.splitSelector, cid, " {\n}\n");
55963         }
55964         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
55965     }
55966 });/*
55967  * Based on:
55968  * Ext JS Library 1.1.1
55969  * Copyright(c) 2006-2007, Ext JS, LLC.
55970  *
55971  * Originally Released Under LGPL - original licence link has changed is not relivant.
55972  *
55973  * Fork - LGPL
55974  * <script type="text/javascript">
55975  */
55976
55977 // private
55978 // This is a support class used internally by the Grid components
55979 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
55980     this.grid = grid;
55981     this.view = grid.getView();
55982     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
55983     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
55984     if(hd2){
55985         this.setHandleElId(Roo.id(hd));
55986         this.setOuterHandleElId(Roo.id(hd2));
55987     }
55988     this.scroll = false;
55989 };
55990 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
55991     maxDragWidth: 120,
55992     getDragData : function(e){
55993         var t = Roo.lib.Event.getTarget(e);
55994         var h = this.view.findHeaderCell(t);
55995         if(h){
55996             return {ddel: h.firstChild, header:h};
55997         }
55998         return false;
55999     },
56000
56001     onInitDrag : function(e){
56002         this.view.headersDisabled = true;
56003         var clone = this.dragData.ddel.cloneNode(true);
56004         clone.id = Roo.id();
56005         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56006         this.proxy.update(clone);
56007         return true;
56008     },
56009
56010     afterValidDrop : function(){
56011         var v = this.view;
56012         setTimeout(function(){
56013             v.headersDisabled = false;
56014         }, 50);
56015     },
56016
56017     afterInvalidDrop : function(){
56018         var v = this.view;
56019         setTimeout(function(){
56020             v.headersDisabled = false;
56021         }, 50);
56022     }
56023 });
56024 /*
56025  * Based on:
56026  * Ext JS Library 1.1.1
56027  * Copyright(c) 2006-2007, Ext JS, LLC.
56028  *
56029  * Originally Released Under LGPL - original licence link has changed is not relivant.
56030  *
56031  * Fork - LGPL
56032  * <script type="text/javascript">
56033  */
56034 // private
56035 // This is a support class used internally by the Grid components
56036 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56037     this.grid = grid;
56038     this.view = grid.getView();
56039     // split the proxies so they don't interfere with mouse events
56040     this.proxyTop = Roo.DomHelper.append(document.body, {
56041         cls:"col-move-top", html:"&#160;"
56042     }, true);
56043     this.proxyBottom = Roo.DomHelper.append(document.body, {
56044         cls:"col-move-bottom", html:"&#160;"
56045     }, true);
56046     this.proxyTop.hide = this.proxyBottom.hide = function(){
56047         this.setLeftTop(-100,-100);
56048         this.setStyle("visibility", "hidden");
56049     };
56050     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56051     // temporarily disabled
56052     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56053     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56054 };
56055 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56056     proxyOffsets : [-4, -9],
56057     fly: Roo.Element.fly,
56058
56059     getTargetFromEvent : function(e){
56060         var t = Roo.lib.Event.getTarget(e);
56061         var cindex = this.view.findCellIndex(t);
56062         if(cindex !== false){
56063             return this.view.getHeaderCell(cindex);
56064         }
56065         return null;
56066     },
56067
56068     nextVisible : function(h){
56069         var v = this.view, cm = this.grid.colModel;
56070         h = h.nextSibling;
56071         while(h){
56072             if(!cm.isHidden(v.getCellIndex(h))){
56073                 return h;
56074             }
56075             h = h.nextSibling;
56076         }
56077         return null;
56078     },
56079
56080     prevVisible : function(h){
56081         var v = this.view, cm = this.grid.colModel;
56082         h = h.prevSibling;
56083         while(h){
56084             if(!cm.isHidden(v.getCellIndex(h))){
56085                 return h;
56086             }
56087             h = h.prevSibling;
56088         }
56089         return null;
56090     },
56091
56092     positionIndicator : function(h, n, e){
56093         var x = Roo.lib.Event.getPageX(e);
56094         var r = Roo.lib.Dom.getRegion(n.firstChild);
56095         var px, pt, py = r.top + this.proxyOffsets[1];
56096         if((r.right - x) <= (r.right-r.left)/2){
56097             px = r.right+this.view.borderWidth;
56098             pt = "after";
56099         }else{
56100             px = r.left;
56101             pt = "before";
56102         }
56103         var oldIndex = this.view.getCellIndex(h);
56104         var newIndex = this.view.getCellIndex(n);
56105
56106         if(this.grid.colModel.isFixed(newIndex)){
56107             return false;
56108         }
56109
56110         var locked = this.grid.colModel.isLocked(newIndex);
56111
56112         if(pt == "after"){
56113             newIndex++;
56114         }
56115         if(oldIndex < newIndex){
56116             newIndex--;
56117         }
56118         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56119             return false;
56120         }
56121         px +=  this.proxyOffsets[0];
56122         this.proxyTop.setLeftTop(px, py);
56123         this.proxyTop.show();
56124         if(!this.bottomOffset){
56125             this.bottomOffset = this.view.mainHd.getHeight();
56126         }
56127         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56128         this.proxyBottom.show();
56129         return pt;
56130     },
56131
56132     onNodeEnter : function(n, dd, e, data){
56133         if(data.header != n){
56134             this.positionIndicator(data.header, n, e);
56135         }
56136     },
56137
56138     onNodeOver : function(n, dd, e, data){
56139         var result = false;
56140         if(data.header != n){
56141             result = this.positionIndicator(data.header, n, e);
56142         }
56143         if(!result){
56144             this.proxyTop.hide();
56145             this.proxyBottom.hide();
56146         }
56147         return result ? this.dropAllowed : this.dropNotAllowed;
56148     },
56149
56150     onNodeOut : function(n, dd, e, data){
56151         this.proxyTop.hide();
56152         this.proxyBottom.hide();
56153     },
56154
56155     onNodeDrop : function(n, dd, e, data){
56156         var h = data.header;
56157         if(h != n){
56158             var cm = this.grid.colModel;
56159             var x = Roo.lib.Event.getPageX(e);
56160             var r = Roo.lib.Dom.getRegion(n.firstChild);
56161             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56162             var oldIndex = this.view.getCellIndex(h);
56163             var newIndex = this.view.getCellIndex(n);
56164             var locked = cm.isLocked(newIndex);
56165             if(pt == "after"){
56166                 newIndex++;
56167             }
56168             if(oldIndex < newIndex){
56169                 newIndex--;
56170             }
56171             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56172                 return false;
56173             }
56174             cm.setLocked(oldIndex, locked, true);
56175             cm.moveColumn(oldIndex, newIndex);
56176             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56177             return true;
56178         }
56179         return false;
56180     }
56181 });
56182 /*
56183  * Based on:
56184  * Ext JS Library 1.1.1
56185  * Copyright(c) 2006-2007, Ext JS, LLC.
56186  *
56187  * Originally Released Under LGPL - original licence link has changed is not relivant.
56188  *
56189  * Fork - LGPL
56190  * <script type="text/javascript">
56191  */
56192   
56193 /**
56194  * @class Roo.grid.GridView
56195  * @extends Roo.util.Observable
56196  *
56197  * @constructor
56198  * @param {Object} config
56199  */
56200 Roo.grid.GridView = function(config){
56201     Roo.grid.GridView.superclass.constructor.call(this);
56202     this.el = null;
56203
56204     Roo.apply(this, config);
56205 };
56206
56207 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56208
56209     unselectable :  'unselectable="on"',
56210     unselectableCls :  'x-unselectable',
56211     
56212     
56213     rowClass : "x-grid-row",
56214
56215     cellClass : "x-grid-col",
56216
56217     tdClass : "x-grid-td",
56218
56219     hdClass : "x-grid-hd",
56220
56221     splitClass : "x-grid-split",
56222
56223     sortClasses : ["sort-asc", "sort-desc"],
56224
56225     enableMoveAnim : false,
56226
56227     hlColor: "C3DAF9",
56228
56229     dh : Roo.DomHelper,
56230
56231     fly : Roo.Element.fly,
56232
56233     css : Roo.util.CSS,
56234
56235     borderWidth: 1,
56236
56237     splitOffset: 3,
56238
56239     scrollIncrement : 22,
56240
56241     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56242
56243     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56244
56245     bind : function(ds, cm){
56246         if(this.ds){
56247             this.ds.un("load", this.onLoad, this);
56248             this.ds.un("datachanged", this.onDataChange, this);
56249             this.ds.un("add", this.onAdd, this);
56250             this.ds.un("remove", this.onRemove, this);
56251             this.ds.un("update", this.onUpdate, this);
56252             this.ds.un("clear", this.onClear, this);
56253         }
56254         if(ds){
56255             ds.on("load", this.onLoad, this);
56256             ds.on("datachanged", this.onDataChange, this);
56257             ds.on("add", this.onAdd, this);
56258             ds.on("remove", this.onRemove, this);
56259             ds.on("update", this.onUpdate, this);
56260             ds.on("clear", this.onClear, this);
56261         }
56262         this.ds = ds;
56263
56264         if(this.cm){
56265             this.cm.un("widthchange", this.onColWidthChange, this);
56266             this.cm.un("headerchange", this.onHeaderChange, this);
56267             this.cm.un("hiddenchange", this.onHiddenChange, this);
56268             this.cm.un("columnmoved", this.onColumnMove, this);
56269             this.cm.un("columnlockchange", this.onColumnLock, this);
56270         }
56271         if(cm){
56272             this.generateRules(cm);
56273             cm.on("widthchange", this.onColWidthChange, this);
56274             cm.on("headerchange", this.onHeaderChange, this);
56275             cm.on("hiddenchange", this.onHiddenChange, this);
56276             cm.on("columnmoved", this.onColumnMove, this);
56277             cm.on("columnlockchange", this.onColumnLock, this);
56278         }
56279         this.cm = cm;
56280     },
56281
56282     init: function(grid){
56283         Roo.grid.GridView.superclass.init.call(this, grid);
56284
56285         this.bind(grid.dataSource, grid.colModel);
56286
56287         grid.on("headerclick", this.handleHeaderClick, this);
56288
56289         if(grid.trackMouseOver){
56290             grid.on("mouseover", this.onRowOver, this);
56291             grid.on("mouseout", this.onRowOut, this);
56292         }
56293         grid.cancelTextSelection = function(){};
56294         this.gridId = grid.id;
56295
56296         var tpls = this.templates || {};
56297
56298         if(!tpls.master){
56299             tpls.master = new Roo.Template(
56300                '<div class="x-grid" hidefocus="true">',
56301                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56302                   '<div class="x-grid-topbar"></div>',
56303                   '<div class="x-grid-scroller"><div></div></div>',
56304                   '<div class="x-grid-locked">',
56305                       '<div class="x-grid-header">{lockedHeader}</div>',
56306                       '<div class="x-grid-body">{lockedBody}</div>',
56307                   "</div>",
56308                   '<div class="x-grid-viewport">',
56309                       '<div class="x-grid-header">{header}</div>',
56310                       '<div class="x-grid-body">{body}</div>',
56311                   "</div>",
56312                   '<div class="x-grid-bottombar"></div>',
56313                  
56314                   '<div class="x-grid-resize-proxy">&#160;</div>',
56315                "</div>"
56316             );
56317             tpls.master.disableformats = true;
56318         }
56319
56320         if(!tpls.header){
56321             tpls.header = new Roo.Template(
56322                '<table border="0" cellspacing="0" cellpadding="0">',
56323                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56324                "</table>{splits}"
56325             );
56326             tpls.header.disableformats = true;
56327         }
56328         tpls.header.compile();
56329
56330         if(!tpls.hcell){
56331             tpls.hcell = new Roo.Template(
56332                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56333                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56334                 "</div></td>"
56335              );
56336              tpls.hcell.disableFormats = true;
56337         }
56338         tpls.hcell.compile();
56339
56340         if(!tpls.hsplit){
56341             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56342                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56343             tpls.hsplit.disableFormats = true;
56344         }
56345         tpls.hsplit.compile();
56346
56347         if(!tpls.body){
56348             tpls.body = new Roo.Template(
56349                '<table border="0" cellspacing="0" cellpadding="0">',
56350                "<tbody>{rows}</tbody>",
56351                "</table>"
56352             );
56353             tpls.body.disableFormats = true;
56354         }
56355         tpls.body.compile();
56356
56357         if(!tpls.row){
56358             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56359             tpls.row.disableFormats = true;
56360         }
56361         tpls.row.compile();
56362
56363         if(!tpls.cell){
56364             tpls.cell = new Roo.Template(
56365                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56366                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56367                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56368                 "</td>"
56369             );
56370             tpls.cell.disableFormats = true;
56371         }
56372         tpls.cell.compile();
56373
56374         this.templates = tpls;
56375     },
56376
56377     // remap these for backwards compat
56378     onColWidthChange : function(){
56379         this.updateColumns.apply(this, arguments);
56380     },
56381     onHeaderChange : function(){
56382         this.updateHeaders.apply(this, arguments);
56383     }, 
56384     onHiddenChange : function(){
56385         this.handleHiddenChange.apply(this, arguments);
56386     },
56387     onColumnMove : function(){
56388         this.handleColumnMove.apply(this, arguments);
56389     },
56390     onColumnLock : function(){
56391         this.handleLockChange.apply(this, arguments);
56392     },
56393
56394     onDataChange : function(){
56395         this.refresh();
56396         this.updateHeaderSortState();
56397     },
56398
56399     onClear : function(){
56400         this.refresh();
56401     },
56402
56403     onUpdate : function(ds, record){
56404         this.refreshRow(record);
56405     },
56406
56407     refreshRow : function(record){
56408         var ds = this.ds, index;
56409         if(typeof record == 'number'){
56410             index = record;
56411             record = ds.getAt(index);
56412         }else{
56413             index = ds.indexOf(record);
56414         }
56415         this.insertRows(ds, index, index, true);
56416         this.onRemove(ds, record, index+1, true);
56417         this.syncRowHeights(index, index);
56418         this.layout();
56419         this.fireEvent("rowupdated", this, index, record);
56420     },
56421
56422     onAdd : function(ds, records, index){
56423         this.insertRows(ds, index, index + (records.length-1));
56424     },
56425
56426     onRemove : function(ds, record, index, isUpdate){
56427         if(isUpdate !== true){
56428             this.fireEvent("beforerowremoved", this, index, record);
56429         }
56430         var bt = this.getBodyTable(), lt = this.getLockedTable();
56431         if(bt.rows[index]){
56432             bt.firstChild.removeChild(bt.rows[index]);
56433         }
56434         if(lt.rows[index]){
56435             lt.firstChild.removeChild(lt.rows[index]);
56436         }
56437         if(isUpdate !== true){
56438             this.stripeRows(index);
56439             this.syncRowHeights(index, index);
56440             this.layout();
56441             this.fireEvent("rowremoved", this, index, record);
56442         }
56443     },
56444
56445     onLoad : function(){
56446         this.scrollToTop();
56447     },
56448
56449     /**
56450      * Scrolls the grid to the top
56451      */
56452     scrollToTop : function(){
56453         if(this.scroller){
56454             this.scroller.dom.scrollTop = 0;
56455             this.syncScroll();
56456         }
56457     },
56458
56459     /**
56460      * Gets a panel in the header of the grid that can be used for toolbars etc.
56461      * After modifying the contents of this panel a call to grid.autoSize() may be
56462      * required to register any changes in size.
56463      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56464      * @return Roo.Element
56465      */
56466     getHeaderPanel : function(doShow){
56467         if(doShow){
56468             this.headerPanel.show();
56469         }
56470         return this.headerPanel;
56471     },
56472
56473     /**
56474      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56475      * After modifying the contents of this panel a call to grid.autoSize() may be
56476      * required to register any changes in size.
56477      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56478      * @return Roo.Element
56479      */
56480     getFooterPanel : function(doShow){
56481         if(doShow){
56482             this.footerPanel.show();
56483         }
56484         return this.footerPanel;
56485     },
56486
56487     initElements : function(){
56488         var E = Roo.Element;
56489         var el = this.grid.getGridEl().dom.firstChild;
56490         var cs = el.childNodes;
56491
56492         this.el = new E(el);
56493         
56494          this.focusEl = new E(el.firstChild);
56495         this.focusEl.swallowEvent("click", true);
56496         
56497         this.headerPanel = new E(cs[1]);
56498         this.headerPanel.enableDisplayMode("block");
56499
56500         this.scroller = new E(cs[2]);
56501         this.scrollSizer = new E(this.scroller.dom.firstChild);
56502
56503         this.lockedWrap = new E(cs[3]);
56504         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56505         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56506
56507         this.mainWrap = new E(cs[4]);
56508         this.mainHd = new E(this.mainWrap.dom.firstChild);
56509         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56510
56511         this.footerPanel = new E(cs[5]);
56512         this.footerPanel.enableDisplayMode("block");
56513
56514         this.resizeProxy = new E(cs[6]);
56515
56516         this.headerSelector = String.format(
56517            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56518            this.lockedHd.id, this.mainHd.id
56519         );
56520
56521         this.splitterSelector = String.format(
56522            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56523            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56524         );
56525     },
56526     idToCssName : function(s)
56527     {
56528         return s.replace(/[^a-z0-9]+/ig, '-');
56529     },
56530
56531     getHeaderCell : function(index){
56532         return Roo.DomQuery.select(this.headerSelector)[index];
56533     },
56534
56535     getHeaderCellMeasure : function(index){
56536         return this.getHeaderCell(index).firstChild;
56537     },
56538
56539     getHeaderCellText : function(index){
56540         return this.getHeaderCell(index).firstChild.firstChild;
56541     },
56542
56543     getLockedTable : function(){
56544         return this.lockedBody.dom.firstChild;
56545     },
56546
56547     getBodyTable : function(){
56548         return this.mainBody.dom.firstChild;
56549     },
56550
56551     getLockedRow : function(index){
56552         return this.getLockedTable().rows[index];
56553     },
56554
56555     getRow : function(index){
56556         return this.getBodyTable().rows[index];
56557     },
56558
56559     getRowComposite : function(index){
56560         if(!this.rowEl){
56561             this.rowEl = new Roo.CompositeElementLite();
56562         }
56563         var els = [], lrow, mrow;
56564         if(lrow = this.getLockedRow(index)){
56565             els.push(lrow);
56566         }
56567         if(mrow = this.getRow(index)){
56568             els.push(mrow);
56569         }
56570         this.rowEl.elements = els;
56571         return this.rowEl;
56572     },
56573     /**
56574      * Gets the 'td' of the cell
56575      * 
56576      * @param {Integer} rowIndex row to select
56577      * @param {Integer} colIndex column to select
56578      * 
56579      * @return {Object} 
56580      */
56581     getCell : function(rowIndex, colIndex){
56582         var locked = this.cm.getLockedCount();
56583         var source;
56584         if(colIndex < locked){
56585             source = this.lockedBody.dom.firstChild;
56586         }else{
56587             source = this.mainBody.dom.firstChild;
56588             colIndex -= locked;
56589         }
56590         return source.rows[rowIndex].childNodes[colIndex];
56591     },
56592
56593     getCellText : function(rowIndex, colIndex){
56594         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56595     },
56596
56597     getCellBox : function(cell){
56598         var b = this.fly(cell).getBox();
56599         if(Roo.isOpera){ // opera fails to report the Y
56600             b.y = cell.offsetTop + this.mainBody.getY();
56601         }
56602         return b;
56603     },
56604
56605     getCellIndex : function(cell){
56606         var id = String(cell.className).match(this.cellRE);
56607         if(id){
56608             return parseInt(id[1], 10);
56609         }
56610         return 0;
56611     },
56612
56613     findHeaderIndex : function(n){
56614         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56615         return r ? this.getCellIndex(r) : false;
56616     },
56617
56618     findHeaderCell : function(n){
56619         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56620         return r ? r : false;
56621     },
56622
56623     findRowIndex : function(n){
56624         if(!n){
56625             return false;
56626         }
56627         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56628         return r ? r.rowIndex : false;
56629     },
56630
56631     findCellIndex : function(node){
56632         var stop = this.el.dom;
56633         while(node && node != stop){
56634             if(this.findRE.test(node.className)){
56635                 return this.getCellIndex(node);
56636             }
56637             node = node.parentNode;
56638         }
56639         return false;
56640     },
56641
56642     getColumnId : function(index){
56643         return this.cm.getColumnId(index);
56644     },
56645
56646     getSplitters : function()
56647     {
56648         if(this.splitterSelector){
56649            return Roo.DomQuery.select(this.splitterSelector);
56650         }else{
56651             return null;
56652       }
56653     },
56654
56655     getSplitter : function(index){
56656         return this.getSplitters()[index];
56657     },
56658
56659     onRowOver : function(e, t){
56660         var row;
56661         if((row = this.findRowIndex(t)) !== false){
56662             this.getRowComposite(row).addClass("x-grid-row-over");
56663         }
56664     },
56665
56666     onRowOut : function(e, t){
56667         var row;
56668         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56669             this.getRowComposite(row).removeClass("x-grid-row-over");
56670         }
56671     },
56672
56673     renderHeaders : function(){
56674         var cm = this.cm;
56675         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56676         var cb = [], lb = [], sb = [], lsb = [], p = {};
56677         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56678             p.cellId = "x-grid-hd-0-" + i;
56679             p.splitId = "x-grid-csplit-0-" + i;
56680             p.id = cm.getColumnId(i);
56681             p.value = cm.getColumnHeader(i) || "";
56682             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56683             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56684             if(!cm.isLocked(i)){
56685                 cb[cb.length] = ct.apply(p);
56686                 sb[sb.length] = st.apply(p);
56687             }else{
56688                 lb[lb.length] = ct.apply(p);
56689                 lsb[lsb.length] = st.apply(p);
56690             }
56691         }
56692         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56693                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56694     },
56695
56696     updateHeaders : function(){
56697         var html = this.renderHeaders();
56698         this.lockedHd.update(html[0]);
56699         this.mainHd.update(html[1]);
56700     },
56701
56702     /**
56703      * Focuses the specified row.
56704      * @param {Number} row The row index
56705      */
56706     focusRow : function(row)
56707     {
56708         //Roo.log('GridView.focusRow');
56709         var x = this.scroller.dom.scrollLeft;
56710         this.focusCell(row, 0, false);
56711         this.scroller.dom.scrollLeft = x;
56712     },
56713
56714     /**
56715      * Focuses the specified cell.
56716      * @param {Number} row The row index
56717      * @param {Number} col The column index
56718      * @param {Boolean} hscroll false to disable horizontal scrolling
56719      */
56720     focusCell : function(row, col, hscroll)
56721     {
56722         //Roo.log('GridView.focusCell');
56723         var el = this.ensureVisible(row, col, hscroll);
56724         this.focusEl.alignTo(el, "tl-tl");
56725         if(Roo.isGecko){
56726             this.focusEl.focus();
56727         }else{
56728             this.focusEl.focus.defer(1, this.focusEl);
56729         }
56730     },
56731
56732     /**
56733      * Scrolls the specified cell into view
56734      * @param {Number} row The row index
56735      * @param {Number} col The column index
56736      * @param {Boolean} hscroll false to disable horizontal scrolling
56737      */
56738     ensureVisible : function(row, col, hscroll)
56739     {
56740         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56741         //return null; //disable for testing.
56742         if(typeof row != "number"){
56743             row = row.rowIndex;
56744         }
56745         if(row < 0 && row >= this.ds.getCount()){
56746             return  null;
56747         }
56748         col = (col !== undefined ? col : 0);
56749         var cm = this.grid.colModel;
56750         while(cm.isHidden(col)){
56751             col++;
56752         }
56753
56754         var el = this.getCell(row, col);
56755         if(!el){
56756             return null;
56757         }
56758         var c = this.scroller.dom;
56759
56760         var ctop = parseInt(el.offsetTop, 10);
56761         var cleft = parseInt(el.offsetLeft, 10);
56762         var cbot = ctop + el.offsetHeight;
56763         var cright = cleft + el.offsetWidth;
56764         
56765         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56766         var stop = parseInt(c.scrollTop, 10);
56767         var sleft = parseInt(c.scrollLeft, 10);
56768         var sbot = stop + ch;
56769         var sright = sleft + c.clientWidth;
56770         /*
56771         Roo.log('GridView.ensureVisible:' +
56772                 ' ctop:' + ctop +
56773                 ' c.clientHeight:' + c.clientHeight +
56774                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56775                 ' stop:' + stop +
56776                 ' cbot:' + cbot +
56777                 ' sbot:' + sbot +
56778                 ' ch:' + ch  
56779                 );
56780         */
56781         if(ctop < stop){
56782             c.scrollTop = ctop;
56783             //Roo.log("set scrolltop to ctop DISABLE?");
56784         }else if(cbot > sbot){
56785             //Roo.log("set scrolltop to cbot-ch");
56786             c.scrollTop = cbot-ch;
56787         }
56788         
56789         if(hscroll !== false){
56790             if(cleft < sleft){
56791                 c.scrollLeft = cleft;
56792             }else if(cright > sright){
56793                 c.scrollLeft = cright-c.clientWidth;
56794             }
56795         }
56796          
56797         return el;
56798     },
56799
56800     updateColumns : function(){
56801         this.grid.stopEditing();
56802         var cm = this.grid.colModel, colIds = this.getColumnIds();
56803         //var totalWidth = cm.getTotalWidth();
56804         var pos = 0;
56805         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56806             //if(cm.isHidden(i)) continue;
56807             var w = cm.getColumnWidth(i);
56808             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56809             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56810         }
56811         this.updateSplitters();
56812     },
56813
56814     generateRules : function(cm){
56815         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56816         Roo.util.CSS.removeStyleSheet(rulesId);
56817         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56818             var cid = cm.getColumnId(i);
56819             var align = '';
56820             if(cm.config[i].align){
56821                 align = 'text-align:'+cm.config[i].align+';';
56822             }
56823             var hidden = '';
56824             if(cm.isHidden(i)){
56825                 hidden = 'display:none;';
56826             }
56827             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56828             ruleBuf.push(
56829                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56830                     this.hdSelector, cid, " {\n", align, width, "}\n",
56831                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56832                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56833         }
56834         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56835     },
56836
56837     updateSplitters : function(){
56838         var cm = this.cm, s = this.getSplitters();
56839         if(s){ // splitters not created yet
56840             var pos = 0, locked = true;
56841             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56842                 if(cm.isHidden(i)) {
56843                     continue;
56844                 }
56845                 var w = cm.getColumnWidth(i); // make sure it's a number
56846                 if(!cm.isLocked(i) && locked){
56847                     pos = 0;
56848                     locked = false;
56849                 }
56850                 pos += w;
56851                 s[i].style.left = (pos-this.splitOffset) + "px";
56852             }
56853         }
56854     },
56855
56856     handleHiddenChange : function(colModel, colIndex, hidden){
56857         if(hidden){
56858             this.hideColumn(colIndex);
56859         }else{
56860             this.unhideColumn(colIndex);
56861         }
56862     },
56863
56864     hideColumn : function(colIndex){
56865         var cid = this.getColumnId(colIndex);
56866         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56867         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56868         if(Roo.isSafari){
56869             this.updateHeaders();
56870         }
56871         this.updateSplitters();
56872         this.layout();
56873     },
56874
56875     unhideColumn : function(colIndex){
56876         var cid = this.getColumnId(colIndex);
56877         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56878         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56879
56880         if(Roo.isSafari){
56881             this.updateHeaders();
56882         }
56883         this.updateSplitters();
56884         this.layout();
56885     },
56886
56887     insertRows : function(dm, firstRow, lastRow, isUpdate){
56888         if(firstRow == 0 && lastRow == dm.getCount()-1){
56889             this.refresh();
56890         }else{
56891             if(!isUpdate){
56892                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56893             }
56894             var s = this.getScrollState();
56895             var markup = this.renderRows(firstRow, lastRow);
56896             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56897             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56898             this.restoreScroll(s);
56899             if(!isUpdate){
56900                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56901                 this.syncRowHeights(firstRow, lastRow);
56902                 this.stripeRows(firstRow);
56903                 this.layout();
56904             }
56905         }
56906     },
56907
56908     bufferRows : function(markup, target, index){
56909         var before = null, trows = target.rows, tbody = target.tBodies[0];
56910         if(index < trows.length){
56911             before = trows[index];
56912         }
56913         var b = document.createElement("div");
56914         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
56915         var rows = b.firstChild.rows;
56916         for(var i = 0, len = rows.length; i < len; i++){
56917             if(before){
56918                 tbody.insertBefore(rows[0], before);
56919             }else{
56920                 tbody.appendChild(rows[0]);
56921             }
56922         }
56923         b.innerHTML = "";
56924         b = null;
56925     },
56926
56927     deleteRows : function(dm, firstRow, lastRow){
56928         if(dm.getRowCount()<1){
56929             this.fireEvent("beforerefresh", this);
56930             this.mainBody.update("");
56931             this.lockedBody.update("");
56932             this.fireEvent("refresh", this);
56933         }else{
56934             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
56935             var bt = this.getBodyTable();
56936             var tbody = bt.firstChild;
56937             var rows = bt.rows;
56938             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
56939                 tbody.removeChild(rows[firstRow]);
56940             }
56941             this.stripeRows(firstRow);
56942             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
56943         }
56944     },
56945
56946     updateRows : function(dataSource, firstRow, lastRow){
56947         var s = this.getScrollState();
56948         this.refresh();
56949         this.restoreScroll(s);
56950     },
56951
56952     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
56953         if(!noRefresh){
56954            this.refresh();
56955         }
56956         this.updateHeaderSortState();
56957     },
56958
56959     getScrollState : function(){
56960         
56961         var sb = this.scroller.dom;
56962         return {left: sb.scrollLeft, top: sb.scrollTop};
56963     },
56964
56965     stripeRows : function(startRow){
56966         if(!this.grid.stripeRows || this.ds.getCount() < 1){
56967             return;
56968         }
56969         startRow = startRow || 0;
56970         var rows = this.getBodyTable().rows;
56971         var lrows = this.getLockedTable().rows;
56972         var cls = ' x-grid-row-alt ';
56973         for(var i = startRow, len = rows.length; i < len; i++){
56974             var row = rows[i], lrow = lrows[i];
56975             var isAlt = ((i+1) % 2 == 0);
56976             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
56977             if(isAlt == hasAlt){
56978                 continue;
56979             }
56980             if(isAlt){
56981                 row.className += " x-grid-row-alt";
56982             }else{
56983                 row.className = row.className.replace("x-grid-row-alt", "");
56984             }
56985             if(lrow){
56986                 lrow.className = row.className;
56987             }
56988         }
56989     },
56990
56991     restoreScroll : function(state){
56992         //Roo.log('GridView.restoreScroll');
56993         var sb = this.scroller.dom;
56994         sb.scrollLeft = state.left;
56995         sb.scrollTop = state.top;
56996         this.syncScroll();
56997     },
56998
56999     syncScroll : function(){
57000         //Roo.log('GridView.syncScroll');
57001         var sb = this.scroller.dom;
57002         var sh = this.mainHd.dom;
57003         var bs = this.mainBody.dom;
57004         var lv = this.lockedBody.dom;
57005         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57006         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57007     },
57008
57009     handleScroll : function(e){
57010         this.syncScroll();
57011         var sb = this.scroller.dom;
57012         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57013         e.stopEvent();
57014     },
57015
57016     handleWheel : function(e){
57017         var d = e.getWheelDelta();
57018         this.scroller.dom.scrollTop -= d*22;
57019         // set this here to prevent jumpy scrolling on large tables
57020         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57021         e.stopEvent();
57022     },
57023
57024     renderRows : function(startRow, endRow){
57025         // pull in all the crap needed to render rows
57026         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57027         var colCount = cm.getColumnCount();
57028
57029         if(ds.getCount() < 1){
57030             return ["", ""];
57031         }
57032
57033         // build a map for all the columns
57034         var cs = [];
57035         for(var i = 0; i < colCount; i++){
57036             var name = cm.getDataIndex(i);
57037             cs[i] = {
57038                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57039                 renderer : cm.getRenderer(i),
57040                 id : cm.getColumnId(i),
57041                 locked : cm.isLocked(i),
57042                 has_editor : cm.isCellEditable(i)
57043             };
57044         }
57045
57046         startRow = startRow || 0;
57047         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57048
57049         // records to render
57050         var rs = ds.getRange(startRow, endRow);
57051
57052         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57053     },
57054
57055     // As much as I hate to duplicate code, this was branched because FireFox really hates
57056     // [].join("") on strings. The performance difference was substantial enough to
57057     // branch this function
57058     doRender : Roo.isGecko ?
57059             function(cs, rs, ds, startRow, colCount, stripe){
57060                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57061                 // buffers
57062                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57063                 
57064                 var hasListener = this.grid.hasListener('rowclass');
57065                 var rowcfg = {};
57066                 for(var j = 0, len = rs.length; j < len; j++){
57067                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57068                     for(var i = 0; i < colCount; i++){
57069                         c = cs[i];
57070                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57071                         p.id = c.id;
57072                         p.css = p.attr = "";
57073                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57074                         if(p.value == undefined || p.value === "") {
57075                             p.value = "&#160;";
57076                         }
57077                         if(c.has_editor){
57078                             p.css += ' x-grid-editable-cell';
57079                         }
57080                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57081                             p.css +=  ' x-grid-dirty-cell';
57082                         }
57083                         var markup = ct.apply(p);
57084                         if(!c.locked){
57085                             cb+= markup;
57086                         }else{
57087                             lcb+= markup;
57088                         }
57089                     }
57090                     var alt = [];
57091                     if(stripe && ((rowIndex+1) % 2 == 0)){
57092                         alt.push("x-grid-row-alt")
57093                     }
57094                     if(r.dirty){
57095                         alt.push(  " x-grid-dirty-row");
57096                     }
57097                     rp.cells = lcb;
57098                     if(this.getRowClass){
57099                         alt.push(this.getRowClass(r, rowIndex));
57100                     }
57101                     if (hasListener) {
57102                         rowcfg = {
57103                              
57104                             record: r,
57105                             rowIndex : rowIndex,
57106                             rowClass : ''
57107                         };
57108                         this.grid.fireEvent('rowclass', this, rowcfg);
57109                         alt.push(rowcfg.rowClass);
57110                     }
57111                     rp.alt = alt.join(" ");
57112                     lbuf+= rt.apply(rp);
57113                     rp.cells = cb;
57114                     buf+=  rt.apply(rp);
57115                 }
57116                 return [lbuf, buf];
57117             } :
57118             function(cs, rs, ds, startRow, colCount, stripe){
57119                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57120                 // buffers
57121                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57122                 var hasListener = this.grid.hasListener('rowclass');
57123  
57124                 var rowcfg = {};
57125                 for(var j = 0, len = rs.length; j < len; j++){
57126                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57127                     for(var i = 0; i < colCount; i++){
57128                         c = cs[i];
57129                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57130                         p.id = c.id;
57131                         p.css = p.attr = "";
57132                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57133                         if(p.value == undefined || p.value === "") {
57134                             p.value = "&#160;";
57135                         }
57136                         //Roo.log(c);
57137                          if(c.has_editor){
57138                             p.css += ' x-grid-editable-cell';
57139                         }
57140                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57141                             p.css += ' x-grid-dirty-cell' 
57142                         }
57143                         
57144                         var markup = ct.apply(p);
57145                         if(!c.locked){
57146                             cb[cb.length] = markup;
57147                         }else{
57148                             lcb[lcb.length] = markup;
57149                         }
57150                     }
57151                     var alt = [];
57152                     if(stripe && ((rowIndex+1) % 2 == 0)){
57153                         alt.push( "x-grid-row-alt");
57154                     }
57155                     if(r.dirty){
57156                         alt.push(" x-grid-dirty-row");
57157                     }
57158                     rp.cells = lcb;
57159                     if(this.getRowClass){
57160                         alt.push( this.getRowClass(r, rowIndex));
57161                     }
57162                     if (hasListener) {
57163                         rowcfg = {
57164                              
57165                             record: r,
57166                             rowIndex : rowIndex,
57167                             rowClass : ''
57168                         };
57169                         this.grid.fireEvent('rowclass', this, rowcfg);
57170                         alt.push(rowcfg.rowClass);
57171                     }
57172                     
57173                     rp.alt = alt.join(" ");
57174                     rp.cells = lcb.join("");
57175                     lbuf[lbuf.length] = rt.apply(rp);
57176                     rp.cells = cb.join("");
57177                     buf[buf.length] =  rt.apply(rp);
57178                 }
57179                 return [lbuf.join(""), buf.join("")];
57180             },
57181
57182     renderBody : function(){
57183         var markup = this.renderRows();
57184         var bt = this.templates.body;
57185         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57186     },
57187
57188     /**
57189      * Refreshes the grid
57190      * @param {Boolean} headersToo
57191      */
57192     refresh : function(headersToo){
57193         this.fireEvent("beforerefresh", this);
57194         this.grid.stopEditing();
57195         var result = this.renderBody();
57196         this.lockedBody.update(result[0]);
57197         this.mainBody.update(result[1]);
57198         if(headersToo === true){
57199             this.updateHeaders();
57200             this.updateColumns();
57201             this.updateSplitters();
57202             this.updateHeaderSortState();
57203         }
57204         this.syncRowHeights();
57205         this.layout();
57206         this.fireEvent("refresh", this);
57207     },
57208
57209     handleColumnMove : function(cm, oldIndex, newIndex){
57210         this.indexMap = null;
57211         var s = this.getScrollState();
57212         this.refresh(true);
57213         this.restoreScroll(s);
57214         this.afterMove(newIndex);
57215     },
57216
57217     afterMove : function(colIndex){
57218         if(this.enableMoveAnim && Roo.enableFx){
57219             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57220         }
57221         // if multisort - fix sortOrder, and reload..
57222         if (this.grid.dataSource.multiSort) {
57223             // the we can call sort again..
57224             var dm = this.grid.dataSource;
57225             var cm = this.grid.colModel;
57226             var so = [];
57227             for(var i = 0; i < cm.config.length; i++ ) {
57228                 
57229                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57230                     continue; // dont' bother, it's not in sort list or being set.
57231                 }
57232                 
57233                 so.push(cm.config[i].dataIndex);
57234             };
57235             dm.sortOrder = so;
57236             dm.load(dm.lastOptions);
57237             
57238             
57239         }
57240         
57241     },
57242
57243     updateCell : function(dm, rowIndex, dataIndex){
57244         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57245         if(typeof colIndex == "undefined"){ // not present in grid
57246             return;
57247         }
57248         var cm = this.grid.colModel;
57249         var cell = this.getCell(rowIndex, colIndex);
57250         var cellText = this.getCellText(rowIndex, colIndex);
57251
57252         var p = {
57253             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57254             id : cm.getColumnId(colIndex),
57255             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57256         };
57257         var renderer = cm.getRenderer(colIndex);
57258         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57259         if(typeof val == "undefined" || val === "") {
57260             val = "&#160;";
57261         }
57262         cellText.innerHTML = val;
57263         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57264         this.syncRowHeights(rowIndex, rowIndex);
57265     },
57266
57267     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57268         var maxWidth = 0;
57269         if(this.grid.autoSizeHeaders){
57270             var h = this.getHeaderCellMeasure(colIndex);
57271             maxWidth = Math.max(maxWidth, h.scrollWidth);
57272         }
57273         var tb, index;
57274         if(this.cm.isLocked(colIndex)){
57275             tb = this.getLockedTable();
57276             index = colIndex;
57277         }else{
57278             tb = this.getBodyTable();
57279             index = colIndex - this.cm.getLockedCount();
57280         }
57281         if(tb && tb.rows){
57282             var rows = tb.rows;
57283             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57284             for(var i = 0; i < stopIndex; i++){
57285                 var cell = rows[i].childNodes[index].firstChild;
57286                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57287             }
57288         }
57289         return maxWidth + /*margin for error in IE*/ 5;
57290     },
57291     /**
57292      * Autofit a column to its content.
57293      * @param {Number} colIndex
57294      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57295      */
57296      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57297          if(this.cm.isHidden(colIndex)){
57298              return; // can't calc a hidden column
57299          }
57300         if(forceMinSize){
57301             var cid = this.cm.getColumnId(colIndex);
57302             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57303            if(this.grid.autoSizeHeaders){
57304                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57305            }
57306         }
57307         var newWidth = this.calcColumnWidth(colIndex);
57308         this.cm.setColumnWidth(colIndex,
57309             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57310         if(!suppressEvent){
57311             this.grid.fireEvent("columnresize", colIndex, newWidth);
57312         }
57313     },
57314
57315     /**
57316      * Autofits all columns to their content and then expands to fit any extra space in the grid
57317      */
57318      autoSizeColumns : function(){
57319         var cm = this.grid.colModel;
57320         var colCount = cm.getColumnCount();
57321         for(var i = 0; i < colCount; i++){
57322             this.autoSizeColumn(i, true, true);
57323         }
57324         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57325             this.fitColumns();
57326         }else{
57327             this.updateColumns();
57328             this.layout();
57329         }
57330     },
57331
57332     /**
57333      * Autofits all columns to the grid's width proportionate with their current size
57334      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57335      */
57336     fitColumns : function(reserveScrollSpace){
57337         var cm = this.grid.colModel;
57338         var colCount = cm.getColumnCount();
57339         var cols = [];
57340         var width = 0;
57341         var i, w;
57342         for (i = 0; i < colCount; i++){
57343             if(!cm.isHidden(i) && !cm.isFixed(i)){
57344                 w = cm.getColumnWidth(i);
57345                 cols.push(i);
57346                 cols.push(w);
57347                 width += w;
57348             }
57349         }
57350         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57351         if(reserveScrollSpace){
57352             avail -= 17;
57353         }
57354         var frac = (avail - cm.getTotalWidth())/width;
57355         while (cols.length){
57356             w = cols.pop();
57357             i = cols.pop();
57358             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57359         }
57360         this.updateColumns();
57361         this.layout();
57362     },
57363
57364     onRowSelect : function(rowIndex){
57365         var row = this.getRowComposite(rowIndex);
57366         row.addClass("x-grid-row-selected");
57367     },
57368
57369     onRowDeselect : function(rowIndex){
57370         var row = this.getRowComposite(rowIndex);
57371         row.removeClass("x-grid-row-selected");
57372     },
57373
57374     onCellSelect : function(row, col){
57375         var cell = this.getCell(row, col);
57376         if(cell){
57377             Roo.fly(cell).addClass("x-grid-cell-selected");
57378         }
57379     },
57380
57381     onCellDeselect : function(row, col){
57382         var cell = this.getCell(row, col);
57383         if(cell){
57384             Roo.fly(cell).removeClass("x-grid-cell-selected");
57385         }
57386     },
57387
57388     updateHeaderSortState : function(){
57389         
57390         // sort state can be single { field: xxx, direction : yyy}
57391         // or   { xxx=>ASC , yyy : DESC ..... }
57392         
57393         var mstate = {};
57394         if (!this.ds.multiSort) { 
57395             var state = this.ds.getSortState();
57396             if(!state){
57397                 return;
57398             }
57399             mstate[state.field] = state.direction;
57400             // FIXME... - this is not used here.. but might be elsewhere..
57401             this.sortState = state;
57402             
57403         } else {
57404             mstate = this.ds.sortToggle;
57405         }
57406         //remove existing sort classes..
57407         
57408         var sc = this.sortClasses;
57409         var hds = this.el.select(this.headerSelector).removeClass(sc);
57410         
57411         for(var f in mstate) {
57412         
57413             var sortColumn = this.cm.findColumnIndex(f);
57414             
57415             if(sortColumn != -1){
57416                 var sortDir = mstate[f];        
57417                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57418             }
57419         }
57420         
57421          
57422         
57423     },
57424
57425
57426     handleHeaderClick : function(g, index,e){
57427         
57428         Roo.log("header click");
57429         
57430         if (Roo.isTouch) {
57431             // touch events on header are handled by context
57432             this.handleHdCtx(g,index,e);
57433             return;
57434         }
57435         
57436         
57437         if(this.headersDisabled){
57438             return;
57439         }
57440         var dm = g.dataSource, cm = g.colModel;
57441         if(!cm.isSortable(index)){
57442             return;
57443         }
57444         g.stopEditing();
57445         
57446         if (dm.multiSort) {
57447             // update the sortOrder
57448             var so = [];
57449             for(var i = 0; i < cm.config.length; i++ ) {
57450                 
57451                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57452                     continue; // dont' bother, it's not in sort list or being set.
57453                 }
57454                 
57455                 so.push(cm.config[i].dataIndex);
57456             };
57457             dm.sortOrder = so;
57458         }
57459         
57460         
57461         dm.sort(cm.getDataIndex(index));
57462     },
57463
57464
57465     destroy : function(){
57466         if(this.colMenu){
57467             this.colMenu.removeAll();
57468             Roo.menu.MenuMgr.unregister(this.colMenu);
57469             this.colMenu.getEl().remove();
57470             delete this.colMenu;
57471         }
57472         if(this.hmenu){
57473             this.hmenu.removeAll();
57474             Roo.menu.MenuMgr.unregister(this.hmenu);
57475             this.hmenu.getEl().remove();
57476             delete this.hmenu;
57477         }
57478         if(this.grid.enableColumnMove){
57479             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57480             if(dds){
57481                 for(var dd in dds){
57482                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57483                         var elid = dds[dd].dragElId;
57484                         dds[dd].unreg();
57485                         Roo.get(elid).remove();
57486                     } else if(dds[dd].config.isTarget){
57487                         dds[dd].proxyTop.remove();
57488                         dds[dd].proxyBottom.remove();
57489                         dds[dd].unreg();
57490                     }
57491                     if(Roo.dd.DDM.locationCache[dd]){
57492                         delete Roo.dd.DDM.locationCache[dd];
57493                     }
57494                 }
57495                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57496             }
57497         }
57498         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57499         this.bind(null, null);
57500         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57501     },
57502
57503     handleLockChange : function(){
57504         this.refresh(true);
57505     },
57506
57507     onDenyColumnLock : function(){
57508
57509     },
57510
57511     onDenyColumnHide : function(){
57512
57513     },
57514
57515     handleHdMenuClick : function(item){
57516         var index = this.hdCtxIndex;
57517         var cm = this.cm, ds = this.ds;
57518         switch(item.id){
57519             case "asc":
57520                 ds.sort(cm.getDataIndex(index), "ASC");
57521                 break;
57522             case "desc":
57523                 ds.sort(cm.getDataIndex(index), "DESC");
57524                 break;
57525             case "lock":
57526                 var lc = cm.getLockedCount();
57527                 if(cm.getColumnCount(true) <= lc+1){
57528                     this.onDenyColumnLock();
57529                     return;
57530                 }
57531                 if(lc != index){
57532                     cm.setLocked(index, true, true);
57533                     cm.moveColumn(index, lc);
57534                     this.grid.fireEvent("columnmove", index, lc);
57535                 }else{
57536                     cm.setLocked(index, true);
57537                 }
57538             break;
57539             case "unlock":
57540                 var lc = cm.getLockedCount();
57541                 if((lc-1) != index){
57542                     cm.setLocked(index, false, true);
57543                     cm.moveColumn(index, lc-1);
57544                     this.grid.fireEvent("columnmove", index, lc-1);
57545                 }else{
57546                     cm.setLocked(index, false);
57547                 }
57548             break;
57549             case 'wider': // used to expand cols on touch..
57550             case 'narrow':
57551                 var cw = cm.getColumnWidth(index);
57552                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57553                 cw = Math.max(0, cw);
57554                 cw = Math.min(cw,4000);
57555                 cm.setColumnWidth(index, cw);
57556                 break;
57557                 
57558             default:
57559                 index = cm.getIndexById(item.id.substr(4));
57560                 if(index != -1){
57561                     if(item.checked && cm.getColumnCount(true) <= 1){
57562                         this.onDenyColumnHide();
57563                         return false;
57564                     }
57565                     cm.setHidden(index, item.checked);
57566                 }
57567         }
57568         return true;
57569     },
57570
57571     beforeColMenuShow : function(){
57572         var cm = this.cm,  colCount = cm.getColumnCount();
57573         this.colMenu.removeAll();
57574         for(var i = 0; i < colCount; i++){
57575             this.colMenu.add(new Roo.menu.CheckItem({
57576                 id: "col-"+cm.getColumnId(i),
57577                 text: cm.getColumnHeader(i),
57578                 checked: !cm.isHidden(i),
57579                 hideOnClick:false
57580             }));
57581         }
57582     },
57583
57584     handleHdCtx : function(g, index, e){
57585         e.stopEvent();
57586         var hd = this.getHeaderCell(index);
57587         this.hdCtxIndex = index;
57588         var ms = this.hmenu.items, cm = this.cm;
57589         ms.get("asc").setDisabled(!cm.isSortable(index));
57590         ms.get("desc").setDisabled(!cm.isSortable(index));
57591         if(this.grid.enableColLock !== false){
57592             ms.get("lock").setDisabled(cm.isLocked(index));
57593             ms.get("unlock").setDisabled(!cm.isLocked(index));
57594         }
57595         this.hmenu.show(hd, "tl-bl");
57596     },
57597
57598     handleHdOver : function(e){
57599         var hd = this.findHeaderCell(e.getTarget());
57600         if(hd && !this.headersDisabled){
57601             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57602                this.fly(hd).addClass("x-grid-hd-over");
57603             }
57604         }
57605     },
57606
57607     handleHdOut : function(e){
57608         var hd = this.findHeaderCell(e.getTarget());
57609         if(hd){
57610             this.fly(hd).removeClass("x-grid-hd-over");
57611         }
57612     },
57613
57614     handleSplitDblClick : function(e, t){
57615         var i = this.getCellIndex(t);
57616         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57617             this.autoSizeColumn(i, true);
57618             this.layout();
57619         }
57620     },
57621
57622     render : function(){
57623
57624         var cm = this.cm;
57625         var colCount = cm.getColumnCount();
57626
57627         if(this.grid.monitorWindowResize === true){
57628             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57629         }
57630         var header = this.renderHeaders();
57631         var body = this.templates.body.apply({rows:""});
57632         var html = this.templates.master.apply({
57633             lockedBody: body,
57634             body: body,
57635             lockedHeader: header[0],
57636             header: header[1]
57637         });
57638
57639         //this.updateColumns();
57640
57641         this.grid.getGridEl().dom.innerHTML = html;
57642
57643         this.initElements();
57644         
57645         // a kludge to fix the random scolling effect in webkit
57646         this.el.on("scroll", function() {
57647             this.el.dom.scrollTop=0; // hopefully not recursive..
57648         },this);
57649
57650         this.scroller.on("scroll", this.handleScroll, this);
57651         this.lockedBody.on("mousewheel", this.handleWheel, this);
57652         this.mainBody.on("mousewheel", this.handleWheel, this);
57653
57654         this.mainHd.on("mouseover", this.handleHdOver, this);
57655         this.mainHd.on("mouseout", this.handleHdOut, this);
57656         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57657                 {delegate: "."+this.splitClass});
57658
57659         this.lockedHd.on("mouseover", this.handleHdOver, this);
57660         this.lockedHd.on("mouseout", this.handleHdOut, this);
57661         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57662                 {delegate: "."+this.splitClass});
57663
57664         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57665             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57666         }
57667
57668         this.updateSplitters();
57669
57670         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57671             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57672             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57673         }
57674
57675         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57676             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57677             this.hmenu.add(
57678                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57679                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57680             );
57681             if(this.grid.enableColLock !== false){
57682                 this.hmenu.add('-',
57683                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57684                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57685                 );
57686             }
57687             if (Roo.isTouch) {
57688                  this.hmenu.add('-',
57689                     {id:"wider", text: this.columnsWiderText},
57690                     {id:"narrow", text: this.columnsNarrowText }
57691                 );
57692                 
57693                  
57694             }
57695             
57696             if(this.grid.enableColumnHide !== false){
57697
57698                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57699                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57700                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57701
57702                 this.hmenu.add('-',
57703                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57704                 );
57705             }
57706             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57707
57708             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57709         }
57710
57711         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57712             this.dd = new Roo.grid.GridDragZone(this.grid, {
57713                 ddGroup : this.grid.ddGroup || 'GridDD'
57714             });
57715             
57716         }
57717
57718         /*
57719         for(var i = 0; i < colCount; i++){
57720             if(cm.isHidden(i)){
57721                 this.hideColumn(i);
57722             }
57723             if(cm.config[i].align){
57724                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57725                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57726             }
57727         }*/
57728         
57729         this.updateHeaderSortState();
57730
57731         this.beforeInitialResize();
57732         this.layout(true);
57733
57734         // two part rendering gives faster view to the user
57735         this.renderPhase2.defer(1, this);
57736     },
57737
57738     renderPhase2 : function(){
57739         // render the rows now
57740         this.refresh();
57741         if(this.grid.autoSizeColumns){
57742             this.autoSizeColumns();
57743         }
57744     },
57745
57746     beforeInitialResize : function(){
57747
57748     },
57749
57750     onColumnSplitterMoved : function(i, w){
57751         this.userResized = true;
57752         var cm = this.grid.colModel;
57753         cm.setColumnWidth(i, w, true);
57754         var cid = cm.getColumnId(i);
57755         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57756         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57757         this.updateSplitters();
57758         this.layout();
57759         this.grid.fireEvent("columnresize", i, w);
57760     },
57761
57762     syncRowHeights : function(startIndex, endIndex){
57763         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57764             startIndex = startIndex || 0;
57765             var mrows = this.getBodyTable().rows;
57766             var lrows = this.getLockedTable().rows;
57767             var len = mrows.length-1;
57768             endIndex = Math.min(endIndex || len, len);
57769             for(var i = startIndex; i <= endIndex; i++){
57770                 var m = mrows[i], l = lrows[i];
57771                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57772                 m.style.height = l.style.height = h + "px";
57773             }
57774         }
57775     },
57776
57777     layout : function(initialRender, is2ndPass)
57778     {
57779         var g = this.grid;
57780         var auto = g.autoHeight;
57781         var scrollOffset = 16;
57782         var c = g.getGridEl(), cm = this.cm,
57783                 expandCol = g.autoExpandColumn,
57784                 gv = this;
57785         //c.beginMeasure();
57786
57787         if(!c.dom.offsetWidth){ // display:none?
57788             if(initialRender){
57789                 this.lockedWrap.show();
57790                 this.mainWrap.show();
57791             }
57792             return;
57793         }
57794
57795         var hasLock = this.cm.isLocked(0);
57796
57797         var tbh = this.headerPanel.getHeight();
57798         var bbh = this.footerPanel.getHeight();
57799
57800         if(auto){
57801             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57802             var newHeight = ch + c.getBorderWidth("tb");
57803             if(g.maxHeight){
57804                 newHeight = Math.min(g.maxHeight, newHeight);
57805             }
57806             c.setHeight(newHeight);
57807         }
57808
57809         if(g.autoWidth){
57810             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57811         }
57812
57813         var s = this.scroller;
57814
57815         var csize = c.getSize(true);
57816
57817         this.el.setSize(csize.width, csize.height);
57818
57819         this.headerPanel.setWidth(csize.width);
57820         this.footerPanel.setWidth(csize.width);
57821
57822         var hdHeight = this.mainHd.getHeight();
57823         var vw = csize.width;
57824         var vh = csize.height - (tbh + bbh);
57825
57826         s.setSize(vw, vh);
57827
57828         var bt = this.getBodyTable();
57829         
57830         if(cm.getLockedCount() == cm.config.length){
57831             bt = this.getLockedTable();
57832         }
57833         
57834         var ltWidth = hasLock ?
57835                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57836
57837         var scrollHeight = bt.offsetHeight;
57838         var scrollWidth = ltWidth + bt.offsetWidth;
57839         var vscroll = false, hscroll = false;
57840
57841         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57842
57843         var lw = this.lockedWrap, mw = this.mainWrap;
57844         var lb = this.lockedBody, mb = this.mainBody;
57845
57846         setTimeout(function(){
57847             var t = s.dom.offsetTop;
57848             var w = s.dom.clientWidth,
57849                 h = s.dom.clientHeight;
57850
57851             lw.setTop(t);
57852             lw.setSize(ltWidth, h);
57853
57854             mw.setLeftTop(ltWidth, t);
57855             mw.setSize(w-ltWidth, h);
57856
57857             lb.setHeight(h-hdHeight);
57858             mb.setHeight(h-hdHeight);
57859
57860             if(is2ndPass !== true && !gv.userResized && expandCol){
57861                 // high speed resize without full column calculation
57862                 
57863                 var ci = cm.getIndexById(expandCol);
57864                 if (ci < 0) {
57865                     ci = cm.findColumnIndex(expandCol);
57866                 }
57867                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57868                 var expandId = cm.getColumnId(ci);
57869                 var  tw = cm.getTotalWidth(false);
57870                 var currentWidth = cm.getColumnWidth(ci);
57871                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57872                 if(currentWidth != cw){
57873                     cm.setColumnWidth(ci, cw, true);
57874                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57875                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57876                     gv.updateSplitters();
57877                     gv.layout(false, true);
57878                 }
57879             }
57880
57881             if(initialRender){
57882                 lw.show();
57883                 mw.show();
57884             }
57885             //c.endMeasure();
57886         }, 10);
57887     },
57888
57889     onWindowResize : function(){
57890         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57891             return;
57892         }
57893         this.layout();
57894     },
57895
57896     appendFooter : function(parentEl){
57897         return null;
57898     },
57899
57900     sortAscText : "Sort Ascending",
57901     sortDescText : "Sort Descending",
57902     lockText : "Lock Column",
57903     unlockText : "Unlock Column",
57904     columnsText : "Columns",
57905  
57906     columnsWiderText : "Wider",
57907     columnsNarrowText : "Thinner"
57908 });
57909
57910
57911 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
57912     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
57913     this.proxy.el.addClass('x-grid3-col-dd');
57914 };
57915
57916 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
57917     handleMouseDown : function(e){
57918
57919     },
57920
57921     callHandleMouseDown : function(e){
57922         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
57923     }
57924 });
57925 /*
57926  * Based on:
57927  * Ext JS Library 1.1.1
57928  * Copyright(c) 2006-2007, Ext JS, LLC.
57929  *
57930  * Originally Released Under LGPL - original licence link has changed is not relivant.
57931  *
57932  * Fork - LGPL
57933  * <script type="text/javascript">
57934  */
57935  
57936 // private
57937 // This is a support class used internally by the Grid components
57938 Roo.grid.SplitDragZone = function(grid, hd, hd2){
57939     this.grid = grid;
57940     this.view = grid.getView();
57941     this.proxy = this.view.resizeProxy;
57942     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
57943         "gridSplitters" + this.grid.getGridEl().id, {
57944         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
57945     });
57946     this.setHandleElId(Roo.id(hd));
57947     this.setOuterHandleElId(Roo.id(hd2));
57948     this.scroll = false;
57949 };
57950 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
57951     fly: Roo.Element.fly,
57952
57953     b4StartDrag : function(x, y){
57954         this.view.headersDisabled = true;
57955         this.proxy.setHeight(this.view.mainWrap.getHeight());
57956         var w = this.cm.getColumnWidth(this.cellIndex);
57957         var minw = Math.max(w-this.grid.minColumnWidth, 0);
57958         this.resetConstraints();
57959         this.setXConstraint(minw, 1000);
57960         this.setYConstraint(0, 0);
57961         this.minX = x - minw;
57962         this.maxX = x + 1000;
57963         this.startPos = x;
57964         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
57965     },
57966
57967
57968     handleMouseDown : function(e){
57969         ev = Roo.EventObject.setEvent(e);
57970         var t = this.fly(ev.getTarget());
57971         if(t.hasClass("x-grid-split")){
57972             this.cellIndex = this.view.getCellIndex(t.dom);
57973             this.split = t.dom;
57974             this.cm = this.grid.colModel;
57975             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
57976                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
57977             }
57978         }
57979     },
57980
57981     endDrag : function(e){
57982         this.view.headersDisabled = false;
57983         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
57984         var diff = endX - this.startPos;
57985         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
57986     },
57987
57988     autoOffset : function(){
57989         this.setDelta(0,0);
57990     }
57991 });/*
57992  * Based on:
57993  * Ext JS Library 1.1.1
57994  * Copyright(c) 2006-2007, Ext JS, LLC.
57995  *
57996  * Originally Released Under LGPL - original licence link has changed is not relivant.
57997  *
57998  * Fork - LGPL
57999  * <script type="text/javascript">
58000  */
58001  
58002 // private
58003 // This is a support class used internally by the Grid components
58004 Roo.grid.GridDragZone = function(grid, config){
58005     this.view = grid.getView();
58006     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58007     if(this.view.lockedBody){
58008         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58009         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58010     }
58011     this.scroll = false;
58012     this.grid = grid;
58013     this.ddel = document.createElement('div');
58014     this.ddel.className = 'x-grid-dd-wrap';
58015 };
58016
58017 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58018     ddGroup : "GridDD",
58019
58020     getDragData : function(e){
58021         var t = Roo.lib.Event.getTarget(e);
58022         var rowIndex = this.view.findRowIndex(t);
58023         var sm = this.grid.selModel;
58024             
58025         //Roo.log(rowIndex);
58026         
58027         if (sm.getSelectedCell) {
58028             // cell selection..
58029             if (!sm.getSelectedCell()) {
58030                 return false;
58031             }
58032             if (rowIndex != sm.getSelectedCell()[0]) {
58033                 return false;
58034             }
58035         
58036         }
58037         if (sm.getSelections && sm.getSelections().length < 1) {
58038             return false;
58039         }
58040         
58041         
58042         // before it used to all dragging of unseleted... - now we dont do that.
58043         if(rowIndex !== false){
58044             
58045             // if editorgrid.. 
58046             
58047             
58048             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58049                
58050             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58051               //  
58052             //}
58053             if (e.hasModifier()){
58054                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58055             }
58056             
58057             Roo.log("getDragData");
58058             
58059             return {
58060                 grid: this.grid,
58061                 ddel: this.ddel,
58062                 rowIndex: rowIndex,
58063                 selections: sm.getSelections ? sm.getSelections() : (
58064                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58065             };
58066         }
58067         return false;
58068     },
58069     
58070     
58071     onInitDrag : function(e){
58072         var data = this.dragData;
58073         this.ddel.innerHTML = this.grid.getDragDropText();
58074         this.proxy.update(this.ddel);
58075         // fire start drag?
58076     },
58077
58078     afterRepair : function(){
58079         this.dragging = false;
58080     },
58081
58082     getRepairXY : function(e, data){
58083         return false;
58084     },
58085
58086     onEndDrag : function(data, e){
58087         // fire end drag?
58088     },
58089
58090     onValidDrop : function(dd, e, id){
58091         // fire drag drop?
58092         this.hideProxy();
58093     },
58094
58095     beforeInvalidDrop : function(e, id){
58096
58097     }
58098 });/*
58099  * Based on:
58100  * Ext JS Library 1.1.1
58101  * Copyright(c) 2006-2007, Ext JS, LLC.
58102  *
58103  * Originally Released Under LGPL - original licence link has changed is not relivant.
58104  *
58105  * Fork - LGPL
58106  * <script type="text/javascript">
58107  */
58108  
58109
58110 /**
58111  * @class Roo.grid.ColumnModel
58112  * @extends Roo.util.Observable
58113  * This is the default implementation of a ColumnModel used by the Grid. It defines
58114  * the columns in the grid.
58115  * <br>Usage:<br>
58116  <pre><code>
58117  var colModel = new Roo.grid.ColumnModel([
58118         {header: "Ticker", width: 60, sortable: true, locked: true},
58119         {header: "Company Name", width: 150, sortable: true},
58120         {header: "Market Cap.", width: 100, sortable: true},
58121         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58122         {header: "Employees", width: 100, sortable: true, resizable: false}
58123  ]);
58124  </code></pre>
58125  * <p>
58126  
58127  * The config options listed for this class are options which may appear in each
58128  * individual column definition.
58129  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58130  * @constructor
58131  * @param {Object} config An Array of column config objects. See this class's
58132  * config objects for details.
58133 */
58134 Roo.grid.ColumnModel = function(config){
58135         /**
58136      * The config passed into the constructor
58137      */
58138     this.config = config;
58139     this.lookup = {};
58140
58141     // if no id, create one
58142     // if the column does not have a dataIndex mapping,
58143     // map it to the order it is in the config
58144     for(var i = 0, len = config.length; i < len; i++){
58145         var c = config[i];
58146         if(typeof c.dataIndex == "undefined"){
58147             c.dataIndex = i;
58148         }
58149         if(typeof c.renderer == "string"){
58150             c.renderer = Roo.util.Format[c.renderer];
58151         }
58152         if(typeof c.id == "undefined"){
58153             c.id = Roo.id();
58154         }
58155         if(c.editor && c.editor.xtype){
58156             c.editor  = Roo.factory(c.editor, Roo.grid);
58157         }
58158         if(c.editor && c.editor.isFormField){
58159             c.editor = new Roo.grid.GridEditor(c.editor);
58160         }
58161         this.lookup[c.id] = c;
58162     }
58163
58164     /**
58165      * The width of columns which have no width specified (defaults to 100)
58166      * @type Number
58167      */
58168     this.defaultWidth = 100;
58169
58170     /**
58171      * Default sortable of columns which have no sortable specified (defaults to false)
58172      * @type Boolean
58173      */
58174     this.defaultSortable = false;
58175
58176     this.addEvents({
58177         /**
58178              * @event widthchange
58179              * Fires when the width of a column changes.
58180              * @param {ColumnModel} this
58181              * @param {Number} columnIndex The column index
58182              * @param {Number} newWidth The new width
58183              */
58184             "widthchange": true,
58185         /**
58186              * @event headerchange
58187              * Fires when the text of a header changes.
58188              * @param {ColumnModel} this
58189              * @param {Number} columnIndex The column index
58190              * @param {Number} newText The new header text
58191              */
58192             "headerchange": true,
58193         /**
58194              * @event hiddenchange
58195              * Fires when a column is hidden or "unhidden".
58196              * @param {ColumnModel} this
58197              * @param {Number} columnIndex The column index
58198              * @param {Boolean} hidden true if hidden, false otherwise
58199              */
58200             "hiddenchange": true,
58201             /**
58202          * @event columnmoved
58203          * Fires when a column is moved.
58204          * @param {ColumnModel} this
58205          * @param {Number} oldIndex
58206          * @param {Number} newIndex
58207          */
58208         "columnmoved" : true,
58209         /**
58210          * @event columlockchange
58211          * Fires when a column's locked state is changed
58212          * @param {ColumnModel} this
58213          * @param {Number} colIndex
58214          * @param {Boolean} locked true if locked
58215          */
58216         "columnlockchange" : true
58217     });
58218     Roo.grid.ColumnModel.superclass.constructor.call(this);
58219 };
58220 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58221     /**
58222      * @cfg {String} header The header text to display in the Grid view.
58223      */
58224     /**
58225      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58226      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58227      * specified, the column's index is used as an index into the Record's data Array.
58228      */
58229     /**
58230      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58231      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58232      */
58233     /**
58234      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58235      * Defaults to the value of the {@link #defaultSortable} property.
58236      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58237      */
58238     /**
58239      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58240      */
58241     /**
58242      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58243      */
58244     /**
58245      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58246      */
58247     /**
58248      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58249      */
58250     /**
58251      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58252      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58253      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58254      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58255      */
58256        /**
58257      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58258      */
58259     /**
58260      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58261      */
58262     /**
58263      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58264      */
58265     /**
58266      * @cfg {String} cursor (Optional)
58267      */
58268     /**
58269      * @cfg {String} tooltip (Optional)
58270      */
58271     /**
58272      * @cfg {Number} xs (Optional)
58273      */
58274     /**
58275      * @cfg {Number} sm (Optional)
58276      */
58277     /**
58278      * @cfg {Number} md (Optional)
58279      */
58280     /**
58281      * @cfg {Number} lg (Optional)
58282      */
58283     /**
58284      * Returns the id of the column at the specified index.
58285      * @param {Number} index The column index
58286      * @return {String} the id
58287      */
58288     getColumnId : function(index){
58289         return this.config[index].id;
58290     },
58291
58292     /**
58293      * Returns the column for a specified id.
58294      * @param {String} id The column id
58295      * @return {Object} the column
58296      */
58297     getColumnById : function(id){
58298         return this.lookup[id];
58299     },
58300
58301     
58302     /**
58303      * Returns the column for a specified dataIndex.
58304      * @param {String} dataIndex The column dataIndex
58305      * @return {Object|Boolean} the column or false if not found
58306      */
58307     getColumnByDataIndex: function(dataIndex){
58308         var index = this.findColumnIndex(dataIndex);
58309         return index > -1 ? this.config[index] : false;
58310     },
58311     
58312     /**
58313      * Returns the index for a specified column id.
58314      * @param {String} id The column id
58315      * @return {Number} the index, or -1 if not found
58316      */
58317     getIndexById : function(id){
58318         for(var i = 0, len = this.config.length; i < len; i++){
58319             if(this.config[i].id == id){
58320                 return i;
58321             }
58322         }
58323         return -1;
58324     },
58325     
58326     /**
58327      * Returns the index for a specified column dataIndex.
58328      * @param {String} dataIndex The column dataIndex
58329      * @return {Number} the index, or -1 if not found
58330      */
58331     
58332     findColumnIndex : function(dataIndex){
58333         for(var i = 0, len = this.config.length; i < len; i++){
58334             if(this.config[i].dataIndex == dataIndex){
58335                 return i;
58336             }
58337         }
58338         return -1;
58339     },
58340     
58341     
58342     moveColumn : function(oldIndex, newIndex){
58343         var c = this.config[oldIndex];
58344         this.config.splice(oldIndex, 1);
58345         this.config.splice(newIndex, 0, c);
58346         this.dataMap = null;
58347         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58348     },
58349
58350     isLocked : function(colIndex){
58351         return this.config[colIndex].locked === true;
58352     },
58353
58354     setLocked : function(colIndex, value, suppressEvent){
58355         if(this.isLocked(colIndex) == value){
58356             return;
58357         }
58358         this.config[colIndex].locked = value;
58359         if(!suppressEvent){
58360             this.fireEvent("columnlockchange", this, colIndex, value);
58361         }
58362     },
58363
58364     getTotalLockedWidth : function(){
58365         var totalWidth = 0;
58366         for(var i = 0; i < this.config.length; i++){
58367             if(this.isLocked(i) && !this.isHidden(i)){
58368                 this.totalWidth += this.getColumnWidth(i);
58369             }
58370         }
58371         return totalWidth;
58372     },
58373
58374     getLockedCount : function(){
58375         for(var i = 0, len = this.config.length; i < len; i++){
58376             if(!this.isLocked(i)){
58377                 return i;
58378             }
58379         }
58380         
58381         return this.config.length;
58382     },
58383
58384     /**
58385      * Returns the number of columns.
58386      * @return {Number}
58387      */
58388     getColumnCount : function(visibleOnly){
58389         if(visibleOnly === true){
58390             var c = 0;
58391             for(var i = 0, len = this.config.length; i < len; i++){
58392                 if(!this.isHidden(i)){
58393                     c++;
58394                 }
58395             }
58396             return c;
58397         }
58398         return this.config.length;
58399     },
58400
58401     /**
58402      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58403      * @param {Function} fn
58404      * @param {Object} scope (optional)
58405      * @return {Array} result
58406      */
58407     getColumnsBy : function(fn, scope){
58408         var r = [];
58409         for(var i = 0, len = this.config.length; i < len; i++){
58410             var c = this.config[i];
58411             if(fn.call(scope||this, c, i) === true){
58412                 r[r.length] = c;
58413             }
58414         }
58415         return r;
58416     },
58417
58418     /**
58419      * Returns true if the specified column is sortable.
58420      * @param {Number} col The column index
58421      * @return {Boolean}
58422      */
58423     isSortable : function(col){
58424         if(typeof this.config[col].sortable == "undefined"){
58425             return this.defaultSortable;
58426         }
58427         return this.config[col].sortable;
58428     },
58429
58430     /**
58431      * Returns the rendering (formatting) function defined for the column.
58432      * @param {Number} col The column index.
58433      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58434      */
58435     getRenderer : function(col){
58436         if(!this.config[col].renderer){
58437             return Roo.grid.ColumnModel.defaultRenderer;
58438         }
58439         return this.config[col].renderer;
58440     },
58441
58442     /**
58443      * Sets the rendering (formatting) function for a column.
58444      * @param {Number} col The column index
58445      * @param {Function} fn The function to use to process the cell's raw data
58446      * to return HTML markup for the grid view. The render function is called with
58447      * the following parameters:<ul>
58448      * <li>Data value.</li>
58449      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58450      * <li>css A CSS style string to apply to the table cell.</li>
58451      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58452      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58453      * <li>Row index</li>
58454      * <li>Column index</li>
58455      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58456      */
58457     setRenderer : function(col, fn){
58458         this.config[col].renderer = fn;
58459     },
58460
58461     /**
58462      * Returns the width for the specified column.
58463      * @param {Number} col The column index
58464      * @return {Number}
58465      */
58466     getColumnWidth : function(col){
58467         return this.config[col].width * 1 || this.defaultWidth;
58468     },
58469
58470     /**
58471      * Sets the width for a column.
58472      * @param {Number} col The column index
58473      * @param {Number} width The new width
58474      */
58475     setColumnWidth : function(col, width, suppressEvent){
58476         this.config[col].width = width;
58477         this.totalWidth = null;
58478         if(!suppressEvent){
58479              this.fireEvent("widthchange", this, col, width);
58480         }
58481     },
58482
58483     /**
58484      * Returns the total width of all columns.
58485      * @param {Boolean} includeHidden True to include hidden column widths
58486      * @return {Number}
58487      */
58488     getTotalWidth : function(includeHidden){
58489         if(!this.totalWidth){
58490             this.totalWidth = 0;
58491             for(var i = 0, len = this.config.length; i < len; i++){
58492                 if(includeHidden || !this.isHidden(i)){
58493                     this.totalWidth += this.getColumnWidth(i);
58494                 }
58495             }
58496         }
58497         return this.totalWidth;
58498     },
58499
58500     /**
58501      * Returns the header for the specified column.
58502      * @param {Number} col The column index
58503      * @return {String}
58504      */
58505     getColumnHeader : function(col){
58506         return this.config[col].header;
58507     },
58508
58509     /**
58510      * Sets the header for a column.
58511      * @param {Number} col The column index
58512      * @param {String} header The new header
58513      */
58514     setColumnHeader : function(col, header){
58515         this.config[col].header = header;
58516         this.fireEvent("headerchange", this, col, header);
58517     },
58518
58519     /**
58520      * Returns the tooltip for the specified column.
58521      * @param {Number} col The column index
58522      * @return {String}
58523      */
58524     getColumnTooltip : function(col){
58525             return this.config[col].tooltip;
58526     },
58527     /**
58528      * Sets the tooltip for a column.
58529      * @param {Number} col The column index
58530      * @param {String} tooltip The new tooltip
58531      */
58532     setColumnTooltip : function(col, tooltip){
58533             this.config[col].tooltip = tooltip;
58534     },
58535
58536     /**
58537      * Returns the dataIndex for the specified column.
58538      * @param {Number} col The column index
58539      * @return {Number}
58540      */
58541     getDataIndex : function(col){
58542         return this.config[col].dataIndex;
58543     },
58544
58545     /**
58546      * Sets the dataIndex for a column.
58547      * @param {Number} col The column index
58548      * @param {Number} dataIndex The new dataIndex
58549      */
58550     setDataIndex : function(col, dataIndex){
58551         this.config[col].dataIndex = dataIndex;
58552     },
58553
58554     
58555     
58556     /**
58557      * Returns true if the cell is editable.
58558      * @param {Number} colIndex The column index
58559      * @param {Number} rowIndex The row index - this is nto actually used..?
58560      * @return {Boolean}
58561      */
58562     isCellEditable : function(colIndex, rowIndex){
58563         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58564     },
58565
58566     /**
58567      * Returns the editor defined for the cell/column.
58568      * return false or null to disable editing.
58569      * @param {Number} colIndex The column index
58570      * @param {Number} rowIndex The row index
58571      * @return {Object}
58572      */
58573     getCellEditor : function(colIndex, rowIndex){
58574         return this.config[colIndex].editor;
58575     },
58576
58577     /**
58578      * Sets if a column is editable.
58579      * @param {Number} col The column index
58580      * @param {Boolean} editable True if the column is editable
58581      */
58582     setEditable : function(col, editable){
58583         this.config[col].editable = editable;
58584     },
58585
58586
58587     /**
58588      * Returns true if the column is hidden.
58589      * @param {Number} colIndex The column index
58590      * @return {Boolean}
58591      */
58592     isHidden : function(colIndex){
58593         return this.config[colIndex].hidden;
58594     },
58595
58596
58597     /**
58598      * Returns true if the column width cannot be changed
58599      */
58600     isFixed : function(colIndex){
58601         return this.config[colIndex].fixed;
58602     },
58603
58604     /**
58605      * Returns true if the column can be resized
58606      * @return {Boolean}
58607      */
58608     isResizable : function(colIndex){
58609         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58610     },
58611     /**
58612      * Sets if a column is hidden.
58613      * @param {Number} colIndex The column index
58614      * @param {Boolean} hidden True if the column is hidden
58615      */
58616     setHidden : function(colIndex, hidden){
58617         this.config[colIndex].hidden = hidden;
58618         this.totalWidth = null;
58619         this.fireEvent("hiddenchange", this, colIndex, hidden);
58620     },
58621
58622     /**
58623      * Sets the editor for a column.
58624      * @param {Number} col The column index
58625      * @param {Object} editor The editor object
58626      */
58627     setEditor : function(col, editor){
58628         this.config[col].editor = editor;
58629     }
58630 });
58631
58632 Roo.grid.ColumnModel.defaultRenderer = function(value)
58633 {
58634     if(typeof value == "object") {
58635         return value;
58636     }
58637         if(typeof value == "string" && value.length < 1){
58638             return "&#160;";
58639         }
58640     
58641         return String.format("{0}", value);
58642 };
58643
58644 // Alias for backwards compatibility
58645 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58646 /*
58647  * Based on:
58648  * Ext JS Library 1.1.1
58649  * Copyright(c) 2006-2007, Ext JS, LLC.
58650  *
58651  * Originally Released Under LGPL - original licence link has changed is not relivant.
58652  *
58653  * Fork - LGPL
58654  * <script type="text/javascript">
58655  */
58656
58657 /**
58658  * @class Roo.grid.AbstractSelectionModel
58659  * @extends Roo.util.Observable
58660  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58661  * implemented by descendant classes.  This class should not be directly instantiated.
58662  * @constructor
58663  */
58664 Roo.grid.AbstractSelectionModel = function(){
58665     this.locked = false;
58666     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58667 };
58668
58669 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58670     /** @ignore Called by the grid automatically. Do not call directly. */
58671     init : function(grid){
58672         this.grid = grid;
58673         this.initEvents();
58674     },
58675
58676     /**
58677      * Locks the selections.
58678      */
58679     lock : function(){
58680         this.locked = true;
58681     },
58682
58683     /**
58684      * Unlocks the selections.
58685      */
58686     unlock : function(){
58687         this.locked = false;
58688     },
58689
58690     /**
58691      * Returns true if the selections are locked.
58692      * @return {Boolean}
58693      */
58694     isLocked : function(){
58695         return this.locked;
58696     }
58697 });/*
58698  * Based on:
58699  * Ext JS Library 1.1.1
58700  * Copyright(c) 2006-2007, Ext JS, LLC.
58701  *
58702  * Originally Released Under LGPL - original licence link has changed is not relivant.
58703  *
58704  * Fork - LGPL
58705  * <script type="text/javascript">
58706  */
58707 /**
58708  * @extends Roo.grid.AbstractSelectionModel
58709  * @class Roo.grid.RowSelectionModel
58710  * The default SelectionModel used by {@link Roo.grid.Grid}.
58711  * It supports multiple selections and keyboard selection/navigation. 
58712  * @constructor
58713  * @param {Object} config
58714  */
58715 Roo.grid.RowSelectionModel = function(config){
58716     Roo.apply(this, config);
58717     this.selections = new Roo.util.MixedCollection(false, function(o){
58718         return o.id;
58719     });
58720
58721     this.last = false;
58722     this.lastActive = false;
58723
58724     this.addEvents({
58725         /**
58726              * @event selectionchange
58727              * Fires when the selection changes
58728              * @param {SelectionModel} this
58729              */
58730             "selectionchange" : true,
58731         /**
58732              * @event afterselectionchange
58733              * Fires after the selection changes (eg. by key press or clicking)
58734              * @param {SelectionModel} this
58735              */
58736             "afterselectionchange" : true,
58737         /**
58738              * @event beforerowselect
58739              * Fires when a row is selected being selected, return false to cancel.
58740              * @param {SelectionModel} this
58741              * @param {Number} rowIndex The selected index
58742              * @param {Boolean} keepExisting False if other selections will be cleared
58743              */
58744             "beforerowselect" : true,
58745         /**
58746              * @event rowselect
58747              * Fires when a row is selected.
58748              * @param {SelectionModel} this
58749              * @param {Number} rowIndex The selected index
58750              * @param {Roo.data.Record} r The record
58751              */
58752             "rowselect" : true,
58753         /**
58754              * @event rowdeselect
58755              * Fires when a row is deselected.
58756              * @param {SelectionModel} this
58757              * @param {Number} rowIndex The selected index
58758              */
58759         "rowdeselect" : true
58760     });
58761     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58762     this.locked = false;
58763 };
58764
58765 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58766     /**
58767      * @cfg {Boolean} singleSelect
58768      * True to allow selection of only one row at a time (defaults to false)
58769      */
58770     singleSelect : false,
58771
58772     // private
58773     initEvents : function(){
58774
58775         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58776             this.grid.on("mousedown", this.handleMouseDown, this);
58777         }else{ // allow click to work like normal
58778             this.grid.on("rowclick", this.handleDragableRowClick, this);
58779         }
58780
58781         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58782             "up" : function(e){
58783                 if(!e.shiftKey){
58784                     this.selectPrevious(e.shiftKey);
58785                 }else if(this.last !== false && this.lastActive !== false){
58786                     var last = this.last;
58787                     this.selectRange(this.last,  this.lastActive-1);
58788                     this.grid.getView().focusRow(this.lastActive);
58789                     if(last !== false){
58790                         this.last = last;
58791                     }
58792                 }else{
58793                     this.selectFirstRow();
58794                 }
58795                 this.fireEvent("afterselectionchange", this);
58796             },
58797             "down" : function(e){
58798                 if(!e.shiftKey){
58799                     this.selectNext(e.shiftKey);
58800                 }else if(this.last !== false && this.lastActive !== false){
58801                     var last = this.last;
58802                     this.selectRange(this.last,  this.lastActive+1);
58803                     this.grid.getView().focusRow(this.lastActive);
58804                     if(last !== false){
58805                         this.last = last;
58806                     }
58807                 }else{
58808                     this.selectFirstRow();
58809                 }
58810                 this.fireEvent("afterselectionchange", this);
58811             },
58812             scope: this
58813         });
58814
58815         var view = this.grid.view;
58816         view.on("refresh", this.onRefresh, this);
58817         view.on("rowupdated", this.onRowUpdated, this);
58818         view.on("rowremoved", this.onRemove, this);
58819     },
58820
58821     // private
58822     onRefresh : function(){
58823         var ds = this.grid.dataSource, i, v = this.grid.view;
58824         var s = this.selections;
58825         s.each(function(r){
58826             if((i = ds.indexOfId(r.id)) != -1){
58827                 v.onRowSelect(i);
58828                 s.add(ds.getAt(i)); // updating the selection relate data
58829             }else{
58830                 s.remove(r);
58831             }
58832         });
58833     },
58834
58835     // private
58836     onRemove : function(v, index, r){
58837         this.selections.remove(r);
58838     },
58839
58840     // private
58841     onRowUpdated : function(v, index, r){
58842         if(this.isSelected(r)){
58843             v.onRowSelect(index);
58844         }
58845     },
58846
58847     /**
58848      * Select records.
58849      * @param {Array} records The records to select
58850      * @param {Boolean} keepExisting (optional) True to keep existing selections
58851      */
58852     selectRecords : function(records, keepExisting){
58853         if(!keepExisting){
58854             this.clearSelections();
58855         }
58856         var ds = this.grid.dataSource;
58857         for(var i = 0, len = records.length; i < len; i++){
58858             this.selectRow(ds.indexOf(records[i]), true);
58859         }
58860     },
58861
58862     /**
58863      * Gets the number of selected rows.
58864      * @return {Number}
58865      */
58866     getCount : function(){
58867         return this.selections.length;
58868     },
58869
58870     /**
58871      * Selects the first row in the grid.
58872      */
58873     selectFirstRow : function(){
58874         this.selectRow(0);
58875     },
58876
58877     /**
58878      * Select the last row.
58879      * @param {Boolean} keepExisting (optional) True to keep existing selections
58880      */
58881     selectLastRow : function(keepExisting){
58882         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58883     },
58884
58885     /**
58886      * Selects the row immediately following the last selected row.
58887      * @param {Boolean} keepExisting (optional) True to keep existing selections
58888      */
58889     selectNext : function(keepExisting){
58890         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58891             this.selectRow(this.last+1, keepExisting);
58892             this.grid.getView().focusRow(this.last);
58893         }
58894     },
58895
58896     /**
58897      * Selects the row that precedes the last selected row.
58898      * @param {Boolean} keepExisting (optional) True to keep existing selections
58899      */
58900     selectPrevious : function(keepExisting){
58901         if(this.last){
58902             this.selectRow(this.last-1, keepExisting);
58903             this.grid.getView().focusRow(this.last);
58904         }
58905     },
58906
58907     /**
58908      * Returns the selected records
58909      * @return {Array} Array of selected records
58910      */
58911     getSelections : function(){
58912         return [].concat(this.selections.items);
58913     },
58914
58915     /**
58916      * Returns the first selected record.
58917      * @return {Record}
58918      */
58919     getSelected : function(){
58920         return this.selections.itemAt(0);
58921     },
58922
58923
58924     /**
58925      * Clears all selections.
58926      */
58927     clearSelections : function(fast){
58928         if(this.locked) {
58929             return;
58930         }
58931         if(fast !== true){
58932             var ds = this.grid.dataSource;
58933             var s = this.selections;
58934             s.each(function(r){
58935                 this.deselectRow(ds.indexOfId(r.id));
58936             }, this);
58937             s.clear();
58938         }else{
58939             this.selections.clear();
58940         }
58941         this.last = false;
58942     },
58943
58944
58945     /**
58946      * Selects all rows.
58947      */
58948     selectAll : function(){
58949         if(this.locked) {
58950             return;
58951         }
58952         this.selections.clear();
58953         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
58954             this.selectRow(i, true);
58955         }
58956     },
58957
58958     /**
58959      * Returns True if there is a selection.
58960      * @return {Boolean}
58961      */
58962     hasSelection : function(){
58963         return this.selections.length > 0;
58964     },
58965
58966     /**
58967      * Returns True if the specified row is selected.
58968      * @param {Number/Record} record The record or index of the record to check
58969      * @return {Boolean}
58970      */
58971     isSelected : function(index){
58972         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
58973         return (r && this.selections.key(r.id) ? true : false);
58974     },
58975
58976     /**
58977      * Returns True if the specified record id is selected.
58978      * @param {String} id The id of record to check
58979      * @return {Boolean}
58980      */
58981     isIdSelected : function(id){
58982         return (this.selections.key(id) ? true : false);
58983     },
58984
58985     // private
58986     handleMouseDown : function(e, t){
58987         var view = this.grid.getView(), rowIndex;
58988         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
58989             return;
58990         };
58991         if(e.shiftKey && this.last !== false){
58992             var last = this.last;
58993             this.selectRange(last, rowIndex, e.ctrlKey);
58994             this.last = last; // reset the last
58995             view.focusRow(rowIndex);
58996         }else{
58997             var isSelected = this.isSelected(rowIndex);
58998             if(e.button !== 0 && isSelected){
58999                 view.focusRow(rowIndex);
59000             }else if(e.ctrlKey && isSelected){
59001                 this.deselectRow(rowIndex);
59002             }else if(!isSelected){
59003                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59004                 view.focusRow(rowIndex);
59005             }
59006         }
59007         this.fireEvent("afterselectionchange", this);
59008     },
59009     // private
59010     handleDragableRowClick :  function(grid, rowIndex, e) 
59011     {
59012         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59013             this.selectRow(rowIndex, false);
59014             grid.view.focusRow(rowIndex);
59015              this.fireEvent("afterselectionchange", this);
59016         }
59017     },
59018     
59019     /**
59020      * Selects multiple rows.
59021      * @param {Array} rows Array of the indexes of the row to select
59022      * @param {Boolean} keepExisting (optional) True to keep existing selections
59023      */
59024     selectRows : function(rows, keepExisting){
59025         if(!keepExisting){
59026             this.clearSelections();
59027         }
59028         for(var i = 0, len = rows.length; i < len; i++){
59029             this.selectRow(rows[i], true);
59030         }
59031     },
59032
59033     /**
59034      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59035      * @param {Number} startRow The index of the first row in the range
59036      * @param {Number} endRow The index of the last row in the range
59037      * @param {Boolean} keepExisting (optional) True to retain existing selections
59038      */
59039     selectRange : function(startRow, endRow, keepExisting){
59040         if(this.locked) {
59041             return;
59042         }
59043         if(!keepExisting){
59044             this.clearSelections();
59045         }
59046         if(startRow <= endRow){
59047             for(var i = startRow; i <= endRow; i++){
59048                 this.selectRow(i, true);
59049             }
59050         }else{
59051             for(var i = startRow; i >= endRow; i--){
59052                 this.selectRow(i, true);
59053             }
59054         }
59055     },
59056
59057     /**
59058      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59059      * @param {Number} startRow The index of the first row in the range
59060      * @param {Number} endRow The index of the last row in the range
59061      */
59062     deselectRange : function(startRow, endRow, preventViewNotify){
59063         if(this.locked) {
59064             return;
59065         }
59066         for(var i = startRow; i <= endRow; i++){
59067             this.deselectRow(i, preventViewNotify);
59068         }
59069     },
59070
59071     /**
59072      * Selects a row.
59073      * @param {Number} row The index of the row to select
59074      * @param {Boolean} keepExisting (optional) True to keep existing selections
59075      */
59076     selectRow : function(index, keepExisting, preventViewNotify){
59077         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59078             return;
59079         }
59080         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59081             if(!keepExisting || this.singleSelect){
59082                 this.clearSelections();
59083             }
59084             var r = this.grid.dataSource.getAt(index);
59085             this.selections.add(r);
59086             this.last = this.lastActive = index;
59087             if(!preventViewNotify){
59088                 this.grid.getView().onRowSelect(index);
59089             }
59090             this.fireEvent("rowselect", this, index, r);
59091             this.fireEvent("selectionchange", this);
59092         }
59093     },
59094
59095     /**
59096      * Deselects a row.
59097      * @param {Number} row The index of the row to deselect
59098      */
59099     deselectRow : function(index, preventViewNotify){
59100         if(this.locked) {
59101             return;
59102         }
59103         if(this.last == index){
59104             this.last = false;
59105         }
59106         if(this.lastActive == index){
59107             this.lastActive = false;
59108         }
59109         var r = this.grid.dataSource.getAt(index);
59110         this.selections.remove(r);
59111         if(!preventViewNotify){
59112             this.grid.getView().onRowDeselect(index);
59113         }
59114         this.fireEvent("rowdeselect", this, index);
59115         this.fireEvent("selectionchange", this);
59116     },
59117
59118     // private
59119     restoreLast : function(){
59120         if(this._last){
59121             this.last = this._last;
59122         }
59123     },
59124
59125     // private
59126     acceptsNav : function(row, col, cm){
59127         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59128     },
59129
59130     // private
59131     onEditorKey : function(field, e){
59132         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59133         if(k == e.TAB){
59134             e.stopEvent();
59135             ed.completeEdit();
59136             if(e.shiftKey){
59137                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59138             }else{
59139                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59140             }
59141         }else if(k == e.ENTER && !e.ctrlKey){
59142             e.stopEvent();
59143             ed.completeEdit();
59144             if(e.shiftKey){
59145                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59146             }else{
59147                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59148             }
59149         }else if(k == e.ESC){
59150             ed.cancelEdit();
59151         }
59152         if(newCell){
59153             g.startEditing(newCell[0], newCell[1]);
59154         }
59155     }
59156 });/*
59157  * Based on:
59158  * Ext JS Library 1.1.1
59159  * Copyright(c) 2006-2007, Ext JS, LLC.
59160  *
59161  * Originally Released Under LGPL - original licence link has changed is not relivant.
59162  *
59163  * Fork - LGPL
59164  * <script type="text/javascript">
59165  */
59166 /**
59167  * @class Roo.grid.CellSelectionModel
59168  * @extends Roo.grid.AbstractSelectionModel
59169  * This class provides the basic implementation for cell selection in a grid.
59170  * @constructor
59171  * @param {Object} config The object containing the configuration of this model.
59172  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59173  */
59174 Roo.grid.CellSelectionModel = function(config){
59175     Roo.apply(this, config);
59176
59177     this.selection = null;
59178
59179     this.addEvents({
59180         /**
59181              * @event beforerowselect
59182              * Fires before a cell is selected.
59183              * @param {SelectionModel} this
59184              * @param {Number} rowIndex The selected row index
59185              * @param {Number} colIndex The selected cell index
59186              */
59187             "beforecellselect" : true,
59188         /**
59189              * @event cellselect
59190              * Fires when a cell is selected.
59191              * @param {SelectionModel} this
59192              * @param {Number} rowIndex The selected row index
59193              * @param {Number} colIndex The selected cell index
59194              */
59195             "cellselect" : true,
59196         /**
59197              * @event selectionchange
59198              * Fires when the active selection changes.
59199              * @param {SelectionModel} this
59200              * @param {Object} selection null for no selection or an object (o) with two properties
59201                 <ul>
59202                 <li>o.record: the record object for the row the selection is in</li>
59203                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59204                 </ul>
59205              */
59206             "selectionchange" : true,
59207         /**
59208              * @event tabend
59209              * Fires when the tab (or enter) was pressed on the last editable cell
59210              * You can use this to trigger add new row.
59211              * @param {SelectionModel} this
59212              */
59213             "tabend" : true,
59214          /**
59215              * @event beforeeditnext
59216              * Fires before the next editable sell is made active
59217              * You can use this to skip to another cell or fire the tabend
59218              *    if you set cell to false
59219              * @param {Object} eventdata object : { cell : [ row, col ] } 
59220              */
59221             "beforeeditnext" : true
59222     });
59223     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59224 };
59225
59226 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59227     
59228     enter_is_tab: false,
59229
59230     /** @ignore */
59231     initEvents : function(){
59232         this.grid.on("mousedown", this.handleMouseDown, this);
59233         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59234         var view = this.grid.view;
59235         view.on("refresh", this.onViewChange, this);
59236         view.on("rowupdated", this.onRowUpdated, this);
59237         view.on("beforerowremoved", this.clearSelections, this);
59238         view.on("beforerowsinserted", this.clearSelections, this);
59239         if(this.grid.isEditor){
59240             this.grid.on("beforeedit", this.beforeEdit,  this);
59241         }
59242     },
59243
59244         //private
59245     beforeEdit : function(e){
59246         this.select(e.row, e.column, false, true, e.record);
59247     },
59248
59249         //private
59250     onRowUpdated : function(v, index, r){
59251         if(this.selection && this.selection.record == r){
59252             v.onCellSelect(index, this.selection.cell[1]);
59253         }
59254     },
59255
59256         //private
59257     onViewChange : function(){
59258         this.clearSelections(true);
59259     },
59260
59261         /**
59262          * Returns the currently selected cell,.
59263          * @return {Array} The selected cell (row, column) or null if none selected.
59264          */
59265     getSelectedCell : function(){
59266         return this.selection ? this.selection.cell : null;
59267     },
59268
59269     /**
59270      * Clears all selections.
59271      * @param {Boolean} true to prevent the gridview from being notified about the change.
59272      */
59273     clearSelections : function(preventNotify){
59274         var s = this.selection;
59275         if(s){
59276             if(preventNotify !== true){
59277                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59278             }
59279             this.selection = null;
59280             this.fireEvent("selectionchange", this, null);
59281         }
59282     },
59283
59284     /**
59285      * Returns true if there is a selection.
59286      * @return {Boolean}
59287      */
59288     hasSelection : function(){
59289         return this.selection ? true : false;
59290     },
59291
59292     /** @ignore */
59293     handleMouseDown : function(e, t){
59294         var v = this.grid.getView();
59295         if(this.isLocked()){
59296             return;
59297         };
59298         var row = v.findRowIndex(t);
59299         var cell = v.findCellIndex(t);
59300         if(row !== false && cell !== false){
59301             this.select(row, cell);
59302         }
59303     },
59304
59305     /**
59306      * Selects a cell.
59307      * @param {Number} rowIndex
59308      * @param {Number} collIndex
59309      */
59310     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59311         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59312             this.clearSelections();
59313             r = r || this.grid.dataSource.getAt(rowIndex);
59314             this.selection = {
59315                 record : r,
59316                 cell : [rowIndex, colIndex]
59317             };
59318             if(!preventViewNotify){
59319                 var v = this.grid.getView();
59320                 v.onCellSelect(rowIndex, colIndex);
59321                 if(preventFocus !== true){
59322                     v.focusCell(rowIndex, colIndex);
59323                 }
59324             }
59325             this.fireEvent("cellselect", this, rowIndex, colIndex);
59326             this.fireEvent("selectionchange", this, this.selection);
59327         }
59328     },
59329
59330         //private
59331     isSelectable : function(rowIndex, colIndex, cm){
59332         return !cm.isHidden(colIndex);
59333     },
59334
59335     /** @ignore */
59336     handleKeyDown : function(e){
59337         //Roo.log('Cell Sel Model handleKeyDown');
59338         if(!e.isNavKeyPress()){
59339             return;
59340         }
59341         var g = this.grid, s = this.selection;
59342         if(!s){
59343             e.stopEvent();
59344             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59345             if(cell){
59346                 this.select(cell[0], cell[1]);
59347             }
59348             return;
59349         }
59350         var sm = this;
59351         var walk = function(row, col, step){
59352             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59353         };
59354         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59355         var newCell;
59356
59357       
59358
59359         switch(k){
59360             case e.TAB:
59361                 // handled by onEditorKey
59362                 if (g.isEditor && g.editing) {
59363                     return;
59364                 }
59365                 if(e.shiftKey) {
59366                     newCell = walk(r, c-1, -1);
59367                 } else {
59368                     newCell = walk(r, c+1, 1);
59369                 }
59370                 break;
59371             
59372             case e.DOWN:
59373                newCell = walk(r+1, c, 1);
59374                 break;
59375             
59376             case e.UP:
59377                 newCell = walk(r-1, c, -1);
59378                 break;
59379             
59380             case e.RIGHT:
59381                 newCell = walk(r, c+1, 1);
59382                 break;
59383             
59384             case e.LEFT:
59385                 newCell = walk(r, c-1, -1);
59386                 break;
59387             
59388             case e.ENTER:
59389                 
59390                 if(g.isEditor && !g.editing){
59391                    g.startEditing(r, c);
59392                    e.stopEvent();
59393                    return;
59394                 }
59395                 
59396                 
59397              break;
59398         };
59399         if(newCell){
59400             this.select(newCell[0], newCell[1]);
59401             e.stopEvent();
59402             
59403         }
59404     },
59405
59406     acceptsNav : function(row, col, cm){
59407         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59408     },
59409     /**
59410      * Selects a cell.
59411      * @param {Number} field (not used) - as it's normally used as a listener
59412      * @param {Number} e - event - fake it by using
59413      *
59414      * var e = Roo.EventObjectImpl.prototype;
59415      * e.keyCode = e.TAB
59416      *
59417      * 
59418      */
59419     onEditorKey : function(field, e){
59420         
59421         var k = e.getKey(),
59422             newCell,
59423             g = this.grid,
59424             ed = g.activeEditor,
59425             forward = false;
59426         ///Roo.log('onEditorKey' + k);
59427         
59428         
59429         if (this.enter_is_tab && k == e.ENTER) {
59430             k = e.TAB;
59431         }
59432         
59433         if(k == e.TAB){
59434             if(e.shiftKey){
59435                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59436             }else{
59437                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59438                 forward = true;
59439             }
59440             
59441             e.stopEvent();
59442             
59443         } else if(k == e.ENTER &&  !e.ctrlKey){
59444             ed.completeEdit();
59445             e.stopEvent();
59446             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59447         
59448                 } else if(k == e.ESC){
59449             ed.cancelEdit();
59450         }
59451                 
59452         if (newCell) {
59453             var ecall = { cell : newCell, forward : forward };
59454             this.fireEvent('beforeeditnext', ecall );
59455             newCell = ecall.cell;
59456                         forward = ecall.forward;
59457         }
59458                 
59459         if(newCell){
59460             //Roo.log('next cell after edit');
59461             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59462         } else if (forward) {
59463             // tabbed past last
59464             this.fireEvent.defer(100, this, ['tabend',this]);
59465         }
59466     }
59467 });/*
59468  * Based on:
59469  * Ext JS Library 1.1.1
59470  * Copyright(c) 2006-2007, Ext JS, LLC.
59471  *
59472  * Originally Released Under LGPL - original licence link has changed is not relivant.
59473  *
59474  * Fork - LGPL
59475  * <script type="text/javascript">
59476  */
59477  
59478 /**
59479  * @class Roo.grid.EditorGrid
59480  * @extends Roo.grid.Grid
59481  * Class for creating and editable grid.
59482  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59483  * The container MUST have some type of size defined for the grid to fill. The container will be 
59484  * automatically set to position relative if it isn't already.
59485  * @param {Object} dataSource The data model to bind to
59486  * @param {Object} colModel The column model with info about this grid's columns
59487  */
59488 Roo.grid.EditorGrid = function(container, config){
59489     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59490     this.getGridEl().addClass("xedit-grid");
59491
59492     if(!this.selModel){
59493         this.selModel = new Roo.grid.CellSelectionModel();
59494     }
59495
59496     this.activeEditor = null;
59497
59498         this.addEvents({
59499             /**
59500              * @event beforeedit
59501              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59502              * <ul style="padding:5px;padding-left:16px;">
59503              * <li>grid - This grid</li>
59504              * <li>record - The record being edited</li>
59505              * <li>field - The field name being edited</li>
59506              * <li>value - The value for the field being edited.</li>
59507              * <li>row - The grid row index</li>
59508              * <li>column - The grid column index</li>
59509              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59510              * </ul>
59511              * @param {Object} e An edit event (see above for description)
59512              */
59513             "beforeedit" : true,
59514             /**
59515              * @event afteredit
59516              * Fires after a cell is edited. <br />
59517              * <ul style="padding:5px;padding-left:16px;">
59518              * <li>grid - This grid</li>
59519              * <li>record - The record being edited</li>
59520              * <li>field - The field name being edited</li>
59521              * <li>value - The value being set</li>
59522              * <li>originalValue - The original value for the field, before the edit.</li>
59523              * <li>row - The grid row index</li>
59524              * <li>column - The grid column index</li>
59525              * </ul>
59526              * @param {Object} e An edit event (see above for description)
59527              */
59528             "afteredit" : true,
59529             /**
59530              * @event validateedit
59531              * Fires after a cell is edited, but before the value is set in the record. 
59532          * You can use this to modify the value being set in the field, Return false
59533              * to cancel the change. The edit event object has the following properties <br />
59534              * <ul style="padding:5px;padding-left:16px;">
59535          * <li>editor - This editor</li>
59536              * <li>grid - This grid</li>
59537              * <li>record - The record being edited</li>
59538              * <li>field - The field name being edited</li>
59539              * <li>value - The value being set</li>
59540              * <li>originalValue - The original value for the field, before the edit.</li>
59541              * <li>row - The grid row index</li>
59542              * <li>column - The grid column index</li>
59543              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59544              * </ul>
59545              * @param {Object} e An edit event (see above for description)
59546              */
59547             "validateedit" : true
59548         });
59549     this.on("bodyscroll", this.stopEditing,  this);
59550     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59551 };
59552
59553 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59554     /**
59555      * @cfg {Number} clicksToEdit
59556      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59557      */
59558     clicksToEdit: 2,
59559
59560     // private
59561     isEditor : true,
59562     // private
59563     trackMouseOver: false, // causes very odd FF errors
59564
59565     onCellDblClick : function(g, row, col){
59566         this.startEditing(row, col);
59567     },
59568
59569     onEditComplete : function(ed, value, startValue){
59570         this.editing = false;
59571         this.activeEditor = null;
59572         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59573         var r = ed.record;
59574         var field = this.colModel.getDataIndex(ed.col);
59575         var e = {
59576             grid: this,
59577             record: r,
59578             field: field,
59579             originalValue: startValue,
59580             value: value,
59581             row: ed.row,
59582             column: ed.col,
59583             cancel:false,
59584             editor: ed
59585         };
59586         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59587         cell.show();
59588           
59589         if(String(value) !== String(startValue)){
59590             
59591             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59592                 r.set(field, e.value);
59593                 // if we are dealing with a combo box..
59594                 // then we also set the 'name' colum to be the displayField
59595                 if (ed.field.displayField && ed.field.name) {
59596                     r.set(ed.field.name, ed.field.el.dom.value);
59597                 }
59598                 
59599                 delete e.cancel; //?? why!!!
59600                 this.fireEvent("afteredit", e);
59601             }
59602         } else {
59603             this.fireEvent("afteredit", e); // always fire it!
59604         }
59605         this.view.focusCell(ed.row, ed.col);
59606     },
59607
59608     /**
59609      * Starts editing the specified for the specified row/column
59610      * @param {Number} rowIndex
59611      * @param {Number} colIndex
59612      */
59613     startEditing : function(row, col){
59614         this.stopEditing();
59615         if(this.colModel.isCellEditable(col, row)){
59616             this.view.ensureVisible(row, col, true);
59617           
59618             var r = this.dataSource.getAt(row);
59619             var field = this.colModel.getDataIndex(col);
59620             var cell = Roo.get(this.view.getCell(row,col));
59621             var e = {
59622                 grid: this,
59623                 record: r,
59624                 field: field,
59625                 value: r.data[field],
59626                 row: row,
59627                 column: col,
59628                 cancel:false 
59629             };
59630             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59631                 this.editing = true;
59632                 var ed = this.colModel.getCellEditor(col, row);
59633                 
59634                 if (!ed) {
59635                     return;
59636                 }
59637                 if(!ed.rendered){
59638                     ed.render(ed.parentEl || document.body);
59639                 }
59640                 ed.field.reset();
59641                
59642                 cell.hide();
59643                 
59644                 (function(){ // complex but required for focus issues in safari, ie and opera
59645                     ed.row = row;
59646                     ed.col = col;
59647                     ed.record = r;
59648                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59649                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59650                     this.activeEditor = ed;
59651                     var v = r.data[field];
59652                     ed.startEdit(this.view.getCell(row, col), v);
59653                     // combo's with 'displayField and name set
59654                     if (ed.field.displayField && ed.field.name) {
59655                         ed.field.el.dom.value = r.data[ed.field.name];
59656                     }
59657                     
59658                     
59659                 }).defer(50, this);
59660             }
59661         }
59662     },
59663         
59664     /**
59665      * Stops any active editing
59666      */
59667     stopEditing : function(){
59668         if(this.activeEditor){
59669             this.activeEditor.completeEdit();
59670         }
59671         this.activeEditor = null;
59672     },
59673         
59674          /**
59675      * Called to get grid's drag proxy text, by default returns this.ddText.
59676      * @return {String}
59677      */
59678     getDragDropText : function(){
59679         var count = this.selModel.getSelectedCell() ? 1 : 0;
59680         return String.format(this.ddText, count, count == 1 ? '' : 's');
59681     }
59682         
59683 });/*
59684  * Based on:
59685  * Ext JS Library 1.1.1
59686  * Copyright(c) 2006-2007, Ext JS, LLC.
59687  *
59688  * Originally Released Under LGPL - original licence link has changed is not relivant.
59689  *
59690  * Fork - LGPL
59691  * <script type="text/javascript">
59692  */
59693
59694 // private - not really -- you end up using it !
59695 // This is a support class used internally by the Grid components
59696
59697 /**
59698  * @class Roo.grid.GridEditor
59699  * @extends Roo.Editor
59700  * Class for creating and editable grid elements.
59701  * @param {Object} config any settings (must include field)
59702  */
59703 Roo.grid.GridEditor = function(field, config){
59704     if (!config && field.field) {
59705         config = field;
59706         field = Roo.factory(config.field, Roo.form);
59707     }
59708     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59709     field.monitorTab = false;
59710 };
59711
59712 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59713     
59714     /**
59715      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59716      */
59717     
59718     alignment: "tl-tl",
59719     autoSize: "width",
59720     hideEl : false,
59721     cls: "x-small-editor x-grid-editor",
59722     shim:false,
59723     shadow:"frame"
59724 });/*
59725  * Based on:
59726  * Ext JS Library 1.1.1
59727  * Copyright(c) 2006-2007, Ext JS, LLC.
59728  *
59729  * Originally Released Under LGPL - original licence link has changed is not relivant.
59730  *
59731  * Fork - LGPL
59732  * <script type="text/javascript">
59733  */
59734   
59735
59736   
59737 Roo.grid.PropertyRecord = Roo.data.Record.create([
59738     {name:'name',type:'string'},  'value'
59739 ]);
59740
59741
59742 Roo.grid.PropertyStore = function(grid, source){
59743     this.grid = grid;
59744     this.store = new Roo.data.Store({
59745         recordType : Roo.grid.PropertyRecord
59746     });
59747     this.store.on('update', this.onUpdate,  this);
59748     if(source){
59749         this.setSource(source);
59750     }
59751     Roo.grid.PropertyStore.superclass.constructor.call(this);
59752 };
59753
59754
59755
59756 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59757     setSource : function(o){
59758         this.source = o;
59759         this.store.removeAll();
59760         var data = [];
59761         for(var k in o){
59762             if(this.isEditableValue(o[k])){
59763                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59764             }
59765         }
59766         this.store.loadRecords({records: data}, {}, true);
59767     },
59768
59769     onUpdate : function(ds, record, type){
59770         if(type == Roo.data.Record.EDIT){
59771             var v = record.data['value'];
59772             var oldValue = record.modified['value'];
59773             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59774                 this.source[record.id] = v;
59775                 record.commit();
59776                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59777             }else{
59778                 record.reject();
59779             }
59780         }
59781     },
59782
59783     getProperty : function(row){
59784        return this.store.getAt(row);
59785     },
59786
59787     isEditableValue: function(val){
59788         if(val && val instanceof Date){
59789             return true;
59790         }else if(typeof val == 'object' || typeof val == 'function'){
59791             return false;
59792         }
59793         return true;
59794     },
59795
59796     setValue : function(prop, value){
59797         this.source[prop] = value;
59798         this.store.getById(prop).set('value', value);
59799     },
59800
59801     getSource : function(){
59802         return this.source;
59803     }
59804 });
59805
59806 Roo.grid.PropertyColumnModel = function(grid, store){
59807     this.grid = grid;
59808     var g = Roo.grid;
59809     g.PropertyColumnModel.superclass.constructor.call(this, [
59810         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59811         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59812     ]);
59813     this.store = store;
59814     this.bselect = Roo.DomHelper.append(document.body, {
59815         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59816             {tag: 'option', value: 'true', html: 'true'},
59817             {tag: 'option', value: 'false', html: 'false'}
59818         ]
59819     });
59820     Roo.id(this.bselect);
59821     var f = Roo.form;
59822     this.editors = {
59823         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59824         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59825         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59826         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59827         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59828     };
59829     this.renderCellDelegate = this.renderCell.createDelegate(this);
59830     this.renderPropDelegate = this.renderProp.createDelegate(this);
59831 };
59832
59833 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59834     
59835     
59836     nameText : 'Name',
59837     valueText : 'Value',
59838     
59839     dateFormat : 'm/j/Y',
59840     
59841     
59842     renderDate : function(dateVal){
59843         return dateVal.dateFormat(this.dateFormat);
59844     },
59845
59846     renderBool : function(bVal){
59847         return bVal ? 'true' : 'false';
59848     },
59849
59850     isCellEditable : function(colIndex, rowIndex){
59851         return colIndex == 1;
59852     },
59853
59854     getRenderer : function(col){
59855         return col == 1 ?
59856             this.renderCellDelegate : this.renderPropDelegate;
59857     },
59858
59859     renderProp : function(v){
59860         return this.getPropertyName(v);
59861     },
59862
59863     renderCell : function(val){
59864         var rv = val;
59865         if(val instanceof Date){
59866             rv = this.renderDate(val);
59867         }else if(typeof val == 'boolean'){
59868             rv = this.renderBool(val);
59869         }
59870         return Roo.util.Format.htmlEncode(rv);
59871     },
59872
59873     getPropertyName : function(name){
59874         var pn = this.grid.propertyNames;
59875         return pn && pn[name] ? pn[name] : name;
59876     },
59877
59878     getCellEditor : function(colIndex, rowIndex){
59879         var p = this.store.getProperty(rowIndex);
59880         var n = p.data['name'], val = p.data['value'];
59881         
59882         if(typeof(this.grid.customEditors[n]) == 'string'){
59883             return this.editors[this.grid.customEditors[n]];
59884         }
59885         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59886             return this.grid.customEditors[n];
59887         }
59888         if(val instanceof Date){
59889             return this.editors['date'];
59890         }else if(typeof val == 'number'){
59891             return this.editors['number'];
59892         }else if(typeof val == 'boolean'){
59893             return this.editors['boolean'];
59894         }else{
59895             return this.editors['string'];
59896         }
59897     }
59898 });
59899
59900 /**
59901  * @class Roo.grid.PropertyGrid
59902  * @extends Roo.grid.EditorGrid
59903  * This class represents the  interface of a component based property grid control.
59904  * <br><br>Usage:<pre><code>
59905  var grid = new Roo.grid.PropertyGrid("my-container-id", {
59906       
59907  });
59908  // set any options
59909  grid.render();
59910  * </code></pre>
59911   
59912  * @constructor
59913  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59914  * The container MUST have some type of size defined for the grid to fill. The container will be
59915  * automatically set to position relative if it isn't already.
59916  * @param {Object} config A config object that sets properties on this grid.
59917  */
59918 Roo.grid.PropertyGrid = function(container, config){
59919     config = config || {};
59920     var store = new Roo.grid.PropertyStore(this);
59921     this.store = store;
59922     var cm = new Roo.grid.PropertyColumnModel(this, store);
59923     store.store.sort('name', 'ASC');
59924     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
59925         ds: store.store,
59926         cm: cm,
59927         enableColLock:false,
59928         enableColumnMove:false,
59929         stripeRows:false,
59930         trackMouseOver: false,
59931         clicksToEdit:1
59932     }, config));
59933     this.getGridEl().addClass('x-props-grid');
59934     this.lastEditRow = null;
59935     this.on('columnresize', this.onColumnResize, this);
59936     this.addEvents({
59937          /**
59938              * @event beforepropertychange
59939              * Fires before a property changes (return false to stop?)
59940              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59941              * @param {String} id Record Id
59942              * @param {String} newval New Value
59943          * @param {String} oldval Old Value
59944              */
59945         "beforepropertychange": true,
59946         /**
59947              * @event propertychange
59948              * Fires after a property changes
59949              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59950              * @param {String} id Record Id
59951              * @param {String} newval New Value
59952          * @param {String} oldval Old Value
59953              */
59954         "propertychange": true
59955     });
59956     this.customEditors = this.customEditors || {};
59957 };
59958 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
59959     
59960      /**
59961      * @cfg {Object} customEditors map of colnames=> custom editors.
59962      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
59963      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
59964      * false disables editing of the field.
59965          */
59966     
59967       /**
59968      * @cfg {Object} propertyNames map of property Names to their displayed value
59969          */
59970     
59971     render : function(){
59972         Roo.grid.PropertyGrid.superclass.render.call(this);
59973         this.autoSize.defer(100, this);
59974     },
59975
59976     autoSize : function(){
59977         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
59978         if(this.view){
59979             this.view.fitColumns();
59980         }
59981     },
59982
59983     onColumnResize : function(){
59984         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
59985         this.autoSize();
59986     },
59987     /**
59988      * Sets the data for the Grid
59989      * accepts a Key => Value object of all the elements avaiable.
59990      * @param {Object} data  to appear in grid.
59991      */
59992     setSource : function(source){
59993         this.store.setSource(source);
59994         //this.autoSize();
59995     },
59996     /**
59997      * Gets all the data from the grid.
59998      * @return {Object} data  data stored in grid
59999      */
60000     getSource : function(){
60001         return this.store.getSource();
60002     }
60003 });/*
60004   
60005  * Licence LGPL
60006  
60007  */
60008  
60009 /**
60010  * @class Roo.grid.Calendar
60011  * @extends Roo.util.Grid
60012  * This class extends the Grid to provide a calendar widget
60013  * <br><br>Usage:<pre><code>
60014  var grid = new Roo.grid.Calendar("my-container-id", {
60015      ds: myDataStore,
60016      cm: myColModel,
60017      selModel: mySelectionModel,
60018      autoSizeColumns: true,
60019      monitorWindowResize: false,
60020      trackMouseOver: true
60021      eventstore : real data store..
60022  });
60023  // set any options
60024  grid.render();
60025   
60026   * @constructor
60027  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60028  * The container MUST have some type of size defined for the grid to fill. The container will be
60029  * automatically set to position relative if it isn't already.
60030  * @param {Object} config A config object that sets properties on this grid.
60031  */
60032 Roo.grid.Calendar = function(container, config){
60033         // initialize the container
60034         this.container = Roo.get(container);
60035         this.container.update("");
60036         this.container.setStyle("overflow", "hidden");
60037     this.container.addClass('x-grid-container');
60038
60039     this.id = this.container.id;
60040
60041     Roo.apply(this, config);
60042     // check and correct shorthanded configs
60043     
60044     var rows = [];
60045     var d =1;
60046     for (var r = 0;r < 6;r++) {
60047         
60048         rows[r]=[];
60049         for (var c =0;c < 7;c++) {
60050             rows[r][c]= '';
60051         }
60052     }
60053     if (this.eventStore) {
60054         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60055         this.eventStore.on('load',this.onLoad, this);
60056         this.eventStore.on('beforeload',this.clearEvents, this);
60057          
60058     }
60059     
60060     this.dataSource = new Roo.data.Store({
60061             proxy: new Roo.data.MemoryProxy(rows),
60062             reader: new Roo.data.ArrayReader({}, [
60063                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60064     });
60065
60066     this.dataSource.load();
60067     this.ds = this.dataSource;
60068     this.ds.xmodule = this.xmodule || false;
60069     
60070     
60071     var cellRender = function(v,x,r)
60072     {
60073         return String.format(
60074             '<div class="fc-day  fc-widget-content"><div>' +
60075                 '<div class="fc-event-container"></div>' +
60076                 '<div class="fc-day-number">{0}</div>'+
60077                 
60078                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60079             '</div></div>', v);
60080     
60081     }
60082     
60083     
60084     this.colModel = new Roo.grid.ColumnModel( [
60085         {
60086             xtype: 'ColumnModel',
60087             xns: Roo.grid,
60088             dataIndex : 'weekday0',
60089             header : 'Sunday',
60090             renderer : cellRender
60091         },
60092         {
60093             xtype: 'ColumnModel',
60094             xns: Roo.grid,
60095             dataIndex : 'weekday1',
60096             header : 'Monday',
60097             renderer : cellRender
60098         },
60099         {
60100             xtype: 'ColumnModel',
60101             xns: Roo.grid,
60102             dataIndex : 'weekday2',
60103             header : 'Tuesday',
60104             renderer : cellRender
60105         },
60106         {
60107             xtype: 'ColumnModel',
60108             xns: Roo.grid,
60109             dataIndex : 'weekday3',
60110             header : 'Wednesday',
60111             renderer : cellRender
60112         },
60113         {
60114             xtype: 'ColumnModel',
60115             xns: Roo.grid,
60116             dataIndex : 'weekday4',
60117             header : 'Thursday',
60118             renderer : cellRender
60119         },
60120         {
60121             xtype: 'ColumnModel',
60122             xns: Roo.grid,
60123             dataIndex : 'weekday5',
60124             header : 'Friday',
60125             renderer : cellRender
60126         },
60127         {
60128             xtype: 'ColumnModel',
60129             xns: Roo.grid,
60130             dataIndex : 'weekday6',
60131             header : 'Saturday',
60132             renderer : cellRender
60133         }
60134     ]);
60135     this.cm = this.colModel;
60136     this.cm.xmodule = this.xmodule || false;
60137  
60138         
60139           
60140     //this.selModel = new Roo.grid.CellSelectionModel();
60141     //this.sm = this.selModel;
60142     //this.selModel.init(this);
60143     
60144     
60145     if(this.width){
60146         this.container.setWidth(this.width);
60147     }
60148
60149     if(this.height){
60150         this.container.setHeight(this.height);
60151     }
60152     /** @private */
60153         this.addEvents({
60154         // raw events
60155         /**
60156          * @event click
60157          * The raw click event for the entire grid.
60158          * @param {Roo.EventObject} e
60159          */
60160         "click" : true,
60161         /**
60162          * @event dblclick
60163          * The raw dblclick event for the entire grid.
60164          * @param {Roo.EventObject} e
60165          */
60166         "dblclick" : true,
60167         /**
60168          * @event contextmenu
60169          * The raw contextmenu event for the entire grid.
60170          * @param {Roo.EventObject} e
60171          */
60172         "contextmenu" : true,
60173         /**
60174          * @event mousedown
60175          * The raw mousedown event for the entire grid.
60176          * @param {Roo.EventObject} e
60177          */
60178         "mousedown" : true,
60179         /**
60180          * @event mouseup
60181          * The raw mouseup event for the entire grid.
60182          * @param {Roo.EventObject} e
60183          */
60184         "mouseup" : true,
60185         /**
60186          * @event mouseover
60187          * The raw mouseover event for the entire grid.
60188          * @param {Roo.EventObject} e
60189          */
60190         "mouseover" : true,
60191         /**
60192          * @event mouseout
60193          * The raw mouseout event for the entire grid.
60194          * @param {Roo.EventObject} e
60195          */
60196         "mouseout" : true,
60197         /**
60198          * @event keypress
60199          * The raw keypress event for the entire grid.
60200          * @param {Roo.EventObject} e
60201          */
60202         "keypress" : true,
60203         /**
60204          * @event keydown
60205          * The raw keydown event for the entire grid.
60206          * @param {Roo.EventObject} e
60207          */
60208         "keydown" : true,
60209
60210         // custom events
60211
60212         /**
60213          * @event cellclick
60214          * Fires when a cell is clicked
60215          * @param {Grid} this
60216          * @param {Number} rowIndex
60217          * @param {Number} columnIndex
60218          * @param {Roo.EventObject} e
60219          */
60220         "cellclick" : true,
60221         /**
60222          * @event celldblclick
60223          * Fires when a cell is double clicked
60224          * @param {Grid} this
60225          * @param {Number} rowIndex
60226          * @param {Number} columnIndex
60227          * @param {Roo.EventObject} e
60228          */
60229         "celldblclick" : true,
60230         /**
60231          * @event rowclick
60232          * Fires when a row is clicked
60233          * @param {Grid} this
60234          * @param {Number} rowIndex
60235          * @param {Roo.EventObject} e
60236          */
60237         "rowclick" : true,
60238         /**
60239          * @event rowdblclick
60240          * Fires when a row is double clicked
60241          * @param {Grid} this
60242          * @param {Number} rowIndex
60243          * @param {Roo.EventObject} e
60244          */
60245         "rowdblclick" : true,
60246         /**
60247          * @event headerclick
60248          * Fires when a header is clicked
60249          * @param {Grid} this
60250          * @param {Number} columnIndex
60251          * @param {Roo.EventObject} e
60252          */
60253         "headerclick" : true,
60254         /**
60255          * @event headerdblclick
60256          * Fires when a header cell is double clicked
60257          * @param {Grid} this
60258          * @param {Number} columnIndex
60259          * @param {Roo.EventObject} e
60260          */
60261         "headerdblclick" : true,
60262         /**
60263          * @event rowcontextmenu
60264          * Fires when a row is right clicked
60265          * @param {Grid} this
60266          * @param {Number} rowIndex
60267          * @param {Roo.EventObject} e
60268          */
60269         "rowcontextmenu" : true,
60270         /**
60271          * @event cellcontextmenu
60272          * Fires when a cell is right clicked
60273          * @param {Grid} this
60274          * @param {Number} rowIndex
60275          * @param {Number} cellIndex
60276          * @param {Roo.EventObject} e
60277          */
60278          "cellcontextmenu" : true,
60279         /**
60280          * @event headercontextmenu
60281          * Fires when a header is right clicked
60282          * @param {Grid} this
60283          * @param {Number} columnIndex
60284          * @param {Roo.EventObject} e
60285          */
60286         "headercontextmenu" : true,
60287         /**
60288          * @event bodyscroll
60289          * Fires when the body element is scrolled
60290          * @param {Number} scrollLeft
60291          * @param {Number} scrollTop
60292          */
60293         "bodyscroll" : true,
60294         /**
60295          * @event columnresize
60296          * Fires when the user resizes a column
60297          * @param {Number} columnIndex
60298          * @param {Number} newSize
60299          */
60300         "columnresize" : true,
60301         /**
60302          * @event columnmove
60303          * Fires when the user moves a column
60304          * @param {Number} oldIndex
60305          * @param {Number} newIndex
60306          */
60307         "columnmove" : true,
60308         /**
60309          * @event startdrag
60310          * Fires when row(s) start being dragged
60311          * @param {Grid} this
60312          * @param {Roo.GridDD} dd The drag drop object
60313          * @param {event} e The raw browser event
60314          */
60315         "startdrag" : true,
60316         /**
60317          * @event enddrag
60318          * Fires when a drag operation is complete
60319          * @param {Grid} this
60320          * @param {Roo.GridDD} dd The drag drop object
60321          * @param {event} e The raw browser event
60322          */
60323         "enddrag" : true,
60324         /**
60325          * @event dragdrop
60326          * Fires when dragged row(s) are dropped on a valid DD target
60327          * @param {Grid} this
60328          * @param {Roo.GridDD} dd The drag drop object
60329          * @param {String} targetId The target drag drop object
60330          * @param {event} e The raw browser event
60331          */
60332         "dragdrop" : true,
60333         /**
60334          * @event dragover
60335          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60336          * @param {Grid} this
60337          * @param {Roo.GridDD} dd The drag drop object
60338          * @param {String} targetId The target drag drop object
60339          * @param {event} e The raw browser event
60340          */
60341         "dragover" : true,
60342         /**
60343          * @event dragenter
60344          *  Fires when the dragged row(s) first cross another DD target while being dragged
60345          * @param {Grid} this
60346          * @param {Roo.GridDD} dd The drag drop object
60347          * @param {String} targetId The target drag drop object
60348          * @param {event} e The raw browser event
60349          */
60350         "dragenter" : true,
60351         /**
60352          * @event dragout
60353          * Fires when the dragged row(s) leave another DD target while being dragged
60354          * @param {Grid} this
60355          * @param {Roo.GridDD} dd The drag drop object
60356          * @param {String} targetId The target drag drop object
60357          * @param {event} e The raw browser event
60358          */
60359         "dragout" : true,
60360         /**
60361          * @event rowclass
60362          * Fires when a row is rendered, so you can change add a style to it.
60363          * @param {GridView} gridview   The grid view
60364          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60365          */
60366         'rowclass' : true,
60367
60368         /**
60369          * @event render
60370          * Fires when the grid is rendered
60371          * @param {Grid} grid
60372          */
60373         'render' : true,
60374             /**
60375              * @event select
60376              * Fires when a date is selected
60377              * @param {DatePicker} this
60378              * @param {Date} date The selected date
60379              */
60380         'select': true,
60381         /**
60382              * @event monthchange
60383              * Fires when the displayed month changes 
60384              * @param {DatePicker} this
60385              * @param {Date} date The selected month
60386              */
60387         'monthchange': true,
60388         /**
60389              * @event evententer
60390              * Fires when mouse over an event
60391              * @param {Calendar} this
60392              * @param {event} Event
60393              */
60394         'evententer': true,
60395         /**
60396              * @event eventleave
60397              * Fires when the mouse leaves an
60398              * @param {Calendar} this
60399              * @param {event}
60400              */
60401         'eventleave': true,
60402         /**
60403              * @event eventclick
60404              * Fires when the mouse click an
60405              * @param {Calendar} this
60406              * @param {event}
60407              */
60408         'eventclick': true,
60409         /**
60410              * @event eventrender
60411              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60412              * @param {Calendar} this
60413              * @param {data} data to be modified
60414              */
60415         'eventrender': true
60416         
60417     });
60418
60419     Roo.grid.Grid.superclass.constructor.call(this);
60420     this.on('render', function() {
60421         this.view.el.addClass('x-grid-cal'); 
60422         
60423         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60424
60425     },this);
60426     
60427     if (!Roo.grid.Calendar.style) {
60428         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60429             
60430             
60431             '.x-grid-cal .x-grid-col' :  {
60432                 height: 'auto !important',
60433                 'vertical-align': 'top'
60434             },
60435             '.x-grid-cal  .fc-event-hori' : {
60436                 height: '14px'
60437             }
60438              
60439             
60440         }, Roo.id());
60441     }
60442
60443     
60444     
60445 };
60446 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60447     /**
60448      * @cfg {Store} eventStore The store that loads events.
60449      */
60450     eventStore : 25,
60451
60452      
60453     activeDate : false,
60454     startDay : 0,
60455     autoWidth : true,
60456     monitorWindowResize : false,
60457
60458     
60459     resizeColumns : function() {
60460         var col = (this.view.el.getWidth() / 7) - 3;
60461         // loop through cols, and setWidth
60462         for(var i =0 ; i < 7 ; i++){
60463             this.cm.setColumnWidth(i, col);
60464         }
60465     },
60466      setDate :function(date) {
60467         
60468         Roo.log('setDate?');
60469         
60470         this.resizeColumns();
60471         var vd = this.activeDate;
60472         this.activeDate = date;
60473 //        if(vd && this.el){
60474 //            var t = date.getTime();
60475 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60476 //                Roo.log('using add remove');
60477 //                
60478 //                this.fireEvent('monthchange', this, date);
60479 //                
60480 //                this.cells.removeClass("fc-state-highlight");
60481 //                this.cells.each(function(c){
60482 //                   if(c.dateValue == t){
60483 //                       c.addClass("fc-state-highlight");
60484 //                       setTimeout(function(){
60485 //                            try{c.dom.firstChild.focus();}catch(e){}
60486 //                       }, 50);
60487 //                       return false;
60488 //                   }
60489 //                   return true;
60490 //                });
60491 //                return;
60492 //            }
60493 //        }
60494         
60495         var days = date.getDaysInMonth();
60496         
60497         var firstOfMonth = date.getFirstDateOfMonth();
60498         var startingPos = firstOfMonth.getDay()-this.startDay;
60499         
60500         if(startingPos < this.startDay){
60501             startingPos += 7;
60502         }
60503         
60504         var pm = date.add(Date.MONTH, -1);
60505         var prevStart = pm.getDaysInMonth()-startingPos;
60506 //        
60507         
60508         
60509         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60510         
60511         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60512         //this.cells.addClassOnOver('fc-state-hover');
60513         
60514         var cells = this.cells.elements;
60515         var textEls = this.textNodes;
60516         
60517         //Roo.each(cells, function(cell){
60518         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60519         //});
60520         
60521         days += startingPos;
60522
60523         // convert everything to numbers so it's fast
60524         var day = 86400000;
60525         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60526         //Roo.log(d);
60527         //Roo.log(pm);
60528         //Roo.log(prevStart);
60529         
60530         var today = new Date().clearTime().getTime();
60531         var sel = date.clearTime().getTime();
60532         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60533         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60534         var ddMatch = this.disabledDatesRE;
60535         var ddText = this.disabledDatesText;
60536         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60537         var ddaysText = this.disabledDaysText;
60538         var format = this.format;
60539         
60540         var setCellClass = function(cal, cell){
60541             
60542             //Roo.log('set Cell Class');
60543             cell.title = "";
60544             var t = d.getTime();
60545             
60546             //Roo.log(d);
60547             
60548             
60549             cell.dateValue = t;
60550             if(t == today){
60551                 cell.className += " fc-today";
60552                 cell.className += " fc-state-highlight";
60553                 cell.title = cal.todayText;
60554             }
60555             if(t == sel){
60556                 // disable highlight in other month..
60557                 cell.className += " fc-state-highlight";
60558                 
60559             }
60560             // disabling
60561             if(t < min) {
60562                 //cell.className = " fc-state-disabled";
60563                 cell.title = cal.minText;
60564                 return;
60565             }
60566             if(t > max) {
60567                 //cell.className = " fc-state-disabled";
60568                 cell.title = cal.maxText;
60569                 return;
60570             }
60571             if(ddays){
60572                 if(ddays.indexOf(d.getDay()) != -1){
60573                     // cell.title = ddaysText;
60574                    // cell.className = " fc-state-disabled";
60575                 }
60576             }
60577             if(ddMatch && format){
60578                 var fvalue = d.dateFormat(format);
60579                 if(ddMatch.test(fvalue)){
60580                     cell.title = ddText.replace("%0", fvalue);
60581                    cell.className = " fc-state-disabled";
60582                 }
60583             }
60584             
60585             if (!cell.initialClassName) {
60586                 cell.initialClassName = cell.dom.className;
60587             }
60588             
60589             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60590         };
60591
60592         var i = 0;
60593         
60594         for(; i < startingPos; i++) {
60595             cells[i].dayName =  (++prevStart);
60596             Roo.log(textEls[i]);
60597             d.setDate(d.getDate()+1);
60598             
60599             //cells[i].className = "fc-past fc-other-month";
60600             setCellClass(this, cells[i]);
60601         }
60602         
60603         var intDay = 0;
60604         
60605         for(; i < days; i++){
60606             intDay = i - startingPos + 1;
60607             cells[i].dayName =  (intDay);
60608             d.setDate(d.getDate()+1);
60609             
60610             cells[i].className = ''; // "x-date-active";
60611             setCellClass(this, cells[i]);
60612         }
60613         var extraDays = 0;
60614         
60615         for(; i < 42; i++) {
60616             //textEls[i].innerHTML = (++extraDays);
60617             
60618             d.setDate(d.getDate()+1);
60619             cells[i].dayName = (++extraDays);
60620             cells[i].className = "fc-future fc-other-month";
60621             setCellClass(this, cells[i]);
60622         }
60623         
60624         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60625         
60626         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60627         
60628         // this will cause all the cells to mis
60629         var rows= [];
60630         var i =0;
60631         for (var r = 0;r < 6;r++) {
60632             for (var c =0;c < 7;c++) {
60633                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60634             }    
60635         }
60636         
60637         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60638         for(i=0;i<cells.length;i++) {
60639             
60640             this.cells.elements[i].dayName = cells[i].dayName ;
60641             this.cells.elements[i].className = cells[i].className;
60642             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60643             this.cells.elements[i].title = cells[i].title ;
60644             this.cells.elements[i].dateValue = cells[i].dateValue ;
60645         }
60646         
60647         
60648         
60649         
60650         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60651         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60652         
60653         ////if(totalRows != 6){
60654             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60655            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60656        // }
60657         
60658         this.fireEvent('monthchange', this, date);
60659         
60660         
60661     },
60662  /**
60663      * Returns the grid's SelectionModel.
60664      * @return {SelectionModel}
60665      */
60666     getSelectionModel : function(){
60667         if(!this.selModel){
60668             this.selModel = new Roo.grid.CellSelectionModel();
60669         }
60670         return this.selModel;
60671     },
60672
60673     load: function() {
60674         this.eventStore.load()
60675         
60676         
60677         
60678     },
60679     
60680     findCell : function(dt) {
60681         dt = dt.clearTime().getTime();
60682         var ret = false;
60683         this.cells.each(function(c){
60684             //Roo.log("check " +c.dateValue + '?=' + dt);
60685             if(c.dateValue == dt){
60686                 ret = c;
60687                 return false;
60688             }
60689             return true;
60690         });
60691         
60692         return ret;
60693     },
60694     
60695     findCells : function(rec) {
60696         var s = rec.data.start_dt.clone().clearTime().getTime();
60697        // Roo.log(s);
60698         var e= rec.data.end_dt.clone().clearTime().getTime();
60699        // Roo.log(e);
60700         var ret = [];
60701         this.cells.each(function(c){
60702              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60703             
60704             if(c.dateValue > e){
60705                 return ;
60706             }
60707             if(c.dateValue < s){
60708                 return ;
60709             }
60710             ret.push(c);
60711         });
60712         
60713         return ret;    
60714     },
60715     
60716     findBestRow: function(cells)
60717     {
60718         var ret = 0;
60719         
60720         for (var i =0 ; i < cells.length;i++) {
60721             ret  = Math.max(cells[i].rows || 0,ret);
60722         }
60723         return ret;
60724         
60725     },
60726     
60727     
60728     addItem : function(rec)
60729     {
60730         // look for vertical location slot in
60731         var cells = this.findCells(rec);
60732         
60733         rec.row = this.findBestRow(cells);
60734         
60735         // work out the location.
60736         
60737         var crow = false;
60738         var rows = [];
60739         for(var i =0; i < cells.length; i++) {
60740             if (!crow) {
60741                 crow = {
60742                     start : cells[i],
60743                     end :  cells[i]
60744                 };
60745                 continue;
60746             }
60747             if (crow.start.getY() == cells[i].getY()) {
60748                 // on same row.
60749                 crow.end = cells[i];
60750                 continue;
60751             }
60752             // different row.
60753             rows.push(crow);
60754             crow = {
60755                 start: cells[i],
60756                 end : cells[i]
60757             };
60758             
60759         }
60760         
60761         rows.push(crow);
60762         rec.els = [];
60763         rec.rows = rows;
60764         rec.cells = cells;
60765         for (var i = 0; i < cells.length;i++) {
60766             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60767             
60768         }
60769         
60770         
60771     },
60772     
60773     clearEvents: function() {
60774         
60775         if (!this.eventStore.getCount()) {
60776             return;
60777         }
60778         // reset number of rows in cells.
60779         Roo.each(this.cells.elements, function(c){
60780             c.rows = 0;
60781         });
60782         
60783         this.eventStore.each(function(e) {
60784             this.clearEvent(e);
60785         },this);
60786         
60787     },
60788     
60789     clearEvent : function(ev)
60790     {
60791         if (ev.els) {
60792             Roo.each(ev.els, function(el) {
60793                 el.un('mouseenter' ,this.onEventEnter, this);
60794                 el.un('mouseleave' ,this.onEventLeave, this);
60795                 el.remove();
60796             },this);
60797             ev.els = [];
60798         }
60799     },
60800     
60801     
60802     renderEvent : function(ev,ctr) {
60803         if (!ctr) {
60804              ctr = this.view.el.select('.fc-event-container',true).first();
60805         }
60806         
60807          
60808         this.clearEvent(ev);
60809             //code
60810        
60811         
60812         
60813         ev.els = [];
60814         var cells = ev.cells;
60815         var rows = ev.rows;
60816         this.fireEvent('eventrender', this, ev);
60817         
60818         for(var i =0; i < rows.length; i++) {
60819             
60820             cls = '';
60821             if (i == 0) {
60822                 cls += ' fc-event-start';
60823             }
60824             if ((i+1) == rows.length) {
60825                 cls += ' fc-event-end';
60826             }
60827             
60828             //Roo.log(ev.data);
60829             // how many rows should it span..
60830             var cg = this.eventTmpl.append(ctr,Roo.apply({
60831                 fccls : cls
60832                 
60833             }, ev.data) , true);
60834             
60835             
60836             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60837             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60838             cg.on('click', this.onEventClick, this, ev);
60839             
60840             ev.els.push(cg);
60841             
60842             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60843             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60844             //Roo.log(cg);
60845              
60846             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60847             cg.setWidth(ebox.right - sbox.x -2);
60848         }
60849     },
60850     
60851     renderEvents: function()
60852     {   
60853         // first make sure there is enough space..
60854         
60855         if (!this.eventTmpl) {
60856             this.eventTmpl = new Roo.Template(
60857                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60858                     '<div class="fc-event-inner">' +
60859                         '<span class="fc-event-time">{time}</span>' +
60860                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60861                     '</div>' +
60862                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60863                 '</div>'
60864             );
60865                 
60866         }
60867                
60868         
60869         
60870         this.cells.each(function(c) {
60871             //Roo.log(c.select('.fc-day-content div',true).first());
60872             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60873         });
60874         
60875         var ctr = this.view.el.select('.fc-event-container',true).first();
60876         
60877         var cls;
60878         this.eventStore.each(function(ev){
60879             
60880             this.renderEvent(ev);
60881              
60882              
60883         }, this);
60884         this.view.layout();
60885         
60886     },
60887     
60888     onEventEnter: function (e, el,event,d) {
60889         this.fireEvent('evententer', this, el, event);
60890     },
60891     
60892     onEventLeave: function (e, el,event,d) {
60893         this.fireEvent('eventleave', this, el, event);
60894     },
60895     
60896     onEventClick: function (e, el,event,d) {
60897         this.fireEvent('eventclick', this, el, event);
60898     },
60899     
60900     onMonthChange: function () {
60901         this.store.load();
60902     },
60903     
60904     onLoad: function () {
60905         
60906         //Roo.log('calendar onload');
60907 //         
60908         if(this.eventStore.getCount() > 0){
60909             
60910            
60911             
60912             this.eventStore.each(function(d){
60913                 
60914                 
60915                 // FIXME..
60916                 var add =   d.data;
60917                 if (typeof(add.end_dt) == 'undefined')  {
60918                     Roo.log("Missing End time in calendar data: ");
60919                     Roo.log(d);
60920                     return;
60921                 }
60922                 if (typeof(add.start_dt) == 'undefined')  {
60923                     Roo.log("Missing Start time in calendar data: ");
60924                     Roo.log(d);
60925                     return;
60926                 }
60927                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
60928                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
60929                 add.id = add.id || d.id;
60930                 add.title = add.title || '??';
60931                 
60932                 this.addItem(d);
60933                 
60934              
60935             },this);
60936         }
60937         
60938         this.renderEvents();
60939     }
60940     
60941
60942 });
60943 /*
60944  grid : {
60945                 xtype: 'Grid',
60946                 xns: Roo.grid,
60947                 listeners : {
60948                     render : function ()
60949                     {
60950                         _this.grid = this;
60951                         
60952                         if (!this.view.el.hasClass('course-timesheet')) {
60953                             this.view.el.addClass('course-timesheet');
60954                         }
60955                         if (this.tsStyle) {
60956                             this.ds.load({});
60957                             return; 
60958                         }
60959                         Roo.log('width');
60960                         Roo.log(_this.grid.view.el.getWidth());
60961                         
60962                         
60963                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
60964                             '.course-timesheet .x-grid-row' : {
60965                                 height: '80px'
60966                             },
60967                             '.x-grid-row td' : {
60968                                 'vertical-align' : 0
60969                             },
60970                             '.course-edit-link' : {
60971                                 'color' : 'blue',
60972                                 'text-overflow' : 'ellipsis',
60973                                 'overflow' : 'hidden',
60974                                 'white-space' : 'nowrap',
60975                                 'cursor' : 'pointer'
60976                             },
60977                             '.sub-link' : {
60978                                 'color' : 'green'
60979                             },
60980                             '.de-act-sup-link' : {
60981                                 'color' : 'purple',
60982                                 'text-decoration' : 'line-through'
60983                             },
60984                             '.de-act-link' : {
60985                                 'color' : 'red',
60986                                 'text-decoration' : 'line-through'
60987                             },
60988                             '.course-timesheet .course-highlight' : {
60989                                 'border-top-style': 'dashed !important',
60990                                 'border-bottom-bottom': 'dashed !important'
60991                             },
60992                             '.course-timesheet .course-item' : {
60993                                 'font-family'   : 'tahoma, arial, helvetica',
60994                                 'font-size'     : '11px',
60995                                 'overflow'      : 'hidden',
60996                                 'padding-left'  : '10px',
60997                                 'padding-right' : '10px',
60998                                 'padding-top' : '10px' 
60999                             }
61000                             
61001                         }, Roo.id());
61002                                 this.ds.load({});
61003                     }
61004                 },
61005                 autoWidth : true,
61006                 monitorWindowResize : false,
61007                 cellrenderer : function(v,x,r)
61008                 {
61009                     return v;
61010                 },
61011                 sm : {
61012                     xtype: 'CellSelectionModel',
61013                     xns: Roo.grid
61014                 },
61015                 dataSource : {
61016                     xtype: 'Store',
61017                     xns: Roo.data,
61018                     listeners : {
61019                         beforeload : function (_self, options)
61020                         {
61021                             options.params = options.params || {};
61022                             options.params._month = _this.monthField.getValue();
61023                             options.params.limit = 9999;
61024                             options.params['sort'] = 'when_dt';    
61025                             options.params['dir'] = 'ASC';    
61026                             this.proxy.loadResponse = this.loadResponse;
61027                             Roo.log("load?");
61028                             //this.addColumns();
61029                         },
61030                         load : function (_self, records, options)
61031                         {
61032                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61033                                 // if you click on the translation.. you can edit it...
61034                                 var el = Roo.get(this);
61035                                 var id = el.dom.getAttribute('data-id');
61036                                 var d = el.dom.getAttribute('data-date');
61037                                 var t = el.dom.getAttribute('data-time');
61038                                 //var id = this.child('span').dom.textContent;
61039                                 
61040                                 //Roo.log(this);
61041                                 Pman.Dialog.CourseCalendar.show({
61042                                     id : id,
61043                                     when_d : d,
61044                                     when_t : t,
61045                                     productitem_active : id ? 1 : 0
61046                                 }, function() {
61047                                     _this.grid.ds.load({});
61048                                 });
61049                            
61050                            });
61051                            
61052                            _this.panel.fireEvent('resize', [ '', '' ]);
61053                         }
61054                     },
61055                     loadResponse : function(o, success, response){
61056                             // this is overridden on before load..
61057                             
61058                             Roo.log("our code?");       
61059                             //Roo.log(success);
61060                             //Roo.log(response)
61061                             delete this.activeRequest;
61062                             if(!success){
61063                                 this.fireEvent("loadexception", this, o, response);
61064                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61065                                 return;
61066                             }
61067                             var result;
61068                             try {
61069                                 result = o.reader.read(response);
61070                             }catch(e){
61071                                 Roo.log("load exception?");
61072                                 this.fireEvent("loadexception", this, o, response, e);
61073                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61074                                 return;
61075                             }
61076                             Roo.log("ready...");        
61077                             // loop through result.records;
61078                             // and set this.tdate[date] = [] << array of records..
61079                             _this.tdata  = {};
61080                             Roo.each(result.records, function(r){
61081                                 //Roo.log(r.data);
61082                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61083                                     _this.tdata[r.data.when_dt.format('j')] = [];
61084                                 }
61085                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61086                             });
61087                             
61088                             //Roo.log(_this.tdata);
61089                             
61090                             result.records = [];
61091                             result.totalRecords = 6;
61092                     
61093                             // let's generate some duumy records for the rows.
61094                             //var st = _this.dateField.getValue();
61095                             
61096                             // work out monday..
61097                             //st = st.add(Date.DAY, -1 * st.format('w'));
61098                             
61099                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61100                             
61101                             var firstOfMonth = date.getFirstDayOfMonth();
61102                             var days = date.getDaysInMonth();
61103                             var d = 1;
61104                             var firstAdded = false;
61105                             for (var i = 0; i < result.totalRecords ; i++) {
61106                                 //var d= st.add(Date.DAY, i);
61107                                 var row = {};
61108                                 var added = 0;
61109                                 for(var w = 0 ; w < 7 ; w++){
61110                                     if(!firstAdded && firstOfMonth != w){
61111                                         continue;
61112                                     }
61113                                     if(d > days){
61114                                         continue;
61115                                     }
61116                                     firstAdded = true;
61117                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61118                                     row['weekday'+w] = String.format(
61119                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61120                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61121                                                     d,
61122                                                     date.format('Y-m-')+dd
61123                                                 );
61124                                     added++;
61125                                     if(typeof(_this.tdata[d]) != 'undefined'){
61126                                         Roo.each(_this.tdata[d], function(r){
61127                                             var is_sub = '';
61128                                             var deactive = '';
61129                                             var id = r.id;
61130                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61131                                             if(r.parent_id*1>0){
61132                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61133                                                 id = r.parent_id;
61134                                             }
61135                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61136                                                 deactive = 'de-act-link';
61137                                             }
61138                                             
61139                                             row['weekday'+w] += String.format(
61140                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61141                                                     id, //0
61142                                                     r.product_id_name, //1
61143                                                     r.when_dt.format('h:ia'), //2
61144                                                     is_sub, //3
61145                                                     deactive, //4
61146                                                     desc // 5
61147                                             );
61148                                         });
61149                                     }
61150                                     d++;
61151                                 }
61152                                 
61153                                 // only do this if something added..
61154                                 if(added > 0){ 
61155                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61156                                 }
61157                                 
61158                                 
61159                                 // push it twice. (second one with an hour..
61160                                 
61161                             }
61162                             //Roo.log(result);
61163                             this.fireEvent("load", this, o, o.request.arg);
61164                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61165                         },
61166                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61167                     proxy : {
61168                         xtype: 'HttpProxy',
61169                         xns: Roo.data,
61170                         method : 'GET',
61171                         url : baseURL + '/Roo/Shop_course.php'
61172                     },
61173                     reader : {
61174                         xtype: 'JsonReader',
61175                         xns: Roo.data,
61176                         id : 'id',
61177                         fields : [
61178                             {
61179                                 'name': 'id',
61180                                 'type': 'int'
61181                             },
61182                             {
61183                                 'name': 'when_dt',
61184                                 'type': 'string'
61185                             },
61186                             {
61187                                 'name': 'end_dt',
61188                                 'type': 'string'
61189                             },
61190                             {
61191                                 'name': 'parent_id',
61192                                 'type': 'int'
61193                             },
61194                             {
61195                                 'name': 'product_id',
61196                                 'type': 'int'
61197                             },
61198                             {
61199                                 'name': 'productitem_id',
61200                                 'type': 'int'
61201                             },
61202                             {
61203                                 'name': 'guid',
61204                                 'type': 'int'
61205                             }
61206                         ]
61207                     }
61208                 },
61209                 toolbar : {
61210                     xtype: 'Toolbar',
61211                     xns: Roo,
61212                     items : [
61213                         {
61214                             xtype: 'Button',
61215                             xns: Roo.Toolbar,
61216                             listeners : {
61217                                 click : function (_self, e)
61218                                 {
61219                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61220                                     sd.setMonth(sd.getMonth()-1);
61221                                     _this.monthField.setValue(sd.format('Y-m-d'));
61222                                     _this.grid.ds.load({});
61223                                 }
61224                             },
61225                             text : "Back"
61226                         },
61227                         {
61228                             xtype: 'Separator',
61229                             xns: Roo.Toolbar
61230                         },
61231                         {
61232                             xtype: 'MonthField',
61233                             xns: Roo.form,
61234                             listeners : {
61235                                 render : function (_self)
61236                                 {
61237                                     _this.monthField = _self;
61238                                    // _this.monthField.set  today
61239                                 },
61240                                 select : function (combo, date)
61241                                 {
61242                                     _this.grid.ds.load({});
61243                                 }
61244                             },
61245                             value : (function() { return new Date(); })()
61246                         },
61247                         {
61248                             xtype: 'Separator',
61249                             xns: Roo.Toolbar
61250                         },
61251                         {
61252                             xtype: 'TextItem',
61253                             xns: Roo.Toolbar,
61254                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61255                         },
61256                         {
61257                             xtype: 'Fill',
61258                             xns: Roo.Toolbar
61259                         },
61260                         {
61261                             xtype: 'Button',
61262                             xns: Roo.Toolbar,
61263                             listeners : {
61264                                 click : function (_self, e)
61265                                 {
61266                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61267                                     sd.setMonth(sd.getMonth()+1);
61268                                     _this.monthField.setValue(sd.format('Y-m-d'));
61269                                     _this.grid.ds.load({});
61270                                 }
61271                             },
61272                             text : "Next"
61273                         }
61274                     ]
61275                 },
61276                  
61277             }
61278         };
61279         
61280         *//*
61281  * Based on:
61282  * Ext JS Library 1.1.1
61283  * Copyright(c) 2006-2007, Ext JS, LLC.
61284  *
61285  * Originally Released Under LGPL - original licence link has changed is not relivant.
61286  *
61287  * Fork - LGPL
61288  * <script type="text/javascript">
61289  */
61290  
61291 /**
61292  * @class Roo.LoadMask
61293  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61294  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61295  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61296  * element's UpdateManager load indicator and will be destroyed after the initial load.
61297  * @constructor
61298  * Create a new LoadMask
61299  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61300  * @param {Object} config The config object
61301  */
61302 Roo.LoadMask = function(el, config){
61303     this.el = Roo.get(el);
61304     Roo.apply(this, config);
61305     if(this.store){
61306         this.store.on('beforeload', this.onBeforeLoad, this);
61307         this.store.on('load', this.onLoad, this);
61308         this.store.on('loadexception', this.onLoadException, this);
61309         this.removeMask = false;
61310     }else{
61311         var um = this.el.getUpdateManager();
61312         um.showLoadIndicator = false; // disable the default indicator
61313         um.on('beforeupdate', this.onBeforeLoad, this);
61314         um.on('update', this.onLoad, this);
61315         um.on('failure', this.onLoad, this);
61316         this.removeMask = true;
61317     }
61318 };
61319
61320 Roo.LoadMask.prototype = {
61321     /**
61322      * @cfg {Boolean} removeMask
61323      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61324      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61325      */
61326     /**
61327      * @cfg {String} msg
61328      * The text to display in a centered loading message box (defaults to 'Loading...')
61329      */
61330     msg : 'Loading...',
61331     /**
61332      * @cfg {String} msgCls
61333      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61334      */
61335     msgCls : 'x-mask-loading',
61336
61337     /**
61338      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61339      * @type Boolean
61340      */
61341     disabled: false,
61342
61343     /**
61344      * Disables the mask to prevent it from being displayed
61345      */
61346     disable : function(){
61347        this.disabled = true;
61348     },
61349
61350     /**
61351      * Enables the mask so that it can be displayed
61352      */
61353     enable : function(){
61354         this.disabled = false;
61355     },
61356     
61357     onLoadException : function()
61358     {
61359         Roo.log(arguments);
61360         
61361         if (typeof(arguments[3]) != 'undefined') {
61362             Roo.MessageBox.alert("Error loading",arguments[3]);
61363         } 
61364         /*
61365         try {
61366             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61367                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61368             }   
61369         } catch(e) {
61370             
61371         }
61372         */
61373     
61374         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61375     },
61376     // private
61377     onLoad : function()
61378     {
61379         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61380     },
61381
61382     // private
61383     onBeforeLoad : function(){
61384         if(!this.disabled){
61385             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61386         }
61387     },
61388
61389     // private
61390     destroy : function(){
61391         if(this.store){
61392             this.store.un('beforeload', this.onBeforeLoad, this);
61393             this.store.un('load', this.onLoad, this);
61394             this.store.un('loadexception', this.onLoadException, this);
61395         }else{
61396             var um = this.el.getUpdateManager();
61397             um.un('beforeupdate', this.onBeforeLoad, this);
61398             um.un('update', this.onLoad, this);
61399             um.un('failure', this.onLoad, this);
61400         }
61401     }
61402 };/*
61403  * Based on:
61404  * Ext JS Library 1.1.1
61405  * Copyright(c) 2006-2007, Ext JS, LLC.
61406  *
61407  * Originally Released Under LGPL - original licence link has changed is not relivant.
61408  *
61409  * Fork - LGPL
61410  * <script type="text/javascript">
61411  */
61412
61413
61414 /**
61415  * @class Roo.XTemplate
61416  * @extends Roo.Template
61417  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61418 <pre><code>
61419 var t = new Roo.XTemplate(
61420         '&lt;select name="{name}"&gt;',
61421                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61422         '&lt;/select&gt;'
61423 );
61424  
61425 // then append, applying the master template values
61426  </code></pre>
61427  *
61428  * Supported features:
61429  *
61430  *  Tags:
61431
61432 <pre><code>
61433       {a_variable} - output encoded.
61434       {a_variable.format:("Y-m-d")} - call a method on the variable
61435       {a_variable:raw} - unencoded output
61436       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61437       {a_variable:this.method_on_template(...)} - call a method on the template object.
61438  
61439 </code></pre>
61440  *  The tpl tag:
61441 <pre><code>
61442         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61443         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61444         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61445         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61446   
61447         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61448         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61449 </code></pre>
61450  *      
61451  */
61452 Roo.XTemplate = function()
61453 {
61454     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61455     if (this.html) {
61456         this.compile();
61457     }
61458 };
61459
61460
61461 Roo.extend(Roo.XTemplate, Roo.Template, {
61462
61463     /**
61464      * The various sub templates
61465      */
61466     tpls : false,
61467     /**
61468      *
61469      * basic tag replacing syntax
61470      * WORD:WORD()
61471      *
61472      * // you can fake an object call by doing this
61473      *  x.t:(test,tesT) 
61474      * 
61475      */
61476     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61477
61478     /**
61479      * compile the template
61480      *
61481      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61482      *
61483      */
61484     compile: function()
61485     {
61486         var s = this.html;
61487      
61488         s = ['<tpl>', s, '</tpl>'].join('');
61489     
61490         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61491             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61492             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61493             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61494             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61495             m,
61496             id     = 0,
61497             tpls   = [];
61498     
61499         while(true == !!(m = s.match(re))){
61500             var forMatch   = m[0].match(nameRe),
61501                 ifMatch   = m[0].match(ifRe),
61502                 execMatch   = m[0].match(execRe),
61503                 namedMatch   = m[0].match(namedRe),
61504                 
61505                 exp  = null, 
61506                 fn   = null,
61507                 exec = null,
61508                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61509                 
61510             if (ifMatch) {
61511                 // if - puts fn into test..
61512                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61513                 if(exp){
61514                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61515                 }
61516             }
61517             
61518             if (execMatch) {
61519                 // exec - calls a function... returns empty if true is  returned.
61520                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61521                 if(exp){
61522                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61523                 }
61524             }
61525             
61526             
61527             if (name) {
61528                 // for = 
61529                 switch(name){
61530                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61531                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61532                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61533                 }
61534             }
61535             var uid = namedMatch ? namedMatch[1] : id;
61536             
61537             
61538             tpls.push({
61539                 id:     namedMatch ? namedMatch[1] : id,
61540                 target: name,
61541                 exec:   exec,
61542                 test:   fn,
61543                 body:   m[1] || ''
61544             });
61545             if (namedMatch) {
61546                 s = s.replace(m[0], '');
61547             } else { 
61548                 s = s.replace(m[0], '{xtpl'+ id + '}');
61549             }
61550             ++id;
61551         }
61552         this.tpls = [];
61553         for(var i = tpls.length-1; i >= 0; --i){
61554             this.compileTpl(tpls[i]);
61555             this.tpls[tpls[i].id] = tpls[i];
61556         }
61557         this.master = tpls[tpls.length-1];
61558         return this;
61559     },
61560     /**
61561      * same as applyTemplate, except it's done to one of the subTemplates
61562      * when using named templates, you can do:
61563      *
61564      * var str = pl.applySubTemplate('your-name', values);
61565      *
61566      * 
61567      * @param {Number} id of the template
61568      * @param {Object} values to apply to template
61569      * @param {Object} parent (normaly the instance of this object)
61570      */
61571     applySubTemplate : function(id, values, parent)
61572     {
61573         
61574         
61575         var t = this.tpls[id];
61576         
61577         
61578         try { 
61579             if(t.test && !t.test.call(this, values, parent)){
61580                 return '';
61581             }
61582         } catch(e) {
61583             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61584             Roo.log(e.toString());
61585             Roo.log(t.test);
61586             return ''
61587         }
61588         try { 
61589             
61590             if(t.exec && t.exec.call(this, values, parent)){
61591                 return '';
61592             }
61593         } catch(e) {
61594             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61595             Roo.log(e.toString());
61596             Roo.log(t.exec);
61597             return ''
61598         }
61599         try {
61600             var vs = t.target ? t.target.call(this, values, parent) : values;
61601             parent = t.target ? values : parent;
61602             if(t.target && vs instanceof Array){
61603                 var buf = [];
61604                 for(var i = 0, len = vs.length; i < len; i++){
61605                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61606                 }
61607                 return buf.join('');
61608             }
61609             return t.compiled.call(this, vs, parent);
61610         } catch (e) {
61611             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61612             Roo.log(e.toString());
61613             Roo.log(t.compiled);
61614             return '';
61615         }
61616     },
61617
61618     compileTpl : function(tpl)
61619     {
61620         var fm = Roo.util.Format;
61621         var useF = this.disableFormats !== true;
61622         var sep = Roo.isGecko ? "+" : ",";
61623         var undef = function(str) {
61624             Roo.log("Property not found :"  + str);
61625             return '';
61626         };
61627         
61628         var fn = function(m, name, format, args)
61629         {
61630             //Roo.log(arguments);
61631             args = args ? args.replace(/\\'/g,"'") : args;
61632             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61633             if (typeof(format) == 'undefined') {
61634                 format= 'htmlEncode';
61635             }
61636             if (format == 'raw' ) {
61637                 format = false;
61638             }
61639             
61640             if(name.substr(0, 4) == 'xtpl'){
61641                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61642             }
61643             
61644             // build an array of options to determine if value is undefined..
61645             
61646             // basically get 'xxxx.yyyy' then do
61647             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61648             //    (function () { Roo.log("Property not found"); return ''; })() :
61649             //    ......
61650             
61651             var udef_ar = [];
61652             var lookfor = '';
61653             Roo.each(name.split('.'), function(st) {
61654                 lookfor += (lookfor.length ? '.': '') + st;
61655                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61656             });
61657             
61658             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61659             
61660             
61661             if(format && useF){
61662                 
61663                 args = args ? ',' + args : "";
61664                  
61665                 if(format.substr(0, 5) != "this."){
61666                     format = "fm." + format + '(';
61667                 }else{
61668                     format = 'this.call("'+ format.substr(5) + '", ';
61669                     args = ", values";
61670                 }
61671                 
61672                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61673             }
61674              
61675             if (args.length) {
61676                 // called with xxyx.yuu:(test,test)
61677                 // change to ()
61678                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61679             }
61680             // raw.. - :raw modifier..
61681             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61682             
61683         };
61684         var body;
61685         // branched to use + in gecko and [].join() in others
61686         if(Roo.isGecko){
61687             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61688                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61689                     "';};};";
61690         }else{
61691             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61692             body.push(tpl.body.replace(/(\r\n|\n)/g,
61693                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61694             body.push("'].join('');};};");
61695             body = body.join('');
61696         }
61697         
61698         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61699        
61700         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61701         eval(body);
61702         
61703         return this;
61704     },
61705
61706     applyTemplate : function(values){
61707         return this.master.compiled.call(this, values, {});
61708         //var s = this.subs;
61709     },
61710
61711     apply : function(){
61712         return this.applyTemplate.apply(this, arguments);
61713     }
61714
61715  });
61716
61717 Roo.XTemplate.from = function(el){
61718     el = Roo.getDom(el);
61719     return new Roo.XTemplate(el.value || el.innerHTML);
61720 };